/* ── Hello Vietnam — main.css ── */

/* Extract exact CSS from hellovietnam-source.html + additions for solvn pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1a1f5e; --indigo: #2e3192; --purple: #6c63ff; --violet: #9c8fff;
  --purple-light: #f0effe; --purple-mid: #e0ddff; --white: #ffffff;
  --off-white: #f9f9fc; --text-dark: #12143a; --text-muted: #6b7094;
  --text-light: #9da3c8; --border: #e8e8f0; --font: 'Plus Jakarta Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--text-dark); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* NAV */
#main-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 4rem; height: 64px; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-logo { font-size: 1.05rem; font-weight: 800; color: var(--navy); text-decoration: none; letter-spacing: -0.03em; display: flex; align-items: center; gap: 0.4rem; }
.nav-logo-sq { width: 24px; height: 24px; background: linear-gradient(135deg, var(--purple), var(--indigo)); border-radius: 7px; flex-shrink: 0; display: inline-block; }
.nav-logo .dot { color: var(--purple); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); text-decoration: none; padding: 0.45rem 0.9rem; border-radius: 8px; transition: all 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--purple-light); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.lang-switcher { display: flex; background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 3px; gap: 2px; }
.lang-btn { font-family: var(--font); font-size: 0.72rem; font-weight: 600; color: var(--text-muted); background: transparent; border: none; cursor: pointer; padding: 0.3rem 0.6rem; border-radius: 6px; transition: all 0.15s; text-decoration: none; display: inline-block; opacity: 1; }
.lang-btn.active { background: var(--purple); color: white; }
.lang-btn:hover:not(.active) { color: var(--navy); }
.nav-cta { font-family: var(--font); font-size: 0.85rem; font-weight: 600; color: var(--indigo); background: none; border: 1.5px solid var(--indigo); padding: 0.5rem 1.25rem; border-radius: 10px; cursor: pointer; text-decoration: none; transition: all 0.15s; display: inline-block; }
.nav-cta:hover { background: var(--indigo); color: white; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 99; padding: 2rem 1.5rem; flex-direction: column; gap: 0; overflow-y: auto; border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 700; color: var(--navy); text-decoration: none; padding: 1rem 0; border-bottom: 1px solid var(--border); display: block; }
.mob-lang-row { display: flex; gap: 0.5rem; padding: 1.5rem 0 0.5rem; }
.mob-cta { margin-top: 1.5rem; background: var(--indigo); color: white; border: none; border-radius: 12px; padding: 1rem; font-family: var(--font); font-size: 1rem; font-weight: 700; cursor: pointer; text-align: center; width: 100%; }

/* FLASH */
.flash { position: fixed; top: 80px; left: 50%; transform: translateX(-50%); z-index: 200; padding: 0.8rem 1.5rem; border-radius: 10px; font-size: 0.9rem; display: flex; align-items: center; gap: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.flash button { background: none; border: none; cursor: pointer; font-size: 1rem; opacity: .7; }
.flash-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.flash-error { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }

/* HERO */
.hero-wrap { max-width: 1280px; margin: 0 auto; padding: 5rem 4rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; min-height: calc(100vh - 64px); }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--purple-light); border: 1px solid var(--purple-mid); color: var(--purple); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 100px; margin-bottom: 1.5rem; }
.badge-dot { width: 6px; height: 6px; background: var(--purple); border-radius: 50%; flex-shrink: 0; }
h1 { font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.04em; color: var(--navy); margin-bottom: 1.25rem; }
h1 .accent { color: var(--purple); }
h1 em { font-style: normal; color: var(--purple); }
.hero-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 44ch; margin-bottom: 2.25rem; }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-note { font-size: 0.78rem; color: var(--text-light); }

