@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");

:root{
  --red:#E11D2E;
  --orange:#FF6A00;
  --bg:#0B0B12;
  --ink:#0F172A;
  --muted:#B7BBC4;
  --white:#FFFFFF;
  --card: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.14);
  --radius: 22px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  color:var(--white);
  background:
    radial-gradient(900px 700px at 12% 12%, rgba(255,120,0,.22), transparent 60%),
    radial-gradient(1100px 800px at 85% 18%, rgba(235,70,90,.18), transparent 62%),
    radial-gradient(900px 700px at 55% 85%, rgba(80,130,255,.14), transparent 65%),
    radial-gradient(700px 520px at 30% 70%, rgba(255,210,140,.10), transparent 60%),
    linear-gradient(180deg, #0c0e12 0%, #0a0b10 45%, #07090d 100%);
  line-height:1.55;
  overflow-x:hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.35) transparent;
}

/* Scrollbar estilo macOS */
body::-webkit-scrollbar{
  width:8px;
}
body::-webkit-scrollbar-track{
  background: transparent;
}
body::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.28);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
body::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,.45);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity:.14;
  mix-blend-mode:soft-light;
  z-index:0;
}

body::after{
  content:"";
  position:fixed;
  inset:-20%;
  pointer-events:none;
  background:
    radial-gradient(380px 280px at 20% 35%, rgba(255,140,0,.18), transparent 70%),
    radial-gradient(420px 320px at 82% 30%, rgba(255,70,120,.16), transparent 72%),
    radial-gradient(420px 320px at 60% 85%, rgba(90,140,255,.14), transparent 72%);
  filter: blur(18px);
  opacity:.65;
  z-index:0;
}

.container{
  width:min(1100px, 92vw);
  margin:0 auto;
  position:relative;
  z-index:1;
}

.hero{
  padding:72px 0 54px;
  position:relative;
  overflow:visible;
  z-index:2;
}

.hero::before{ display:none; }
.hero::after{ display:none; }

.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap:36px;
  align-items:center;
}

.hero-content{
  position:relative;
  z-index:1;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, rgb(16 10 10 / 77%), rgb(33 25 18 / 5%));
  border: 1px solid rgb(255 106 0);
  font-size:12.5px;
  font-weight:700;
  margin-bottom:14px;
  color:#fff;
  box-shadow:0 10px 24px rgba(225,29,46,.32);
}

.hero-badge .badge-icon{
  width:18px;
  height:18px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.35);
  color:#ff8f00;
}

.hero-badge .badge-icon svg{
  width:12px;
  height:12px;
}

.hero h1{
  font-size:clamp(38px, 5vw, 64px);
  line-height:1.02;
  margin:14px 0 10px;
  letter-spacing:-0.02em;
}

.hero h1 .highlight{
  background: linear-gradient(135deg, #ff2a1a 0%, #ff5a1f 35%, #ff8a2c 60%, #ffc15a 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 0 24px rgba(255,106,0,.25);
}

.hero-brand{
  display:inline-block;
  font-size:1.15em;
  font-weight:800;
}

.typewrap{
  display:inline-flex;
  align-items:baseline;
  white-space:nowrap;
}

#typeText{
  display:inline-block;
  min-height:1em;
}

.typecursor::after{
  content:"•";
  display:inline-block;
  margin-left:10px;
  vertical-align:baseline;
  color:#FFD29A;
  opacity:.85;
  animation: blink .9s infinite;
  filter: drop-shadow(0 0 10px rgba(255,106,0,.25));
}

@keyframes blink{
  0%, 45% { opacity: .9; }
  46%, 100% { opacity: .15; }
}

.hero p{
  max-width:560px;
  color: rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.55;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:24px 0 34px;
}

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

.metrics-grid{
  margin-top:10px;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  grid-auto-rows: 1fr;
  gap:12px;
}

.cards-wrapper{
  position:relative;
  margin-bottom:-60px;
  z-index:5;
}

