:root {
    --blue:   #000A13;
    --blue2:  #050F1C;
    --white:  #FCFCFC;
    --mint:   #4FD1C5;
    --coral:  #E25A3C;
    --muted:  rgba(252,252,252,0.45);
    --border: rgba(252,252,252,0.08);
    --nav-bg: rgba(0,10,19,0.93);
    --hover-border: rgba(252,252,252,0.25);
    --ghost-word: rgba(252,252,252,0.025);
    --marquee-muted: rgba(252,252,252,0.18);
    --tag-muted: rgba(252,252,252,0.3);
    --soft-panel: rgba(252,252,252,0.05);
    --soft-fill: rgba(252,252,252,0.04);
    --text-strong: rgba(252,252,252,0.75);
    --text-mid: rgba(252,252,252,0.72);
    --text-soft: rgba(252,252,252,0.7);
    --mint-soft: rgba(79,209,197,0.10);
    --mint-border: rgba(79,209,197,0.22);
    --coral-soft: rgba(226,90,60,0.08);
    --coral-border: rgba(226,90,60,0.22);
    --f:      'Plus Jakarta Sans', sans-serif;
    --fs:     'Libre Baskerville', Georgia, serif;
  }

  :root[data-theme="light"] {
    --blue:   #F7F3EA;
    --blue2:  #FFFFFF;
    --white:  #07111F;
    --mint:   #087C75;
    --coral:  #D94D31;
    --muted:  rgba(7,17,31,0.60);
    --border: rgba(7,17,31,0.11);
    --nav-bg: rgba(255,255,255,0.88);
    --hover-border: rgba(7,17,31,0.25);
    --ghost-word: rgba(7,17,31,0.045);
    --marquee-muted: rgba(7,17,31,0.32);
    --tag-muted: rgba(7,17,31,0.45);
    --soft-panel: rgba(7,17,31,0.07);
    --soft-fill: rgba(7,17,31,0.045);
    --text-strong: rgba(7,17,31,0.78);
    --text-mid: rgba(7,17,31,0.74);
    --text-soft: rgba(7,17,31,0.70);
    --mint-soft: rgba(8,124,117,0.10);
    --mint-border: rgba(8,124,117,0.24);
    --coral-soft: rgba(217,77,49,0.09);
    --coral-border: rgba(217,77,49,0.24);
  }

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

  body {
    background: var(--blue);
    color: var(--white);
    font-family: var(--f);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.25s ease, color 0.25s ease;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 20px 64px;
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
  }

  .logo-img-wrap {
    line-height: 0;
  }

  .site-logo {
    display: block;
    width: auto;
    height: 34px;
    max-width: 180px;
    object-fit: contain;
  }

  .logo-light-mode { display: none; }
  .logo-dark-mode { display: block; }

  :root[data-theme="light"] .logo-dark-mode { display: none; }
  :root[data-theme="light"] .logo-light-mode { display: block; }

  .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
  .nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { background: var(--coral) !important; color: #FCFCFC !important; padding: 10px 22px !important; border-radius: 2px; font-weight: 700 !important; font-size: 11px !important; letter-spacing: 1.5px !important; text-transform: uppercase; }


  .theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--soft-fill);
    color: var(--white);
    font-family: var(--f);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  }

  .theme-toggle:hover {
    transform: translateY(-1px);
    border-color: var(--hover-border);
  }

  .theme-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mint-soft);
    color: var(--mint);
    line-height: 1;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 88px;
    overflow: hidden;
    position: relative;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 64px;
    position: relative;
    z-index: 1;
  }

  .hero-left::after {
    content: '';
    position: absolute; right: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  }

  .kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--mint); margin-bottom: 36px;
    animation: fu 0.6s ease both;
  }
  .kl { display: block; width: 32px; height: 1px; background: var(--mint); }

  h1 {
    font-family: var(--f);
    font-size: clamp(52px, 5.5vw, 84px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -3px;
    margin-bottom: 28px;
    animation: fu 0.6s 0.08s ease both;
  }
  h1 .si { font-family: var(--fs); font-style: italic; font-weight: 400; color: var(--mint); letter-spacing: -1px; }
  h1 .co { color: var(--coral); }

  .hero-sub {
    font-size: 17px; font-weight: 300; color: var(--muted);
    max-width: 480px; line-height: 1.75; margin-bottom: 48px;
    animation: fu 0.6s 0.16s ease both;
  }

  .hero-acts { display: flex; gap: 14px; align-items: center; animation: fu 0.6s 0.24s ease both; }

  .btn-coral {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--coral); color: #FCFCFC;
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 16px 32px; text-decoration: none; border-radius: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-coral:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(226,90,60,0.3); }

  .btn-mint {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--mint); color: #000A13;
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 16px 32px; text-decoration: none; border-radius: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-mint:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(79,209,197,0.25); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--border); color: var(--muted);
    font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 16px 28px; text-decoration: none; border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--hover-border); color: var(--white); }

  /* hero right panel */
  .hero-right {
    background: var(--blue2);
    display: flex; flex-direction: column; justify-content: flex-end;
    overflow: hidden; position: relative;
  }
  .hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 75% 20%, rgba(226,90,60,0.07), transparent),
      radial-gradient(ellipse 50% 60% at 20% 80%, rgba(79,209,197,0.06), transparent);
  }

  .hero-right-inner { padding: 60px; position: relative; z-index: 1; }

  .ghost-word {
    font-family: var(--f); font-size: 140px; font-weight: 800; letter-spacing: -6px;
    color: var(--ghost-word); line-height: 1;
    position: absolute; top: 40px; right: -10px;
    pointer-events: none; user-select: none;
  }

  .stat-stack { display: flex; flex-direction: column; margin-bottom: 48px; }
  .stat-row { display: flex; align-items: baseline; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--border); }
  .stat-row:last-child { border-bottom: none; }
  .stat-n { font-family: var(--f); font-size: 52px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
  .stat-n.m { color: var(--mint); }
  .stat-n.c { color: var(--coral); }
  .stat-lbl { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
  .stat-sub { font-size: 12px; color: var(--muted); }

  .hero-chips { display: flex; gap: 6px; flex-wrap: wrap; }
  .chip {
    font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 7px 14px; border: 1px solid var(--border); border-radius: 2px; color: var(--muted);
  }
  .chip.on { border-color: var(--mint-border); color: var(--mint); background: var(--mint-soft); }
  .chip.con { border-color: var(--coral-border); color: var(--coral); background: var(--coral-soft); }

  /* ── MARQUEE ── */
  .mq-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 16px 0; background: var(--blue2); }
  .mq-track { display: flex; animation: marq 32s linear infinite; width: max-content; }
  @keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .mq-item { display: flex; align-items: center; gap: 20px; padding: 0 28px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--marquee-muted); white-space: nowrap; }
  .mq-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); opacity: 0.6; }
  .mq-item.m { color: var(--mint); }
  .mq-item.cr { color: var(--coral); }

  /* ── LAYOUT ── */
  section { position: relative; z-index: 1; }
  .w { max-width: 1240px; margin: 0 auto; padding: 0 64px; }

  .ey {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--mint); margin-bottom: 20px;
  }
  .ey::before { content: ''; display: block; width: 28px; height: 1px; background: var(--mint); }
  .ey.coral { color: var(--coral); }
  .ey.coral::before { background: var(--coral); }

  h2 {
    font-family: var(--f);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800; letter-spacing: -2.5px; line-height: 1.05; margin-bottom: 24px;
  }
  h2 .si { font-family: var(--fs); font-style: italic; font-weight: 400; color: var(--mint); letter-spacing: -1px; }
  h2 .co { color: var(--coral); }

  .lead { font-size: 17px; color: var(--muted); font-weight: 300; line-height: 1.75; max-width: 520px; }

  @keyframes fu { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

  /* ── SERVICES ── */
  #services { padding: 120px 0; }
  .svc-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 64px; }
  .svc-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }

  .scard {
    padding: 44px 48px;
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden; transition: background 0.3s; cursor: default;
  }
  .scard:nth-child(2n) { border-right: none; }
  .scard:nth-last-child(-n+2) { border-bottom: none; }
  .scard::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--mint); transition: width 0.4s ease; }
  .scard.c::after { background: var(--coral); }
  .scard:hover::after { width: 100%; }
  .scard:hover { background: var(--mint-soft); }
  .scard.c:hover { background: var(--coral-soft); }

  .scard-n { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--mint); margin-bottom: 20px; opacity: 0.5; }
  .scard.c .scard-n { color: var(--coral); }
  .scard-icon { font-size: 28px; margin-bottom: 16px; display: block; }
  .scard-title { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 12px; line-height: 1.2; }
  .scard-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
  .scard-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .stag { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; border: 1px solid var(--border); border-radius: 2px; color: var(--tag-muted); }

  /* ── ABOUT STRIP ── */
  #about {
    padding: 100px 0;
    background: var(--blue2);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }

  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

  .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
  .vcard { background: var(--blue); padding: 24px 20px; border: 1px solid var(--border); }
  .vcard-letter { font-family: var(--fs); font-style: italic; font-size: 40px; color: var(--mint); line-height: 1; margin-bottom: 8px; opacity: 0.6; display: block; }
  .vcard-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
  .vcard-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

  .about-right { background: var(--blue); border: 1px solid var(--border); border-radius: 4px; padding: 48px; }
  .mission-block { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
  .mb-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--mint); margin-bottom: 14px; }
  .mb-text { font-family: var(--fs); font-style: italic; font-size: 16px; color: var(--text-strong); line-height: 1.8; }
  .mb-text.coral { color: var(--coral); font-style: normal; font-family: var(--f); font-size: 14px; font-weight: 300; }

  /* ── AI SECTION ── */
  #ai { padding: 120px 0; }

  .ai-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

  .ai-list { margin-top: 48px; display: flex; flex-direction: column; }
  .ai-item { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); transition: padding-left 0.3s, border-color 0.3s; cursor: default; }
  .ai-item:last-child { border-bottom: none; }
  .ai-item:hover { padding-left: 10px; border-color: var(--mint-border); }
  .ai-n { font-family: var(--fs); font-size: 13px; color: var(--mint); font-style: italic; margin-top: 2px; }
  .ai-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
  .ai-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

  .ai-panel { background: var(--blue2); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
  .ap-head { background: var(--blue); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
  .ap-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mint); }
  .ap-badge { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #000A13; background: var(--coral); padding: 4px 10px; border-radius: 2px; }
  .ap-body { padding: 28px; }
  .met { display: flex; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .met:last-of-type { border-bottom: none; }
  .met-lbl { font-size: 13px; color: var(--muted); width: 180px; flex-shrink: 0; }
  .met-bar { flex: 1; margin: 0 16px; height: 3px; background: var(--soft-panel); border-radius: 2px; overflow: hidden; }
  .met-fill { height: 100%; border-radius: 2px; animation: gro 1.5s ease both; transform-origin: left; }
  .mf-m { background: var(--mint); }
  .mf-c { background: var(--coral); }
  @keyframes gro { from { transform: scaleX(0); } to { transform: scaleX(1); } }
  .met-pct { font-size: 13px; font-weight: 700; width: 34px; text-align: right; }
  .ap-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
  .aptag { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; }
  .at-m { background: var(--mint-soft); color: var(--mint); border: 1px solid var(--mint-border); }
  .at-c { background: var(--coral-soft); color: var(--coral); border: 1px solid var(--coral-border); }
  .at-p { background: var(--soft-fill); color: var(--muted); border: 1px solid var(--border); }

  /* ── PROCESS ── */
  #process { padding: 120px 0; background: var(--blue2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .ph { text-align: center; max-width: 600px; margin: 0 auto 80px; }
  .ph .ey { justify-content: center; }
  .ph .lead { margin: 0 auto; text-align: center; }
  .pt { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
  .pt::before { content: ''; position: absolute; top: 48px; left: 96px; right: 96px; height: 1px; background: linear-gradient(90deg, var(--mint), var(--coral), var(--mint)); opacity: 0.2; }
  .pstep { padding: 0 24px; text-align: center; }
  .pc { width: 96px; height: 96px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; transition: border-color 0.3s, background 0.3s; }
  .pc:hover { border-color: var(--mint); background: var(--mint-soft); }
  .pc-n { font-family: var(--fs); font-style: italic; font-size: 32px; color: var(--mint); }
  .pt-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
  .pt-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

  /* ── STARTUP KIT ── */
  #startup { padding: 120px 0; }
  .sk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .sk-checklist { margin-top: 40px; display: flex; flex-direction: column; gap: 2px; }
  .sk-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--border); border-radius: 2px; transition: border-color 0.2s, background 0.2s; cursor: default; }
  .sk-item:hover { border-color: var(--mint-border); background: var(--mint-soft); }
  .sk-check { width: 20px; height: 20px; border-radius: 50%; background: var(--mint-soft); border: 1px solid rgba(79,209,197,0.3); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--mint); flex-shrink: 0; }
  .sk-text { font-size: 14px; color: var(--text-strong); }

  .sk-card { background: var(--blue2); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; position: relative; }
  .sk-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--mint), var(--coral)); }
  .sk-card-inner { padding: 48px; }
  .sk-price-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--mint); margin-bottom: 8px; }
  .sk-price { font-family: var(--f); font-size: 48px; font-weight: 800; letter-spacing: -2px; margin-bottom: 24px; }
  .sk-price span { font-size: 18px; color: var(--muted); font-weight: 400; letter-spacing: 0; }
  .sk-includes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .sk-incl { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-soft); }
  .sk-incl::before { content: '✓'; color: var(--mint); font-weight: 700; font-size: 12px; flex-shrink: 0; }

  /* ── TESTIMONIAL ── */
  #testimonials { padding: 120px 0; background: var(--blue2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .testi-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 64px; }
  .tcard { background: var(--blue); border: 1px solid var(--border); border-radius: 4px; padding: 44px; }
  .tcard.feat { background: linear-gradient(135deg, rgba(79,209,197,0.04), rgba(226,90,60,0.04)); border-color: var(--mint-border); }
  .tcard-stars { font-size: 14px; letter-spacing: 3px; color: var(--coral); margin-bottom: 20px; }
  .tcard-q { font-family: var(--fs); font-size: 56px; line-height: 0.8; color: var(--mint); opacity: 0.25; display: block; margin-bottom: 16px; }
  .tcard-text { font-family: var(--fs); font-size: 15px; font-style: italic; font-weight: 400; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
  .tcard-author { display: flex; align-items: center; gap: 14px; }
  .tav { width: 44px; height: 44px; border-radius: 50%; background: var(--mint-soft); border: 1px solid var(--mint-border); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--mint); }
  .tav-name { font-size: 14px; font-weight: 700; }
  .tav-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

  /* ── CONTACT ── */
  #contact { padding: 120px 0; }
  .ct-inner { background: var(--blue2); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
  .ct-left { padding: 80px 64px; border-right: 1px solid var(--border); position: relative; }
  .ct-left::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--coral), var(--mint)); }
  .ct-left p { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 48px; }
  .ct-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
  .ct-right { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
  .cr-row { display: flex; align-items: center; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
  .cr-row:last-child { border-bottom: none; }
  .cr-icon { width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .cr-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
  .cr-val { font-size: 14px; font-weight: 600; }
  .cr-val a { color: var(--white); text-decoration: none; transition: color 0.2s; }
  .cr-val a:hover { color: var(--mint); }

  /* ── FOOTER ── */
  footer { border-top: 1px solid var(--border); background: var(--blue2); }
  .footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding: 64px; }
  .f-brand { }
  .f-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--white);
    text-decoration: none;
  }

  .f-logo .site-logo {
    height: 32px;
    max-width: 170px;
  }
  .f-tagline { font-family: var(--fs); font-style: italic; font-size: 14px; color: var(--muted); margin-bottom: 24px; }
  .f-socials { display: flex; gap: 12px; }
  .f-soc { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--muted); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
  .f-soc:hover { border-color: var(--mint); color: var(--mint); }
  .f-col-title { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--mint); margin-bottom: 20px; }
  .f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .f-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .f-links a:hover { color: var(--white); }
  .footer-bottom { border-top: 1px solid var(--border); padding: 24px 64px; display: flex; justify-content: space-between; align-items: center; }
  .fc { font-size: 12px; color: var(--marquee-muted); letter-spacing: 0.5px; text-align: center; margin: 0 auto;}

  /* ── SCROLL REVEAL ── */
  .sr { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .sr.vis { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    .theme-toggle { margin-left: auto; }
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 100px 24px 56px; }
    .hero-left::after { display: none; }
    .hero-right { min-height: 360px; }
    .hero-right-inner { padding: 36px 24px; }
    .w { padding: 0 24px; }
    .svc-top, .testi-top { flex-direction: column; align-items: flex-start; }
    .svc-grid { grid-template-columns: 1fr; }
    .scard { border-right: none; }
    .scard:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .scard:last-child { border-bottom: none; }
    .about-grid, .ai-split, .sk-grid { grid-template-columns: 1fr; gap: 48px; }
    .pt { grid-template-columns: 1fr 1fr; gap: 40px; }
    .pt::before { display: none; }
    .ct-inner { grid-template-columns: 1fr; }
    .ct-left { border-right: none; border-bottom: 1px solid var(--border); padding: 48px 24px; }
    .ct-right { padding: 48px 24px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 24px; }
    .footer-bottom { padding: 24px; flex-direction: column; gap: 12px; align-items: flex-start; }
  }

  @media (max-width: 640px) {
    .theme-text { display: none; }
    .theme-toggle { padding: 8px; }
    h1 { letter-spacing: -2px; }
    h2 { letter-spacing: -1.5px; }
    .values-grid, .pt { grid-template-columns: 1fr; }
    .hero-acts { flex-direction: column; align-items: flex-start; }
    .stat-n { font-size: 42px; }
    .footer-main { grid-template-columns: 1fr; }
  }