/* BUTTONS */
.btn-primary { font-family: var(--font); font-size: 0.9rem; font-weight: 700; color: white; background: var(--indigo); border: none; border-radius: 10px; padding: 0.82rem 1.75rem; cursor: pointer; white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: background 0.15s; }
.btn-primary:hover { background: var(--navy); color: white; }
.btn-ghost { font-family: var(--font); font-size: 0.9rem; font-weight: 600; color: var(--indigo); background: var(--purple-light); border: 1.5px solid var(--purple-mid); border-radius: 10px; padding: 0.82rem 1.75rem; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: all 0.15s; }
.btn-ghost:hover { background: var(--purple-mid); border-color: var(--purple); }
.btn-outline { font-family: var(--font); font-size: 0.9rem; font-weight: 600; color: var(--indigo); background: var(--purple-light); border: 1.5px solid var(--purple-mid); border-radius: 10px; padding: 0.82rem 1.75rem; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: all 0.15s; }
.btn-outline:hover { background: var(--purple-mid); border-color: var(--purple); }

/* PILL PHOTOS */
.hero-photos { display: flex; gap: 1rem; justify-content: center; align-items: stretch; height: 520px; padding-top: 2rem; padding-bottom: 1rem; }
.pill { border-radius: 999px; overflow: hidden; flex-shrink: 0; position: relative; }
.pill-1 { width: 155px; align-self: flex-end; flex: 0 0 155px; height: 420px; margin-bottom: 1.5rem; }
.pill-2 { width: 155px; flex: 0 0 155px; height: 100%; max-height: 500px; align-self: flex-start; }
.pill-3 { width: 155px; flex: 0 0 155px; height: 360px; align-self: flex-end; }
.pill img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s ease; }
.pill:hover img { transform: scale(1.05); }

/* TRUST BAR */
.trust-bar { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.1rem 4rem; display: flex; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; padding: 0 2.25rem; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 17px; height: 17px; color: var(--purple); flex-shrink: 0; }
.trust-text { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
.trust-text strong { display: block; color: var(--navy); margin-bottom: 0.15rem; }

/* STATS */
.stats-wrap { padding: 3rem 4rem; }
.stats-bar { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.stat-item { background: white; padding: 1.75rem 2rem; text-align: center; }
.stat-num { font-size: 2.25rem; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.3rem; }
.stat-num .a { color: var(--purple); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* SECTION COMMONS */
.section-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--purple-light); color: var(--purple); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1rem; }
.section-eyebrow { display: inline-block; background: var(--purple-light); color: var(--purple); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1.1; margin-bottom: 0.75rem; }
.section-title .a { color: var(--purple); }
.section-sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 52ch; margin-bottom: 2.5rem; }
h2 { font-family: var(--font); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1.1; margin-bottom: 0.75rem; }
h2 em { font-style: normal; color: var(--purple); }
.section-header { margin-bottom: 3rem; }