.card{
  background: rgb(0 0 0 / 0%);
  border: 1px solid rgb(255 106 0 / 53%);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgb(0 0 0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,106,0,.35);
  box-shadow: 0 26px 60px rgba(0,0,0,.28);
}

.metric-card{
  display:flex;
  gap:16px;
  align-items:center;
  padding:22px 26px;
  min-height:150px;
  height:100%;
  background:linear-gradient(145deg, rgba(46,28,20,.96), rgba(20,14,12,.96));
  backdrop-filter:none;
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
}

.metric-card > div{
  flex:1 1 0;
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.metric-card::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background: radial-gradient(140% 140% at 0% 0%, rgba(255,255,255,.08), transparent 55%);
  pointer-events:none;
}

.metric-card::after{
  content:"";
  position:absolute;
  left:20px;
  right:20px;
  bottom:14px;
  height:2px;
  background: linear-gradient(90deg, rgba(255,106,0,.5), transparent);
  opacity:.45;
  pointer-events:none;
}

.metric-card strong{
  display:block;
  font-size:15px;
  margin-bottom:6px;
  line-height:1.2;
  letter-spacing:-0.01em;
  text-wrap: balance;
}

.metric-card span{
  color: rgba(255,255,255,.68);
  font-size:12.5px;
  line-height:1.35;
}

.metric-icon,
.feature-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: linear-gradient(140deg, rgb(0 0 0 / 94%), rgb(0 0 0 / 57%));
  color: #ff8a2c;
  border: 1px solid rgb(255 0 0 / 0%);
  flex-shrink:0;
  box-shadow: inset 0 0 0 1px rgb(251 11 11 / 0%), 0 12px 22px rgba(0, 0, 0, .32);
}

.metric-icon svg,
.feature-icon svg{
  width:22px;
  height:22px;
}

.metrics-grid .metric-card{
  background:linear-gradient(145deg, rgba(46,28,20,.96), rgba(20,14,12,.96));
  border-color: rgba(255,255,255,.12);
}

.hero-visual{
  position:relative;
  z-index:1;
  min-height:320px;
}

.visual-glow{
  position:absolute;
  inset:-40px;
  background: radial-gradient(300px 300px at 60% 30%, rgba(255,106,0,.22), transparent 60%);
  filter: blur(16px);
}

.painel-card{
  position:relative;
  z-index:2;
  padding:26px;
  border-radius:28px;
  background: linear-gradient(145deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 29%));
  border: 1px solid rgb(255 106 0);
  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    0 0 40px rgba(255,106,0,.12);
  animation: float 6s ease-in-out infinite;
}

.visual-title{
  font-weight:800;
  font-size:18px;
  margin-bottom:8px;
}

.painel-card p{
  color: rgba(255,255,255,.72);
  margin-bottom:16px;
  font-size:14px;
}

.visual-list{
  display:grid;
  gap:10px;
  color: rgba(255,255,255,.8);
  font-size:13px;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  display:inline-block;
  margin-right:8px;
}

