/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Industrial Color Palette */
    --primary-color: #2c3e50;
    --primary-dark: #1a252f;
    --primary-light: #34495e;
    --secondary-color: #7f8c8d;
    --accent-color: #95a5a6;
    --text-color: #2c2c2c;
    --text-light: #5a5a5a;
    --text-lighter: #8a8a8a;
    --bg-color: #fafafa;
    --bg-light: #f5f5f5;
    --bg-lighter: #eeeeee;
    --bg-dark: #2c2c2c;
    --bg-darker: #1a1a1a;
    --border-color: #d0d0d0;
    --border-light: #e5e5e5;
    --success-color: #27ae60;
    --error-color: #c0392b;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 30px rgba(0, 0, 0, 0.18);
    --transition: all 0.4s ease-out;
    --transition-fast: all 0.2s ease;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', 'Work Sans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header - Top Bar Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: var(--bg-color);
    border-bottom: 2px solid var(--border-color);
    z-index: 1000;
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.375rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo:hover {
    opacity: 0.7;
}

.logo i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-link {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 1rem 1.5rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Main Content */
.main-content {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
}

/* CTA Banner - Full Width Block */
.cta-banner {
    background: var(--primary-color);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-banner-title {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-banner-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.cta-banner-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Split Layout */
.hero-split {
    padding: 8rem 0;
    background: var(--bg-color);
}

.hero-split-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-split-content {
    padding-top: 2rem;
}

.hero-split-title {
    font-size: 4.5rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-color);
}

.hero-split-subtitle {
    font-size: 1.375rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-split-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.stat-item {
    background: var(--bg-color);
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.stat-item:hover::before {
    transform: scaleY(1);
}

.stat-item:hover {
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Testimonials - Asymmetric Layout */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--bg-color);
    padding: 3.5rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    order: 1;
}

.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 0;
    object-fit: cover;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-photo {
    border-color: var(--primary-color);
}

.testimonial-author-content h4 {
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.125rem;
    letter-spacing: 0.01em;
}

.testimonial-role {
    color: var(--text-lighter);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.2;
    order: 2;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.0625rem;
    order: 3;
    font-weight: 300;
}

/* Services Preview - Asymmetric List */
.services-preview {
    padding: 8rem 0;
    background: var(--bg-color);
}

.services-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.services-header-content {
    flex: 1;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-item {
    background: var(--bg-light);
    padding: 3rem;
    border: 2px solid var(--border-color);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.service-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.service-item:hover::after {
    transform: scaleY(1);
}

.service-item:hover {
    border-color: var(--primary-color);
}

.service-item-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-item:hover .service-item-icon {
    background: var(--primary-dark);
}

.service-item-content {
    flex: 1;
}

.service-item-title {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.service-item-text {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 0;
    font-weight: 300;
    font-size: 1.0625rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 300;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.service-item-link {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-item-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Features - Grid Layout */
.features {
    padding: 8rem 0;
    background: var(--bg-light);
}

.features-large-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-large-card {
    background: var(--bg-color);
    padding: 4rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.feature-large-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.feature-large-card:hover::before {
    transform: scaleY(1);
}

.feature-large-card:hover {
    border-color: var(--primary-color);
}

.feature-large-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.feature-large-card:hover .feature-large-icon {
    background: var(--primary-dark);
}

.feature-large-title {
    font-size: 1.875rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.feature-large-text {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.0625rem;
    font-weight: 300;
}

/* Sections */
.section {
    padding: 8rem 0;
}

.section-light {
    background: var(--bg-light);
}

.section-header {
    text-align: left;
    margin-bottom: 5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-white {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-white:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 0.9375rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Page Hero */
.page-hero {
    background: var(--primary-color);
    color: white;
    padding: 10rem 0 6rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    max-width: 1400px;
    padding: 0 40px;
}

.page-title {
    font-size: 4rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.375rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 300;
    line-height: 1.8;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--bg-color);
    padding: 4rem;
    border: 2px solid var(--border-color);
}

.contact-form-wrapper .section-title,
.contact-info-wrapper .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Work Sans', sans-serif;
    background: var(--bg-color);
    font-weight: 300;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form-textarea {
    resize: vertical;
    min-height: 160px;
    font-family: 'Work Sans', sans-serif;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.form-checkbox input {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-error {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    min-height: 1.2rem;
}

.form-success {
    background: var(--success-color);
    color: white;
    padding: 3rem;
    border: 2px solid var(--success-color);
    text-align: center;
    margin-top: 2rem;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-info {
    margin-bottom: 0;
}

.contact-info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    background: var(--primary-dark);
}

.contact-info-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.contact-info-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.contact-info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-info-note {
    font-size: 0.875rem;
    color: var(--text-lighter);
    font-weight: 300;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.375rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo i {
    color: white;
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    font-weight: 300;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 1rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}

.footer-menu a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 300;
}

.footer-contact i {
    color: white;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 300;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    color: white;
    padding: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 0 40px;
}

.cookie-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    font-weight: 300;
}

.cookie-text a {
    color: white;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1.5rem;
}

/* About Page */
.about-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-text-content {
    background: var(--bg-light);
    padding: 5rem;
    border: 2px solid var(--border-color);
}

.about-text {
    margin-top: 3rem;
}

.about-text p {
    font-size: 1.1875rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-card {
    background: var(--bg-color);
    padding: 4rem;
    border: 2px solid var(--border-color);
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    border-color: var(--primary-color);
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 0;
    object-fit: cover;
    margin: 0 0 2rem 0;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover .team-photo {
    border-color: var(--primary-color);
}

.team-name {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.team-role {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-description {
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 300;
    font-size: 1.0625rem;
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .hero-split-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-split-title {
        font-size: 3.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 1rem 0;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .nav-list {
        width: 100%;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-link {
        padding: 0.875rem 1rem;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1002;
        background: var(--bg-color);
        padding: 1rem;
        border: 2px solid var(--border-color);
    }
    
    .header {
        position: fixed;
        left: -100%;
        width: 100%;
        height: 100vh;
        top: 0;
        transition: left 0.4s ease;
        overflow-y: auto;
    }
    
    .header.active {
        left: 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .cta-banner-content,
    .hero-split-wrapper,
    .services-header-wrapper,
    .services-list,
    .section-header,
    .testimonials-grid,
    .features-large-grid,
    .contact-wrapper,
    .about-content-wrapper,
    .team-grid,
    .footer-content {
        padding: 0 20px;
    }
    
    .cta-banner {
        padding: 5rem 0;
    }
    
    .cta-banner-title {
        font-size: 2.5rem;
    }
    
    .hero-split {
        padding: 5rem 0;
    }
    
    .hero-split-title {
        font-size: 2.5rem;
    }
    
    .features-large-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .services-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-hero {
        padding: 6rem 0 4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-banner-title {
        font-size: 2rem;
    }
    
    .hero-split-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.8125rem;
    }
    
    .btn-large {
        padding: 1rem 2.5rem;
        font-size: 0.875rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper,
    .about-text-content {
        padding: 2.5rem;
    }
}