/* ============================================================
   HORIZON 5 — style.css v4
   Palette : bleu #1565C0 · gold #F9A825 · rouge #C62828
   Fonts   : Poppins (titres) + Open Sans (corps)
   Fond    : blanc #fff et gris clair #f5f7fa
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  --blue:       #1565C0;
  --blue-dark:  #0d47a1;
  --blue-light: #1976D2;
  --blue-pale:  #e8f0fe;
  --gold:       #F9A825;
  --gold-dark:  #e65100;
  --red:        #C62828;
  --white:      #ffffff;
  --grey-light: #f5f7fa;
  --grey-mid:   #eef1f6;
  --grey-border:#dde2ec;
  --text-dark:  #1a2340;
  --text-mid:   #4a5670;
  --text-light: #8a94a8;
  --radius:     10px;
  --radius-sm:  6px;
  --shadow:     0 4px 20px rgba(21,101,192,0.12);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; font-size: 15px; }
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.25; }

/* ── FEATURE FLAG — cacher les apps pas encore prêtes ── */
.app-hidden { display: none !important; }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--blue-dark); border-bottom: 2px solid var(--gold); transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 42px; height: 42px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 15px; color: var(--blue-dark); letter-spacing: -1px; }
.logo-mark span { color: var(--gold); }
.logo-name { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: var(--white); line-height: 1.2; }
.logo-sub  { display: block; font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; padding: 7px 14px; border-radius: var(--radius-sm); transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-links .nav-cta { background: var(--gold); color: var(--text-dark) !important; font-weight: 600; border-radius: var(--radius-sm); padding: 7px 20px; margin-left: 8px; }
.nav-links .nav-cta:hover { background: #ffca28; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; flex-direction: column; background: var(--blue-dark); border-top: 1px solid rgba(255,255,255,0.1); padding: 0.75rem 24px 1.25rem; }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: var(--white); padding: 12px 26px; border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.25s; }
.btn-primary:hover { background: var(--blue-light); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-gold { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--text-dark); padding: 12px 26px; border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all 0.25s; }
.btn-gold:hover { background: #ffca28; box-shadow: 0 4px 16px rgba(249,168,37,0.4); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); padding: 12px 26px; border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; text-decoration: none; border: 2px solid rgba(255,255,255,0.5); transition: all 0.25s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-large { padding: 15px 36px; font-size: 15px; }
.btn-full  { width: 100%; justify-content: center; }

/* ── SECTIONS ── */
.section      { padding: 90px 0; }
.section-grey { background: var(--grey-light); }
.section-blue { background: var(--blue-dark); }
.section-tag { display: inline-block; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); background: var(--blue-pale); border-left: 3px solid var(--blue); padding: 5px 14px; border-radius: 0 4px 4px 0; margin-bottom: 14px; }
.section-tag.white { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; }
.section-title.white { color: var(--white); }
.section-title span { color: var(--blue); }
.section-title.white span { color: var(--gold); }
.section-desc { font-size: 1rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; }
.section-desc.white { color: rgba(255,255,255,0.75); }
.center-action { text-align: center; margin-top: 2.5rem; }
.divider { width: 50px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px auto 0; }

/* ── HERO ── */
.hero { background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue) 60%, #1a78d4 100%); padding: 150px 0 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 500; padding: 6px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.25); margin-bottom: 1.25rem; }
.badge-dot { width: 7px; height: 7px; background: #4caf50; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.hero h1 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 800; color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { margin-top: 3rem; display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat .num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.hero-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hc-item { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 1.25rem; text-align: center; }
.hc-item .hci-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.hc-item .hci-label { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 2rem 1.5rem; text-decoration: none; color: var(--text-dark); transition: all 0.3s; display: block; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.sc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-size: 13px; font-weight: 600; color: var(--blue); }

/* ── APPS GRID ── */
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.app-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.app-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--blue); }
.app-card-header { padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; border-bottom: 1px solid var(--grey-border); }
.app-icon-wrap { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.app-card-header h3 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.app-card-header p { font-size: 12px; color: var(--text-mid); }
.app-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-top: 5px; text-transform: uppercase; letter-spacing: 0.05em; }
.app-card-body { padding: 1.25rem 1.5rem; }
.app-feat { font-size: 13px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; margin-bottom: 7px; }
.app-feat::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.app-stack { padding: 1rem 1.5rem; background: var(--grey-light); display: flex; flex-wrap: wrap; gap: 6px; }
.app-stack span { font-size: 10px; background: var(--white); border: 1px solid var(--grey-border); color: var(--text-mid); padding: 3px 8px; border-radius: 4px; font-weight: 600; }

/* ── STORE BADGES ── */
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; padding: 1rem 1.5rem; border-top: 1px solid var(--grey-border); }
.store-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--text-dark); color: #fff; padding: 7px 14px; border-radius: 8px; text-decoration: none; font-size: 12px; font-weight: 600; transition: all 0.2s; border: 1px solid rgba(255,255,255,0.15); }
.store-badge:hover { background: #2a3550; transform: translateY(-1px); }
.store-badge .sb-icon { font-size: 1.2rem; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge .sb-sub  { font-size: 9px; font-weight: 400; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.06em; }
.store-badge .sb-name { font-size: 12px; font-weight: 700; }
.store-badge.soon { background: var(--grey-mid); color: var(--text-mid); cursor: default; border-color: var(--grey-border); }
.store-badge.soon:hover { transform: none; }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-img-placeholder { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); border-radius: 16px; padding: 3rem; text-align: center; color: var(--white); }
.wip-logo { font-family: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.wip-sub { font-size: 13px; opacity: 0.7; }
.why-items { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; align-items: flex-start; gap: 1rem; }
.wi-icon { width: 42px; height: 42px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--text-mid); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue) 100%); padding: 140px 0 70px; border-bottom: 3px solid var(--gold); }
.page-hero .section-tag { color: var(--gold-dark); background: rgba(249,168,37,0.2); border-color: var(--gold); }
.page-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.page-title span { color: var(--gold); }
.page-desc { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 600px; line-height: 1.75; }
.page-subnav { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.page-subnav a { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); text-decoration: none; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 5px 14px; border-radius: 20px; transition: all 0.2s; }
.page-subnav a:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ── SVC BLOCKS (services & apps pages) ── */
.svc-block { margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--grey-border); }
.svc-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center; }
.svc-grid.reverse { grid-template-columns: 2fr 1fr; }
.svc-visual-box { background: linear-gradient(135deg, var(--blue-pale) 0%, var(--grey-mid) 100%); border-radius: 16px; padding: 3rem; text-align: center; border: 1px solid var(--grey-border); }
.svc-big-icon { font-size: 4rem; display: block; margin-bottom: 1rem; }
.svc-big-num  { font-family: 'Poppins', sans-serif; font-size: 5rem; font-weight: 800; color: rgba(21,101,192,0.12); line-height: 1; }
.svc-content h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-dark); }
.svc-content h2 span { color: var(--blue); }
.svc-content > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.svc-list { list-style: none; margin-bottom: 2rem; }
.svc-list li { font-size: 14px; color: var(--text-mid); padding: 8px 0 8px 1.5rem; border-bottom: 1px solid var(--grey-border); position: relative; }
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: '▶'; position: absolute; left: 0; color: var(--blue); font-size: 9px; top: 11px; }
.app-stack-inline { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.5rem; }
.app-stack-inline span { font-size: 11px; background: var(--blue-pale); border: 1px solid rgba(21,101,192,0.2); color: var(--blue); padding: 3px 10px; border-radius: 4px; font-weight: 600; }

