/* International Workers Village — shared design system
   Mobile-first. Palette + components match the approved homepage mockup.
   Linked from every page (same-origin, no CDN). */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy:      #06192a;   /* header, hero overlay, dark panel */
    --navy-2:    #0d2439;
    --green:     #647433;   /* primary action, stats panel, "built for people" */
    --green-dark:#4f5c28;
    --gold:      #8a9a4f;   /* light green accent on dark backgrounds */
    --text:      #33404d;
    --muted:     #6b7280;
    --line:      #e5e7eb;
    --light:     #f0efeb;
    --white:     #ffffff;
    --maxw:      1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy);
    color: #fff;
}
.site-header .wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; min-height: 68px; flex-wrap: wrap;
}
.brand {
    display: flex; align-items: center; gap: 0.6rem;
    text-decoration: none; color: #fff;
}
.brand svg { width: 30px; height: 30px; flex: none; }
.brand-name { font-size: 0.82rem; font-weight: 800; line-height: 1.1; letter-spacing: 0.04em; text-transform: uppercase; }
.brand-name span { display: block; color: #c9d2c0; font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.main-nav a {
    color: #dbe2ea; text-decoration: none; font-size: 0.82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.15s;
}
.main-nav a:hover { color: #fff; }
.btn-contact {
    border: 1.5px solid rgba(255,255,255,0.6); border-radius: 6px;
    padding: 0.5rem 1.2rem !important; color: #fff !important; font-weight: 700;
    transition: all 0.15s;
}
.btn-contact:hover { background: #fff; color: var(--navy) !important; border-color: #fff; }
.lang-switch {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(138,154,79,0.12); border: 1.5px solid rgba(138,154,79,0.7);
    border-radius: 999px; color: #cdd8a8; font: inherit; font-size: 0.78rem; font-weight: 700;
    padding: 0.45rem 0.95rem 0.45rem 0.85rem; cursor: pointer;
    text-transform: uppercase; letter-spacing: 0.06em; transition: all 0.15s;
}
.lang-switch::before {
    content: ""; width: 15px; height: 15px; flex: none;
    background: no-repeat center / contain
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a9a4f' stroke-width='1.7'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.6 2.6 2.6 15.4 0 18M12 3c-2.6 2.6-2.6 15.4 0 18'/%3E%3C/svg%3E");
}
.lang-switch:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lang-switch:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306192a' stroke-width='1.7'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.6 2.6 2.6 15.4 0 18M12 3c-2.6 2.6-2.6 15.4 0 18'/%3E%3C/svg%3E");
}

/* Hamburger menu (mobile / tablet). The .js-nav class is added by /js/nav.js,
   so without JavaScript the navigation stays visible as a plain wrapped list. */
.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px;
    background: none; border: 0; cursor: pointer;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px; border-radius: 2px; background: #fff;
    transition: transform 0.2s, opacity 0.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); }

