﻿  :root {
    --bg: #09090b;
    --bg-1: #0f0f10;
    --bg-2: #161618;
    --bg-3: #1c1c1e;
    --line: #27272a;
    --line-2: #3f3f46;
    --text: #fafafa;
    --text-dim: #a1a1aa;
    --text-mute: #71717a;
    --amber: #f8750a;
    --amber-2: #ffa050;
    --amber-soft: #f8750a26;
    --ember: #ffb46b;
    --green: #25d366;
    --sans: "Geist", ui-sans-serif, system-ui, sans-serif;
    --display: "Bricolage Grotesque", "Geist", sans-serif;
    --serif: "Instrument Serif", "Times New Roman", serif;
    --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  }

  * {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
  }

  body {
    background:
      radial-gradient(1200px 600px at 75% -10%, #f8750a18, transparent 60%),
      radial-gradient(900px 500px at 0% 30%, #f8750a0d, transparent 60%),
      var(--bg);
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: .055;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  ::selection {
    background: var(--amber);
    color: #0a0a0a;
  }

  :focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: 4px;
  }

  @media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
      animation-duration: .01ms !important;
      transition-duration: .01ms !important;
    }
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
  }

  .brand-logo {
    width: 50px;
    border-radius: 3px;
  }

  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--amber);
    display: inline-block;
  }

  .serif-i {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--ember);
  }

  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }

  /* NAV */
  nav.top {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px) saturate(1.2);
    background: linear-gradient(180deg, #09090be0 0%, #09090b88 100%);
    border-bottom: 1px solid #27272a80;
  }

  .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 18px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: radial-gradient(circle at 30% 30%, #ffb46b, #f8750a 55%, #b04200);
    box-shadow: 0 0 0 1px #f8750a44, 0 6px 22px #f8750a55, inset 0 1px 0 #ffd9b1;
    position: relative;
  }

  .brand-mark::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1.5px solid #09090baa;
    border-top-color: #09090b55;
    border-right-color: #09090b55;
  }

  .brand small {
    font-family: var(--mono);
    color: var(--text-mute);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    font-size: 13px;
    color: var(--text-dim);
  }

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

  .nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
  }

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

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 13px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    text-decoration: none;
  }

  .btn-primary {
    background: linear-gradient(180deg, #ff8a2a, #f8750a 50%, #d65b00);
    color: #0a0a0a;
    box-shadow: 0 1px 0 #ffd9b1 inset, 0 10px 28px -10px #f8750a99, 0 0 0 1px #f8750a;
    font-weight: 600;
  }

  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 0 #ffd9b1 inset, 0 16px 36px -10px #f8750acc, 0 0 0 1px #f8750a;
  }

  .btn-ghost {
    color: var(--text);
    border-color: #3f3f46;
    background: #ffffff04;
  }

  .btn-ghost:hover {
    background: #ffffff0a;
    border-color: #52525b;
  }

  .btn .arrow {
    transition: transform .25s;
  }

  .btn:hover .arrow {
    transform: translateX(3px);
  }

  .dot-amber {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 10px var(--amber);
  }

  /* SECTION SCAFFOLD */
  .section {
    padding: 84px 0;
    position: relative;
  }

  .section-tag {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .section-tag::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  .section-tag b {
    color: var(--amber);
    font-weight: 500;
  }

  .section-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin: 0 0 48px;
  }

  .section-head.center {
    text-align: center;
    margin-inline: auto;
    align-items: center;
  }

  .section-head h2 {
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.03;
    letter-spacing: -0.03em;
  }

  .section-head p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
  }

  .panel {
    background: linear-gradient(180deg, #09090b, #0f0f10);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  /* HERO */
  .hero {
    position: relative;
    padding: 60px 0 0;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
      linear-gradient(rgba(248, 117, 10, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(248, 117, 10, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 30%, transparent 80%);
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 70% 50% at 65% 30%, rgba(248, 117, 10, 0.12) 0%, transparent 70%);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 980px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .hero h1 {
    font-size: clamp(36px, 5.2vw, 62px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin: 20px 0 20px;
    font-weight: 500;
  }

  .hero h1 .amber {
    color: var(--amber);
  }

  .hero h1 .serif-i {
    display: inline-block;
  }

  .hero p.lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 0 28px;
  }

  .hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-trust {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 26px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-mute);
    flex-wrap: wrap;
  }

  .hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hero-visual {
    position: relative;
    aspect-ratio: 612/408;
    max-width: 100%;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    inset: -10% -8% -20% -8%;
    background: radial-gradient(50% 40% at 50% 60%, #f8750a44, transparent 70%);
    filter: blur(20px);
    z-index: 0;
  }

  .hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
  }

  /* GLASS CARDS */
  .glass-card {
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(9, 9, 11, 0.65);
    padding: 14px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    min-width: 175px;
  }

  .gc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .gc-icon {
    color: var(--amber);
    flex-shrink: 0;
  }

  .gc-icon-amber {
    color: #fbbf24;
  }

  .gc-label {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-mute);
  }

  .gc-value {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.02em;
  }

  .gc-sub {
    font-size: 11px;
    color: var(--text-dim);
    margin: 4px 0 0;
  }

  .gc-green {
    color: #4ade80;
  }

  .gc-amber {
    color: var(--amber);
  }

  .gc-1 {
    top: 6%;
    right: -6px;
    animation: floatA 6s ease-in-out infinite;
  }

  .gc-2 {
    top: -16%;
    left: 4em;
    animation: floatB 7.5s ease-in-out infinite 1.2s;
  }

  .gc-3 {
    bottom: 3em;
    right: -10px;
    animation: floatC 6.8s ease-in-out infinite 0.6s;
  }

  @keyframes floatA {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  @keyframes floatB {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(6px);
    }
  }

  @keyframes floatC {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-12px);
    }
  }


  /* HERO STATS BAR */
  .hero-stats {
    margin-top: 56px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  @media (max-width: 720px) {
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .hero-stat {
    padding: 22px 26px;
    border-left: 1px solid var(--line);
  }

  .hero-stat:first-child {
    border-left: 0;
  }

  @media (max-width: 720px) {
    .hero-stat:nth-child(odd) {
      border-left: 0;
    }

    .hero-stat:nth-child(n+3) {
      border-top: 1px solid var(--line);
    }
  }

  .hero-stat .v {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text);
  }

  .hero-stat .v .amber {
    color: var(--amber);
  }

  .hero-stat .k {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-mute);
    margin-top: 6px;
  }

  /* PROBLEM */
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  @media (max-width: 980px) {
    .problem-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

  .pain {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #111113, #0d0d0f);
    border-radius: 14px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, border-color .3s;
  }

  .pain:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
  }

  .pain .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 0.12em;
  }

  .pain h4 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    margin: 12px 0 8px;
    letter-spacing: -0.01em;
  }

  .pain p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-dim);
    margin: 0;
  }

  .pain .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #18181b;
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    color: var(--amber);
    margin-bottom: 16px;
  }

  .problem-foot {
    margin-top: 28px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 30px;
    color: var(--ember);
    text-align: center;
    letter-spacing: -0.01em;
  }

  /* SOLUTION */
  .sol-content {
    text-align: center;
  }

  .sol-content h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    max-width: 720px;
    margin: 0 auto;
  }

  .sol-content>p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim);
    margin: 18px auto 32px;
    max-width: 580px;
  }

  .sol-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 32px;
    text-align: left;
  }

  @media (max-width: 720px) {
    .sol-steps {
      grid-template-columns: 1fr;
    }
  }

  .sol-step {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #111113, #0d0d0f);
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    transition: transform .3s, border-color .3s;
  }

  .sol-step:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
  }

  .sol-step .sn {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 500;
    color: var(--amber);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
  }

  .sol-step .st {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .sol-step .sp {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
    margin: 0;
  }

  .sol-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
  }

  .sol-meta div {
    border-top: 1px solid var(--line-2);
    padding-top: 12px;
  }

  .sol-meta .v {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--amber);
  }

  .sol-meta .k {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-mute);
    margin-top: 4px;
  }

  /* VITRINE â€” STAR FEATURE */
  .vitrine {
    position: relative;
    padding: 96px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: radial-gradient(1000px 600px at 50% -5%, #f8750a1f, transparent 65%), linear-gradient(180deg, #09090b, #09090b);
  }

  .vitrine::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, #27272a40 1px, transparent 1px), linear-gradient(0deg, #27272a40 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center 30%, black 20%, transparent 70%);
    pointer-events: none;
  }

  .vitrine-inner {
    position: relative;
    z-index: 1;
  }

  .vit-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 56px;
  }

  .vit-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--amber);
    border: 1px solid var(--amber);
    background: var(--amber-soft);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
  }

  .vit-head h2 {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
  }

  .vit-head p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
  }

  .vit-stage {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 56px;
  }

  @media (max-width: 920px) {
    .vit-stage {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  /* public booking page mock */
  .vit-mock {
    border: 1px solid var(--line-2);
    border-radius: 18px;
    overflow: hidden;
    background: #0d0d0f;
    box-shadow: 0 40px 100px -30px #00000099, 0 0 0 1px #ffffff05, 0 0 70px -30px #f8750a88;
  }

  .vm-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #0f0f10;
    border-bottom: 1px solid var(--line);
  }

  .vm-bar i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #27272a;
  }

  .vm-bar i:nth-child(1) {
    background: #f8750a;
  }

  .vm-url {
    margin-left: 8px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-mute);
  }

  .vm-body {
    padding: 22px;
  }

  .vm-store {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .vm-logo {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: radial-gradient(circle at 30% 30%, #ffb46b, #f8750a 55%, #b04200);
    box-shadow: inset 0 1px 0 #ffd9b1;
  }

  .vm-store .nm {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
  }

  .vm-store .mt {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    gap: 8px;
    margin-top: 3px;
  }

  .vm-store .mt .open {
    color: var(--green);
  }

  .vm-svc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 8px;
    background: #110d0a;
    transition: border-color .25s;
  }

  .vm-svc.sel {
    border-color: var(--amber);
    background: #18181b;
  }

  .vm-svc .l {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .vm-svc .l b {
    font-size: 13px;
    font-weight: 600;
  }

  .vm-svc .l span {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-mute);
  }

  .vm-svc .pr {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    color: var(--amber);
  }

  .vm-svc .radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--line-2);
    margin-left: 12px;
    flex-shrink: 0;
  }

  .vm-svc.sel .radio {
    border-color: var(--amber);
    background: radial-gradient(circle, var(--amber) 45%, transparent 50%);
  }

  .vm-slots {
    display: flex;
    gap: 8px;
    margin: 14px 0 16px;
    flex-wrap: wrap;
  }

  .vm-slot {
    font-family: var(--mono);
    font-size: 11px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text-dim);
  }

  .vm-slot.on {
    border-color: var(--amber);
    background: var(--amber);
    color: #0a0a0a;
    font-weight: 600;
  }

  .vm-slot.off {
    color: var(--text-mute);
    opacity: .45;
    text-decoration: line-through;
  }

  .vm-cta {
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ff8a2a, #f8750a 50%, #d65b00);
    color: #0a0a0a;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 1px 0 #ffd9b1 inset;
  }

  /* whatsapp confirmation */
  .wa-preview {
    background: #0d1117;
    border: 1px solid rgba(37, 211, 102, 0.22);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 30px 70px -30px #00000099;
  }

  .wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
  }

  .wa-name {
    font-size: 13px;
    font-weight: 600;
  }

  .wa-status {
    font-size: 11px;
    color: var(--green);
    font-family: var(--mono);
  }

  .wa-bubble {
    font-size: 13px;
    line-height: 1.55;
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    max-width: 92%;
  }

  .wa-in {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-left-radius: 4px;
  }

  .wa-out {
    background: rgba(37, 211, 102, 0.12);
    border-bottom-right-radius: 4px;
    margin-left: auto;
  }

  .wa-time {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-mute);
    text-align: right;
    margin-top: 4px;
  }

  .wa-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--green);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .vit-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  @media (max-width: 980px) {
    .vit-flow {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 520px) {
    .vit-flow {
      grid-template-columns: 1fr;
    }
  }

  .step {
    border: 1px solid var(--line-2);
    background: linear-gradient(180deg, #111113, #09090b);
    border-radius: 14px;
    padding: 20px 18px;
    position: relative;
    transition: transform .3s, border-color .3s, box-shadow .3s;
  }

  .step:hover {
    transform: translateY(-4px);
    border-color: var(--amber);
    box-shadow: 0 20px 50px -20px #f8750a55;
  }

  .step .n {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 500;
    color: var(--amber);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .step h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0 6px;
  }

  .step p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-dim);
    margin: 0;
  }

  .step .stamp-mini {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: inset 0 1px 0 #ffd9b1, 0 0 12px #f8750a99;
    display: grid;
    place-items: center;
    color: #0a0a0a;
    font-size: 10px;
    font-weight: 800;
  }

  /* MODULES */
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }

  @media (max-width: 880px) {
    .modules-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

  .mod {
    background: #0d0d0f;
    padding: 26px 24px;
    transition: background .3s;
    position: relative;
    overflow: hidden;
  }

  .mod:hover {
    background: #111113;
  }

  .mod .ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(180deg, #18181b, #0f0f10);
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    color: var(--amber);
    margin-bottom: 18px;
  }

  .mod h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }

  .mod p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-dim);
    margin: 0;
  }

  .mod .tag {
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: var(--mono);
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--amber-soft);
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* TESTIMONIALS */
  .t-marquee {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 4px;
    max-height: 720px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  }

  .t-col {
    flex: 1;
    min-width: 0;
  }

  .t-col-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: t-scroll var(--t-duration, 36s) linear infinite;
    will-change: transform;
  }

  .t-col-set {
    display: contents;
  }

  .t-marquee:hover .t-col-track {
    animation-play-state: paused;
  }

  @keyframes t-scroll {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(-50%);
    }
  }

  @media (max-width: 1040px) {
    .t-col-lg {
      display: none;
    }
  }

  @media (max-width: 720px) {
    .t-col-md {
      display: none;
    }
  }

  .t-card {
    border: 1px solid var(--line-2);
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(180deg, #111113, #0d0d0f);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .t-stars {
    color: var(--amber);
    font-size: 13px;
    letter-spacing: 2px;
  }

  .t-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.35;
    color: var(--text);
    letter-spacing: -0.01em;
  }

  .t-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
  }

  .t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3f3f46, #18181b);
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    color: var(--amber);
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
  }

  .t-name {
    font-size: 13px;
    font-weight: 600;
  }

  .t-place {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
  }

  .t-badge-verified {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--green);
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    align-self: center;
  }

  .stats-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line-2);
    border-radius: 14px;
    overflow: hidden;
  }

  @media (max-width: 720px) {
    .stats-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .stat {
    padding: 24px;
    border-left: 1px solid var(--line-2);
  }

  .stat:first-child {
    border-left: 0;
  }

  @media (max-width: 720px) {
    .stat {
      border-left: 0;
      border-top: 1px solid var(--line-2);
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
      border-top: 0;
    }

    .stat:nth-child(2),
    .stat:nth-child(4) {
      border-left: 1px solid var(--line-2);
    }
  }

  .stat .v {
    font-family: var(--display);
    font-size: 28px;
    letter-spacing: -0.03em;
    font-weight: 500;
    color: var(--amber);
  }

  .stat .k {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-mute);
    margin-top: 6px;
  }

  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

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

  .plan {
    border: 1px solid var(--line-2);
    border-radius: 16px;
    padding: 30px 28px;
    background: linear-gradient(180deg, #111113, #0d0d0f);
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .plan.pro {
    border-color: var(--amber);
    background: radial-gradient(400px 300px at 100% 0%, #f8750a22, transparent 60%), linear-gradient(180deg, #18181b, #111113);
    box-shadow: 0 30px 80px -30px #f8750a55, 0 0 0 1px var(--amber) inset;
  }

  .plan-tag {
    position: absolute;
    top: -10px;
    right: 22px;
    background: var(--amber);
    color: #0a0a0a;
    font-family: var(--mono);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    box-shadow: 0 8px 20px #f8750a66;
  }

  .plan h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .plan .desc {
    color: var(--text-dim);
    font-size: 13px;
    margin: 6px 0 24px;
  }

  .plan .price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
  }

  .plan .price .v {
    font-family: var(--display);
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .plan .price .v::before {
    content: "R$";
    font-family: var(--mono);
    font-size: 14px;
    color: var(--text-mute);
    vertical-align: top;
    margin-right: 5px;
    font-weight: 400;
  }

  .plan .price .per {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .plan li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-dim);
  }

  .plan li .ck {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--amber-soft);
    color: var(--amber);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 10px;
    font-weight: 700;
  }

  .plan.pro li {
    color: var(--text);
  }

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

  .plan .footnote {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-mute);
    margin-top: 12px;
    text-align: center;
    letter-spacing: 0.08em;
  }

  /* FAQ */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 820px;
    margin: 0 auto;
  }

  details.faq {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #0d0d0f;
    transition: border-color .2s;
  }

  details.faq[open] {
    border-color: var(--line-2);
    background: #0f0f10;
  }

  details.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
  }

  details.faq summary::-webkit-details-marker {
    display: none;
  }

  details.faq summary .plus {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    color: var(--amber);
    flex-shrink: 0;
    transition: transform .25s, background .25s;
    font-family: var(--mono);
  }

  details.faq[open] summary .plus {
    transform: rotate(45deg);
    background: var(--amber-soft);
  }

  details.faq .answer {
    padding: 0 20px 18px;
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
  }

  details.faq .answer b {
    color: var(--text);
  }

  /* FINAL CTA */
  .final-cta {
    text-align: center;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }

  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 400px at 50% 50%, #f8750a30, transparent 60%);
  }

  .final-cta::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -200px;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(closest-side, #f8750a, transparent 70%);
    opacity: .35;
    filter: blur(40px);
  }

  .final-cta .inner {
    position: relative;
    z-index: 1;
  }

  .final-cta h2 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.97;
    letter-spacing: -0.04em;
    font-weight: 500;
    max-width: 860px;
    margin: 0 auto;
  }

  .final-cta p {
    font-size: 16px;
    color: var(--text-dim);
    margin: 22px auto 32px;
    max-width: 520px;
    line-height: 1.55;
  }

  .final-cta .btn-row {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .final-cta .signal {
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-mute);
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .final-cta .signal span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--line);
    padding: 56px 0 36px;
  }

  .foot-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    align-items: start;
  }

  @media (max-width: 720px) {
    .foot-row {
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
  }

  .foot-row h6 {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-mute);
    font-weight: 500;
    margin-bottom: 14px;
  }

  .foot-row ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .foot-row a {
    color: var(--text-dim);
    font-size: 13px;
  }

  .foot-row a:hover {
    color: var(--text);
  }

  .foot-tag {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.55;
    max-width: 300px;
    margin-top: 12px;
  }

  .foot-bottom {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    flex-wrap: wrap;
    gap: 14px;
  }

  .foot-mark {
    font-family: var(--display);
    font-weight: 600;
    font-size: 150px;
    letter-spacing: -0.06em;
    line-height: 0.85;
    margin-top: 56px;
    background: linear-gradient(180deg, #f8750a 0%, #f8750a 30%, transparent 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    user-select: none;
  }

  @media (max-width: 720px) {
    .foot-mark {
      font-size: 64px;
      margin-top: 32px;
    }
  }

  /* Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
  }

  .reveal.in {
    opacity: 1;
    transform: none;
  }

  /* ===== MOBILE IMPROVEMENTS ===== */

  /* NAV — esconde "Entrar" em telas pequenas para não estourar o header */
  @media (max-width: 540px) {
    .nav-cta .btn-ghost {
      display: none;
    }
  }

  /* HERO — reduz espaçamento e ajusta tipografia */
  @media (max-width: 640px) {
    .hero {
      padding-top: 36px;
    }

    .hero h1 {
      line-height: 1.05;
      margin-top: 12px;
      margin-bottom: 14px;
    }

    .hero p.lead {
      font-size: 15px;
    }
  }

  /* HERO CTA — empilha botões em coluna no mobile evitando wrap assimétrico */
  @media (max-width: 520px) {
    .hero-cta {
      flex-direction: column;
      align-items: stretch;
    }

    .hero-cta .btn {
      justify-content: center;
    }
  }

  /* HERO TRUST — badges mais compactos em telas muito pequenas */
  @media (max-width: 480px) {
    .hero-trust {
      gap: 10px;
      font-size: 10px;
      letter-spacing: 0.08em;
    }
  }

  /* GLASS CARDS — reposiciona no tablet, esconde no mobile */
  @media (max-width: 980px) {
    .gc-2 {
      top: -6%;
      left: 2%;
    }

    .glass-card {
      min-width: 150px;
      padding: 10px 14px;
    }

    .gc-value {
      font-size: 16px;
    }
  }

  @media (max-width: 640px) {
    .glass-card {
      display: none;
    }
  }

  /* PROBLEM — texto de rodapé menor no mobile */
  @media (max-width: 600px) {
    .problem-foot {
      font-size: 22px;
      padding: 0 8px;
    }
  }

  /* STATS ROW — corrige 3 itens em grid de 2 colunas que deixa 1 órfão */
  @media (max-width: 720px) {
    .stats-row {
      grid-template-columns: repeat(3, 1fr) !important;
    }

    .stats-row .stat {
      border-left: 1px solid var(--line-2) !important;
      border-top: 0 !important;
    }

    .stats-row .stat:first-child {
      border-left: 0 !important;
    }
  }

  @media (max-width: 480px) {
    .stats-row {
      grid-template-columns: 1fr !important;
    }

    .stats-row .stat {
      border-left: 0 !important;
      border-top: 1px solid var(--line-2) !important;
    }

    .stats-row .stat:first-child {
      border-top: 0 !important;
    }
  }

  /* SEÇÕES — reduz padding vertical no mobile */
  @media (max-width: 640px) {
    .section {
      padding: 56px 0;
    }

    .vitrine {
      padding: 60px 0;
    }

    .vit-head {
      margin-bottom: 36px;
    }

    .vit-head p {
      font-size: 15px;
    }

    .final-cta {
      padding: 72px 0;
    }
  }

  /* FINAL CTA — empilha botões no mobile */
  @media (max-width: 520px) {
    .final-cta .btn-row {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
    }

    .final-cta .btn-row .btn {
      justify-content: center;
    }
  }

  /* FOOTER — 1 coluna em telas muito pequenas */
  @media (max-width: 480px) {
    .foot-row {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

  /* VITRINE MOCK — padding interno compacto no mobile */
  @media (max-width: 480px) {
    .vm-body {
      padding: 14px;
    }

    .vm-svc {
      padding: 10px 12px;
    }

    .vm-svc .l b {
      font-size: 12px;
    }
  }

  /* WRAP — padding mínimo em telas muito pequenas (< 380px) */
  @media (max-width: 380px) {
    .wrap {
      padding: 0 5%;
    }
  }