/* ── DNA GRID ── */
.dna-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dna-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: all 0.25s; }
.dna-card:hover { background: rgba(255,255,255,0.12); }
.dna-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.dna-card strong { display: block; font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--white); margin-bottom: 0.4rem; }
.dna-card p { font-size: 12px; color: rgba(255,255,255,0.65); margin: 0; }

/* ── FOUNDERS ── */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.founder-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 2rem; text-align: center; transition: all 0.3s; }
.founder-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.founder-av { width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: var(--white); margin: 0 auto 1.25rem; }
.founder-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.founder-role { font-size: 11px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.75rem; }
.founder-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.founder-tags span { font-size: 11px; background: var(--blue-pale); color: var(--blue); padding: 3px 10px; border-radius: 4px; font-weight: 600; }

/* ── STACK ── */
.stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stack-group { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 1.5rem; }
.stack-group h4 { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--blue-pale); }
.stack-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.stack-tags span { font-size: 12px; background: var(--grey-light); color: var(--text-mid); padding: 4px 10px; border-radius: 4px; font-weight: 500; }

/* ── MISSION ── */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.mission-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mc { background: var(--grey-light); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 1.25rem; border-top: 3px solid var(--blue); }
.mc .mc-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.mc h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.mc p { font-size: 12px; color: var(--text-mid); margin: 0; }
.values-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.val-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.val-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.ci-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; }
.ci-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--blue-pale); color: var(--blue); }
.ci-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem; }
.ci-icon { width: 38px; height: 38px; background: var(--blue-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-item strong { display: block; font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.ci-item a, .ci-item span { font-size: 14px; color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.ci-item a:hover { color: var(--blue); }
.ci-founders-list { display: flex; flex-direction: column; gap: 1rem; }
.cif { display: flex; align-items: center; gap: 12px; }
.cif-av { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0; }
.cif strong { display: block; font-size: 14px; }
.cif span { display: block; font-size: 12px; color: var(--text-mid); }
.cif a { display: block; font-size: 12px; color: var(--blue); text-decoration: none; }
.form-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.75rem; border-bottom: 2px solid var(--grey-border); padding-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.25rem; }
.fg label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--grey-light); border: 1px solid var(--grey-border); border-radius: var(--radius-sm); padding: 11px 14px; color: var(--text-dark); font-family: 'Open Sans', sans-serif; font-size: 14px; transition: border-color 0.2s; outline: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); background: var(--white); }
.fg textarea { resize: vertical; }
.fg .hint { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 2rem; }
.form-success .fs-icon { font-size: 3rem; }
.form-success strong { font-size: 1.1rem; }
.form-success p { font-size: 14px; color: var(--text-mid); }
.form-success.show { display: flex; }

