  :root {
    --deep-dark: #170303;
    --darker: #0d0202;
    --darkest: #050000;
    --primary-yellow: #FFB21A;
    --warm-gold: #F7C25E;
    --white: #FFFFFF;
    --muted-gray: #6B6B6B;
    --line-light: rgba(255,255,255,0.06);
    --line-mid: rgba(255,255,255,0.12);
    --red-warn: #ff6b3d;
    --green-ok: #5fd99a;
    --container: 1240px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #fff;
    background: var(--deep-dark);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    font-feature-settings: 'kern' 1, 'liga' 1, 'ss01' 1;
  }
  ::selection { background: var(--primary-yellow); color: var(--deep-dark); }
  a { color: inherit; }
  .container { max-width: var(--container); margin: 0 auto; }

  /* NAV */
  .nav { position: sticky; top: 0; z-index: 100; background: rgba(13,2,2,0.85); backdrop-filter: blur(16px) saturate(120%); -webkit-backdrop-filter: blur(16px) saturate(120%); border-bottom: 1px solid var(--line-light); }
  .nav-inner { max-width: var(--container); margin: 0 auto; padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: #fff; }
  .nav-mark { display: inline-flex; flex-direction: column; gap: 3px; width: 26px; height: 19px; }
  .nav-mark span { background: var(--primary-yellow); border-radius: 1px; height: 4px; display: block; }
  .nav-mark span:nth-child(1) { width: 100%; }
  .nav-mark span:nth-child(2) { width: 75%; }
  .nav-mark span:nth-child(3) { width: 50%; }
  .nav-brand { font-size: 14px; font-weight: 700; letter-spacing: 0.01em; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links > a, .nav-links > .nav-dd > .nav-dd-trigger { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; background: none; border: none; cursor: pointer; font-family: inherit; padding: 0; }
  .nav-links > a:hover, .nav-links > .nav-dd > .nav-dd-trigger:hover { color: #fff; }
  .nav-cta { background: var(--primary-yellow); color: var(--deep-dark); padding: 10px 18px; border-radius: 4px; font-weight: 700; text-decoration: none; font-size: 13px; transition: transform 0.15s; }
  .nav-cta:hover { transform: translateY(-1px); }
  .nav-dd { position: relative; }
  .nav-dd-trigger { display: inline-flex; align-items: center; gap: 6px; }
  .nav-dd-trigger::after { content: '▾'; font-size: 9px; color: rgba(255,255,255,0.5); transition: transform 0.2s; }
  .nav-dd.open .nav-dd-trigger::after { transform: rotate(180deg); color: var(--primary-yellow); }
  .nav-dd.open .nav-dd-trigger { color: #fff; }
  .nav-dd-menu { position: absolute; top: calc(100% + 16px); left: -16px; min-width: 340px; background: rgba(15,3,3,0.96); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); border: 1px solid var(--line-mid); border-radius: 8px; padding: 10px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.18s, transform 0.18s, visibility 0.18s; z-index: 50; }
  .nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-dd-menu a { display: block; padding: 12px 16px; border-radius: 5px; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; line-height: 1.4; transition: background 0.15s, color 0.15s; }
  .nav-dd-menu a:hover { background: rgba(255,178,26,0.08); color: var(--primary-yellow); }
  .nav-dd-menu a .meta { display: block; font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 400; margin-top: 3px; }

  /* Mobile menu toggle */
  .nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 32px; height: 32px;
    padding: 0; position: relative;
    flex-direction: column; justify-content: center; align-items: flex-end;
    gap: 4px;
  }
  .nav-toggle span {
    background: var(--primary-yellow);
    height: 3px; border-radius: 1px; display: block;
    transition: all 0.25s ease;
  }
  .nav-toggle span:nth-child(1) { width: 24px; }
  .nav-toggle span:nth-child(2) { width: 18px; }
  .nav-toggle span:nth-child(3) { width: 12px; }
  .nav-toggle:hover span:nth-child(2) { width: 24px; }
  .nav-toggle:hover span:nth-child(3) { width: 24px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

  /* Mobile overlay menu */
  .mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(13,2,2,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    opacity: 0; visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    overflow-y: auto;
  }
  .mobile-overlay.open { opacity: 1; visibility: visible; transform: translateX(0); }
  .mobile-overlay-inner { padding: 100px 28px 60px; max-width: 480px; margin: 0 auto; }
  .mobile-overlay a {
    display: block; padding: 18px 0;
    color: #fff; text-decoration: none;
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.01em;
    border-bottom: 1px solid var(--line-light);
    transition: color 0.15s;
  }
  .mobile-overlay a:hover { color: var(--primary-yellow); }
  .mobile-overlay a.sub {
    font-size: 15px; font-weight: 500;
    padding: 12px 0 12px 16px;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .mobile-overlay a.sub:hover { color: var(--primary-yellow); }
  .mobile-overlay a.sub .meta { display: block; font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 400; margin-top: 2px; letter-spacing: 0.02em; }
  .mobile-overlay .section-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    padding: 30px 0 6px;
    border-bottom: 1px solid var(--line-light);
    margin-bottom: 6px;
  }
  .mobile-overlay-cta {
    display: block !important;
    margin-top: 28px;
    background: var(--primary-yellow);
    color: var(--deep-dark) !important;
    padding: 18px !important;
    border-radius: 4px;
    text-align: center;
    border-bottom: none !important;
    font-size: 16px !important;
  }
  .mobile-overlay-cta:hover { color: var(--deep-dark) !important; transform: translateY(-1px); transition: transform 0.15s; }
  body.mobile-open { overflow: hidden; }

  /* SHARED */
  .eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary-yellow); margin-bottom: 24px; }
  .eyebrow::before { content: '—  '; }
  .btn-primary { background: var(--primary-yellow); color: var(--deep-dark); padding: 16px 28px; border-radius: 4px; font-weight: 700; font-size: 14px; text-decoration: none; display: inline-block; transition: transform 0.15s; cursor: pointer; border: none; font-family: inherit; }
  .btn-primary:hover { transform: translateY(-1px); }
  .btn-ghost { color: #fff; padding: 16px 28px; border: 1px solid rgba(255,255,255,0.18); border-radius: 4px; font-weight: 500; font-size: 14px; text-decoration: none; display: inline-block; transition: all 0.15s; }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.4); }
  section { padding: 110px 32px; }
  section .container { max-width: var(--container); margin: 0 auto; }

  /* HERO */
  .hero { padding: 80px 32px 110px; }
  .hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 90px; align-items: center; }
  .hero-headline { font-size: 64px; font-weight: 800; line-height: 1.02; letter-spacing: -0.035em; }
  .hero-headline em { font-style: normal; color: var(--primary-yellow); }
  .hero-sub { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.7); margin-top: 28px; max-width: 540px; }
  .hero-cta-row { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-credentials { margin-top: 36px; display: flex; gap: 32px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line-light); }
  .hero-cred-item { font-size: 13px; color: rgba(255,255,255,0.6); }
  .hero-cred-item b { color: var(--primary-yellow); font-weight: 800; font-size: 18px; display: block; margin-bottom: 2px; letter-spacing: -0.01em; }
  .leak-card { background: rgba(255,255,255,0.025); border: 1px solid var(--line-mid); border-radius: 8px; padding: 32px; }
  .leak-card-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line-light); }
  .leak-card-title { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
  .leak-card-meta { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
  .leak-row { display: flex; align-items: center; gap: 16px; padding: 11px 0; }
  .leak-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.05); border-radius: 100px; overflow: hidden; }
  .leak-bar-fill { height: 100%; background: var(--primary-yellow); border-radius: 100px; }
  .leak-label { font-size: 13px; font-weight: 500; min-width: 90px; color: rgba(255,255,255,0.85); }
  .leak-val { font-size: 13px; font-weight: 700; color: var(--primary-yellow); min-width: 40px; text-align: right; }

  /* PROBLEM / QUIZ */
  .problem { background: var(--darker); }
  .problem h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; max-width: 820px; line-height: 1.12; }
  .problem h2 em { font-style: normal; color: var(--primary-yellow); }
  .problem .lead { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 620px; margin-top: 22px; line-height: 1.65; }
  .quiz { margin-top: 56px; background: rgba(255,255,255,0.02); border: 1px solid var(--line-mid); border-radius: 10px; padding: 40px; max-width: 760px; }
  .q-progress { display: flex; gap: 6px; margin-bottom: 32px; }
  .q-progress-bar { flex: 1; height: 3px; background: rgba(255,255,255,0.06); border-radius: 100px; transition: background 0.3s; }
  .q-progress-bar.active { background: var(--primary-yellow); }
  .q-step { display: none; } .q-step.active { display: block; }
  .q-step-num { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 18px; }
  .q-question { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.35; margin-bottom: 26px; }
  .q-answers { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .q-answer { background: rgba(255,255,255,0.03); border: 1px solid var(--line-mid); padding: 20px 22px; border-radius: 6px; color: #fff; font-size: 15px; font-weight: 500; font-family: inherit; cursor: pointer; text-align: left; transition: all 0.15s; display: flex; align-items: center; gap: 12px; }
  .q-answer:hover { border-color: rgba(255,178,26,0.6); background: rgba(255,178,26,0.04); }
  .q-answer .yn { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); flex-shrink: 0; }
  .q-answer:hover .yn { border-color: var(--primary-yellow); color: var(--primary-yellow); }
  .q-result { display: none; } .q-result.active { display: block; }
  .q-result-tag { display: inline-block; padding: 5px 12px; border-radius: 3px; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
  .q-result-tag.green { background: rgba(95,217,154,0.12); color: var(--green-ok); }
  .q-result-tag.yellow { background: rgba(255,178,26,0.12); color: var(--primary-yellow); }
  .q-result-tag.red { background: rgba(255,107,61,0.12); color: var(--red-warn); }
  .q-result h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; margin-bottom: 14px; }
  .q-result p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 24px; max-width: 580px; }
  .q-result-cta { background: var(--primary-yellow); color: var(--deep-dark); padding: 13px 22px; border-radius: 4px; font-weight: 700; text-decoration: none; display: inline-block; font-size: 14px; margin-right: 10px; }
  .q-result-cta.ghost { background: transparent; color: #fff; border: 1px solid var(--line-mid); }
  .q-restart { background: none; border: none; color: rgba(255,255,255,0.45); font-size: 12px; cursor: pointer; margin-top: 20px; font-family: inherit; text-decoration: underline; }

  /* METHOD */
  .method h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; max-width: 880px; line-height: 1.12; }
  .method h2 em { font-style: normal; color: var(--primary-yellow); }
  .method .lead { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 700px; margin-top: 22px; line-height: 1.65; }
  .timeline { margin-top: 80px; }
  .timeline-track { position: relative; height: 3px; background: rgba(255,255,255,0.08); border-radius: 100px; margin: 0 24px 50px; }
  .timeline-track-fill { position: absolute; inset: 0; width: 100%; background: var(--primary-yellow); border-radius: 100px; }
  .timeline-milestones { position: absolute; inset: -7px 0 0 0; display: flex; justify-content: space-between; pointer-events: none; }
  .timeline-milestone { width: 17px; height: 17px; border-radius: 50%; background: var(--primary-yellow); border: 3px solid var(--deep-dark); }
  .timeline-blocks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .timeline-block { padding: 0 20px; }
  .timeline-block + .timeline-block { border-left: 1px solid var(--line-light); }
  .timeline-day { font-size: 12px; color: var(--primary-yellow); letter-spacing: 0.1em; font-weight: 700; margin-bottom: 14px; }
  .timeline-block-title { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
  .timeline-block-desc { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.6; margin-bottom: 18px; }
  .timeline-deliverable { font-size: 12px; color: var(--primary-yellow); font-weight: 600; }
  .timeline-deliverable::before { content: '→ '; }

  /* PROOF */
  .proof { background: var(--darker); }
  .proof h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; max-width: 900px; line-height: 1.12; }
  .proof h2 em { font-style: normal; color: var(--primary-yellow); }
  .proof .lead { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 720px; margin-top: 22px; line-height: 1.65; }
  .proof-context { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid var(--line-light); }
  .proof-context-item h4 { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 14px; }
  .proof-context-item p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; }
  .proof-context-item p b { color: #fff; font-weight: 700; }
  .proof-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
  .proof-industry { background: var(--darker); padding: 32px 28px; transition: background 0.2s; }
  .proof-industry:hover { background: rgba(255,178,26,0.025); }
  .proof-industry-num { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; font-weight: 600; }
  .proof-industry-name { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 10px 0 18px; }
  .proof-industry-result { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
  .proof-industry-result b { color: var(--primary-yellow); font-weight: 600; }
  .proof-discretion { margin-top: 36px; padding: 18px 22px; background: rgba(255,178,26,0.03); border-left: 2px solid var(--primary-yellow); font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; }
  .proof-discretion b { color: #fff; }

  /* SERVICES */
  .services h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; max-width: 900px; line-height: 1.12; }
  .services h2 em { font-style: normal; color: var(--primary-yellow); }
  .services .lead { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 720px; margin-top: 22px; line-height: 1.65; }
  .service-flagship { margin-top: 70px; background: rgba(255,178,26,0.04); border: 1px solid rgba(255,178,26,0.25); border-radius: 10px; padding: 48px; }
  .service-label { font-size: 12px; color: var(--primary-yellow); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 22px; }
  .service-flagship h3 { font-size: 40px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 14px; }
  .service-flagship .subtitle { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 30px; max-width: 700px; }
  .service-flagship-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
  .sf-includes h4 { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
  .sf-includes ul { list-style: none; }
  .sf-includes li { font-size: 14px; color: rgba(255,255,255,0.82); padding: 6px 0 6px 22px; position: relative; line-height: 1.5; }
  .sf-includes li::before { content: ''; position: absolute; left: 0; top: 14px; width: 12px; height: 1px; background: var(--primary-yellow); }
  .sf-guarantee { background: rgba(95,217,154,0.05); border: 1px solid rgba(95,217,154,0.25); border-radius: 8px; padding: 22px; }
  .sf-guarantee-tag { font-size: 11px; color: var(--green-ok); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
  .sf-guarantee h5 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.3; }
  .sf-guarantee p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
  .service-flagship-bottom { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .sf-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .sf-price .amount { font-size: 48px; font-weight: 900; color: var(--primary-yellow); letter-spacing: -0.035em; line-height: 1; }
  .sf-price .scope { font-size: 14px; color: rgba(255,255,255,0.5); }
  .services-grid { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .service-card { background: rgba(255,255,255,0.025); border: 1px solid var(--line-mid); border-radius: 10px; padding: 36px; display: flex; flex-direction: column; transition: border-color 0.2s; }
  .service-card:hover { border-color: rgba(255,178,26,0.4); }
  .service-card .service-label { margin-bottom: 18px; }
  .service-card h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 10px; line-height: 1.2; }
  .service-card .sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; line-height: 1.6; }
  .service-card-body { flex: 1; margin-bottom: 24px; }
  .service-card-body h5 { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
  .service-card-body ul { list-style: none; }
  .service-card-body li { font-size: 13px; color: rgba(255,255,255,0.78); padding: 5px 0 5px 18px; position: relative; line-height: 1.5; }
  .service-card-body li::before { content: ''; position: absolute; left: 0; top: 13px; width: 10px; height: 1px; background: var(--primary-yellow); }
  .service-card-bottom { padding-top: 20px; border-top: 1px solid var(--line-light); display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
  .sc-price .amount { font-size: 24px; font-weight: 800; color: var(--primary-yellow); letter-spacing: -0.02em; }
  .sc-price .unit { font-size: 12px; color: rgba(255,255,255,0.5); margin-left: 4px; }
  .sc-price .scope-note { display: block; font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
  .sc-link { font-size: 13px; color: var(--primary-yellow); text-decoration: none; font-weight: 700; transition: opacity 0.15s; }
  .sc-link::after { content: ' →'; }
  .sc-link:hover { opacity: 0.75; }
  .service-outsourcing { margin-top: 20px; background: rgba(255,255,255,0.025); border: 1px solid var(--line-mid); border-radius: 10px; padding: 44px; }
  .service-outsourcing-head { margin-bottom: 36px; max-width: 820px; }
  .service-outsourcing-head h3 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 12px; }
  .service-outsourcing-head .sub { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.65; }
  .service-outsourcing-head .sub b { color: #fff; font-weight: 600; }
  .out-sublist { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: 6px; overflow: hidden; margin-bottom: 32px; }
  .out-item { background: var(--deep-dark); padding: 28px 24px; }
  .out-item .num { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; font-weight: 600; }
  .out-item h4 { font-size: 18px; font-weight: 700; margin: 8px 0 14px; letter-spacing: -0.01em; }
  .out-item h6 { font-size: 11px; color: var(--primary-yellow); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; margin-top: 14px; }
  .out-item ul { list-style: none; margin-bottom: 0; }
  .out-item li { font-size: 13px; color: rgba(255,255,255,0.72); padding: 4px 0 4px 14px; position: relative; line-height: 1.5; }
  .out-item li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 1px; background: rgba(255,178,26,0.6); }
  .out-item li.exclude { color: rgba(255,107,61,0.7); }
  .out-item li.exclude::before { background: var(--red-warn); }
  .service-outsourcing-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line-light); }
  .so-price { font-size: 15px; color: rgba(255,255,255,0.72); max-width: 540px; }
  .so-price b { color: var(--primary-yellow); font-weight: 700; }

  /* ABOUT */
  .about { background: var(--darker); }
  .about h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; max-width: 900px; line-height: 1.12; }
  .about h2 em { font-style: normal; color: var(--primary-yellow); }
  .about .lead { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 720px; margin-top: 22px; line-height: 1.65; }
  .about-studio { margin-top: 60px; background: rgba(255,178,26,0.04); border: 1px solid rgba(255,178,26,0.22); border-radius: 10px; padding: 48px; }
  .about-label { font-size: 12px; color: var(--primary-yellow); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 22px; }
  .about-studio h3 { font-size: 38px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 18px; }
  .about-studio .subtitle { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 36px; max-width: 720px; }
  .about-studio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
  .about-fact h4 { font-size: 11px; color: var(--primary-yellow); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
  .about-fact p { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.6; }
  .about-connector { text-align: center; padding: 28px 0 24px; color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
  .about-founder { background: rgba(255,255,255,0.025); border: 1px solid var(--line-mid); border-radius: 10px; padding: 36px; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; }
  .about-founder-mark { width: 56px; height: 56px; border-radius: 4px; border: 1.5px solid var(--primary-yellow); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--primary-yellow); font-size: 18px; letter-spacing: -0.02em; }
  .about-founder-meta .pos { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; }
  .about-founder-meta h4 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; }
  .about-founder-meta .role { font-size: 13px; color: var(--primary-yellow); font-weight: 600; }
  .about-founder-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 480px; padding-left: 36px; border-left: 1px solid var(--line-light); }
  .about-founder-link { font-size: 13px; color: var(--primary-yellow); text-decoration: none; font-weight: 600; white-space: nowrap; }
  .about-founder-link::after { content: ' →'; }
  .about-founder-link:hover { opacity: 0.75; }

  /* FAQ */
  .faq h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; max-width: 900px; line-height: 1.12; }
  .faq h2 em { font-style: normal; color: var(--primary-yellow); }
  .faq .lead { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 700px; margin-top: 22px; line-height: 1.65; }
  .faq-map { margin-top: 60px; background: rgba(255,255,255,0.02); border: 1px solid var(--line-mid); border-radius: 10px; overflow: hidden; }
  .faq-zones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); }
  .faq-zone { background: var(--deep-dark); padding: 26px 24px; text-align: left; cursor: pointer; border: none; color: #fff; font-family: inherit; transition: background 0.2s; position: relative; }
  .faq-zone:hover { background: rgba(255,178,26,0.03); }
  .faq-zone.active { background: rgba(255,178,26,0.06); }
  .faq-zone.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--primary-yellow); }
  .faq-zone-num { font-size: 12px; color: var(--primary-yellow); letter-spacing: 0.15em; font-weight: 700; margin-bottom: 10px; }
  .faq-zone-name { font-size: 16px; font-weight: 700; letter-spacing: -0.005em; margin-bottom: 4px; }
  .faq-zone-count { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; }
  .faq-content { padding: 48px 40px; }
  .faq-panel { display: none; } .faq-panel.active { display: block; }
  .faq-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 56px; }
  .faq-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.005em; line-height: 1.4; }
  .faq-item p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; }
  .faq-item p b { color: var(--primary-yellow); font-weight: 600; }

  /* BOOKING + FORM */
  .booking { padding: 110px 32px; }
  .booking-intro h2 { font-size: 60px; font-weight: 900; letter-spacing: -0.035em; line-height: 1.02; max-width: 1000px; }
  .booking-intro h2 em { font-style: normal; color: var(--primary-yellow); }
  .booking-intro .sub { font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.6; max-width: 640px; margin-top: 32px; }
  .booking-blueprint { margin-top: 50px; padding: 28px 32px; background: rgba(255,255,255,0.025); border: 1px solid var(--line-mid); border-radius: 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 900px; }
  .bp-item .label { font-size: 11px; color: rgba(255,178,26,0.85); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; font-weight: 700; }
  .bp-item .value { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
  .bp-item .meta { font-size: 12px; color: rgba(255,255,255,0.5); }
  .form-wrap { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 1100px; }
  .form-side h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 18px; }
  .form-side ol { list-style: none; counter-reset: step; }
  .form-side ol li { counter-increment: step; padding: 14px 0; border-bottom: 1px solid var(--line-light); display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; }
  .form-side ol li:last-child { border-bottom: none; }
  .form-side ol li::before { content: counter(step); color: var(--primary-yellow); font-weight: 700; font-size: 13px; padding-top: 1px; }
  .form-side ol li .step-text { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.55; }
  .form-side ol li .step-text b { color: #fff; font-weight: 600; }
  form.fit-form { background: rgba(255,255,255,0.025); border: 1px solid var(--line-mid); border-radius: 10px; padding: 36px; }
  .form-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.005em; }
  .form-subtitle { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
  .form-field { margin-bottom: 18px; }
  .form-field label { display: block; font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
  .form-field label .req { color: var(--primary-yellow); margin-left: 3px; }
  .form-input, .form-select, .form-textarea { width: 100%; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 14px 16px; border-radius: 4px; font-family: inherit; font-size: 15px; transition: border-color 0.15s; }
  .form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary-yellow); }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-textarea { resize: vertical; min-height: 90px; line-height: 1.55; }
  .form-select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFB21A' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
  .form-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
  .form-radio { flex: 1; min-width: 120px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: all 0.15s; font-size: 14px; }
  .form-radio:hover { border-color: rgba(255,178,26,0.6); }
  .form-radio input { accent-color: var(--primary-yellow); margin: 0; }
  .form-radio.checked { border-color: var(--primary-yellow); background: rgba(255,178,26,0.05); }
  .form-submit { width: 100%; background: var(--primary-yellow); color: var(--deep-dark); border: none; padding: 18px; border-radius: 4px; font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer; transition: transform 0.15s; margin-top: 8px; }
  .form-submit:hover { transform: translateY(-1px); }
  .form-success { display: none; background: rgba(95,217,154,0.06); border: 1px solid rgba(95,217,154,0.3); border-radius: 10px; padding: 40px 36px; }
  .form-success.active { display: block; }
  .form-success .tick { width: 48px; height: 48px; border-radius: 50%; background: rgba(95,217,154,0.15); color: var(--green-ok); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
  .form-success h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 12px; }
  .form-success p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 14px; }
  .form-success .next { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-light); font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
  .form-meta { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-light); font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.55; }
  .form-meta a { color: var(--primary-yellow); text-decoration: none; }

  /* FOOTER */
  .footer { background: var(--darkest); padding: 50px 32px 30px; border-top: 1px solid var(--line-light); }
  .footer-inner { max-width: var(--container); margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
  .footer-brand-name { font-size: 16px; font-weight: 800; margin-top: 18px; }
  .footer-brand-tag { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; margin-top: 12px; max-width: 320px; }
  .footer-col h5 { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { padding: 5px 0; }
  .footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
  .footer-col ul li a:hover { color: var(--primary-yellow); }
  .footer-bottom { padding-top: 24px; border-top: 1px solid var(--line-light); display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; flex-wrap: wrap; gap: 14px; }
  .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-bottom a:hover { color: var(--primary-yellow); }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .nav-inner { padding: 18px 24px; }
    .nav-links { gap: 22px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-headline { font-size: 48px; }
    .booking-intro h2 { font-size: 46px; }
    .services-grid, .form-wrap, .proof-context, .service-flagship-grid { grid-template-columns: 1fr; gap: 32px; }
    .out-sublist { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    section { padding: 70px 24px; }
    .hero { padding: 50px 24px 70px; }
    .footer, .booking { padding-left: 24px; padding-right: 24px; }
    .nav-inner { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-brand { font-size: 13px; }
    .hero-headline { font-size: 36px; }
    .booking-intro h2 { font-size: 34px; }
    .problem h2, .method h2, .proof h2, .services h2, .about h2, .faq h2 { font-size: 28px; }
    .q-answers { grid-template-columns: 1fr; }
    .timeline-blocks { grid-template-columns: 1fr; gap: 28px; }
    .timeline-block + .timeline-block { border-left: none; border-top: 1px solid var(--line-light); padding: 28px 0 0; }
    .timeline-track { display: none; }
    .proof-grid { grid-template-columns: 1fr; }
    .service-flagship, .about-studio, .service-outsourcing { padding: 28px; }
    .service-flagship h3, .about-studio h3 { font-size: 26px; }
    .service-outsourcing-head h3 { font-size: 24px; }
    .sf-price .amount { font-size: 36px; }
    .about-studio-grid { grid-template-columns: 1fr; }
    .about-founder { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
    .about-founder-desc { padding-left: 0; border-left: none; padding-top: 18px; border-top: 1px solid var(--line-light); }
    .faq-zones { grid-template-columns: 1fr 1fr; }
    .faq-panel-grid { grid-template-columns: 1fr; }
    .faq-content { padding: 32px 24px; }
    .booking-blueprint { grid-template-columns: 1fr; gap: 18px; }
    form.fit-form { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }
