/* =============================================================
   LanguageArts — Modern Design System
   Premium dark + light. Brand: teal + gold, refined.
   ============================================================= */

/* ----------  Tokens  ---------- */
:root {
    /* Brand navy / ink */
    --ink-900: #07182a;
    --ink-800: #0b2236;
    --ink-700: #103049;
    --ink-600: #16466a;

    /* Teal (from logo, refined) */
    --teal-50:  #eef7fa;
    --teal-100: #d6edf2;
    --teal-200: #a8d2dc;
    --teal-400: #5fb1c6;
    --teal-500: #3f9fb8;
    --teal-600: #2c869e;
    --teal-700: #226c80;

    /* Gold (from logo, refined) */
    --gold-200: #f7eebd;
    --gold-300: #f1e08a;
    --gold-400: #ecd25e;
    --gold-500: #e5c84a;
    --gold-600: #d2af2c;
    --gold-700: #a4831a;

    /* Neutrals */
    --bg:       #ffffff;
    --bg-soft:  #f4f8fa;
    --bg-mute:  #eaf1f4;
    --text:     #122a3a;
    --muted:    #587387;
    --line:     #e2ebf0;
    --line-dk:  rgba(255, 255, 255, .12);

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(16, 48, 73, .06), 0 1px 3px rgba(16, 48, 73, .08);
    --shadow-md: 0 8px 24px rgba(16, 48, 73, .10);
    --shadow-lg: 0 24px 60px rgba(8, 24, 42, .18);
    --radius:    16px;
    --radius-sm: 12px;
    --radius-lg: 24px;

    --container: 1180px;
    --gutter: clamp(20px, 4vw, 40px);
    --section-y: clamp(64px, 8vw, 116px);

    --ff-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-700); }

h1, h2, h3, h4, h5 {
    font-family: var(--ff-head);
    color: var(--ink-800);
    line-height: 1.15;
    margin: 0 0 .6em;
    font-weight: 800;
    letter-spacing: -.02em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; }

:focus-visible { outline: 3px solid var(--teal-400); outline-offset: 2px; border-radius: 4px; }

/* ----------  Layout helpers  ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.container-narrow { max-width: 860px; }

.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--mute { background: var(--bg-mute); }
.section--ink {
    background: var(--ink-800);
    color: #d9e6ef;
    background-image: radial-gradient(120% 120% at 0% 0%, rgba(63, 159, 184, .18), transparent 55%),
                      radial-gradient(120% 120% at 100% 100%, rgba(229, 200, 74, .10), transparent 55%);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ----------  Typography utilities  ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 26px; height: 2px;
    background: var(--gold-500);
    border-radius: 2px;
}
.section--ink .eyebrow { color: var(--gold-400); }
.section--ink .eyebrow::before { background: var(--teal-400); }

.display {
    font-size: clamp(2.3rem, 1.3rem + 3.4vw, 3.7rem);
    line-height: 1.06;
}
.h2 { font-size: clamp(1.85rem, 1.2rem + 2.1vw, 2.7rem); }
.lead {
    font-size: clamp(1.08rem, 1rem + .4vw, 1.28rem);
    line-height: 1.65;
    color: var(--muted);
}
.section--ink .lead { color: #b9cdda; }

.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.text-center { text-align: center; }

/* ----------  Buttons  ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    padding: 16px 28px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--gold-500); color: var(--ink-900); box-shadow: 0 10px 24px rgba(210, 175, 44, .35); }
.btn-primary:hover { background: var(--gold-400); color: var(--ink-900); box-shadow: 0 14px 30px rgba(210, 175, 44, .45); }

.btn-teal { background: var(--teal-500); color: #fff; box-shadow: 0 10px 24px rgba(44, 134, 158, .3); }
.btn-teal:hover { background: var(--teal-600); color: #fff; }

.btn-dark { background: var(--ink-800); color: #fff; }
.btn-dark:hover { background: var(--ink-700); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink-800); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal-400); color: var(--teal-700); }

.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ----------  Header  ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(9, 27, 45, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled { background: rgba(7, 21, 36, .98); box-shadow: 0 10px 30px rgba(0,0,0,.25); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 80px;
    transition: height .3s ease;
}
.site-header.scrolled .nav { height: 68px; }

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 190px; max-width: 46vw; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: .98rem;
    color: #cdddea;
    padding: 10px 16px;
    border-radius: 10px;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: #fff; }
.nav-menu > li > a .caret { width: 14px; height: 14px; opacity: .7; transition: transform .2s ease; }
.nav-menu > li:hover > a .caret { transform: rotate(180deg); }

/* dropdown */
.has-sub > .submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 250px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease;
}
/* transparent bridge so the menu doesn't close in the gap between link and submenu */
.has-sub > .submenu::before {
    content: "";
    position: absolute;
    left: -10px; right: -10px;
    top: -16px;
    height: 18px;
}
.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu li a {
    display: block;
    padding: 10px 14px;
    border-radius: 9px;
    color: var(--text);
    font-weight: 600;
    font-size: .95rem;
    font-family: var(--ff-head);
}
.submenu li a:hover { background: var(--teal-50); color: var(--teal-700); }