/* CATEGORIES */
.categories { padding: 5rem 4rem; background: var(--white); }
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cat-item { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.75rem; cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden; text-align: left; }
.cat-item::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--purple); opacity: 0; transition: opacity 0.2s; }
.cat-item:hover { border-color: var(--violet); box-shadow: 0 8px 32px rgba(108,99,255,0.12); transform: translateY(-2px); background: var(--white); }
.cat-item:hover::after { opacity: 1; }
.cat-icon { font-size: 2rem; margin-bottom: 1rem; display: block; transition: transform 0.3s; }
.cat-item:hover .cat-icon { transform: scale(1.1); }
.cat-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.cat-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* SERVICES */
.services-section { padding: 5rem 4rem; max-width: 1280px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.75rem; cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--purple); opacity: 0; transition: opacity 0.2s; }
.service-card:hover { border-color: var(--violet); box-shadow: 0 8px 32px rgba(108,99,255,0.12); transform: translateY(-2px); }
.service-card:hover::after { opacity: 1; }
.svc-icon { width: 44px; height: 44px; background: var(--purple-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.svc-icon svg { width: 20px; height: 20px; stroke: var(--purple); fill: none; stroke-width: 2; }
.svc-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.svc-text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* TRANSLATION SECTION */
.translate-section { background: var(--off-white); padding: 5.5rem 4rem; border-top: 1px solid var(--border); }
.translate-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.translate-demo { background: white; border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; }
.translate-demo-header { background: var(--navy); padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-d1 { background: #ff5f57; } .demo-d2 { background: #febc2e; } .demo-d3 { background: #28c840; }
.demo-title { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-left: auto; margin-right: auto; }
.translate-tabs { display: flex; border-bottom: 1px solid var(--border); }
.t-tab { flex: 1; padding: 0.85rem; font-size: 0.8rem; font-weight: 600; color: var(--text-light); background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.15s; font-family: var(--font); }
.t-tab.active { color: var(--purple); border-bottom-color: var(--purple); }
.translate-body { padding: 1.5rem; min-height: 220px; }
.t-content { display: none; }
.t-content.active { display: block; }
.t-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.t-phrase { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; line-height: 1.35; }
.t-sub { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.t-tag { display: inline-block; background: var(--purple-light); color: var(--purple); font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 100px; }

/* ASK / HOW SECTION */
.ask-section { background: var(--navy); padding: 5.5rem 4rem; }
.ask-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ask-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(108,99,255,0.25); color: var(--violet); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1rem; }
.ask-title { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; color: white; line-height: 1.1; margin-bottom: 0.75rem; }
.ask-title .a { color: var(--violet); }
.ask-sub { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 2rem; }
.ask-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1.5rem; }
.ask-row { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.ask-input { flex: 1; font-family: var(--font); font-size: 0.88rem; color: white; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 10px; padding: 0.7rem 1rem; outline: none; transition: border-color 0.15s; }
.ask-input::placeholder { color: rgba(255,255,255,0.28); }
.ask-input:focus { border-color: var(--violet); }
.ask-send { font-family: var(--font); font-size: 0.85rem; font-weight: 700; background: var(--purple); color: white; border: none; border-radius: 10px; padding: 0.7rem 1.25rem; cursor: pointer; transition: background 0.15s; }
.ask-send:hover { background: #5a52e0; }
.pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.s-pill { font-family: var(--font); font-size: 0.75rem; font-weight: 500; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); border-radius: 100px; padding: 0.35rem 0.85rem; cursor: pointer; transition: all 0.15s; }
.s-pill:hover { background: rgba(108,99,255,0.3); color: white; border-color: var(--violet); }
.ask-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ask-feat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 1.25rem; transition: all 0.2s; }
.ask-feat:hover { background: rgba(108,99,255,0.15); border-color: rgba(108,99,255,0.3); }
.feat-flag { font-size: 1.4rem; margin-bottom: 0.5rem; display: block; }
.feat-lang { font-size: 0.85rem; font-weight: 700; color: white; margin-bottom: 0.2rem; }
.feat-desc { font-size: 0.77rem; color: rgba(255,255,255,0.4); line-height: 1.55; }

/* HOW-IT-WORKS (dark navy section) */
.how-section { background: var(--navy); padding: 5.5rem 4rem; }
.how-section .section-header { text-align: center; margin-bottom: 4rem; }
.how-section h2 { color: white; }
.how-section .section-eyebrow { background: rgba(108,99,255,0.25); color: var(--violet); }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1280px; margin: 0 auto; }
.step { position: relative; }
.step-num { font-size: 4rem; font-weight: 800; color: rgba(156,143,255,0.2); line-height: 1; margin-bottom: 1rem; }
.step-icon { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.step h4 { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.8rem; color: white; }
.step p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.step-arrow { position: absolute; right: -1rem; top: 2.5rem; color: var(--violet); font-size: 1.2rem; }
.step:last-child .step-arrow { display: none; }

/* TESTIMONIALS */
.proof-section { padding: 5.5rem 4rem; background: var(--off-white); }
.proof-inner { max-width: 1280px; margin: 0 auto; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.proof-card { background: white; border: 1.5px solid var(--border); border-radius: 16px; padding: 1.75rem; }
.proof-stars { display: flex; gap: 2px; margin-bottom: 1rem; color: #f59e0b; font-size: 0.88rem; }
.proof-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.proof-author { display: flex; align-items: center; gap: 0.75rem; }
.proof-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; color: white; flex-shrink: 0; }
.av1 { background: var(--indigo); } .av2 { background: #059669; } .av3 { background: #d97706; }
.proof-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.proof-loc { font-size: 0.75rem; color: var(--text-light); }

/* FORM SECTION */
.form-section { padding: 5rem 4rem; background: var(--off-white); display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.form-intro { position: sticky; top: 80px; }
.form-intro h2 { margin-bottom: 1.5rem; }
.form-intro > p { color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; font-size: 0.95rem; }
.trust-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.form-section .trust-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; }
.form-section .trust-item:last-child { border-right: 1.5px solid var(--border); }
.form-section .trust-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; width: auto; height: auto; color: inherit; }
.form-section .trust-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.form-section .trust-text strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.2rem; }
.request-form { background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; padding: 3rem; }
.form-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); letter-spacing: -0.02em; }
.form-group { margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
label { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--text-muted); margin-bottom: 0.6rem; }
label span.req { color: var(--purple); }
input, select, textarea { width: 100%; padding: 0.85rem 1rem; background: var(--off-white); border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font); font-size: 0.92rem; color: var(--text-dark); outline: none; transition: border-color 0.2s; appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--purple); background: var(--white); }
input::placeholder, textarea::placeholder { color: var(--text-light); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c63ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
textarea { resize: vertical; min-height: 120px; }
.cat-selector { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; margin-bottom: 1.8rem; }
.cat-opt { display: none; }
.cat-opt-label { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 0.8rem 0.5rem; border: 1.5px solid var(--border); border-radius: 12px; cursor: pointer; transition: all 0.2s; font-size: 0.7rem; color: var(--text-muted); text-align: center; line-height: 1.3; background: var(--off-white); }
.cat-opt-label .ico { font-size: 1.4rem; }
.cat-opt:checked + .cat-opt-label { border-color: var(--purple); background: var(--purple-light); color: var(--navy); }
.cat-opt-label:hover { border-color: var(--violet); }
.urgency-group { display: flex; gap: 0.8rem; }
.urgency-opt { display: none; }
.urgency-label { flex: 1; text-align: center; padding: 0.6rem; border: 1.5px solid var(--border); border-radius: 10px; cursor: pointer; font-size: 0.78rem; color: var(--text-muted); transition: all 0.2s; background: var(--off-white); }
.urgency-opt:checked + .urgency-label { border-color: var(--purple); background: var(--purple-light); color: var(--navy); }
.urgency-label:hover { border-color: var(--violet); }
.form-file-zone { border: 2px dashed var(--border); padding: 1.5rem; text-align: center; background: var(--off-white); cursor: pointer; transition: border-color 0.2s; border-radius: 12px; }
.form-file-zone:hover { border-color: var(--purple); }
.form-file-zone p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.4rem; }
.form-file-zone .file-icon { font-size: 1.5rem; }
.consent-group { display: flex; gap: 0.8rem; align-items: flex-start; }
.consent-group label { font-size: 0.8rem; text-transform: none; letter-spacing: 0; color: var(--text-muted); font-weight: 400; }
.consent-group label a { color: var(--purple); }
.custom-check-input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.custom-check-label { display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer; font-size: 0.8rem; text-transform: none; letter-spacing: 0; color: var(--text-muted); font-weight: 400; line-height: 1.5; }
.custom-check-label a { color: var(--purple); }
.custom-check-box { flex-shrink: 0; width: 18px; height: 18px; margin-top: 0.1rem; border: 1.5px solid var(--border); background: var(--off-white); border-radius: 5px; display: flex; align-items: center; justify-content: center; transition: background 0.18s, border-color 0.18s; position: relative; }
.custom-check-box::after { content: '✕'; font-size: 11px; font-weight: 700; color: var(--purple); opacity: 0; transform: scale(.5); transition: opacity 0.15s, transform 0.15s; }
.custom-check-input:checked + .custom-check-label .custom-check-box { background: var(--navy); border-color: var(--navy); }
.custom-check-input:checked + .custom-check-label .custom-check-box::after { opacity: 1; transform: scale(1); color: var(--violet); }
.custom-check-input:focus-visible + .custom-check-label .custom-check-box { outline: 2px solid var(--purple); outline-offset: 2px; }
.cc-wrap { display: flex; align-items: flex-start; gap: .7rem; cursor: pointer; margin-bottom: 1.5rem; }
.cc-input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.cc-box { flex-shrink: 0; width: 20px; height: 20px; margin-top: .1rem; border: 1.5px solid var(--purple); background: var(--off-white); display: flex; align-items: center; justify-content: center; border-radius: 5px; transition: background .15s; font-size: 13px; font-weight: 700; color: var(--purple); min-width: 20px; }
.cc-input:checked ~ .cc-box { background: var(--navy); border-color: var(--navy); color: var(--violet); }
.cc-text { font-size: .8rem; color: var(--text-muted); line-height: 1.5; padding-top: .15rem; }
.cc-text a { color: var(--purple); text-decoration: underline; }
.submit-btn { width: 100%; padding: 1rem; background: var(--indigo); color: white; border: none; border-radius: 10px; cursor: pointer; font-family: var(--font); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; transition: background 0.2s; margin-top: 1rem; position: relative; overflow: hidden; }
.submit-btn::after { content: '→'; position: absolute; right: 1.5rem; transition: transform 0.2s; }
.submit-btn:hover { background: var(--navy); }
.submit-btn:hover::after { transform: translateX(4px); }
.form-errors { background: #FFEBEE; border: 1px solid #EF9A9A; border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 1.5rem; font-size: 0.85rem; color: #C62828; list-style: inside; }
.form-errors li + li { margin-top: 0.3rem; }

/* SUCCESS OVERLAY */
.success-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(26,31,94,0.85); backdrop-filter: blur(8px); align-items: center; justify-content: center; }
.success-overlay.show { display: flex; }
.success-box { background: var(--white); padding: 4rem; max-width: 480px; text-align: center; border: 1.5px solid var(--border); border-radius: 20px; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.success-icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }
.success-box h3 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.success-box p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.ref-badge { color: var(--purple); font-weight: 700; }

/* FAB */
.fab { position: fixed; bottom: 2rem; right: 2rem; z-index: 99; background: var(--purple); color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer; box-shadow: 0 4px 20px rgba(108,99,255,0.4); border: none; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(108,99,255,0.5); }

/* FOOTER */
footer { background: var(--navy); padding: 4rem 4rem 2rem; color: rgba(255,255,255,0.5); border-top: none; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.09); margin-bottom: 2rem; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-top: 0.75rem; max-width: 280px; }
.footer-logo { font-size: 1.05rem; font-weight: 800; color: white; letter-spacing: -0.03em; display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-logo-sq { width: 22px; height: 22px; background: linear-gradient(135deg, var(--purple), var(--indigo)); border-radius: 6px; flex-shrink: 0; }
.footer-logo .dot { color: var(--violet); }
.footer-tag { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 0.75rem; margin-top: 0.75rem; }
.footer-url { font-size: 0.75rem; font-weight: 600; color: var(--violet); }
.footer-col h5, .fc-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-col ul, .fc-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a, .fc-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover, .fc-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-lang-row { display: flex; gap: 1.25rem; }
.footer-lang-row a { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.33); text-decoration: none; transition: color 0.15s; }
.footer-lang-row a:hover { color: white; }

/* AUTH */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 1rem 2rem; background: var(--off-white); }
.auth-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; padding: 3rem; width: 100%; max-width: 440px; }
.auth-card h1 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.auth-links { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }
.auth-links a { color: var(--purple); }

