:root {
    --navy: #0B2545;
    --teal: #1A7A8A;
    --teal-light: #2A9BAD;
    --sky: #E8F4F8;
    --mint: #D4EDE1;
    --gold: #C8973A;
    --white: #FAFCFD;
    --slate: #4A5568;
    --muted: #718096;
    --border: #D1E3EC;
    --section-bg: #F0F7FA;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--navy);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
.serif {
    font-family: 'Cormorant Garamond', serif;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.15;
}

/* ─── NAVIGATION ─── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11,37,69,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .logo-mark::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: white;
        box-shadow: 0 5px 0 white, 0 -5px 0 rgba(255,255,255,0.5);
        border-radius: 2px;
    }

.logo-text {
    color: white;
}

    .logo-text span {
        display: block;
    }

    .logo-text .brand {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .logo-text .tagline {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--teal-light);
        font-weight: 500;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
}

    .nav-links a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 0.82rem;
        letter-spacing: 0.04em;
        padding: 0.5rem 0.85rem;
        border-radius: 6px;
        transition: all 0.2s;
        font-weight: 500;
    }

        .nav-links a:hover {
            color: white;
            background: rgba(255,255,255,0.08);
        }

.nav-cta {
    background: var(--teal) !important;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 6px !important;
}

    .nav-cta:hover {
        background: var(--teal-light) !important;
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s;
    }

/* ─── HERO ─── */
#home {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,122,138,0.18) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,122,138,0.1) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-dna {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    opacity: 0.06;
    background: radial-gradient(circle at 50% 50%, var(--teal) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 120px 2rem 80px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,122,138,0.15);
    border: 1px solid rgba(26,122,138,0.35);
    color: var(--teal-light);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--teal-light);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: white;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

    .hero-title em {
        font-style: italic;
        background: linear-gradient(135deg, var(--teal-light), #7ECEDA);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-primary {
    background: var(--teal);
    color: white;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: var(--teal-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(26,122,138,0.35);
    }

.btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.85);
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-secondary:hover {
        border-color: rgba(255,255,255,0.4);
        background: rgba(255,255,255,0.05);
    }

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    border-left: 2px solid var(--teal);
    padding-left: 1rem;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hero card panel */
.hero-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.panel-title {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.panel-services {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.panel-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    transition: all 0.2s;
}

    .panel-service:hover {
        background: rgba(26,122,138,0.12);
        border-color: rgba(26,122,138,0.3);
    }

.service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-light);
    flex-shrink: 0;
}

    .service-dot.gold {
        background: var(--gold);
    }

    .service-dot.mint {
        background: #5BC8A0;
    }

.panel-service span {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.panel-langs {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.langs-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.75rem;
}

.lang-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lang-tag {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.65);
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ─── SECTION BASE ─── */
section {
    padding: 5rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .section-label::before {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background: var(--teal);
        border-radius: 2px;
    }

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--slate);
    max-width: 620px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 3.5rem;
}

/* ─── KEY HIGHLIGHTS ─── */
#highlights {
    background: var(--section-bg);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.8rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .highlight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--teal-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s;
    }

    .highlight-card:hover {
        box-shadow: 0 12px 40px rgba(11,37,69,0.1);
        transform: translateY(-3px);
    }

        .highlight-card:hover::before {
            transform: scaleX(1);
        }

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--sky);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.7;
}

/* ─── ABOUT ─── */
#about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 16px;
    padding: 3rem 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

    .about-img-wrap::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
        bottom: -60px;
        right: -60px;
    }

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    position: relative;
}

    .about-quote::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: -10px;
        font-size: 5rem;
        color: rgba(255,255,255,0.1);
        font-family: 'Cormorant Garamond', serif;
        line-height: 1;
    }

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--section-bg);
    border-radius: 10px;
    border-left: 3px solid var(--teal);
}

.value-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.value-text {
    font-size: 0.83rem;
    color: var(--slate);
}

/* ─── SERVICES ─── */
#services {
    background: var(--section-bg);
}

