:root {
  --bg: #0b0b14;
  --bg-alt: #12121f;
  --surface: #17172a;
  --text: #f5f5fa;
  --text-muted: #a8a8c0;
  --orange: #ff6b35;
  --purple: #8b5cf6;
  --lime: #c6ff4a;
  --pink: #ff3d8a;
  --border: rgba(255,255,255,0.08);
  --radius: 20px;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

/* Background blobs */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: float 18s ease-in-out infinite;
}

.blob-1 {
  width: 480px; height: 480px;
  background: var(--purple);
  top: -120px; left: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 420px; height: 420px;
  background: var(--orange);
  top: 40%; right: -140px;
  animation-delay: -6s;
}

.blob-3 {
  width: 380px; height: 380px;
  background: var(--pink);
  bottom: -160px; left: 30%;
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 60px) scale(1.1); }
  66% { transform: translate(-30px, -40px) scale(0.95); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,11,20,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(90deg, var(--lime), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--pink));
  color: #0b0b14;
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,53,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 190px 0 120px;
}

.hero-inner {
  max-width: 820px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--orange), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Proof / tools */
.proof {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.proof .eyebrow {
  display: block;
  text-align: center;
}

.proof h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

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

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 16px;
}

.proof-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.proof-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Services */
.services {
  position: relative;
  z-index: 1;
  padding: 140px 0;
}

.services h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  max-width: 600px;
}

.services-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 64px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Services timeline (layered journey) */
.services-timeline {
  position: relative;
}

.services-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 32px;
  bottom: 90px;
  width: 2px;
  background: rgba(255,255,255,0.1);
}

.services-timeline::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 32px;
  bottom: 90px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--purple), var(--lime), var(--pink));
  transform: scaleY(var(--progress, 0));
  transform-origin: top;
  transition: transform 0.1s linear;
}

.service-layer {
  margin-bottom: 56px;
}

.service-layer:last-child {
  margin-bottom: 0;
}

.layer-head {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.layer-num-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.7;
}

.layer-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  background: var(--bg);
  border: 2px solid var(--border);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.layer-num-1 { color: var(--orange); border-color: rgba(255,107,53,0.4); }
.layer-num-2 { color: var(--purple); border-color: rgba(139,92,246,0.4); }
.layer-num-3 { color: var(--lime); border-color: rgba(198,255,74,0.4); }
.layer-num-extra { color: var(--pink); border-color: rgba(255,61,138,0.4); font-size: 1.6rem; }

.service-layer.in-view .layer-num-1 { box-shadow: 0 0 0 6px rgba(255,107,53,0.15); border-color: var(--orange); transform: scale(1.06); }
.service-layer.in-view .layer-num-2 { box-shadow: 0 0 0 6px rgba(139,92,246,0.15); border-color: var(--purple); transform: scale(1.06); }
.service-layer.in-view .layer-num-3 { box-shadow: 0 0 0 6px rgba(198,255,74,0.15); border-color: var(--lime); transform: scale(1.06); }
.service-layer.in-view .layer-num-extra { box-shadow: 0 0 0 6px rgba(255,61,138,0.15); border-color: var(--pink); transform: scale(1.06); }

.layer-connector {
  width: 56px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

.layer-connector svg {
  width: 18px;
  height: 18px;
}

.layer-title {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.layer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
}

.layer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-left: 78px;
}

.card-sm {
  padding: 28px;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 14px;
}

.icon-l1 { background: rgba(255,107,53,0.15); color: var(--orange); }
.icon-l2 { background: rgba(139,92,246,0.15); color: var(--purple); }
.icon-l3 { background: rgba(198,255,74,0.15); color: var(--lime); }
.icon-extra { background: rgba(255,61,138,0.15); color: var(--pink); }

.service-layer-extra {
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.layer-cards-single {
  grid-template-columns: 1fr;
}

.card-wide {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255,61,138,0.08), rgba(139,92,246,0.06));
}

.card-wide .card-icon {
  margin-bottom: 0;
}

.card-wide-text h4 {
  font-size: 1.2rem;
}

/* About */
.about {
  position: relative;
  z-index: 1;
  padding: 100px 0 140px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 16px 0 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 500;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
}

.stat-card-alt { margin-left: 40px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--lime), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lime);
}