.js-nav .nav-toggle { display: flex; }
.js-nav .main-nav {
    display: none; order: 3; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding-bottom: 0.9rem;
}
.js-nav .main-nav.open { display: flex; }
.js-nav .main-nav a {
    padding: 0.9rem 0.2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.js-nav .main-nav .btn-contact {
    margin-top: 0.9rem; border-top: 1.5px solid rgba(255,255,255,0.6);
    padding: 0.75rem 1.2rem !important; text-align: center;
}
.js-nav .main-nav .lang-switch { margin-top: 0.75rem; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
    position: relative; color: #fff;
    background: linear-gradient(90deg, rgba(6,25,42,0.92) 0%, rgba(6,25,42,0.65) 45%, rgba(6,25,42,0.25) 100%),
                var(--navy) center/cover no-repeat;
    background-image: linear-gradient(90deg, rgba(6,25,42,0.92) 0%, rgba(6,25,42,0.6) 45%, rgba(6,25,42,0.2) 100%),
                      url('/images/hero-gate.jpg');
    background-size: cover; background-position: center;
}
.hero .wrap { padding-top: 4rem; padding-bottom: 4rem; }
.hero-content { max-width: 620px; }
.hero h1 {
    font-size: 2.1rem; font-weight: 800; line-height: 1.12; margin-bottom: 1.25rem;
}
.hero h1 .accent { color: #fff; }
.hero-rule { width: 70px; height: 3px; background: var(--gold); border: 0; margin: 0 0 1.25rem; }
.hero p { font-size: 1.02rem; color: #d7dee6; margin-bottom: 1.75rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.4rem; border-radius: 4px; font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none;
    cursor: pointer; border: 1px solid transparent; transition: all 0.15s; line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); }

/* ---------- Section: complete living environment ---------- */
.section { padding: 3.5rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head .eyebrow { text-align: center; }
.section-head h2 { font-size: 1.9rem; font-weight: 800; color: var(--navy); }

.feature-grid {
    display: grid; grid-template-columns: 1fr; gap: 2rem 1.5rem;
}
.feature { text-align: center; }
.feature-icon {
    width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--green);
}
.feature-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.feature h3 {
    font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--navy); margin-bottom: 0.5rem;
}
.feature p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ---------- Split: built for people ---------- */
.split { display: grid; grid-template-columns: 1fr; }
.split > div { padding: 2.75rem 1.5rem; }
.split-text { background: var(--navy); color: #fff; }
.split-text .eyebrow { color: #a9bd6a; }
.split-text h2 { font-size: 1.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.split-text p { color: #c3ccd6; margin-bottom: 1.25rem; }
.split-text .link {
    color: #a9bd6a; font-weight: 700; text-decoration: none; text-transform: uppercase;
    letter-spacing: 0.05em; font-size: 0.8rem;
}
.split-text .link:hover { color: #fff; }
.split-media {
    padding: 0; min-height: 240px;
    background: var(--navy-2) url('/images/welcome-home.jpg') center/cover no-repeat;
}
.split-stats { background: var(--green); color: #fff; }
.split-stats .eyebrow { color: #eef2e0; }
.stat { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 0; border-top: 1px solid rgba(255,255,255,0.2); }
.stat:first-of-type { border-top: 0; }
.stat svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.5; flex: none; }
.stat-value { font-size: 1.35rem; font-weight: 800; line-height: 1.1; }
.stat-label { font-size: 0.8rem; color: #eef2e0; }

/* ---------- Status bar ---------- */
.statusbar { background: var(--light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statusbar .wrap {
    display: flex; flex-direction: column; gap: 1rem; padding-top: 1.5rem; padding-bottom: 1.5rem;
    align-items: flex-start;
}
.statusbar-info { display: flex; align-items: center; gap: 0.75rem; }
.statusbar-info svg { width: 26px; height: 26px; stroke: var(--green); fill: none; stroke-width: 1.5; flex: none; }
.statusbar-info b { display: block; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--navy); }
.statusbar-msg { color: var(--muted); font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c3ccd6; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.footer-col h4 { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: #c3ccd6; text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2rem; padding-top: 1.5rem;
    text-align: center; color: #8a97a4; font-size: 0.82rem;
}

/* ---------- Reusable inner-page primitives (used from Phase 2 on) ---------- */
.breadcrumb { background: var(--light); padding: 0.9rem 0; font-size: 0.88rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.breadcrumb a { color: var(--green-dark); text-decoration: none; }
.page-title { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin: 2rem 0 1rem; }
.prose h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 2rem 0 1rem; }
.prose h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.75rem; }
.prose p { margin-bottom: 1rem; }
.card {
    background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem;
    border-top: 3px solid var(--green);
}
label { display: block; margin-bottom: 0.4rem; font-weight: 600; color: var(--navy); font-size: 0.9rem; }
input, textarea, select {
    width: 100%; padding: 0.75rem; border: 1px solid #cfd6dd; border-radius: 4px; font: inherit; font-size: 1rem;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(100,116,51,0.15); }

/* ---------- Inner-page layout helpers ---------- */
main.wrap { padding-top: 2rem; padding-bottom: 3rem; }
.lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 1.5rem; }
.grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-card {
    background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem;
    border-top: 3px solid var(--green); transition: box-shadow 0.15s;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(6,25,42,0.08); }
.service-card h3 { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }

/* Timeline */
.timeline { position: relative; padding: 0.5rem 0; }
.timeline-item { margin-bottom: 1.5rem; padding-left: 2rem; position: relative; }
.timeline-item::before {
    content: ''; position: absolute; left: 0; top: 4px; width: 14px; height: 14px;
    background: var(--green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(100,116,51,0.2);
}
.timeline-item h3 { color: var(--navy); margin-bottom: 0.35rem; }

/* FAQ accordion */
.faq-item { border: 1px solid var(--line); border-radius: 8px; margin-bottom: 0.85rem; overflow: hidden; }
.faq-question {
    padding: 1rem 1.25rem; cursor: pointer; font-weight: 700; color: var(--navy);
    display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: var(--white);
}
.faq-question:hover { background: var(--light); }
.faq-answer { padding: 0 1.25rem; max-height: 0; overflow: hidden; color: var(--muted); transition: all 0.2s; }
.faq-answer.active { padding: 0 1.25rem 1.15rem; max-height: 600px; }
.toggle-icon { transition: transform 0.2s; color: var(--green); }
.faq-question.active .toggle-icon { transform: rotate(45deg); }

/* CTA band */
.cta-band {
    background: var(--navy); color: #fff; border-radius: 10px; padding: 2.5rem 1.5rem;
    text-align: center; margin: 2.5rem 0;
}
.cta-band h2 { color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-band p { color: #c3ccd6; margin-bottom: 1.5rem; }

/* Contact / form layout */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-submit { background: var(--green); color: #fff; border: 0; border-radius: 4px; padding: 0.9rem 1.6rem; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; }
.form-submit:hover { background: var(--green-dark); }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
    .grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.6rem; }
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .statusbar .wrap { flex-direction: row; align-items: center; justify-content: space-between; }
    .statusbar-mid { flex: 1; padding: 0 1.5rem; }
}

/* Horizontal nav only from 1200px: the English labels are ~160px wider than the
   Romanian ones and only fit beside the brand from here up. Below this both
   languages use the hamburger, so the header never wraps to a second row in one
   language and stays one row in the other. */
@media (min-width: 1200px) {
    .js-nav .nav-toggle { display: none; }
    .js-nav .site-header .wrap { flex-wrap: nowrap; }
    .js-nav .main-nav { display: flex; flex-direction: row; align-items: center;
                        gap: 0.9rem; width: auto; order: 0; padding-bottom: 0; flex-wrap: nowrap; }
    .js-nav .main-nav a { padding: 0; border-top: 0; font-size: 0.74rem; white-space: nowrap; }
    .js-nav .main-nav .btn-contact { margin-top: 0; border: 1.5px solid rgba(255,255,255,0.6);
                                     padding: 0.5rem 0.9rem !important; }
    .js-nav .main-nav .lang-switch { margin-top: 0; }
}

@media (min-width: 1024px) {
    .hero .wrap { padding-top: 6rem; padding-bottom: 6rem; }
    .hero h1 { font-size: 3.1rem; }
    .section { padding: 4.5rem 0; }
    .feature-grid { grid-template-columns: repeat(6, 1fr); gap: 2.5rem 1.5rem; }
    .split { grid-template-columns: 1.1fr 1fr 1fr; }
    .split > div { padding: 3.5rem 2.5rem; }
    .split-media { min-height: 0; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .section-head h2 { font-size: 2.2rem; }
    .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Page hero (inner pages, image + dark overlay) ---------- */
.page-hero {
    color: #fff;
    background: var(--navy) center/cover no-repeat;
}
.page-hero .wrap { padding-top: 3.25rem; padding-bottom: 3.25rem; }
.page-hero .eyebrow { color: #b9c78a; }
.page-hero h1 { font-size: 2rem; font-weight: 800; line-height: 1.15; max-width: 18ch; }
.page-hero .hero-rule { width: 70px; height: 3px; background: var(--gold); border: 0; margin: 1.1rem 0; }
.page-hero p { color: #d7dee6; max-width: 46ch; font-size: 1rem; }
.page-hero .hero-actions { margin-top: 1.6rem; }

/* ---------- Icon tile grid ---------- */
.tile {
    background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem;
}
.tile .ico { width: 38px; height: 38px; color: var(--green); margin-bottom: 0.9rem; }
.tile .ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.tile h3 {
    font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--navy); margin-bottom: 0.5rem;
}
.tile p { font-size: 0.92rem; color: var(--muted); }
.tile .emoji { font-size: 1.6rem; line-height: 1; display: block; margin-bottom: 0.7rem; }

/* ---------- Step flow (journey / care package) ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.25rem; counter-reset: step; }
.step { position: relative; padding-left: 3rem; }
.step::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 0; top: 0; width: 2rem; height: 2rem; border-radius: 50%;
    background: var(--green); color: #fff; font-weight: 800; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
}
.step h3 {
    font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--navy); margin-bottom: 0.35rem; padding-top: 0.3rem;
}
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Check list ---------- */
.checklist { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.7rem; }
.checklist li { position: relative; padding-left: 1.9rem; font-size: 0.95rem; }
.checklist li::before {
    content: ""; position: absolute; left: 0; top: 0.35rem; width: 1.1rem; height: 1.1rem;
    background: no-repeat center / contain
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23647433' stroke-width='2.4'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E");
}

/* ---------- Section on light background ---------- */
.section-light { background: var(--light); }

/* ---------- Wide dark band with text + action ---------- */
.band-dark { background: var(--navy); color: #fff; }
.band-dark .wrap { padding-top: 2.75rem; padding-bottom: 2.75rem; display: grid; gap: 1.5rem; }
.band-dark h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.25; }
.band-dark p { color: #c3ccd6; }
.band-dark .btn-primary { align-self: start; }

@media (min-width: 640px) {
    .steps { grid-template-columns: repeat(2, 1fr); }
    .checklist { grid-template-columns: repeat(2, 1fr); }
    .page-hero h1 { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
    .page-hero .wrap { padding-top: 5rem; padding-bottom: 5rem; }
    .page-hero h1 { font-size: 3rem; }
    .steps { grid-template-columns: repeat(3, 1fr); }
    .band-dark .wrap { grid-template-columns: 1.2fr 1fr auto; align-items: center; }
}

/* ---------- Key-figure row ---------- */
.statgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.statgrid > div { text-align: center; }
.statgrid .num { font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.statgrid .lbl { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.band-dark .statgrid .num { color: #fff; }
.band-dark .statgrid .lbl { color: #c3ccd6; }
@media (min-width: 1024px) {
    .statgrid { grid-template-columns: repeat(5, 1fr); }
    .statgrid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Contact split (dark info panel + form) ---------- */
.contact-split { display: grid; grid-template-columns: 1fr; }
.contact-split > div { padding: 2.5rem 1.5rem; }
.contact-panel { background: var(--navy); color: #fff; }
.contact-panel h1 { font-size: 1.9rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.contact-panel > p { color: #c3ccd6; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 0.9rem; padding: 0.9rem 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-item:first-of-type { border-top: 0; }
.contact-item svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex: none; margin-top: 0.2rem; }
.contact-item h2 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.25rem; font-weight: 800; }
.contact-item p, .contact-item a { color: #dbe2ea; font-size: 0.95rem; text-decoration: none; }
.contact-item a:hover { color: #fff; }
.contact-form { background: var(--light); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--muted); margin-bottom: 1.25rem; }
.consent input { width: auto; margin-top: 0.25rem; }
.consent span { font-weight: 400; color: var(--muted); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
    .contact-split { grid-template-columns: 1fr 1.15fr; }
    .contact-split > div { padding: 4rem 3rem; }
}

/* FAQ tabs */
.faq-tabs { display: flex; gap: 0; max-width: 520px; margin: 0 auto 2rem; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.faq-tabs button {
  flex: 1; padding: 0.85rem 1rem; background: #fff; border: 0; cursor: pointer;
  font: inherit; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.faq-tabs button.active { background: var(--navy); color: #fff; }
.faq-panel { display: none; max-width: 820px; margin: 0 auto; }
.faq-panel.active { display: block; }
.faq-intro { text-align: center; margin-bottom: 2rem; }