.dot-green{ background:#1DD17B; }
.dot-orange{ background:#FF9B3D; }
.dot-red{ background:#FF4D4D; }

.section{
  padding: 70px 0;
  position:relative;
  z-index:1;
}

.section::before{
  display:none;
}

.section.alt{
  background: transparent;
  border-top: 1px solid rgb(255 255 255 / 0%);
  border-bottom: 1px solid rgb(255 255 255 / 0%);
}

.section h2{
  font-size: 40px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.section p.lead{
  color: rgba(255,255,255,.75);
  margin: 0 0 26px;
}

.section-header{
  margin-bottom: 28px;
}

.features-grid{
  display:grid;
  gap:16px;
}

.grid-3{
  grid-template-columns: repeat(3, 1fr);
}

.feature-card h3{
  margin:12px 0 6px;
  font-size:16px;
}

.feature-card p{
  color: rgba(255,255,255,.7);
  font-size:13px;
}

.feature-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(145deg, rgba(46,28,20,.96), rgba(20,14,12,.96));
  box-shadow:0 18px 36px rgba(0,0,0,.45);
}

.feature-card::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background: radial-gradient(140% 140% at 0% 0%, rgba(255,255,255,.08), transparent 55%);
  pointer-events:none;
}

.feature-card::after{
  content:"";
  position:absolute;
  left:20px;
  right:20px;
  bottom:14px;
  height:2px;
  background: linear-gradient(90deg, rgba(255,106,0,.5), transparent);
  opacity:.45;
  pointer-events:none;
}

.flow{
  position:relative;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

#como-funciona{
  background: transparent;
  border-top: 1px solid rgb(0 0 0 / 0%);
  border-bottom: 1px solid rgb(255 255 255 / 0%);
  position: relative;
}

#como-funciona::before{
  display:none;
}

#como-funciona::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(255,106,0,.08), transparent 70%);
  pointer-events:none;
}

.flow::before{
  display:none;
}

.flow-item{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-start;
  padding:22px 26px;
  min-height:150px;
  height:100%;
  background:linear-gradient(145deg, rgba(46,28,20,.96), rgba(20,14,12,.96));
  backdrop-filter:none;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 36px rgba(0,0,0,.45);
}

.flow-item::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background: radial-gradient(140% 140% at 0% 0%, rgba(255,255,255,.08), transparent 55%);
  pointer-events:none;
}

.flow-item::after{
  content:"";
  position:absolute;
  left:20px;
  right:20px;
  bottom:14px;
  height:2px;
  background: linear-gradient(90deg, rgba(255,106,0,.5), transparent);
  opacity:.45;
  pointer-events:none;
}


.flow-node{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, #000000, #000000);
  margin-bottom:12px;
  color: #ff8f00;
}

.flow-item h3{
  margin:0;
  font-size:16px;
}

.flow-item p{
  color: rgba(255,255,255,.72);
  font-size:13px;
  margin:0;
}

.form-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.form-card{
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
}

.form-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}

.form-title{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.form-sub{
  margin-top: 6px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
}

.stepper{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 8px 0 18px;
}

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

.step-dot{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.16);
  font-weight:800;
  color:rgba(255,255,255,.6);
}

.step-dot.active{
  background:linear-gradient(135deg, var(--red), var(--orange));
  color:#fff;
  border-color:transparent;
  box-shadow:0 10px 24px rgba(255,106,0,.35);
}

.step-dot.active + .label{
  color: rgba(255,255,255,.92);
}

.step .label{
  font-size:12px;
  color: rgba(255,255,255,.60);
}

.stepbar{
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
}

.stepbar > span{
  display:block;
  height:100%;
  width: 33%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 999px;
  transition: width .25s ease;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid.full{
  grid-template-columns: 1fr;
}

.field{
  display:grid;
  gap:8px;
  margin-bottom:16px;
}

.field label{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.input{
  height: 46px;
  border-radius: 16px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

select.input{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ff9a3d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

select.input::-ms-expand{
  display:none;
}

select.input option{
  background: #0f0f12;
  color:#fff;
}

/* ===== Custom Select (UF) ===== */
.uf-select{ display:grid; gap:10px; width:100%; position:relative; }
.uf-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.58);
}

.uf-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.45);
  color:#fff;
  cursor:pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.uf-trigger:hover{ transform: translateY(-1px); }
.uf-trigger:focus{
  outline:none;
  border-color: rgba(255,106,0,.85);
  box-shadow: 0 0 0 4px rgba(255,106,0,.20);
}
.uf-value{ opacity:.95; }
.uf-caret{ opacity:.7; }

.uf-popover{
  border-radius:18px;
  border:1px solid rgba(255,106,0,.28);
  background: linear-gradient(180deg, rgba(12,12,18,.96), rgba(8,8,12,.96));
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  overflow:hidden;
  position:absolute;
  top: calc(100% + 8px);
  left:0;
  right:0;
  z-index:20;
}

.uf-search{
  padding:10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.uf-input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.40);
  padding:12px 12px;
  color:#fff;
}
.uf-input:focus{
  outline:none;
  border-color: rgba(255,106,0,.75);
  box-shadow: 0 0 0 4px rgba(255,106,0,.18);
}
.uf-input::placeholder{ color: rgba(255,255,255,.45); }

.uf-list{
  list-style:none;
  margin:0;
  padding:8px;
  max-height: 260px;
  overflow:auto;
}
.uf-list::-webkit-scrollbar{ width:8px; }
.uf-list::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.22);
  border-radius: 999px;
}

.uf-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
  color: rgba(255,255,255,.86);
  transition: background .12s ease, transform .12s ease;
}
.uf-item:hover{
  background: rgba(255,106,0,.12);
  transform: translateY(-1px);
}
.uf-item[aria-selected="true"]{
  background: rgba(255,106,0,.18);
  border: 1px solid rgba(255,106,0,.25);
}
.uf-tag{
  font-size:12px;
  color: rgba(255,255,255,.55);
}

.uf-hidden{
  position:absolute;
  opacity:0;
  pointer-events:none;
  height:0;
}

.input::placeholder{
  color: rgba(255,255,255,.35);
}

.input:focus{
  border-color: rgba(255,106,0,.65);
  box-shadow: 0 0 0 4px rgba(255,106,0,.18);
  background: rgba(0,0,0,.48);
}

.radio-group{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.segmented{
  display:inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.segmented input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.segmented label{
  cursor:pointer;
  user-select:none;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.segmented input:checked + label{
  color:#fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 14px 28px rgba(255,106,0,.18);
}

.segmented label:hover{
  color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

/* ===== Termos inline ===== */
.terms-row{
  margin-top: 10px;
}

.terms-check{
  display:flex;
  align-items:flex-start;
  gap:12px;
  cursor:pointer;
  user-select:none;
}

.terms-check input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.check-ui{
  width:22px;
  height:22px;
  border-radius:7px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
  display:grid;
  place-items:center;
  margin-top:2px;
  flex:0 0 auto;
}

.terms-check input:checked + .check-ui{
  border-color: rgba(255,106,0,.65);
  box-shadow: 0 0 0 4px rgba(255,106,0,.18);
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.terms-check input:checked + .check-ui::after{
  content:"✓";
  font-weight:900;
  font-size:14px;
  color:#fff;
  transform: translateY(-1px);
}

.terms-text{
  color: rgba(255,255,255,.75);
  font-size:13.5px;
  line-height:1.45;
}

.terms-link{
  border:none;
  background:transparent;
  color: #ff9a3d;
  font-weight:800;
  padding:0;
  cursor:pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-link:hover{
  color:#ffd29a;
}

/* ===== Modal ===== */
.terms-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.terms-modal.open{
  display:block;
}

.terms-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}

.terms-sheet{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width:min(720px, 92vw);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(18,14,18,.92), rgba(10,8,10,.92));
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  overflow:hidden;
}

.terms-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:18px 18px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.terms-head h3{
  margin:0;
  font-size:18px;
  font-weight:900;
}

.terms-head p{
  margin:4px 0 0;
  color: rgba(255,255,255,.65);
  font-size:13px;
}

.terms-x{
  width:38px;
  height:38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:#fff;
  cursor:pointer;
}

.terms-x:hover{
  border-color: rgba(255,106,0,.5);
}

.terms-tabs{
  display:flex;
  gap:10px;
  padding: 12px 18px 0;
}

.tab{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.75);
  cursor:pointer;
  font-weight:800;
  font-size:13px;
}

.tab.active{
  color:#fff;
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 0 0 4px rgba(255,106,0,.16);
}

.terms-body{
  padding: 14px 18px 0;
  max-height: 45vh;
  overflow:auto;
}

.tab-panel{ display:none; }
.tab-panel.show{ display:block; }

.terms-body p, .terms-body li{
  color: rgba(255,255,255,.72);
  font-size:13.5px;
}

.terms-body ul{
  margin:10px 0 12px 18px;
}

.terms-small{
  font-size:12.5px;
  color: rgba(255,255,255,.6);
}

.terms-small a{
  color:#ff9a3d;
  font-weight:800;
  text-decoration:none;
}
.terms-small a:hover{ text-decoration:underline; }

.terms-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.checkbox label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:rgba(255,255,255,.7);
}

.form-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top: 18px;
}

.btn-ghost{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 800;
  cursor:pointer;
}

.btn-primary2{
  background: linear-gradient(135deg, var(--red), var(--orange));
  border: 0;
  color: #fff;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 900;
  cursor:pointer;
  box-shadow: 0 18px 40px rgba(225,29,46,.18);
}

.btn-primary2:disabled{
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
}

.form-alert{
  background:rgba(225,29,46,.18);
  border:1px solid rgba(225,29,46,.4);
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  margin-bottom:14px;
}

.success-box{
  margin-top: 18px;
  border-radius: 18px;
  padding: 14px;
  background: rgba(29, 209, 123, .10);
  border: 1px solid rgba(29, 209, 123, .25);
  color: rgba(255,255,255,.88);
  display:block;
}

.success-box[hidden]{
  display:none;
}

.success-title{
  font-weight: 900;
  margin-bottom: 4px;
}

input:-webkit-autofill{
  -webkit-text-fill-color: rgba(255,255,255,.92) !important;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px rgba(0,0,0,.35) inset !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}

.cta-final{
  position:relative;
  background:
    radial-gradient(800px 420px at 12% 50%, rgba(255,106,0,.18), transparent 60%),
    radial-gradient(900px 520px at 88% 40%, rgba(225,29,46,.22), transparent 65%),
    linear-gradient(180deg, rgba(8,8,14,.9), rgba(5,5,10,.95));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.cta-sub{
  color: rgba(255,255,255,.7);
  font-size:13px;
  margin-top:8px;
}

.faq-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.faq-item h3{
  margin-bottom:8px;
  font-size:16px;
}

.faq-item p{
  color: rgba(255,255,255,.7);
  font-size:13px;
}

.site-footer{
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.footer-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:24px;
  padding:40px 0 24px;
}

.footer-title{
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-brand{
  font-size:16px;
  letter-spacing:-0.01em;
  color:#fff;
}

.footer-text{
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.5;
}

.footer-link{
  display:block;
  color: rgba(255,255,255,.75);
  text-decoration:none;
  font-size: 13px;
  margin-bottom: 8px;
  border:none;
  background:transparent;
  padding:0;
  text-align:left;
  cursor:pointer;
}

.footer-link:hover{
  color:#ff9a3d;
}

.footer-note{
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-top: 6px;
}

.subfooter{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 14px 6vw 18px;
  text-align:center;
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

/* Policy Modal */
.policy-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.policy-modal.open{
  display:block;
}

.policy-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
}

.policy-sheet{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width:min(700px, 92vw);
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(18,14,18,.94), rgba(10,8,10,.94));
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  overflow:hidden;
}

.policy-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.policy-head h3{
  margin:0;
  font-size:18px;
  font-weight:900;
}

.policy-head p{
  margin:6px 0 0;
  font-size:13px;
  color: rgba(255,255,255,.65);
}

.policy-x{
  width:36px;
  height:36px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:#fff;
  cursor:pointer;
}

.policy-body{
  padding:18px;
  max-height:50vh;
  overflow:auto;
}

.policy-body p,
.policy-body li{
  font-size:13.5px;
  color: rgba(255,255,255,.72);
  line-height:1.55;
}

.policy-title{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.9);
  margin-bottom:8px;
}

.policy-title svg{
  width:18px;
  height:18px;
  color:#ff9a3d;
  flex-shrink:0;
}

.policy-updated{
  margin-bottom:14px;
}

.policy-body ul{
  margin:10px 0 12px 18px;
}

.policy-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding:18px;
  border-top:1px solid rgba(255,255,255,.08);
}

