/* ===========================================================================
   Flexility GmbH – Corporate Stylesheet
   Helles, seriöses Konzept: dunkle Bänder oben (Header/Hero) & unten
   (CTA/Footer), heller Inhaltsbereich (dunkle Schrift auf hell).
   Akzent: gedämpftes Violett · Schrift: Inter
   ======================================================================== */

:root {
    /* Marke / Akzent */
    --violet:        #7c2fb5;   /* Primär-Akzent auf hell (Buttons, Links) */
    --violet-600:    #6a279c;
    --violet-700:    #571f80;
    --violet-soft:   #f3ecfb;   /* helle Akzentfläche (Icon-Chips, Badges) */
    --violet-line:   #e6dcf6;
    --violet-ring:   rgba(124, 47, 181, .16);
    --dot:           #ce59ff;   /* Logo-Punkt / heller Akzent auf dunkel */

    /* Helle Flächen (Inhaltsbereich) */
    --page:          #f6f5f9;   /* Seitenhintergrund */
    --surface:       #ffffff;   /* Karten */
    --surface-alt:   #f1edf8;   /* alternierende Abschnitte (weiches Lavendel) */
    --text:          #1c1726;   /* Fließtext, fast schwarz */
    --heading:       #140f1d;   /* Überschriften */
    --muted:         #5b5566;   /* gedämpfter Text auf hell */
    --muted-2:       #847d92;
    --border:        #e7e3ef;   /* feine Linien auf hell */
    --border-strong: #d6cfe4;

    /* Aliase für Inline-Styles in den Seiten (bg-2 = alt-Fläche) */
    --bg-2:          var(--surface-alt);
    --purple-300:    var(--violet);   /* Inline-Links im Content */

    /* Dunkle Bänder (Header / Hero / CTA / Footer) */
    --dark:          #1a1422;   /* Basis Aubergine-Dunkel */
    --dark-2:        #221a2d;   /* dunkle Karten */
    --dark-3:        #2c2239;
    --dark-text:     #f4f1f8;
    --dark-muted:    #b9b0c6;
    --dark-border:   rgba(255, 255, 255, .10);
    --dark-border-2: rgba(255, 255, 255, .18);

    --maxw:          1180px;
    --radius:        16px;
    --radius-sm:     10px;
    --shadow-sm:     0 1px 2px rgba(20, 12, 30, .05), 0 2px 6px rgba(20, 12, 30, .05);
    --shadow:        0 14px 36px -16px rgba(40, 24, 60, .25);
    --shadow-lg:     0 28px 64px -24px rgba(40, 24, 60, .30);
    --ease:          cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--page);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
.icon { width: 18px; height: 18px; }
.tag svg { width: 14px; height: 14px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--violet); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; letter-spacing: -.015em; color: var(--heading); }
h1 { font-size: clamp(1.95rem, 3.6vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h3 { font-size: 1.18rem; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--violet);
    padding: 6px 13px; border: 1px solid var(--violet-line); border-radius: 999px;
    background: var(--violet-soft);
}
.lead { color: var(--muted); font-size: 1.1rem; max-width: 62ch; }
.text-gradient { color: var(--dot); }   /* nur in dunklen Heroes verwendet */

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 16px 0 14px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 1rem; line-height: 1;
    padding: 14px 24px; border-radius: 11px; border: 1px solid transparent;
    cursor: pointer; transition: transform .25s var(--ease), background .2s, box-shadow .25s, border-color .2s, color .2s;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--violet); color: #fff; box-shadow: 0 8px 22px -10px rgba(124, 47, 181, .55); }