.stat-label {
  flex-basis: 100%;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

/* Contact */
.contact {
  position: relative;
  z-index: 1;
  padding: 100px 0 160px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 16px 0 16px;
}

.contact-text p {
  color: var(--text-muted);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

/* Honeypot: fora da tela, nunca oculto com display:none — alguns bots
   ignoram campos escondidos dessa forma. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input:invalid:not(:placeholder-shown) {
  border-color: var(--pink);
}

.contact-form[data-state="sending"] {
  opacity: 0.7;
  pointer-events: none;
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.form-note {
  font-size: 0.85rem;
  color: var(--lime);
  min-height: 1.2em;
}

.form-note[data-tone="error"] { color: var(--pink); }
.form-note[data-tone="pending"] { color: var(--text-muted); }

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-inner .logo { font-size: 1.1rem; }

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

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

/* Responsive */
@media (max-width: 640px) {
  .layer-cards { grid-template-columns: 1fr; padding-left: 0; }
  .layer-head { gap: 14px; }
  .layer-num { width: 44px; height: 44px; font-size: 0.95rem; }
  .layer-num-col { gap: 6px; }
  .step-label { font-size: 0.58rem; }
  .services-timeline::before,
  .services-timeline::after { left: 21px; }
  .layer-connector { width: 44px; }
  .card-wide { flex-direction: column; }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(11,11,20,0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .nav.nav-open { display: flex; }
  .nav a {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    border-top: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { text-align: left; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .stat-card-alt { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 150px 0 90px; }
}

@media (max-width: 500px) {
  .header-inner .btn-small { display: none; }
}

.lang-switch{
    display:flex;
    gap:6px;
    align-items:center;
    margin-left:16px;
    padding:4px;
    border-radius:10px;
    background:rgba(255,255,255,0.06);
  }
  .lang-btn{
    background:transparent;
    border:none;
    border-radius:6px;
    padding:6px 10px;
    font-size:13px;
    font-weight:600;
    color:rgba(255,255,255,0.55);
    cursor:pointer;
    font-family:inherit;
    transition:all .2s ease;
  }
  .lang-btn:hover{
    color:#fff;
    background:rgba(255,255,255,0.08);
  }
  .lang-btn.active{
    color:#0a0a0f;
    background:linear-gradient(135deg,#ff7a45,#ff4d8d);
  }
  /* Seletor de idioma */
.lang-switch{
  display:flex;
  gap:6px;
  align-items:center;
  margin-left:16px;
  padding:4px;
  border-radius:10px;
  background:rgba(255,255,255,0.06);
}
.lang-btn{
  background:transparent;
  border:none;
  border-radius:6px;
  padding:6px 10px;
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,0.55);
  cursor:pointer;
  font-family:inherit;
  transition:all .2s ease;
}
.lang-btn:hover{
  color:#fff;
  background:rgba(255,255,255,0.08);
}
.lang-btn.active{
  color:#0a0a0f;
  background:linear-gradient(135deg,#ff7a45,#ff4d8d);
}

/* FAQ */
.faq-list{max-width:760px;margin-top:32px;display:flex;flex-direction:column;gap:12px}
.faq-item{background:rgba(255,255,255,0.04);border-radius:12px;padding:18px 22px}
.faq-item summary{cursor:pointer;font-weight:600;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";float:right;font-weight:400}
.faq-item[open] summary::after{content:"–"}
.faq-item p{margin-top:12px;color:rgba(255,255,255,0.7);line-height:1.6}
/* Turnstile: com appearance="interaction-only" o widget fica vazio na maioria
   das visitas, então nada de margem fixa reservando espaço em branco. */
.cf-turnstile:not(:empty) {
  margin-top: 4px;
}

/* ===========================
   Landing de campanha (/diagnostico-ia)
   =========================== */

.lp-hero { padding: 170px 0 90px; }

.lp-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }

.lp-reassure {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 36px;
}

.lp-reassure li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.lp-reassure li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 7px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(42deg);
}

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

.lp-section-alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-section h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  max-width: 720px;
  margin-bottom: 48px;
}

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

.lp-steps {
  list-style: none;
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 780px;
}

.lp-steps li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lp-step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-steps h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.lp-steps p { color: var(--text-muted); font-size: 0.95rem; }

.lp-link { color: var(--lime); text-decoration: underline; }

.lp-form-section { scroll-margin-top: 96px; }

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

@media (max-width: 620px) {
  .lp-hero { padding: 140px 0 70px; }
  .lp-section { padding: 72px 0; }
  .lp-steps li { gap: 16px; }
  .lp-step-num { width: 42px; font-size: 1.3rem; }
}

/* ===========================
   Páginas de texto legal
   =========================== */

.legal {
  position: relative;
  z-index: 1;
  padding: 150px 0 100px;
}

.legal-inner { max-width: 760px; }

.legal h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 12px;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 36px;
}

.legal-lead {
  font-size: 1.08rem;
  color: var(--text);
  border-left: 2px solid var(--orange);
  padding-left: 20px;
  margin-bottom: 48px;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 44px 0 14px;
}

.legal h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 28px 0 10px;
  color: var(--text);
}

.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.legal p { margin-bottom: 14px; }

.legal ul {
  margin: 0 0 18px 0;
  padding-left: 22px;
}

.legal li { margin-bottom: 8px; }

.legal strong { color: var(--text); font-weight: 600; }

.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
}

.legal-link {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

@media (max-width: 620px) {
  .legal { padding: 120px 0 72px; }
  .legal-lead { padding-left: 16px; }
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--text); }

/* ===========================
   Página de confirmação (/obrigado)
   =========================== */

.thanks {
  position: relative;
  z-index: 1;
  padding: 170px 0 110px;
}

.thanks-inner { max-width: 720px; }

.thanks-check {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--lime), #8fd82a);
  box-shadow: 0 10px 30px rgba(198,255,74,0.25);
}

.thanks-check svg { width: 30px; height: 30px; }

.thanks h1 {
  font-size: clamp(2rem, 4.6vw, 3rem);
  margin-bottom: 18px;
}

.thanks-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.thanks-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.thanks-steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.thanks-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.thanks-steps h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.thanks-steps p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.thanks-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.thanks-cta { margin-top: 32px; }

@media (max-width: 620px) {
  .thanks { padding: 130px 0 80px; }
}