.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cdddea;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: .98rem;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--gold-400); }
.nav-phone:hover { color: #fff; }

.nav-toggle {
    display: none;
    width: 46px; height: 46px;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* mobile drawer */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: var(--ink-900);
    background-image: radial-gradient(110% 90% at 100% 0%, rgba(63,159,184,.22), transparent 60%);
    padding: 26px var(--gutter) 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.16,1,.3,1);
    display: flex;
    flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-nav__top img { width: 170px; }
.mobile-close {
    width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px; color: #fff; cursor: pointer;
}
.mobile-close svg { width: 24px; height: 24px; }
.mobile-menu { list-style: none; }
.mobile-menu > li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu a { display: block; color: #e7f0f6; font-family: var(--ff-head); font-weight: 700; font-size: 1.22rem; padding: 16px 4px; }
.mobile-menu a:hover { color: var(--gold-400); }
.mobile-menu .sub { list-style: none; padding-left: 14px; margin-bottom: 8px; }
.mobile-menu .sub a { font-size: 1rem; font-weight: 600; color: #aac3d2; padding: 9px 4px; }
.mobile-nav__foot { margin-top: auto; padding-top: 26px; color: #9fb8c8; }
.mobile-nav__foot .btn { margin-bottom: 18px; }
.mobile-nav__foot p { margin: 4px 0; font-size: .95rem; }

body.nav-open { overflow: hidden; }

/* ----------  Hero  ---------- */
.hero {
    position: relative;
    padding-top: clamp(132px, 14vw, 180px);
    padding-bottom: clamp(80px, 9vw, 128px);
    color: #e7f1f7;
    background: linear-gradient(135deg, #061523 0%, #0b2236 35%, #103a52 65%, #0a2336 100%);
    background-size: 220% 220%;
    animation: heroGradient 20s ease infinite;
    overflow: hidden;
}
@keyframes heroGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero::before {
    content: "";
    position: absolute;
    top: -20%; right: -10%;
    width: 60vw; height: 60vw;
    max-width: 760px; max-height: 760px;
    background: radial-gradient(circle, rgba(63,159,184,.40), transparent 65%);
    filter: blur(10px);
    pointer-events: none;
    animation: blobA 16s ease-in-out infinite;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -25%; left: -10%;
    width: 50vw; height: 50vw;
    max-width: 620px; max-height: 620px;
    background: radial-gradient(circle, rgba(229,200,74,.16), transparent 65%);
    pointer-events: none;
    animation: blobB 19s ease-in-out infinite;
}
@keyframes blobA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-40px, 36px) scale(1.12); }
}
@keyframes blobB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(46px, -30px) scale(1.15); }
}
.hero .container { position: relative; z-index: 3; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: center;
}
.hero h1 { color: #fff; font-size: clamp(2.4rem, 1.2rem + 3.8vw, 4rem); margin-bottom: 22px; }
.hero h1 .hl { color: var(--gold-400); }
.hero-lead { font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem); color: #bcd2e0; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.hero-badges span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .9rem; font-weight: 600; color: #aec6d5;
    font-family: var(--ff-head);
}
.hero-badges svg { width: 16px; height: 16px; color: var(--teal-400); }

