  :root {
    --bg-deep: #070c15;
    --bg-surface: #0d1525;
    --bg-card: #111e30;
    --bg-card-hover: #162438;
    --cyan: #00d4ff;
    --cyan-dim: rgba(0,212,255,0.10);
    --cyan-glow: rgba(0,212,255,0.25);
    --red: #dc2626;
    --red-dim: rgba(220,38,38,0.12);
    --amber: #f59e0b;
    --text: #e8edf5;
    --text-muted: #6b7f96;
    --border: rgba(0,212,255,0.15);
    --border-subtle: rgba(255,255,255,0.06);
  }

  *, *::before, *::after { box-sizing: border-box; }

  html, body {
    margin: 0; padding: 0;
    background: var(--bg-deep);
    color: var(--text);
    font-family: 'Source Serif 4', Georgia, serif;
    line-height: 1.65;
  }

  h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
    line-height: 1.05;
  }

  /* ── NAVBAR ── */
  .navbar {
    background: rgba(7,12,21,0.96) !important;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-link { color: var(--text-muted) !important; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.12em; transition: color 0.2s; }
  .nav-link:hover { color: var(--cyan) !important; }

  /* ── HERO ── */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
    background-color: var(--bg-deep);
    background-image: linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    padding-top: 80px;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 25% 55%, rgba(0,212,255,0.07) 0%, transparent 60%),
                radial-gradient(ellipse 50% 40% at 80% 25%, rgba(220,38,38,0.05) 0%, transparent 60%);
  }
  .hero::after {
    content: ''; position: absolute; left: 0; right: 0; height: 1px; pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, var(--cyan) 30%, var(--cyan) 70%, transparent 100%);
    opacity: 0.35; animation: scanLine 10s linear infinite;
  }
  @keyframes scanLine {
    0%   { top: -2px; opacity: 0; }
    3%   { opacity: 0.35; }
    97%  { opacity: 0.35; }
    100% { top: 100%; opacity: 0; }
  }
  .hero-inner { position: relative; z-index: 2; padding: 40px 0 80px; }

  .hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    letter-spacing: 0.22em; color: var(--cyan); text-transform: uppercase;
    display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--cyan); }

  .hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 9vw, 108px);
    line-height: 0.93; letter-spacing: 0.02em; color: var(--text);
    margin-bottom: 0;
  }
  .hero-h1 .accent-red { color: var(--red); }

  .hero-sub {
    font-family: 'Source Serif 4', serif; font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-muted); max-width: 500px; line-height: 1.75;
    font-style: italic; margin: 28px 0 40px;
  }

  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

  .btn-cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 34px; background: var(--cyan); color: var(--bg-deep);
    font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
    border: none; cursor: pointer; transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }
  .btn-cta-primary:hover { background: #33ddff; color: var(--bg-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,212,255,0.3); }

  .btn-cta-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; background: transparent; color: var(--cyan);
    font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none; border: 1px solid var(--border);
    cursor: pointer; transition: all 0.2s;
  }
  .btn-cta-ghost:hover { border-color: var(--cyan); background: var(--cyan-dim); color: var(--cyan); }

  .hero-badges { display: flex; gap: 8px; flex-wrap: wrap; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border: 1px solid var(--border); background: var(--cyan-dim);
    font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--cyan); letter-spacing: 0.1em;
  }
  .hero-badge::before { content: '▸'; font-size: 9px; }

  /* Radar SVG */
  .radar-wrap { display: flex; align-items: center; justify-content: center; }
  @keyframes radarRing { 0% { r: 8; opacity: 0.8; } 100% { r: 160; opacity: 0; } }
  @keyframes radarSweep { to { transform: rotate(360deg); transform-origin: 200px 200px; } }
  .radar-sweep { animation: radarSweep 6s linear infinite; transform-origin: 200px 200px; }
  .radar-ring-1 { animation: radarRing 3s ease-out infinite; }
  .radar-ring-2 { animation: radarRing 3s ease-out 1s infinite; }
  .radar-ring-3 { animation: radarRing 3s ease-out 2s infinite; }

  /* ── SECTION CHROME ── */
  .sec-label {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.22em;
    color: var(--cyan); text-transform: uppercase; margin-bottom: 12px;
    display: flex; align-items: center; gap: 12px;
  }
  .sec-label::after { content: ''; flex: 0 0 48px; height: 1px; background: var(--border); }
  .sec-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px,5vw,64px); color: var(--text); letter-spacing: 0.03em; margin-bottom: 16px; }
  .sec-intro { font-size: 17px; color: var(--text-muted); line-height: 1.75; max-width: 580px; }

  .dark-sec { background: var(--bg-deep); padding: 100px 0; }
  .surface-sec { background: var(--bg-surface); padding: 100px 0; }

  /* ── PHASE CARDS ── */
  .phases { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; }
  .phase-card {
    padding: 32px 24px 28px; border: 1px solid var(--border-subtle);
    border-top: 3px solid transparent; background: var(--bg-card); transition: all 0.3s;
  }
  .phase-card:nth-child(1) { border-top-color: var(--cyan); }
  .phase-card:nth-child(2) { border-top-color: rgba(0,212,255,0.55); }
  .phase-card:nth-child(3) { border-top-color: rgba(220,38,38,0.6); }
  .phase-card:nth-child(4) { border-top-color: var(--red); }
  .phase-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }

  .phase-num-circle {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--cyan);
    background: var(--bg-deep); display: flex; align-items: center; justify-content: center;
    font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--cyan); font-weight: 700;
    margin-bottom: 18px;
  }
  .phase-tag { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--text-muted); letter-spacing: 0.15em; margin-bottom: 10px; display: block; }
  .phase-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--text); margin-bottom: 12px; letter-spacing: 0.04em; }
  .phase-body { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
  .phase-body a { color: var(--cyan); text-decoration: none; }
  .phase-body a:hover { text-decoration: underline; }

  .gif-showcase { margin-top: 56px; border: 1px solid var(--border); position: relative; overflow: hidden; }
  .gif-showcase img { width: 100%; display: block; }
  .gif-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 20px;
    background: linear-gradient(transparent, rgba(7,12,21,0.9));
    font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--cyan); letter-spacing: 0.1em;
  }

  /* ── PRICING ── */
  .plan-card {
    background: var(--bg-card); border: 1px solid var(--border); padding: 40px;
    position: relative; overflow: hidden;
  }
  .plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), transparent); }

  select.plan-select {
    width: 100%; padding: 12px 40px 12px 16px; background: var(--bg-deep);
    border: 1px solid var(--border); color: var(--text);
    font-family: 'IBM Plex Mono', monospace; font-size: 13px;
    outline: none; -webkit-appearance: none; appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300d4ff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    margin-bottom: 28px; transition: border-color 0.2s;
  }
  select.plan-select:focus { border-color: var(--cyan); }
  select.plan-select option, select.plan-select optgroup { background: var(--bg-deep); color: var(--text); }

  .price-big { font-family: 'Bebas Neue', sans-serif; font-size: 80px; color: var(--cyan); line-height: 1; letter-spacing: 0.02em; }
  .price-unit { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--text-muted); letter-spacing: 0.12em; margin-top: 4px; margin-bottom: 28px; }

  #description ul, #description2 ul { list-style: none; padding: 0; margin: 0; }
  #description li, #description2 li {
    padding: 8px 0; border-bottom: 1px solid var(--border-subtle);
    display: flex; align-items: baseline; gap: 10px; font-size: 14px; color: var(--text-muted);
  }
  #description li::before, #description2 li::before { content: '▸'; color: var(--cyan); font-size: 10px; flex-shrink: 0; font-family: monospace; }

  .managed-btn {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
    padding: 11px 24px; background: transparent; border: 1px solid var(--border);
    color: var(--text-muted); font-family: 'IBM Plex Mono', monospace;
    font-size: 12px; letter-spacing: 0.1em; cursor: pointer; transition: all 0.2s;
  }
  .managed-btn:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

  .managed-panel {
    background: var(--bg-card); border: 1px solid var(--border);
    margin-top: 24px; padding: 36px;
  }
  .managed-panel h3 { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--text); margin-bottom: 16px; }
  .managed-panel ul { list-style: none; padding: 0; }
  .managed-panel li { padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 15px; color: var(--text-muted); line-height: 1.6; }
  .managed-panel li::before { content: '— '; color: var(--cyan); font-family: 'IBM Plex Mono', monospace; }
  .managed-panel img { width: 100%; border: 1px solid var(--border); }

  /* ── TESTIMONIALS ── */
  .testi-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    padding: 32px; height: 100%;
  }
  .testi-prefix {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--cyan);
    letter-spacing: 0.12em; margin-bottom: 16px; padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle); display: block;
  }
  .testi-body { font-size: 15px; color: var(--text); line-height: 1.8; font-style: italic; }
  .testi-author { margin-top: 20px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; }

  /* ── SIGN UP SECTION ── */
  .steps-row { display: flex; align-items: center; gap: 0; margin-bottom: 48px; max-width: 560px; }
  .step-node { display: flex; align-items: center; gap: 10px; }
  .step-node:not(:last-child)::after { content: ''; flex: 1 1 40px; min-width: 40px; height: 1px; background: var(--border); }
  .step-dot {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--cyan);
    background: var(--bg-deep); display: flex; align-items: center; justify-content: center;
    font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--cyan); font-weight: 700; flex-shrink: 0;
  }
  .step-lbl { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; white-space: nowrap; }

  .form-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 48px; position: relative; overflow: hidden; max-width: 520px;
  }
  .form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.1)); }

  .plan-badge {
    display: flex; align-items: center; gap: 10px; padding: 10px 16px;
    background: var(--cyan-dim); border: 1px solid var(--border);
    margin-bottom: 28px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--cyan); letter-spacing: 0.08em;
  }

  /* Override Bootstrap form-control for dark theme */
  .form-control {
    background-color: var(--bg-deep) !important; border: 1px solid var(--border-subtle) !important;
    border-radius: 0 !important; color: var(--text) !important;
    font-family: 'IBM Plex Mono', monospace; font-size: 13px; transition: border-color 0.2s !important;
  }
  .form-control:focus { border-color: var(--cyan) !important; box-shadow: 0 0 0 2px rgba(0,212,255,0.1) !important; background-color: var(--bg-deep) !important; }
  .form-control::placeholder { color: #3a4f63 !important; }

  .form-check-label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--text-muted); }
  .form-check-label a { color: var(--cyan); text-decoration: none; }
  .form-check-input { accent-color: var(--cyan); }

  /* Keep Bootstrap signup button toggle working but style it */
  #signup_button {
    border-radius: 0 !important; font-family: 'IBM Plex Mono', monospace !important;
    font-size: 13px !important; letter-spacing: 0.15em !important; padding: 14px !important;
    transition: all 0.2s !important;
  }
  #signup_button.btn-outline-primary { background: var(--cyan) !important; color: var(--bg-deep) !important; border-color: var(--cyan) !important; }
  #signup_button.btn-outline-primary:hover { background: #33ddff !important; box-shadow: 0 4px 20px rgba(0,212,255,0.3) !important; }
  #signup_button.btn-outline-secondary { background: var(--bg-surface) !important; color: var(--text-muted) !important; border-color: var(--border-subtle) !important; }

  a.already { display: block; text-align: center; margin-top: 16px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-muted); text-decoration: none; letter-spacing: 0.08em; }
  a.already:hover { color: var(--cyan); }

  /* ── BENEFITS ── */
  .benefit-card {
    padding: 32px; border: 1px solid var(--border-subtle); border-top: 3px solid transparent;
    background: var(--bg-card); height: 100%; transition: all 0.3s;
  }
  .benefit-card:hover { border-top-color: var(--cyan); background: var(--bg-card-hover); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
  .benefit-icon { color: var(--cyan); margin-bottom: 18px; display: block; }
  .benefit-icon svg, .benefit-icon i { font-size: 28px; width: 28px; height: 28px; }
  .benefit-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.04em; color: var(--text); margin-bottom: 12px; }
  .benefit-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
  .benefit-body a { color: var(--cyan); text-decoration: none; }
  .benefit-body strong { color: var(--text); }

  /* ── MATURITY TIMELINE ── */
  .maturity-timeline { position: relative; padding-left: 64px; }
  .maturity-timeline::before {
    content: ''; position: absolute; left: 23px; top: 12px; bottom: 12px;
    width: 2px; background: linear-gradient(to bottom, var(--cyan) 0%, var(--border) 50%, var(--red) 100%);
  }
  .mat-item { position: relative; margin-bottom: 20px; cursor: pointer; }
  .mat-item:last-child { margin-bottom: 0; }

  .mat-dot {
    position: absolute; left: -50px; top: 14px;
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid var(--border-subtle); background: var(--bg-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: 'IBM Plex Mono', monospace; font-size: 8px; color: var(--text-muted); font-weight: 700;
    transition: all 0.2s; line-height: 1;
  }
  .mat-item:hover .mat-dot, .mat-item.active .mat-dot { border-color: var(--cyan); background: var(--cyan-dim); color: var(--cyan); }

  .mat-row {
    background: var(--bg-card); border: 1px solid var(--border-subtle); padding: 18px 22px;
    display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start; transition: all 0.2s;
  }
  .mat-item:hover .mat-row, .mat-item.active .mat-row { border-color: var(--border); background: var(--bg-card-hover); }

  .mat-pct { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--cyan); line-height: 1; }
  .mat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
  .mat-desc strong { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text); letter-spacing: 0.05em; margin-bottom: 3px; }
  .mat-unlock { display: none; margin-top: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--amber); letter-spacing: 0.08em; }
  .mat-unlock::before { content: '★  '; }
  .mat-item.active .mat-unlock { display: block; }
  .mat-screenshot { display: none; margin-top: 12px; }
  .mat-item.active .mat-screenshot { display: block; }
  .mat-screenshot img { width: 100%; border: 1px solid var(--border); cursor: zoom-in; }

  /* ── INSIDE SCREENSHOT ── */
  .inside-img { border: 1px solid var(--border); overflow: hidden; }
  .inside-img img { width: 100%; display: block; }

  /* ── YOUTUBE ── */
  .yt-frame { display: inline-block; border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.3s; }
  .yt-frame:hover { box-shadow: 0 0 48px rgba(0,212,255,0.12); }
  .yt-frame img { max-width: 100%; display: block; }
  .yt-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border-subtle); margin-top: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .yt-feat { background: var(--bg-card); padding: 28px 32px; }
  .yt-feat h4 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--text); margin-bottom: 8px; }
  .yt-feat p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }

  /* ── MODAL ── */
  #imageModal .modal-content { background: var(--bg-deep); border: 1px solid var(--border); border-radius: 0; }
  #imageModal .modal-body { padding: 8px; }
  #imageModal .modal-footer { border-top: 1px solid var(--border-subtle); background: var(--bg-surface); }
  #imageModal .btn-light { background: transparent; border: 1px solid var(--border); color: var(--text-muted); font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.1em; border-radius: 0; }
  #imageModal .btn-light:hover { border-color: var(--cyan); color: var(--cyan); }

  /* ── FOOTER ── */
  .site-footer { background: #040710; border-top: 1px solid var(--border-subtle); padding: 60px 0 32px; }
  .footer-h { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.15em; color: var(--cyan); text-transform: uppercase; margin-bottom: 20px; }
  .footer-links { list-style: none; padding: 0; margin: 0; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; font-family: 'Source Serif 4', serif; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text); }
  .footer-btm { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .footer-btm p, .footer-btm a { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; margin: 0; text-decoration: none; }
  .footer-btm a:hover { color: var(--cyan); }

  /* ── HERO PLAN CARDS ── */
  .hero-plan-grid {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; margin-top: 8px;
  }
  .hpc {
    flex: 1 1 140px; min-width: 130px; max-width: 200px;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    padding: 18px 16px 14px; position: relative; transition: border-color 0.2s;
    display: flex; flex-direction: column;
  }
  .hpc:hover { border-color: var(--border); }
  .hpc-featured { border-color: var(--border) !important; }
  .hpc-featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--cyan);
  }
  .hpc-ribbon {
    font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 0.14em;
    color: var(--cyan); margin-bottom: 6px;
  }
  .hpc-name {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.18em;
    color: var(--text-muted); margin-bottom: 6px;
  }
  .hpc-price {
    font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--text);
    line-height: 1; margin-bottom: 4px;
  }
  .hpc-per { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-muted); }
  .hpc-meta {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--text-muted);
    letter-spacing: 0.06em; margin-bottom: 12px; line-height: 1.5;
  }
  .hpc-btn {
    width: 100%; padding: 7px 0; background: transparent; border: 1px solid var(--border);
    color: var(--text-muted); font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    letter-spacing: 0.08em; cursor: pointer; transition: all 0.2s;
    margin-top: auto;
  }
  .hpc-btn:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }
  .hpc-btn-featured { border-color: var(--cyan); color: var(--cyan); }
  .hpc-btn-featured:hover { background: var(--cyan); color: var(--bg-deep); }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    .phases { grid-template-columns: repeat(2,1fr); }
    .hero-h1 { font-size: 64px; }
  }
  @media (max-width: 767px) {
    .phases { grid-template-columns: 1fr; }
    .hero-h1 { font-size: 52px; }
    .form-card { padding: 28px; }
    .plan-card { padding: 28px; }
    .yt-features { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .step-node::after { display: none !important; }
    .managed-panel { padding: 24px; }
    .mat-row { grid-template-columns: 44px 1fr; }
  }

  /* ── FADE-IN ANIMATION ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .hero-inner > * { animation: fadeUp 0.7s ease both; }
  .hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
  .hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
  .hero-inner > *:nth-child(4) { animation-delay: 0.35s; }
  .hero-inner > *:nth-child(5) { animation-delay: 0.45s; }