.policy-contact{
  display:grid;
  gap:10px;
  margin-top:10px;
}

.policy-contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.82);
  font-size:13.5px;
}

.policy-contact-item svg{
  width:18px;
  height:18px;
  color:#ff9a3d;
  flex-shrink:0;
}

.btn{
  border:none;
  cursor:pointer;
  border-radius:16px;
  padding:14px 18px;
  font-weight:800;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn .btn-icon{
  width:22px;
  height:22px;
  object-fit:contain;
  filter: brightness(0) invert(1);
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg, var(--red), var(--orange));
  box-shadow:0 18px 40px rgba(225,29,46,.22);
  position:relative;
  overflow:hidden;
}

.btn-primary:hover{
  transform: translateY(-2px);
}

.btn-primary::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-120%);
  transition: .6s;
}

.btn-primary:hover::after{
  transform: translateX(120%);
}

.btn-outline{
  background: rgb(0 0 0 / 11%);
  border: 1px solid rgb(255 106 0);
  color: #ff7100;
}

.btn-outline:hover{
  transform: translateY(-2px);
  border-color: rgba(255,106,0,.75);
}


.btn:disabled{
  opacity:.6;
  cursor:not-allowed;
  box-shadow:none;
}

@keyframes float{
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-6px); }
  100%{ transform: translateY(0px); }
}