.btn-primary:hover { background: var(--violet-600); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(124, 47, 181, .6); }
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); background: var(--violet-soft); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* Buttons auf dunklen Bändern */
.hero .btn-ghost, .page-hero .btn-ghost, .cta-inner .btn-ghost { color: #fff; border-color: var(--dark-border-2); }
.hero .btn-ghost:hover, .page-hero .btn-ghost:hover, .cta-inner .btn-ghost:hover { background: rgba(255, 255, 255, .08); border-color: #fff; color: #fff; }

/* ===========================================================================
   Header (dunkles Band)
   ======================================================================== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(26, 20, 34, .82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s;
}
.site-header.scrolled { background: rgba(22, 17, 29, .95); border-bottom-color: var(--dark-border); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }

.brand { display: inline-flex; align-items: baseline; font-family: 'Inter', system-ui, sans-serif; font-weight: 700; font-size: 1.5rem; letter-spacing: normal; color: #fff; transition: opacity .2s; }
.brand:hover { opacity: .82; }
.brand-dot { color: var(--dot); }

.main-nav { display: flex; gap: 2px; margin-left: auto; }
.nav-link {
    font-weight: 500; font-size: .95rem; color: var(--dark-muted);
    padding: 9px 14px; border-radius: 9px; transition: color .2s, background .2s; position: relative;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.nav-link.is-active { color: #fff; }
.nav-link.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px; background: var(--dot); border-radius: 2px; }
.nav-cta { padding: 11px 20px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 14px 24px 26px; border-top: 1px solid var(--dark-border); background: var(--dark); }
.mobile-link { padding: 13px 14px; border-radius: 10px; font-weight: 500; color: var(--dark-muted); }
.mobile-link:hover, .mobile-link.is-active { color: #fff; background: rgba(255, 255, 255, .06); }
.mobile-cta { margin-top: 10px; }

/* ===========================================================================
   Hero (dunkles Band)
   ======================================================================== */
.hero { position: relative; background: var(--dark); color: var(--dark-text); padding: clamp(64px, 9vw, 116px) 0 92px; overflow: hidden; }
.hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(55% 60% at 85% 0%, rgba(182, 0, 255, .20), transparent 60%),
        radial-gradient(40% 50% at 5% 20%, rgba(124, 47, 181, .16), transparent 60%);
}
.hero .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3rem); margin: 20px 0 20px; }
.hero .lead { color: var(--dark-muted); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-visual { position: relative; }
.hero-card { background: linear-gradient(160deg, var(--dark-3), var(--dark-2)); border: 1px solid var(--dark-border-2); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 90% 0%, rgba(206, 89, 255, .18), transparent 70%); }
.hero-card-head { display: flex; align-items: center; justify-content: space-between; position: relative; margin-bottom: 20px; }
.hero-card-head .dot-row { display: flex; gap: 6px; }
.hero-card-head .dot-row span { width: 10px; height: 10px; border-radius: 50%; background: var(--dark-border-2); }
.hero-card-head .live { font-size: .72rem; font-weight: 600; color: #4ade80; display: inline-flex; align-items: center; gap: 7px; }
.hero-card-head .live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74, 222, 128, .6); animation: pulse 2s infinite; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; position: relative; }
.metric { background: rgba(255, 255, 255, .04); border: 1px solid var(--dark-border); border-radius: 13px; padding: 17px; }
.metric .m-val { font-size: 1.65rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.metric .m-val span { color: var(--dot); }
.metric .m-label { font-size: .82rem; color: var(--dark-muted); margin-top: 4px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 78px; margin-top: 18px; position: relative; }
.bars i { flex: 1; background: linear-gradient(180deg, var(--dot), rgba(124, 47, 181, .35)); border-radius: 6px 6px 3px 3px; animation: grow 1.4s var(--ease) backwards; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); } 70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); } }
@keyframes grow { from { height: 0; opacity: 0; } }

/* ---------- Stats-Strip (hell) ---------- */
.stats-strip { background: var(--surface); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 44px 0; }
.stat { text-align: center; }
.stat .s-val { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.03em; color: var(--heading); }
.stat .s-val span { color: var(--violet); }
.stat .s-label { color: var(--muted); font-size: .94rem; margin-top: 6px; }

/* ---------- Leistungs-Highlights (helle Leiste statt Kennzahlen) ---------- */
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; padding: 44px 0; }
.highlight { text-align: center; }
.highlight .h-icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; color: var(--violet); background: var(--violet-soft); border: 1px solid var(--violet-line); margin: 0 auto 14px; }
.highlight .h-icon svg { width: 25px; height: 25px; }
.highlight h3 { font-size: 1.05rem; margin-bottom: 4px; }
.highlight p { color: var(--muted); font-size: .9rem; }

/* ---------- Hero-Leistungskarte (Checkliste statt Live-Kennzahlen) ---------- */
.hc-title { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dot); }
.hc-list { display: flex; flex-direction: column; gap: 15px; position: relative; }
.hc-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--dark-text); font-size: 1.02rem; font-weight: 500; }
.hc-list li svg { width: 20px; height: 20px; color: var(--dot); flex-shrink: 0; margin-top: 3px; }