/* ── DEVIS FORM ── */
.devis-toggle { display: flex; gap: 0; margin-bottom: 1.5rem; border: 1px solid var(--grey-border); border-radius: var(--radius-sm); overflow: hidden; }
.devis-toggle button { flex: 1; padding: 11px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; background: var(--grey-light); color: var(--text-mid); }
.devis-toggle button.active { background: var(--blue); color: #fff; }
.form-section { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--grey-border); }
.form-section-title { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.form-section-title::after { content: ''; flex: 1; height: 1px; background: var(--blue-pale); }
.fg .char-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.fg .char-options label { display: flex; align-items: center; gap: 6px; background: var(--grey-light); border: 1px solid var(--grey-border); border-radius: 6px; padding: 7px 12px; font-size: 13px; cursor: pointer; transition: all 0.2s; }
.fg .char-options input[type=checkbox] { accent-color: var(--blue); }
.budget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.budget-opt { position: relative; }
.budget-opt input[type=radio] { position: absolute; opacity: 0; }
.budget-opt label { display: block; text-align: center; padding: 10px 8px; background: var(--grey-light); border: 1px solid var(--grey-border); border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--text-mid); }
.budget-opt input:checked + label { background: var(--blue-pale); border-color: var(--blue); color: var(--blue); }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; }

/* ── FOOTER ── */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 0.75rem; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-gold { color: var(--gold); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid, .apps-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .mission-grid, .founders-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-grid, .svc-grid.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .dna-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .section { padding: 60px 0; }
  .services-grid, .apps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stack-grid, .dna-grid, .mission-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .budget-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