[data-reveal]{
  opacity:0;
  transform: translateY(14px);
  transition: .55s ease;
}

.reveal-in{
  opacity:1;
  transform: translateY(0);
}

.card[data-reveal]{
  opacity:1;
  transform: translateY(0);
}

.sticky-cta{
  position:fixed;
  bottom:16px;
  left:16px;
  right:16px;
  display:none;
  z-index:4;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr;}
  .grid-4{grid-template-columns: repeat(2, 1fr);}
  .metrics-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .grid-3{grid-template-columns: repeat(2, 1fr);}
  .form-actions{flex-direction:column;}
  .cta-inner{flex-direction:column; align-items:flex-start;}
  .faq-grid{grid-template-columns: repeat(2, 1fr);}
  .footer-grid{grid-template-columns: repeat(2, 1fr);}
}

@media (max-width: 720px){
  .sticky-cta{display:block;}
  body{padding-bottom:90px;}
  .flow{grid-template-columns: 1fr;}
  .flow::before{
    top:24px;
    left:22px;
    right:auto;
    width:2px;
    height:calc(100% - 24px);
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.4), transparent);
  }
  .flow-item{padding-left:24px;}
}

@media (max-width: 560px){
  .terms-actions{
    flex-direction:column;
  }
  .terms-sheet{
    top:auto;
    bottom:16px;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 820px){
  .form-grid{ grid-template-columns: 1fr; }
  .form-actions{ flex-direction: column; align-items: stretch; }
}

@media (max-width: 560px){
  .hero{padding:60px 0 40px;}
  .hero-actions{flex-direction:column; align-items:flex-start;}
  .grid-4{grid-template-columns: 1fr;}
  .metrics-grid{grid-template-columns: 1fr;}
  .grid-3{grid-template-columns: 1fr;}
  .form-card{padding:20px;}
  .metric-card{align-items:flex-start;}
  .faq-grid{grid-template-columns: 1fr;}
  .footer-grid{grid-template-columns: 1fr;}
  .policy-actions{flex-direction:column;}
  .policy-sheet{
    top:auto;
    bottom:16px;
    transform: translate(-50%, 0);
  }
}
