  :root {
    --ink: #0a0a0f;
    --ink-soft: #3d3d4a;
    --ink-muted: #7a7a8a;
    --paper: #f8f6f1;
    --cream: #f2efe8;
    --white: #ffffff;
    --acid: #5eb5e6;
    --acid-dark: #3494ca;
    --electric: #1a1aff;
    --electric-light: #e8e8ff;
    --warm: #ff6b35;
    --warm-light: #fff0eb;
    --border: rgba(10,10,15,0.10);
    --border-strong: rgba(10,10,15,0.20);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-pill: 100px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
	@media (max-width: 768px) {
  .nav-ctas {
    display: none !important;
  }
}	

  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248,246,241,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-logo .logo-badge {
    background: var(--acid);
    color: var(--ink);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--ink); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--ink);
    color: var(--white);
  }

  .btn-primary:hover {
    background: #2a2a3a;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  .btn-acid {
    background: var(--acid);
    color: var(--ink);
    font-weight: 600;
  }

  .btn-acid:hover {
    background: #3494ca;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(63,154,206,0.62);
  }

  .btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border-strong);
  }

  .btn-outline:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .btn-lg {
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    align-items: center;
  }

  .hero-content { padding-right: 4rem; }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--electric-light);
    color: var(--electric);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 2rem;
    border: 1px solid rgba(26,26,255,0.15);
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--electric);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  h1 .highlight {
    position: relative;
    display: inline-block;
    color: var(--electric);
  }

  h1 .highlight-warm {
    color: var(--warm);
  }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .hero-stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--ink);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }

  .hero-stat-label {
    font-size: 0.8rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* ─── HERO VISUAL ─── */
  .hero-visual {
    position: relative;
  }

  .hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
  }

  .hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }

  .hero-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .status-dot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 500;
  }

  .status-dot::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  .metric-big {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
  }

  .metric-sub {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
  }

  .mini-bar-wrap {
    margin-bottom: 1.5rem;
  }

  .mini-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.8rem;
  }

  .mini-bar-label { color: var(--ink-muted); width: 80px; }

  .mini-bar-track {
    flex: 1;
    height: 6px;
    background: var(--cream);
    border-radius: 3px;
    overflow: hidden;
  }

  .mini-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--ink);
    animation: growBar 1.4s ease-out both;
  }

  .mini-bar-fill.accent { background: var(--acid); }
  .mini-bar-fill.blue { background: var(--electric); }

  @keyframes growBar {
    from { width: 0; }
  }

  .mini-bar-val { color: var(--ink-soft); font-weight: 500; min-width: 32px; text-align: right; }

  .floating-badge {
    position: absolute;
    background: var(--acid);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .badge-tl { top: -20px; left: -30px; }
  .badge-br { bottom: 24px; right: -30px; font-size: 0.8rem; background: var(--ink); color: var(--white); }

  .hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
  }

  /* ─── LOGOS ─── */
  .logos-strip {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    text-align: center;
  }

  .logos-label {
    font-size: 0.75rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
  }

  .logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.45;
  }

  .logos-row span {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  /* ─── SECTIONS ─── */
  section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
  }

  .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    margin-bottom: 1rem;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.2rem;
  }

  .section-lead {
    font-size: 1.1rem;
    color: var(--ink-soft);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
  }

  /* ─── HOW IT WORKS ─── */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.2s;
  }

  .step-card:hover { background: var(--cream); }

  .step-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 1rem;
    -webkit-text-stroke: 2px var(--border-strong);
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }

  .step-desc {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* ─── FEATURES ─── */
  .features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.2s;
    cursor: default;
  }

  .feature-item:hover {
    background: var(--white);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
  }

  .feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 3px;
  }

  .feature-desc {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.5;
  }

  /* ─── PRICING ─── */
  .pricing-wrap {
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .pricing-wrap::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,245,62,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .pricing-label {
    color: var(--acid);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    display: block;
  }

  .pricing-h {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
  }

  .pricing-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .pricing-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .pricing-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
  }

  .pricing-checks li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--acid);
    display: flex;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%230a0a0f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: cover;
  }

  .price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .price-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
    display: block;
  }

  .price-big {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0;
  }

  .price-period {
    color: var(--ink-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
  }

  .price-divider {
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
  }

  .price-note {
    font-size: 0.8rem;
    color: var(--ink-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: all 0.2s;
  }

  .testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--border-strong);
  }

  .testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--white);
    flex-shrink: 0;
  }

  .author-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    display: block;
  }

  .author-role {
    font-size: 0.75rem;
    color: var(--ink-muted);
  }

  /* ─── FAQ ─── */
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .faq-item {
    background: var(--white);
    padding: 0;
  }

  .faq-btn {
    width: 100%;
    text-align: left;
    padding: 1.5rem 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    font-family: 'DM Sans', sans-serif;
  }

  .faq-q {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.4;
  }

  .faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s, background 0.2s;
    margin-top: 2px;
    font-size: 0.7rem;
    color: var(--ink-muted);
  }

  .faq-item.open .faq-chevron {
    transform: rotate(45deg);
    background: var(--ink);
    color: var(--white);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
    padding: 0 1.8rem;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.8rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.875rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ─── REGISTER SECTION ─── */
  #register {
    background: none;
    padding: 6rem 2rem;
  }

  .register-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .register-content h2 { margin-bottom: 1rem; }

  .register-content p {
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .register-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .register-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--ink-soft);
  }

  .perk-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--acid);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    color: var(--ink);
    font-weight: 900;
  }

  .register-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
  }

  .form-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }

  .form-subtitle {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 2rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--paper);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--electric);
    box-shadow: 0 0 0 3px rgba(26,26,255,0.08);
    background: var(--white);
  }

  .form-group input::placeholder { color: var(--ink-muted); }

  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.5rem;
  }

  .form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border-strong);
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--ink);
  }

  .form-check label {
    font-size: 0.8rem;
    color: var(--ink-muted);
    line-height: 1.5;
    cursor: pointer;
  }

  .form-check label a {
    color: var(--electric);
    text-decoration: none;
  }

  .form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .form-submit:hover:not(:disabled) {
    background: #2a2a3a;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
  }

  .form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--acid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
  }

  .form-success h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }

  .form-success p {
    color: var(--ink-muted);
    font-size: 0.9rem;
  }

  .form-error {
    background: #fff0f0;
    border: 1px solid #fecaca;
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #dc2626;
    display: none;
  }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: var(--acid);
    border-radius: var(--radius-xl);
    padding: 3.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 2rem 4rem;
    max-width: calc(1200px - 4rem);
    margin-left: auto;
    margin-right: auto;
  }

  .cta-banner h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
  }

  .cta-banner p {
    color: rgba(10,10,15,0.6);
    font-size: 0.95rem;
    margin-top: 6px;
  }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-top: 0.8rem;
    max-width: 240px;
    font-weight: 300;
  }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; }

  .footer-col li { margin-bottom: 0.5rem; }

  .footer-col a {
    color: var(--ink-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--ink); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--ink-muted);
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* ─── RESPONSIVE ─── */
  /* ─── HAMBURGER ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
  }

  .nav-hamburger span {
    display: block;
	height: 2px;
	width: 100%;
	background: var(--ink);
	border-radius: 2px;
    transition: all 0.25s;
    transform-origin: center;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(248,246,241,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-md);
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    display: block;
    padding: 0.9rem 0;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--ink); }

  .mobile-menu a:last-child { border-bottom: none; }

  .mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .mobile-menu-ctas .btn { justify-content: center; }

  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
      padding-top: 3rem;
    }
    .hero-content { padding-right: 0; }
    .hero-visual { display: none; }
    .steps-grid { grid-template-columns: 1fr; }
    .features-layout { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-wrap { grid-template-columns: 1fr; padding: 2.5rem; gap: 2rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .register-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-ctas { display: none; }
    .nav-hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner { padding: 2.5rem; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    animation: fadeUp 0.7s ease both;
  }

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.35s; }
  .delay-4 { animation-delay: 0.5s; }