.services-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    padding: 0.75rem 1.2rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
}

    .tab-btn.active {
        color: var(--teal);
        border-bottom-color: var(--teal);
        font-weight: 600;
    }

    .tab-btn:hover {
        color: var(--navy);
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

.service-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.service-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.service-block-desc {
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 1.2rem;
}

.service-examples {
    list-style: none;
}

    .service-examples li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.83rem;
        color: var(--slate);
        padding: 5px 0;
    }

        .service-examples li::before {
            content: '→';
            color: var(--teal);
            font-size: 0.8rem;
            flex-shrink: 0;
        }

/* ─── INDUSTRIES ─── */
#industries {
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.industry-card {
    text-align: center;
    padding: 2rem 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: default;
    background: white;
}

    .industry-card:hover {
        background: var(--navy);
        border-color: var(--navy);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(11,37,69,0.15);
    }

        .industry-card:hover .ind-icon {
            background: rgba(255,255,255,0.1);
        }

        .industry-card:hover .ind-name {
            color: white;
        }

        .industry-card:hover .ind-sub {
            color: rgba(255,255,255,0.5);
        }

.ind-icon {
    width: 56px;
    height: 56px;
    background: var(--sky);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.ind-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
    transition: all 0.3s;
}

.ind-sub {
    font-size: 0.75rem;
    color: var(--muted);
    transition: all 0.3s;
}

/* ─── LANGUAGES ─── */
#languages {
    background: var(--section-bg);
}

.lang-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.lang-group-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .lang-group-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.lang-pairs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lang-pair {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    transition: all 0.2s;
}

    .lang-pair:hover {
        border-color: var(--teal);
        background: var(--sky);
    }

.lang-name {
    flex: 1;
    font-weight: 500;
    color: var(--navy);
}

.lang-arrow {
    color: var(--teal);
    font-size: 0.8rem;
    margin: 0 0.5rem;
    font-weight: 600;
}

.lang-en {
    color: var(--muted);
    font-size: 0.8rem;
}

/* ─── QUALITY ─── */
#quality {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
}

    #quality::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 80% 20%, rgba(26,122,138,0.15), transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(26,122,138,0.1), transparent 40%);
    }

    #quality .section-label {
        color: var(--teal-light);
    }

    #quality .section-title {
        color: white;
    }

    #quality .section-sub {
        color: rgba(255,255,255,0.6);
    }

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 1.2rem;
    position: relative;
    padding-bottom: 1.8rem;
}

    .process-step:last-child {
        padding-bottom: 0;
    }

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-line {
    flex: 1;
    width: 1px;
    background: rgba(255,255,255,0.1);
    margin: 4px 0;
}

.process-step:last-child .step-line {
    display: none;
}

.step-content {
    padding-top: 7px;
}

.step-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.step-text {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.confidentiality-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.conf-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.conf-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
}

.conf-checks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.conf-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
}

.check-icon {
    color: #5BC8A0;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── CONTACT ─── */
#contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
}

.contact-fact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

.contact-fact-icon {
    width: 44px;
    height: 44px;
    background: var(--sky);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-fact-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 3px;
}

.contact-fact-val {
    font-weight: 500;
    color: var(--navy);
    font-size: 0.9rem;
}

.quote-form {
    background: var(--section-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.form-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.03em;
}

input, select, textarea {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(26,122,138,0.12);
    }

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    margin-top: 1.5rem;
    width: 100%;
    background: var(--navy);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .form-submit:hover {
        background: var(--teal);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(26,122,138,0.3);
    }

/* ─── FOOTER ─── */
footer {
    background: #07192E;
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text .brand {
    font-size: 1.4rem;
}

.footer-desc {
    font-size: 0.83rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
    max-width: 280px;
}

.footer-col-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .footer-links a {
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--teal-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
}

/* ─── MOBILE NAV OPEN ─── */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy);
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        padding: 0.75rem 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-weight: 500;
    }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .lang-split {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tab-content.active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.2rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .hero-content {
        padding: 100px 1.5rem 60px;
    }
}