/* hero media */
.hero-media { position: relative; }
.hero-media__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.14);
}
.hero-media__img img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.hero-chip {
    position: absolute;
    background: #fff;
    color: var(--ink-800);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-chip .ico {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    display: grid; place-items: center; color: #fff;
}
.hero-chip .ico svg { width: 22px; height: 22px; }
.hero-chip strong { font-family: var(--ff-head); font-size: 1.15rem; display: block; line-height: 1.1; }
.hero-chip small { color: var(--muted); font-size: .82rem; }
.hero-chip--tl { top: 22px; left: -26px; }
.hero-chip--br { bottom: 24px; right: -22px; }
.hero-chip--tl .ico { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.hero-chip--br .ico { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: var(--ink-900); }

/* ----------  Hero — splashy motion  ---------- */

/* floating multilingual greeting bubbles */
.hero-fx { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.bubble {
    position: absolute;
    display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: #e2eef6;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: .95rem;
    white-space: nowrap;
    opacity: 0;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
    animation: bubbleIn .9s ease forwards,
               bubbleFloat var(--dur, 9s) ease-in-out infinite;
    animation-delay: var(--delay, 0s), calc(var(--delay, 0s) + .9s);
}
.bubble::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 10px var(--teal-400); }
.bubble:nth-child(2n)::before { background: var(--gold-400); box-shadow: 0 0 10px var(--gold-400); }
.bubble--sm { font-size: .82rem; padding: 7px 13px; opacity: .8; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(18px) scale(.92); } to { opacity: .9; transform: translateY(0) scale(1); } }
@keyframes bubbleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

/* staggered entrance for hero content */
.hero-anim { opacity: 0; animation: heroUp .9s cubic-bezier(.16, 1, .3, 1) forwards; animation-delay: var(--d, 0s); }
@keyframes heroUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }

/* animated underline under the gold highlight */
.hero h1 .hl { position: relative; display: inline-block; }
.hero h1 .hl::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: .04em;
    height: .09em; border-radius: 6px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    transform: scaleX(0); transform-origin: left;
    animation: drawLine .8s cubic-bezier(.16, 1, .3, 1) 1.05s forwards;
}
@keyframes drawLine { to { transform: scaleX(1); } }

/* hero image gentle float */
.hero-media__img { animation: floatY 7s ease-in-out 1.25s infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* chips pop in, then bob; live pulse ring */
.hero-chip { opacity: 0; animation: chipPop .7s cubic-bezier(.34, 1.56, .64, 1) forwards, chipBob var(--bob, 6s) ease-in-out infinite; animation-delay: var(--d, 1s), calc(var(--d, 1s) + .7s); }
.hero-chip--tl { --d: .95s; --bob: 6.5s; }
.hero-chip--br { --d: 1.2s; --bob: 5.5s; }
@keyframes chipPop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: none; } }
@keyframes chipBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-chip--br .ico { animation: livePulse 2.2s ease-out infinite; }
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(229, 200, 74, .55); }
    70%  { box-shadow: 0 0 0 14px rgba(229, 200, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 200, 74, 0); }
}

/* scroll cue */
.hero-scroll {
    position: absolute; left: 50%; bottom: 22px; z-index: 3;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: #9fbccb; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    font-family: var(--ff-head); font-weight: 600;
    opacity: 0; animation: heroUp .9s ease 1.4s forwards;
}
.hero-scroll svg { width: 20px; height: 20px; animation: scrollBounce 1.8s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (prefers-reduced-motion: reduce) {
    .hero, .hero::before, .hero::after,
    .bubble, .hero-anim, .hero h1 .hl::after,
    .hero-media__img, .hero-chip, .hero-chip--br .ico, .hero-scroll, .hero-scroll svg {
        animation: none !important;
    }
    .hero-anim, .hero-chip, .hero-scroll { opacity: 1; }
    .bubble { opacity: .85; }
    .hero h1 .hl::after { transform: scaleX(1); }
}

@media (max-width: 560px) {
    .hero-scroll, .hero-fx { display: none; }
}

/* ----------  Logo / trust strip  ---------- */
.trust-strip { padding-block: clamp(34px, 5vw, 52px); border-bottom: 1px solid var(--line); }
.trust-strip__label { text-align: center; color: var(--muted); font-weight: 600; font-size: .9rem; letter-spacing: .04em; margin-bottom: 22px; }
.trust-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; }
.chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: .92rem;
    color: var(--ink-700);
}
.chip svg { width: 16px; height: 16px; color: var(--teal-500); }