/* DASHBOARD */
.dashboard { padding: 100px 4rem 4rem; min-height: 100vh; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.dash-header h1 { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.dash-stat { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.dash-stat-num { font-size: 2rem; font-weight: 800; color: var(--navy); display: block; margin-bottom: 0.3rem; }
.dash-stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.dash-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; font-size: 0.88rem; }
.dash-table th { padding: 0.8rem 1rem; text-align: left; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); background: var(--off-white); font-weight: 600; }
.dash-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: var(--off-white); }
.btn-sm { padding: 0.35rem 0.8rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border: 1.5px solid var(--border); color: var(--navy); transition: all 0.2s; cursor: pointer; background: none; font-family: var(--font); border-radius: 8px; }
.btn-sm:hover { background: var(--navy); color: white; border-color: var(--navy); }
.btn-sm.gold { border-color: var(--purple); color: var(--purple); }
.btn-sm.gold:hover { background: var(--purple); color: white; }

/* ADMIN */
.admin-layout { display: block !important; min-height: 100vh; }
.admin-sidebar { background: var(--navy); padding: 100px 0 2rem; position: fixed; top: 0; left: 0; bottom: 0; width: 220px; overflow-y: auto; z-index: 50; }
.admin-sidebar .sidebar-logo { color: white; font-weight: 800; font-size: 1.1rem; padding: 0 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; display: block; }
.admin-sidebar .sidebar-logo span { color: var(--violet); }
.sidebar-nav { list-style: none; }
.sidebar-nav a { display: block; padding: 0.7rem 1.5rem; color: rgba(255,255,255,0.55); font-size: 0.83rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; border-left: 2px solid transparent; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: white; border-left-color: var(--violet); background: rgba(108,99,255,0.15); }
.admin-content { margin-left: 220px !important; padding: 100px 3rem 3rem !important; background: var(--off-white); min-height: 100vh; display: block !important; width: calc(100vw - 220px) !important; }
.admin-content h1 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.admin-grid-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2.5rem; }
.admin-stat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.admin-stat-card .num { font-size: 2.2rem; font-weight: 800; color: var(--purple); }
.admin-stat-card .label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ABOUT */
.about-page { padding-top: 64px; }
.about-hero { padding: 7rem 4rem 5rem; background: var(--navy); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-hero-left .eyebrow { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--violet); font-weight: 700; margin-bottom: 1.2rem; display: block; }
.about-hero-left h1 { color: white; }
.about-hero-left p { color: rgba(255,255,255,0.72); line-height: 1.8; font-size: 1rem; }
.about-hero-right { display: flex; flex-direction: column; gap: 1.5rem; }
.about-stat { border-left: 2px solid var(--violet); padding-left: 1.5rem; }
.about-stat-n { font-size: 2.5rem; font-weight: 800; color: var(--violet); display: block; line-height: 1; }
.about-stat-l { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }
.about-values { padding: 6rem 4rem; background: var(--white); }
.about-values h2 { margin-bottom: 0.8rem; }
.about-values > p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; max-width: 600px; margin-bottom: 4rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { padding: 2.5rem 2rem; border: 1.5px solid var(--border); border-radius: 16px; background: var(--white); transition: border-color 0.25s, box-shadow 0.25s; }
.value-card:hover { border-color: var(--purple); box-shadow: 0 8px 32px rgba(108,99,255,0.08); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.value-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.7rem; color: var(--navy); }
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.team-section { padding: 6rem 4rem; background: var(--off-white); }
.team-section .section-header { margin-bottom: 4rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.team-card { text-align: center; }
.team-photo-placeholder { width: 100%; aspect-ratio: 1; background: var(--navy); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; font-size: 3.5rem; color: var(--violet); overflow: hidden; }
.team-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--navy); }
.team-role { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); font-weight: 600; margin-bottom: 0.8rem; }
.team-bio { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* MEDIA */
.media-page { padding-top: 64px; }
.media-hero { padding: 5rem 4rem 3rem; background: var(--navy); color: white; text-align: center; }
.media-hero .eyebrow { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--violet); font-weight: 700; margin-bottom: 1rem; display: block; }
.media-hero h1 { color: white; margin-bottom: 1rem; }
.media-hero p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }
.media-filters { display: flex; gap: 0.5rem; justify-content: center; padding: 2.5rem 4rem 0; background: var(--navy); flex-wrap: wrap; }
.media-filter-btn { padding: 0.5rem 1.4rem; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; border: 1.5px solid rgba(156,143,255,0.4); color: rgba(255,255,255,0.6); background: transparent; cursor: pointer; transition: all 0.2s; font-family: var(--font); border-radius: 8px; }
.media-filter-btn:hover, .media-filter-btn.active { background: var(--purple); color: white; border-color: var(--purple); }
.media-grid { padding: 3rem 4rem 6rem; background: var(--white); columns: 3; column-gap: 12px; }
.media-item { break-inside: avoid; margin-bottom: 12px; position: relative; overflow: hidden; cursor: pointer; display: block; border-radius: 12px; }
.media-item img, .media-item video { width: 100%; display: block; transition: transform 0.4s ease; }
.media-item:hover img, .media-item:hover video { transform: scale(1.03); }
.media-item-overlay { position: absolute; inset: 0; background: rgba(26,31,94,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.media-item:hover .media-item-overlay { background: rgba(26,31,94,0.4); }
.media-item-icon { color: #fff; font-size: 2.5rem; opacity: 0; transform: scale(.7); transition: opacity 0.3s, transform 0.3s; }
.media-item:hover .media-item-icon { opacity: 1; transform: scale(1); }
.media-video-badge { position: absolute; top: 0.6rem; right: 0.6rem; background: var(--purple); color: white; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 6px; }
.lightbox { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,.94); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img, .lightbox-inner video { max-width: 90vw; max-height: 85vh; display: block; border-radius: 12px; }
.lightbox-close { position: absolute; top: -2.5rem; right: 0; color: #fff; font-size: 1.8rem; cursor: pointer; background: none; border: none; opacity: .7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; opacity: .6; transition: opacity 0.2s; padding: 0.5rem; }
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

/* DEMANDE DETAIL */
.demande-detail { padding: 100px 4rem 4rem; max-width: 900px; margin: 0 auto; }
.demande-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.messages-list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.message-bubble { padding: 1.2rem; border: 1.5px solid var(--border); border-radius: 12px; background: var(--white); }
.message-bubble.me { background: var(--purple-light); border-color: var(--purple-mid); }
.message-meta { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.message-text { font-size: 0.9rem; line-height: 1.65; }

/* RESPONSIVE TABLET */
@media (max-width: 1024px) {
  #main-nav { padding: 0 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-wrap { padding: 3rem 2rem; gap: 2rem; min-height: auto; }
  .hero-photos { height: 420px; }
  .pill-1 { width: 130px; flex: 0 0 130px; height: 340px; }
  .pill-2 { width: 130px; flex: 0 0 130px; max-height: 400px; }
  .pill-3 { width: 130px; flex: 0 0 130px; height: 290px; }
  .trust-bar { padding: 1rem 2rem; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
  .trust-item { padding: 0 1rem; }
  .stats-wrap { padding: 2rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .categories { padding: 4rem 2rem; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-section { padding: 4rem 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .translate-section { padding: 4rem 2rem; }
  .translate-inner { gap: 3rem; }
  .ask-section, .how-section { padding: 4rem 2rem; }
  .ask-inner { gap: 3rem; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .proof-section { padding: 4rem 2rem; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .form-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .form-intro { position: static; }
  footer { padding: 3rem 2rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .dashboard { padding: 84px 1.5rem 3rem; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { display: block !important; }
  .admin-sidebar { position: static; width: 100%; padding: 80px 0 1rem; }
  .admin-content { margin-left: 0 !important; padding: 2rem 1.5rem !important; width: 100% !important; }
  .admin-grid-stats { grid-template-columns: repeat(2, 1fr); }
  .about-hero { grid-template-columns: 1fr; padding: 5rem 2rem 3rem; gap: 3rem; }
  .about-values { padding: 4rem 2rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-section { padding: 4rem 2rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .media-grid { padding: 2rem 2rem 4rem; columns: 2; }
  .media-hero, .media-filters { padding-left: 2rem; padding-right: 2rem; }
}

/* RESPONSIVE MOBILE */
@media (max-width: 767px) {
  #main-nav { padding: 0 1.25rem; height: 58px; }
  .nav-cta { display: none; }
  .lang-switcher { display: none; }
  .mobile-menu { top: 58px; }
  .hero-wrap { grid-template-columns: 1fr; padding: 2.5rem 1.25rem 0; gap: 0; min-height: auto; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 0.93rem; max-width: 100%; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost, .btn-outline { width: 100%; justify-content: center; }
  .hero-photos { height: 260px; padding: 1.5rem 1.25rem 0; gap: 0.75rem; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .hero-photos::-webkit-scrollbar { display: none; }
  .pill-1 { width: 120px; flex: 0 0 120px; height: 220px; margin-bottom: 0; align-self: flex-end; }
  .pill-2 { width: 120px; flex: 0 0 120px; max-height: 240px; height: 240px; align-self: flex-start; }
  .pill-3 { width: 120px; flex: 0 0 120px; height: 210px; align-self: flex-end; }
  .trust-bar { padding: 1rem 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .trust-item { padding: 0; border-right: none; }
  .trust-item:nth-child(odd) { padding-right: 0.5rem; border-right: 1px solid var(--border); }
  .stats-wrap { padding: 1.5rem 1.25rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .categories { padding: 3rem 1.25rem; }
  .cats-grid { grid-template-columns: 1fr; }
  .services-section { padding: 3rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  h2, .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .translate-section { padding: 3rem 1.25rem; }
  .translate-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ask-section, .how-section { padding: 3rem 1.25rem; }
  .ask-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ask-feats { grid-template-columns: 1fr 1fr; }
  .ask-row { flex-direction: column; }
  .ask-send { width: 100%; }
  .steps-row { grid-template-columns: 1fr; }
  .proof-section { padding: 3rem 1.25rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .form-section { padding: 3rem 1.25rem; }
  .request-form { padding: 1.8rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-lang-row { justify-content: center; }
  .success-box { padding: 2.5rem 1.5rem; margin: 1rem; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .demande-detail { padding: 84px 1rem 3rem; }
  .dash-table { font-size: 0.78rem; }
  .dash-table th, .dash-table td { padding: 0.6rem 0.7rem; }
  .about-hero { padding: 5rem 1.25rem 3rem; }
  .about-values { padding: 3rem 1.25rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-section { padding: 3rem 1.25rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .media-grid { padding: 1.5rem 1rem 3rem; columns: 2; column-gap: 8px; }
  .media-item { margin-bottom: 8px; }
  .media-hero, .media-filters { padding-left: 1.25rem; padding-right: 1.25rem; }
  .lightbox-prev { left: -1rem; }
  .lightbox-next { right: -1rem; }
}
@media (max-width: 380px) {
  .ask-feats { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item:nth-child(odd) { border-right: none; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