/* ---------- Karten / Grid (hell) ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.card a:hover { text-decoration: underline; }
.card-icon { width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; color: var(--violet); background: var(--violet-soft); border: 1px solid var(--violet-line); margin-bottom: 20px; }
.card-icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 11px; color: var(--heading); }
.card p { color: var(--muted); }

.feature-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: .95rem; }
.feature-list li svg { width: 19px; height: 19px; color: var(--violet); flex-shrink: 0; margin-top: 2px; }

/* ---------- Prozess (hell) ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { position: relative; padding-top: 10px; }
.process-step .p-no { font-size: 2.5rem; font-weight: 800; letter-spacing: -.04em; color: rgba(124, 47, 181, .22); }
.process-step h3 { margin: 10px 0 9px; color: var(--heading); }
.process-step p { color: var(--muted); font-size: .95rem; }

/* ---------- Split / Werte (hell) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.value-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.value-item { display: flex; gap: 18px; }
.value-item .v-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; color: var(--violet); background: var(--violet-soft); border: 1px solid var(--violet-line); }
.value-item .v-icon svg { width: 24px; height: 24px; }
.value-item h4 { font-size: 1.08rem; color: var(--heading); margin-bottom: 5px; font-weight: 700; }
.value-item p { color: var(--muted); font-size: .95rem; }

/* ---------- Erfahrung: Chips & Fakten-Kacheln ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { font-size: .85rem; font-weight: 600; color: var(--heading); background: var(--surface); border: 1px solid var(--border-strong); border-radius: 999px; padding: 8px 15px; box-shadow: var(--shadow-sm); }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px; box-shadow: var(--shadow-sm); }
.fact .f-val { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; color: var(--heading); }
.fact .f-val span { color: var(--violet); }
.fact .f-label { color: var(--muted); font-size: .9rem; margin-top: 5px; }

/* ---------- Seiten-Hero der Unterseiten (dunkles Band) ---------- */
.page-hero { position: relative; background: var(--dark); color: var(--dark-text); padding: clamp(58px, 8vw, 104px) 0 52px; text-align: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 70% at 50% -10%, rgba(182, 0, 255, .18), transparent 65%); }
.page-hero .container { max-width: 820px; position: relative; }
.page-hero h1 { color: #fff; margin: 0 0 16px; }
.page-hero .lead { margin-inline: auto; color: var(--dark-muted); }

/* ---------- CTA-Band (dunkel) ---------- */
.cta-band { padding: 72px 0 88px; }
.cta-inner { background: linear-gradient(135deg, var(--dark-3), var(--dark)); border: 1px solid var(--dark-border-2); border-radius: 24px; padding: clamp(40px, 6vw, 68px); text-align: center; position: relative; overflow: hidden; color: var(--dark-text); }
.cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 90% at 50% 0%, rgba(206, 89, 255, .20), transparent 70%); }
.cta-inner > * { position: relative; }
.cta-inner h2 { color: #fff; margin-bottom: 14px; }
.cta-inner p { color: var(--dark-muted); max-width: 56ch; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Kontakt (hell) ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; gap: 16px; align-items: center; padding: 18px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: border-color .25s, transform .25s; }
a.contact-card:hover { border-color: var(--violet); transform: translateX(3px); }
.contact-card .c-icon { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; color: var(--violet); background: var(--violet-soft); flex-shrink: 0; }
.contact-card .c-icon svg { width: 22px; height: 22px; }
.contact-card .c-label { font-size: .78rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .07em; }
.contact-card .c-val { color: var(--heading); font-weight: 600; }

.form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--heading); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; background: #fff; border: 1px solid var(--border-strong); border-radius: 10px; padding: 13px 15px; color: var(--text); font-family: inherit; font-size: .98rem; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px var(--violet-ring); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted-2); margin-top: 6px; }
.form-note a:hover { text-decoration: underline; }
.field-error { font-size: .82rem; color: #c0274a; margin-top: 6px; }

.alert { border-radius: 12px; padding: 15px 19px; margin-bottom: 22px; font-size: .95rem; border: 1px solid; }
.alert-success { background: #eafaf0; border-color: #b7e6c8; color: #1c7a44; }
.alert-error { background: #fdecec; border-color: #f3c5c5; color: #b3261e; }

/* ---------- Karte (Maps) ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16 / 9; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }

/* ---------- Jobs (hell) ---------- */
.job-list { display: flex; flex-direction: column; gap: 20px; }
.job { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.job-head { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: start; }
.job-head h3 { font-size: 1.35rem; color: var(--heading); }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: var(--violet-soft); color: var(--violet); border: 1px solid var(--violet-line); }
.job-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 22px; }
.job-cols h4 { font-size: .95rem; color: var(--heading); margin-bottom: 12px; }

/* ---------- Leerstand (z. B. keine offenen Stellen) ---------- */
.empty-state { max-width: 640px; margin: 0 auto; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 56px 40px; box-shadow: var(--shadow-sm); }
.empty-state .card-icon { margin: 0 auto 22px; }
.empty-state h2 { margin-bottom: 14px; }
.empty-state p { color: var(--muted); max-width: 50ch; margin: 0 auto; }

/* ===========================================================================
   Footer (dunkles Band)
   ======================================================================== */
.site-footer { background: var(--dark); color: var(--dark-muted); border-top: 1px solid var(--dark-border); padding: 68px 0 34px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 4px; }
.footer-claim { color: var(--dot); font-weight: 600; margin-top: 16px; }
.footer-tagline { color: var(--dark-muted); font-size: .95rem; margin-top: 6px; max-width: 36ch; }
.footer-col h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: #8e85a0; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--dark-muted); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; color: var(--dark-muted); line-height: 1.8; }
.footer-col address a:hover { color: var(--dot); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--dark-border); color: #8e85a0; font-size: .87rem; }

/* ---------- Scroll-to-top ---------- */
.scroll-top { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border-strong); background: #fff; color: var(--heading); cursor: pointer; display: grid; place-items: center; opacity: 0; transform: translateY(12px); pointer-events: none; box-shadow: var(--shadow); transition: opacity .3s, transform .3s, background .2s, color .2s, border-color .2s; }
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top.show { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: var(--violet); border-color: var(--violet); color: #fff; }

/* ---------- Reveal beim Scrollen ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .main-nav, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .mobile-nav.open { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 38px; }
    .hero-visual { max-width: 520px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .split, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
    .stats-grid, .highlight-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    section { padding: 60px 0; }
    .grid-3, .grid-2, .process-grid, .job-cols, .form-row, .facts { grid-template-columns: 1fr; }
    .card { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .metric-row { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