/* ----------  Service cards  ---------- */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
a.card { color: inherit; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.card__icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: grid; place-items: center;
    margin-bottom: 22px;
    background: var(--teal-50);
    color: var(--teal-600);
}
.card__icon svg { width: 30px; height: 30px; }
.card:nth-child(2n) .card__icon { background: #fbf4d8; color: var(--gold-700); }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 1rem; margin-bottom: 18px; }
.card__link {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--ff-head); font-weight: 700; font-size: .95rem;
    color: var(--teal-600);
}
.card__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ----------  Split feature  ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.feature-list { list-style: none; margin-top: 26px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list .fi {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
    display: grid; place-items: center;
    background: var(--teal-50); color: var(--teal-600);
}
.section--ink .feature-list .fi { background: rgba(63,159,184,.18); color: var(--teal-200); }
.feature-list .fi svg { width: 18px; height: 18px; }
.feature-list h4 { margin: 2px 0 4px; font-size: 1.08rem; }
.feature-list p { margin: 0; color: var(--muted); font-size: .98rem; }
.section--ink .feature-list p { color: #a9c1d0; }

/* ----------  Stats band  ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 30px); }
.stat { text-align: center; padding: 8px; }
.stat__num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.2rem, 1.4rem + 2.2vw, 3.2rem); color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat__num .u { color: var(--gold-400); }
.stat__label { margin-top: 12px; color: #aac1d1; font-size: .98rem; font-weight: 500; }

/* ----------  Industries  ---------- */
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ind {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ind:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.ind .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--teal-50); color: var(--teal-600); flex-shrink: 0; }
.ind .ico svg { width: 24px; height: 24px; }
.ind span { font-family: var(--ff-head); font-weight: 700; color: var(--ink-700); font-size: 1.05rem; }

/* ----------  Language grid  ---------- */
.lang-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.lang-grid {
    column-count: 5;
    column-gap: 28px;
    font-size: .98rem;
}
.lang-grid li {
    list-style: none;
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--text);
    break-inside: avoid;
}
.lang-grid li::before {
    content: "";
    position: absolute; left: 0; top: 13px;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--teal-400);
}

/* ----------  CTA band  ---------- */
.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink-800), var(--teal-700));
    border-radius: clamp(20px, 3vw, 32px);
    padding: clamp(40px, 6vw, 70px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    color: #fff;
}
.cta-band::after {
    content: "";
    position: absolute; right: -60px; top: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle, rgba(229,200,74,.28), transparent 70%);
}
.cta-band__text { position: relative; z-index: 1; max-width: 640px; }
.cta-band h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem); }
.cta-band p { color: #cfe1ec; margin: 0; }
.cta-band__actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

/* ----------  Page hero (inner)  ---------- */
.page-hero {
    position: relative;
    padding-top: clamp(130px, 15vw, 180px);
    padding-bottom: clamp(48px, 6vw, 80px);
    color: #e7f1f7;
    background: linear-gradient(155deg, var(--ink-900), var(--ink-700));
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(80% 120% at 100% 0%, rgba(63,159,184,.28), transparent 55%);
}
.page-hero.has-photo::after {
    content: "";
    position: absolute; inset: 0;
    background: var(--hero-photo) center/cover no-repeat;
    opacity: .16;
    mix-blend-mode: luminosity;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { display: flex; justify-content: center; gap: 8px; align-items: center; color: #9fbccb; font-size: .9rem; font-weight: 600; margin-bottom: 18px; }
.page-hero .breadcrumb a { color: var(--gold-400); }
.page-hero .breadcrumb span { opacity: .5; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 1.3rem + 3vw, 3.4rem); margin-bottom: 18px; }
.page-hero .lead { color: #c2d6e2; max-width: 760px; margin-inline: auto; }

/* ----------  Prose blocks  ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose p { font-size: 1.12rem; color: #38566a; }
.prose.center { text-align: center; }

/* ----------  Forms  ---------- */
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px);
    box-shadow: var(--shadow-md);
    max-width: 820px;
    margin-inline: auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--ink-700); margin-bottom: 7px; }
