/* ===================================================
   Talenta — Feuille de styles
   Site institutionnel · Pédagogie augmentée
   =================================================== */

:root {
    --electric-edge: #2B7FFF;
    --royal-indigo: #5B21B6;
    --deep-navy: #1E1B4B;
    --sky-pulse: #3B82F6;
    --cyan-spark: #67E8F9;
    --violet-glow: #8B5CF6;
    --cream-canvas: #F0E5CC;
    --cream-soft: #F5EBD8;
    --off-white: #FAF7F0;
    --pure-white: #FFFFFF;
    --slate-ink: #475569;
    --graphite: #0F172A;
    --gradient-signature: linear-gradient(135deg, #2B7FFF 0%, #4338CA 55%, #5B21B6 100%);

    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
  }

  body {
    font-family: var(--font-body);
    background: var(--cream-canvas);
    color: var(--graphite);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: radial-gradient(circle at 12% 8%, rgba(43,127,255,0.06) 0%, transparent 50%),
                      radial-gradient(circle at 88% 92%, rgba(91,33,182,0.06) 0%, transparent 50%);
    pointer-events: none; z-index: 0;
  }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }

  a { color: inherit; text-decoration: none; }

  /* === STICKY NAV === */
  nav.top {
    position: sticky; top: 0; z-index: 100;
    background: rgba(240, 229, 204, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(30,27,75,0.08);
  }
  .nav-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 48px;
    max-width: 1240px; margin: 0 auto;
  }
  .nav-brand {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display); font-weight: 700;
    font-size: 18px; color: var(--deep-navy);
    letter-spacing: -0.02em;
  }
  .nav-brand-icon {
    position: relative; width: 32px; height: 28px;
  }
  .nav-brand-icon svg { width: 100%; height: 100%; display: block; }

  .nav-links {
    display: flex; gap: 32px;
    font-family: var(--font-display); font-weight: 500;
    font-size: 14px;
  }
  .nav-links a {
    color: var(--slate-ink); transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--deep-navy); }

  .nav-cta {
    background: var(--deep-navy); color: white;
    padding: 9px 18px; border-radius: 8px;
    font-family: var(--font-display); font-weight: 600;
    font-size: 13px; transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px rgba(30,27,75,0.4);
  }

  @media (max-width: 880px) {
    .nav-inner { padding: 14px 24px; }
    .nav-links { display: none; }
  }

  /* === HERO === */
  .hero {
    padding: 120px 0 100px;
    position: relative; overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute;
    top: 30%; right: -200px;
    width: 500px; height: 500px;
    background: var(--gradient-signature);
    border-radius: 50%;
    filter: blur(120px); opacity: 0.18;
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--royal-indigo); letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 32px;
    padding: 6px 12px;
    background: rgba(91,33,182,0.08);
    border-radius: 100px;
  }
  .hero-eyebrow .pixel {
    width: 8px; height: 8px;
    background: var(--cyan-spark);
    border-radius: 1px;
  }

  .hero h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(44px, 7vw, 96px); line-height: 0.95;
    letter-spacing: -0.04em; color: var(--deep-navy);
    margin-bottom: 32px; max-width: 1100px;
  }
  .hero h1 .ai {
    background: linear-gradient(135deg, #2B7FFF 0%, #3B82F6 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero h1 .neuro {
    background: linear-gradient(135deg, #5B21B6 0%, #8B5CF6 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero h1 .x {
    color: var(--royal-indigo); font-weight: 500;
    padding: 0 0.1em; font-style: italic;
  }

  .hero-sub {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(18px, 2.2vw, 24px); color: var(--slate-ink);
    max-width: 680px; margin-bottom: 48px; line-height: 1.5;
  }
  .hero-sub strong { color: var(--deep-navy); font-weight: 600; }

  .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 64px; }
  .btn-primary {
    background: var(--gradient-signature); color: white;
    padding: 16px 28px; border-radius: 10px;
    font-family: var(--font-display); font-weight: 600;
    font-size: 15px;
    box-shadow: 0 12px 32px -8px rgba(43,127,255,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px -8px rgba(43,127,255,0.5);
  }
  .btn-secondary {
    background: transparent; color: var(--deep-navy);
    border: 1.5px solid var(--deep-navy);
    padding: 14.5px 28px; border-radius: 10px;
    font-family: var(--font-display); font-weight: 600;
    font-size: 15px; transition: all 0.2s;
  }
  .btn-secondary:hover {
    background: var(--deep-navy); color: white;
  }
  .btn-arrow::after { content: ' →'; }

  /* Hero stat strip */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid rgba(30,27,75,0.12);
  }
  .stat-item .num {
    font-family: var(--font-display); font-weight: 700;
    font-size: 32px; color: var(--deep-navy);
    letter-spacing: -0.02em; line-height: 1;
    margin-bottom: 4px;
  }
  .stat-item .num .accent {
    background: var(--gradient-signature);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .stat-item .label {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--slate-ink); letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .hero-stats-source {
    grid-column: 1 / -1;
    font-family: var(--font-mono); font-size: 10px;
    color: var(--slate-ink); opacity: 0.7;
    letter-spacing: 0.05em;
    margin-top: 4px;
  }

  @media (max-width: 880px) {
    .hero { padding: 64px 0 80px; }
    .container { padding: 0 24px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  }

  /* === SECTION: MANIFESTO === */
  .manifesto {
    padding: 120px 0;
    background: var(--deep-navy);
    color: white;
    position: relative; overflow: hidden;
  }
  .manifesto::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: var(--gradient-signature);
    border-radius: 50%;
    filter: blur(120px); opacity: 0.4;
  }
  .manifesto::after {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(103,232,249,0.3) 0%, transparent 70%);
  }
  .manifesto-tag {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--cyan-spark); letter-spacing: 0.2em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 32px;
    position: relative;
  }
  .manifesto-quote {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(28px, 3.6vw, 52px); line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 1000px;
    position: relative;
    margin-bottom: 32px;
  }
  .manifesto-quote em {
    font-style: normal;
    background: linear-gradient(135deg, var(--cyan-spark) 0%, var(--violet-glow) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .manifesto-attribution {
    font-family: var(--font-display); font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 720px; line-height: 1.7;
    position: relative;
  }
  .manifesto-attribution strong { color: white; font-weight: 600; }

  /* === SECTION HEADER === */
  section { padding: 120px 0; }
  .section-head {
    margin-bottom: 72px;
  }
  .section-eyebrow {
    display: inline-block;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--royal-indigo); letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 16px;
  }
  .section-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(36px, 5vw, 64px); line-height: 1;
    letter-spacing: -0.03em; color: var(--deep-navy);
    max-width: 900px; margin-bottom: 24px;
  }
  .section-head h2 em {
    font-style: italic; font-weight: 500;
    background: var(--gradient-signature);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .section-head p {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(16px, 1.6vw, 18px);
    color: var(--slate-ink); max-width: 640px; line-height: 1.55;
  }

  /* === MÉTHODE — 3 PILIERS === */
  .methode {
    background: var(--cream-canvas);
  }
  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pillar {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(30,27,75,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(30,27,75,0.15);
  }
  .pillar::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
  }
  .pillar.p1::before { background: var(--electric-edge); }
  .pillar.p2::before { background: var(--royal-indigo); }
  .pillar.p3::before { background: var(--violet-glow); }
  .pillar-num {
    font-family: var(--font-mono); font-size: 12px;
    color: var(--royal-indigo); letter-spacing: 0.18em;
    margin-bottom: 24px; font-weight: 600;
  }
  .pillar-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700;
    font-size: 24px; color: white;
    margin-bottom: 24px;
  }
  .pillar.p1 .pillar-icon { background: var(--electric-edge); }
  .pillar.p2 .pillar-icon { background: var(--royal-indigo); }
  .pillar.p3 .pillar-icon { background: var(--violet-glow); }
  .pillar h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 24px; color: var(--deep-navy);
    margin-bottom: 16px; letter-spacing: -0.01em;
  }
  .pillar p {
    font-size: 15px; color: var(--slate-ink); line-height: 1.6;
    margin-bottom: 24px;
  }
  .pillar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .pillar-tag {
    font-family: var(--font-mono); font-size: 10px;
    padding: 4px 10px; border-radius: 100px;
    letter-spacing: 0.05em; text-transform: uppercase;
    background: rgba(30,27,75,0.05);
    color: var(--slate-ink);
  }

  @media (max-width: 880px) {
    .pillars { grid-template-columns: 1fr; }
  }

  /* === MARCHÉS === */
  .marches { background: var(--off-white); }
  .marches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .marche {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(30,27,75,0.06);
    transition: transform 0.3s;
  }
  .marche:hover { transform: translateY(-2px); }

  .marche-icon {
    font-family: var(--font-display); font-weight: 700;
    font-size: 38px;
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(43,127,255,0.1), rgba(91,33,182,0.15));
    color: var(--royal-indigo);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }
  .marche h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 22px; color: var(--deep-navy);
    margin-bottom: 8px; letter-spacing: -0.01em;
  }
  .marche-pill {
    display: inline-block;
    font-family: var(--font-mono); font-size: 10px;
    color: var(--royal-indigo); letter-spacing: 0.15em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 20px;
    padding: 3px 10px;
    background: rgba(91,33,182,0.08);
    border-radius: 4px;
  }
  .marche-list {
    list-style: none;
    margin-bottom: 24px;
  }
  .marche-list li {
    font-size: 14px; color: var(--graphite);
    padding: 8px 0;
    border-bottom: 1px dashed rgba(30,27,75,0.1);
    display: flex; align-items: center; gap: 10px;
  }
  .marche-list li:last-child { border-bottom: none; }
  .marche-list li::before {
    content: ''; width: 6px; height: 6px;
    background: var(--electric-edge); border-radius: 1px;
    flex-shrink: 0;
  }
  .marche p {
    font-size: 13px; color: var(--slate-ink);
    font-style: italic;
    border-top: 1px solid rgba(30,27,75,0.08);
    padding-top: 16px; line-height: 1.5;
  }

  @media (max-width: 880px) {
    .marches-grid { grid-template-columns: 1fr; }
  }

  /* === NOS CAPACITÉS === */
  .capacites { background: var(--cream-canvas); }

  .cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .cap-group {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(30,27,75,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .cap-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(30,27,75,0.15);
  }
  .cap-group::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
  }
  .cap-group.g1::before { background: var(--electric-edge); }
  .cap-group.g2::before { background: var(--sky-pulse); }
  .cap-group.g3::before { background: var(--royal-indigo); }
  .cap-group.g4::before { background: var(--violet-glow); }

  .cap-group-head {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(30,27,75,0.08);
  }
  .cap-group-num {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--royal-indigo); letter-spacing: 0.18em;
    font-weight: 600; margin-bottom: 12px;
  }
  .cap-group-head h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 24px; color: var(--deep-navy);
    letter-spacing: -0.01em; line-height: 1.15;
    margin-bottom: 10px;
  }
  .cap-group-head p {
    font-size: 14px; color: var(--slate-ink); line-height: 1.55;
  }

  .cap-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .cap-item {
    display: flex; gap: 12px; align-items: flex-start;
  }
  .cap-pixel {
    width: 10px; height: 10px;
    border-radius: 2px;
    margin-top: 5px;
    flex-shrink: 0;
  }
  .cap-group.g1 .cap-pixel { background: var(--electric-edge); }
  .cap-group.g2 .cap-pixel { background: var(--sky-pulse); }
  .cap-group.g3 .cap-pixel { background: var(--royal-indigo); }
  .cap-group.g4 .cap-pixel { background: var(--violet-glow); }

  .cap-item-text {
    font-size: 13px; color: var(--slate-ink);
    line-height: 1.5;
  }
  .cap-item-text strong {
    display: block;
    font-family: var(--font-display); font-weight: 600;
    font-size: 14px; color: var(--deep-navy);
    margin-bottom: 2px;
  }

  @media (max-width: 980px) {
    .cap-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .cap-items { grid-template-columns: 1fr; }
  }

  /* === ÉQUIPE / POURQUOI NOUS === */
  .equipe { background: var(--off-white); }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .why-points {
    display: flex; flex-direction: column; gap: 28px;
  }
  .why-point {
    display: flex; gap: 20px;
    align-items: flex-start;
  }
  .why-point .num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 11px;
    background: var(--gradient-signature);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700;
    color: white; font-size: 16px;
  }
  .why-point h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 20px; color: var(--deep-navy);
    margin-bottom: 8px; letter-spacing: -0.01em;
  }
  .why-point p {
    font-size: 14px; color: var(--slate-ink); line-height: 1.6;
  }

  .team-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(30,27,75,0.06);
  }
  .team-card-eyebrow {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--royal-indigo); letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 16px;
  }
  .team-card h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 24px; color: var(--deep-navy);
    margin-bottom: 16px; letter-spacing: -0.01em;
  }
  .team-card p {
    font-size: 14px; color: var(--slate-ink); line-height: 1.6;
    margin-bottom: 24px;
  }
  .team-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(30,27,75,0.08);
  }
  .team-tag {
    font-family: var(--font-mono); font-size: 11px;
    padding: 6px 12px; border-radius: 100px;
    letter-spacing: 0.04em;
    background: var(--off-white);
    color: var(--royal-indigo);
    border: 1px solid rgba(91,33,182,0.15);
  }

  @media (max-width: 880px) {
    .why-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  /* === CONTACT === */
  .contact {
    background: var(--cream-canvas);
    text-align: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(43,127,255,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .contact-eyebrow {
    font-family: var(--font-mono); font-size: 12px;
    color: var(--royal-indigo); letter-spacing: 0.2em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 24px;
    position: relative;
  }
  .contact h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(40px, 5.5vw, 80px); line-height: 0.95;
    letter-spacing: -0.04em; color: var(--deep-navy);
    margin-bottom: 24px;
    max-width: 1000px; margin-left: auto; margin-right: auto;
    position: relative;
  }
  .contact h2 em {
    font-style: italic; font-weight: 500;
    background: var(--gradient-signature);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .contact-sub {
    font-family: var(--font-display); font-size: 18px;
    color: var(--slate-ink); margin-bottom: 56px;
    max-width: 600px; margin-left: auto; margin-right: auto;
    line-height: 1.5;
    position: relative;
  }

  /* — layout : formulaire + coordonnées — */
  .contact-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
    position: relative;
  }

  /* — le formulaire — */
  .contact-form {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(30,27,75,0.08);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-field { margin-bottom: 18px; }
  .form-field label {
    display: block;
    font-family: var(--font-display); font-weight: 600;
    font-size: 13px; color: var(--deep-navy);
    margin-bottom: 7px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    font-family: var(--font-body); font-size: 14px;
    color: var(--graphite);
    background: var(--off-white);
    border: 1px solid rgba(30,27,75,0.12);
    border-radius: 10px;
    padding: 12px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: #94A3B8; }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--electric-edge);
    box-shadow: 0 0 0 3px rgba(43,127,255,0.12);
  }
  .form-field textarea { resize: vertical; min-height: 96px; }
  .form-field select { cursor: pointer; }

  .form-submit {
    width: 100%;
    justify-content: center;
    border: none; cursor: pointer;
    margin-top: 4px;
    font-family: var(--font-display);
  }
  .form-note {
    font-size: 12px; color: var(--slate-ink);
    margin-top: 14px; line-height: 1.5;
  }
  .form-note a { color: var(--electric-edge); }

  /* — colonne coordonnées — */
  .contact-aside {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--deep-navy);
    border-radius: 24px;
    padding: 36px 32px;
  }
  .contact-aside-block {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .contact-aside-block:last-child { border-bottom: none; }
  .contact-aside-block:first-child { padding-top: 0; }
  .contact-aside-block .label {
    font-family: var(--font-mono); font-size: 10px;
    color: var(--cyan-spark); letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 6px;
  }
  .contact-aside-block .value {
    font-family: var(--font-display); font-weight: 600;
    font-size: 15px; color: var(--pure-white);
  }
  .contact-aside-block .value a { color: var(--pure-white); }
  .contact-aside-block .value a:hover { color: var(--cyan-spark); }

  @media (max-width: 880px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
  }

  /* === FOOTER === */
  footer {
    background: var(--deep-navy);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display); font-weight: 700;
    font-size: 22px; color: white;
    margin-bottom: 16px;
  }
  .footer-brand-icon { width: 32px; height: 28px; }
  .footer-tagline {
    font-family: var(--font-display); font-style: italic;
    font-size: 14px; color: var(--cyan-spark);
    margin-bottom: 16px;
  }
  .footer-desc {
    font-size: 13px; line-height: 1.6;
    max-width: 320px;
  }
  .footer-col h5 {
    font-family: var(--font-mono); font-size: 11px;
    color: white; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { padding: 4px 0; }
  .footer-col a {
    font-size: 13px; color: rgba(255,255,255,0.7);
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--cyan-spark); }
  .footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
    font-family: var(--font-mono); font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
  }
  .footer-legal {
    display: flex; gap: 24px;
  }
  .footer-legal a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .footer-legal a:hover { color: white; }

  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .container { padding: 0 24px; }
  }