/* ── HARDENED UTILITY CLASSES ── */
.mission-block-last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.progress-41 { width: 41%; }
.progress-55 { width: 55%; }
.progress-68 { width: 68%; }
.progress-72 { width: 72%; }
.progress-87 { width: 87%; }

.delay-02 { animation-delay: 0.2s; }
.delay-04 { animation-delay: 0.4s; }
.delay-06 { animation-delay: 0.6s; }
.delay-08 { animation-delay: 0.8s; }

.btn-full {
  width: 100%;
  justify-content: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.testimonial-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tcard-flex { flex: 1; }
.tcard-q-small { font-size: 40px; }
.tcard-text-small { font-size: 14px; }

.tav-coral {
  background: rgba(226,90,60,0.1);
  border-color: rgba(226,90,60,0.2);
  color: var(--coral);
}

.rating-card {
  background: var(--blue);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  text-align: center;
}

.rating-score {
  font-family: var(--f);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--mint);
}

.rating-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.rating-stars {
  font-size: 20px;
  color: var(--coral);
  letter-spacing: 4px;
  margin-top: 8px;
}

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

/* ── SECURE CONTACT FORM ── */
.contact-details {
  margin-top: 42px;
  border-top: 1px solid var(--border);
}

.contact-form {
  width: 100%;
  background: var(--blue);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
}

.form-head { margin-bottom: 28px; }
.form-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 10px;
}

.form-head h3 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.form-head p,
.form-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--blue2);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px var(--mint-soft);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  margin: 8px 0 18px;
  min-height: 65px;
}

.form-submit {
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.form-status {
  min-height: 22px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.form-status.success { color: var(--mint); }
.form-status.error { color: var(--coral); }
.form-note { margin-top: 10px; }
.form-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--mint);
}

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