.field input,
.field textarea {
    font-family: var(--ff-body);
    font-size: 1rem;
    color: var(--text);
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--bg-soft);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #93a8b6; }
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--teal-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(63,159,184,.14);
}
.field input.error, .field textarea.error { border-color: #e05a5a; background: #fdf3f3; }
.form-actions { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: .9rem; color: var(--muted); }
.form-status { font-family: var(--ff-head); font-weight: 700; font-size: .95rem; }
.form-status.ok { color: var(--teal-600); }
.form-status.bad { color: #d64545; }

.contact-cols { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-cols .form-card { margin: 0; max-width: none; }

.contact-info { display: grid; gap: 16px; margin-bottom: 36px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info__item .ico { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--teal-50); color: var(--teal-600); }
.contact-info__item .ico svg { width: 22px; height: 22px; }
.contact-info__item .lbl { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.contact-info__item a, .contact-info__item span { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; color: var(--ink-800); }

/* ----------  Certifications  ---------- */
.certs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cert {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 18px;
    box-shadow: var(--shadow-sm);
}
.cert .badge {
    width: 64px; height: 64px; margin: 0 auto 16px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    color: #fff;
}
.cert:nth-child(2n) .badge { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: var(--ink-900); }
.cert .badge svg { width: 32px; height: 32px; }
.cert strong { font-family: var(--ff-head); font-size: 1.12rem; color: var(--ink-800); display: block; }
.cert small { color: var(--muted); font-size: .88rem; }

/* ----------  Footer  ---------- */
.site-footer {
    background: var(--ink-900);
    color: #9fb8c8;
    padding-top: clamp(56px, 7vw, 84px);
    background-image: radial-gradient(90% 120% at 0% 0%, rgba(63,159,184,.10), transparent 55%);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    padding-bottom: 48px;
}
.footer-brand img { width: 200px; margin-bottom: 22px; }
.footer-brand p { max-width: 360px; color: #92acbd; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: #9fb8c8; font-size: .98rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--teal-400); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-block: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: .9rem;
}
.footer-bottom .links { display: flex; gap: 18px; flex-wrap: wrap; }
.cookie-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    color: #9fb8c8;
    border-radius: 999px;
    padding: 8px 16px;
    font-family: var(--ff-head);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}
.cookie-btn:hover { border-color: var(--teal-400); color: #fff; }

/* ----------  Back to top  ---------- */
.to-top {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--gold-500);
    color: var(--ink-900);
    display: grid; place-items: center;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: all .3s ease;
    z-index: 900;
    border: none; cursor: pointer;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-400); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

/* ----------  Reveal animation  ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ----------  Responsive  ---------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { max-width: 520px; margin-inline: auto; }
    .lang-grid { column-count: 4; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    .nav-menu, .nav-phone, .nav-cta > .btn-primary { display: none; }
    .nav-toggle { display: inline-flex; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .contact-cols { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
    .industries { grid-template-columns: repeat(2, 1fr); }
    .certs { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .lang-grid { column-count: 3; }
    .hero-chip--tl { left: 0; }
    .hero-chip--br { right: 0; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .grid-4, .grid-2 { grid-template-columns: 1fr; }
    .industries { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .lang-grid { column-count: 2; }
    .cta-band { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn, .cta-band__actions .btn { flex: 1 1 auto; }
    .hero-chip { display: none; }
    .stat__num { font-size: 2.4rem; }
}

/* ----------  5-up service grid (Home “What we do”)  ---------- */
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ----------  Capability statement panel (Home)  ---------- */
.cap-panel {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: clamp(18px, 2.4vw, 26px);
    padding: clamp(28px, 4vw, 46px);
}
.cap-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.cap-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-weight: 500; }
.cap-list li svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--teal-500); margin-top: 1px; }
.cap-panel__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cap-panel__cta .btn svg { width: 20px; height: 20px; }
.cap-panel__meta { color: var(--muted); font-size: .85rem; }

/* ----------  Testing & Training page  ---------- */
.tt-acr {
    display: inline-block;
    font-family: var(--ff-head);
    font-weight: 700; font-size: .72rem; letter-spacing: .04em;
    color: var(--teal-700); background: var(--teal-50);
    border-radius: 6px; padding: 2px 8px; margin-left: 8px;
    vertical-align: middle;
}

@media (max-width: 1100px) {
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .cap-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .grid-5 { grid-template-columns: 1fr; }
}
