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

  :root {
    --navy: #1a0a2e;
    --yellow: #f5e642;
    --orange: #ff5c3a;
    --teal: #00c2a8;
    --violet: #6c3fff;
    --white: #fdfcff;
    --navy-05: rgba(26,10,46,0.05);
    --navy-10: rgba(26,10,46,0.10);
    --navy-50: rgba(26,10,46,0.50);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── LOGO SVG ── */
  .logo-svg { display: block; }
  .logo-light path { fill: #fff; }
  .logo-dark path { fill: var(--navy); }
  .logo-yellow path { fill: var(--yellow); }
  .logo-use { display: block; overflow: visible; }

  /* ══════════════════════════════
     NAV
  ══════════════════════════════ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    gap: 24px;
    background: rgba(26,10,46,0.5);
    backdrop-filter: blur(8px);
    transition: background 0.3s, box-shadow 0.3s;
  }
  nav.scrolled {
    background: rgba(26,10,46,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  }
  .nav-logo { height: 32px; width: auto; display: block; }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 22px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,230,66,0.35); }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: #fff; }
  .nav-mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  /* ══════════════════════════════
     HERO
  ══════════════════════════════ */
  .hero {
    background: var(--navy);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 48px 80px;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 80% 50%, rgba(108,63,255,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0,194,168,0.12) 0%, transparent 55%);
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,230,66,0.12);
    border: 1px solid rgba(245,230,66,0.3);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
  }
  .hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }
  .hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.0;
    color: #fff;
    text-wrap: balance;
    margin-bottom: 24px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--yellow);
  }
  .hero-sub {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 440px;
    margin-bottom: 48px;
  }
  .hero-form {
    display: flex;
    gap: 0;
    max-width: 440px;
  }
  .hero-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .hero-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
  .hero-form input[type="email"]:focus {
    border-color: rgba(245,230,66,0.5);
    background: rgba(255,255,255,0.12);
  }
  .hero-form button {
    padding: 16px 24px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, transform 0.15s;
  }
  .hero-form button:hover { background: #f0e030; transform: translateX(1px); }
  .hero-trust {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-trust svg { opacity: 0.5; }

  /* hero image side */
  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-photo {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    object-fit: cover;
    object-position: top center;
    height: 540px;
    display: block;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }
  .hero-stat-cards {
    position: absolute;
    bottom: 40px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
  }
  .hero-stat-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
  .hero-stat-value { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; color: #fff; }

  /* success state */
  .hero-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(0,194,168,0.12);
    border: 1.5px solid rgba(0,194,168,0.3);
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 440px;
    color: var(--teal);
    font-weight: 600;
    font-size: 15px;
  }
  .hero-success.show { display: flex; }
  .hero-success-icon {
    width: 32px; height: 32px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
  }

  /* ══════════════════════════════
     PROBLEMA
  ══════════════════════════════ */
  .problem {
    background: var(--orange);
    padding: 100px 48px;
  }
  .problem-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.65;
  }
  .problem h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-wrap: balance;
  }
  .problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
  }
  .problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    font-weight: 500;
  }
  .problem-list li::before {
    content: '';
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    margin-top: 7px;
  }
  .problem-cta {
    margin-top: 48px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #fff;
    opacity: 0.92;
  }

  /* ══════════════════════════════
     SOLUÇÃO / INTRO
  ══════════════════════════════ */
  .solution {
    background: var(--yellow);
    padding: 100px 48px;
    text-align: center;
  }
  .solution-inner { max-width: 740px; margin: 0 auto; }
  .solution .section-eyebrow { color: var(--navy); }
  .solution h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--navy);
    text-wrap: balance;
    margin-bottom: 24px;
  }
  .solution h2 span {
    position: relative;
    display: inline;
  }
  .solution h2 span::after {
    content: '';
    position: absolute;
    left: 0; bottom: 2px;
    width: 100%; height: 6px;
    background: var(--orange);
    z-index: -1;
  }
  .solution p {
    font-size: 20px;
    color: rgba(26,10,46,0.65);
    line-height: 1.6;
  }

  /* ══════════════════════════════
     FEATURES
  ══════════════════════════════ */
  .features {
    background: var(--white);
    padding: 100px 48px;
  }
  .features-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .features-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .features-header .section-eyebrow { color: var(--navy-50); }
  .features-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    text-wrap: balance;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 28px;
    min-height: 420px;
  }
  .feature-card:last-child { margin-bottom: 0; }
  .feature-card.reverse { direction: rtl; }
  .feature-card.reverse > * { direction: ltr; }

  .feature-text {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .feature-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 96px;
    font-weight: 800;
    line-height: 0.85;
    opacity: 0.1;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
  }
  .feature-text h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-wrap: balance;
  }
  .feature-text p {
    font-size: 17px;
    line-height: 1.65;
    opacity: 0.7;
  }
  .feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }
  .feature-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
  }
  .feature-bullets li::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    position: relative;
    overflow: hidden;
  }

  /* Feature 1 — agendamento — teal */
  .fc1 .feature-text { background: var(--teal); color: #fff; }
  .fc1 .feature-text p { opacity: 0.75; }
  .fc1 .feature-bullets li::before { background: #fff; }
  .fc1 .feature-visual { background: #e8faf8; }
  .fc1 .feature-num { color: #fff; }

  /* Feature 2 — clientes — violet */
  .fc2 .feature-text { background: var(--violet); color: #fff; }
  .fc2 .feature-text p { opacity: 0.75; }
  .fc2 .feature-bullets li::before { background: var(--yellow); }
  .fc2 .feature-visual { background: #f0ecff; }
  .fc2 .feature-num { color: #fff; }

  /* Feature 3 — financeiro — navy */
  .fc3 .feature-text { background: var(--navy); color: #fff; }
  .fc3 .feature-text p { opacity: 0.65; }
  .fc3 .feature-bullets li { color: rgba(255,255,255,0.85); }
  .fc3 .feature-bullets li::before { background: var(--yellow); }
  .fc3 .feature-visual { background: #f4f2f8; }
  .fc3 .feature-num { color: #fff; }

  /* ── mock UI inside feature cards ── */
  .mock-calendar {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  }
  .mock-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  .mock-cal-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); }
  .mock-cal-nav { display: flex; gap: 4px; }
  .mock-cal-nav button {
    width: 24px; height: 24px;
    border-radius: 6px;
    border: 1.5px solid var(--navy-10);
    background: none;
    cursor: pointer;
    font-size: 12px;
    color: var(--navy-50);
    display: flex; align-items: center; justify-content: center;
  }
  .mock-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
  }
  .mock-cal-day {
    width: 28px; height: 28px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--navy-50);
  }
  .mock-cal-day.header { color: var(--navy-50); font-size: 10px; font-weight: 700; letter-spacing: 0.04em; }
  .mock-cal-day.active { background: var(--teal); color: #fff; font-weight: 700; }
  .mock-cal-day.booked { background: rgba(0,194,168,0.12); color: var(--teal); font-weight: 600; }
  .mock-cal-day.today { border: 1.5px solid var(--teal); color: var(--teal); font-weight: 700; }

  .mock-appt {
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    width: 260px;
  }
  .mock-appt-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
  .mock-appt-info { flex: 1; }
  .mock-appt-name { font-size: 13px; font-weight: 600; color: var(--navy); }
  .mock-appt-time { font-size: 11px; color: var(--navy-50); }
  .mock-appt-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(0,194,168,0.1);
    color: var(--teal);
    padding: 2px 8px;
    border-radius: 100px;
  }

  /* client mock */
  .mock-clients {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mock-client-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  }
  .mock-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
  }
  .mock-client-info { flex: 1; }
  .mock-client-name { font-size: 13px; font-weight: 600; color: var(--navy); }
  .mock-client-sub { font-size: 11px; color: var(--navy-50); }
  .mock-client-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
  }

  /* finance mock */
  .mock-finance {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mock-finance-total {
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  }
  .mock-finance-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-50); margin-bottom: 6px; }
  .mock-finance-value { font-family: 'Bricolage Grotesque', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); }
  .mock-finance-delta { font-size: 12px; color: var(--teal); font-weight: 600; margin-top: 4px; }
  .mock-bar-row { display: flex; flex-direction: column; gap: 6px; }
  .mock-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--navy-50); font-weight: 500; }
  .mock-bar-track { height: 8px; background: var(--navy-10); border-radius: 100px; overflow: hidden; }
  .mock-bar-fill { height: 100%; border-radius: 100px; transition: width 1.2s ease; }

  /* ══════════════════════════════
     LEAD / CTA SECTION
  ══════════════════════════════ */
  .lead-section {
    background: var(--navy);
    padding: 120px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .lead-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 50% 100%, rgba(108,63,255,0.2) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 80% 20%, rgba(245,230,66,0.06) 0%, transparent 50%);
    pointer-events: none;
  }
  .lead-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .lead-section .section-eyebrow { color: rgba(255,255,255,0.4); margin-bottom: 16px; }
  .lead-section h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-wrap: balance;
    margin-bottom: 16px;
  }
  .lead-section h2 em {
    font-style: normal;
    color: var(--yellow);
  }
  .lead-section .lead-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 48px;
  }

  .lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
  }
  .lead-form-row {
    display: flex;
    gap: 0;
  }
  .lead-form input[type="email"] {
    flex: 1;
    padding: 18px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-right: none;
    border-radius: 14px 0 0 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .lead-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
  .lead-form input[type="email"]:focus {
    border-color: rgba(245,230,66,0.4);
    background: rgba(255,255,255,0.10);
  }
  .lead-form button {
    padding: 18px 28px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 0 14px 14px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, box-shadow 0.15s;
  }
  .lead-form button:hover { background: #f0e030; box-shadow: 0 4px 20px rgba(245,230,66,0.3); }

  .lead-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background: rgba(0,194,168,0.1);
    border: 1.5px solid rgba(0,194,168,0.25);
    border-radius: 20px;
    max-width: 440px;
    margin: 0 auto;
  }
  .lead-success.show { display: flex; }
  .lead-success-icon {
    width: 56px; height: 56px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
  }
  .lead-success h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
  }
  .lead-success p { font-size: 15px; color: rgba(255,255,255,0.55); }

  .lead-trust {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  /* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
  footer {
    background: #0f0620;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
  }
  .footer-links {
    display: flex;
    gap: 24px;
  }
  .footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.15s;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.7); }

  /* ══════════════════════════════
     SCROLL ANIMATIONS
  ══════════════════════════════ */
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  /* ── mobile menu overlay ── */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,10,46,0.97);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    backdrop-filter: blur(12px);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none; border: none;
    color: rgba(255,255,255,0.7); font-size: 28px;
    cursor: pointer; line-height: 1; padding: 4px;
  }
  .mobile-menu a {
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28px; font-weight: 700;
    text-decoration: none;
    transition: color 0.15s;
  }
  .mobile-menu a:hover { color: var(--yellow); }
  .mobile-menu .nav-cta {
    font-size: 18px; padding: 14px 32px;
    display: inline-flex;
  }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; gap: 12px; }
    .nav-links { display: none; }
    .nav-mobile-btn { display: flex; align-items: center; justify-content: center; }

    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 96px 24px 72px;
      text-align: center;
    }
    .hero-content { min-width: 0; }
    .hero-badge {
      max-width: 100%;
      white-space: normal;
      text-align: center;
      justify-content: center;
    }
    .hero-sub { margin: 0 auto 40px; max-width: 100%; }
    .hero-form { margin: 0 auto; max-width: 100%; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }

    .problem { padding: 72px 24px; }
    .problem-inner { grid-template-columns: 1fr; gap: 48px; }

    .solution { padding: 72px 24px; }

    .features { padding: 72px 24px; }
    .feature-card {
      grid-template-columns: 1fr;
      border-radius: 20px;
    }
    .feature-card.reverse { direction: ltr; }
    .feature-text { padding: 44px 32px; }
    .feature-visual { min-height: 280px; }
    .feature-num { font-size: 64px; }

    .lead-section { padding: 80px 24px; }
    .lead-form-row { flex-direction: column; }
    .lead-form input[type="email"] {
      border-right: 1.5px solid rgba(255,255,255,0.14);
      border-bottom: none;
      border-radius: 14px 14px 0 0;
    }
    .lead-form button { border-radius: 0 0 14px 14px; }

    footer { padding: 36px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  }

  @media (max-width: 480px) {
    .nav-cta { display: none; }

    .hero h1 { font-size: 36px; }
    .hero-form {
      flex-direction: column;
    }
    .hero-form input[type="email"] {
      border-right: 1.5px solid rgba(255,255,255,0.15);
      border-bottom: none;
      border-radius: 12px 12px 0 0;
      text-align: left;
    }
    .hero-form button {
      border-radius: 0 0 12px 12px;
      text-align: center;
    }

    .problem h2 { font-size: 30px; }
    .solution h2 { font-size: 30px; }
    .feature-text { padding: 36px 24px; }
    .feature-visual { padding: 32px 24px; }
    .mock-calendar { width: 100%; max-width: 280px; }
    .mock-appt { width: 100%; max-width: 280px; }
    .mock-clients { width: 100%; max-width: 280px; }
    .mock-finance { width: 100%; max-width: 280px; }
  }

  /* ══════════════════════════════
     TWEAKS PANEL
  ══════════════════════════════ */
  #tweaks-panel {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #fff;
    border: 1px solid rgba(26,10,46,0.12);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(26,10,46,0.14);
    width: 280px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
  }
  #tweaks-panel.open { display: block; }
  .tweaks-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(26,10,46,0.08);
  }
  .tweaks-header h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); }
  .tweaks-close {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--navy-05);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--navy-50);
    transition: background 0.15s;
  }
  .tweaks-close:hover { background: var(--navy-10); }
  .tweaks-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 16px; }
  .tweak-row { display: flex; flex-direction: column; gap: 6px; }
  .tweak-label { font-size: 12px; font-weight: 600; color: var(--navy-50); text-transform: uppercase; letter-spacing: 0.06em; }
  .tweak-options { display: flex; gap: 6px; flex-wrap: wrap; }
  .tweak-btn {
    padding: 6px 14px;
    border-radius: 100px;
    border: 1.5px solid var(--navy-10);
    background: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy-50);
    cursor: pointer;
    transition: all 0.15s;
  }
  .tweak-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
  }
  .tweak-color-swatch {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    transition: transform 0.15s;
    outline: none;
  }
  .tweak-color-swatch:hover { transform: scale(1.12); }
  .tweak-color-swatch.active { border-color: var(--navy); }
  .tweak-swatches { display: flex; gap: 8px; align-items: center; }
