:root {
  --bg: #02060f;
  --rail: #07111f;
  --card: #0a1528;
  --card-2: #0c1a33;
  --line: rgba(120, 150, 210, 0.14);
  --text: #edf2fb;
  --muted: #8b9bb5;
  --blue: #1a56ff;
  --blue-2: #4d8bff;
  --purple: #7300ef;
  --warn: #f5a524;
  --ok: #2dd4a8;
  --danger: #f87171;
  --font: "Instrument Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 10% 0%, rgba(26, 86, 255, 0.2), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 30%, rgba(115, 0, 239, 0.12), transparent 50%),
    radial-gradient(ellipse 45% 30% at 50% 100%, rgba(20, 50, 120, 0.12), transparent 55%);
  z-index: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

a { color: var(--blue-2); }
a:hover { text-decoration: underline; }

.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 12px;
}

.grad {
  background: linear-gradient(135deg, #7eb0ff 0%, #c4b5fd 50%, #4d8bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* NAV */
.topnav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: rgba(2, 6, 15, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topnav-links {
  display: flex;
  gap: 20px;
}
.topnav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.topnav-links a:hover { color: var(--text); text-decoration: none; }
.topnav .btn-sm {
  width: auto;
  padding: 10px 16px;
  margin: 0;
  font-size: 0.88rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; color: var(--text); }
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--blue), #7eb0ff);
  box-shadow: 0 0 12px rgba(26, 86, 255, 0.5);
}
.nav-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.foot-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}
.foot-brands .brand { margin-right: 0; }
.foot-logo {
  display: block;
  height: 26px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.92;
}
.foot-logo-fh {
  height: 22px;
  max-width: 140px;
  opacity: 0.85;
}
.foot-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.foot-logo-link:hover .foot-logo { opacity: 1; }
.foot-brand-sep {
  width: 1px;
  height: 22px;
  background: var(--line);
}
.foot-brands > p {
  flex-basis: 100%;
  margin-top: 4px;
}
@media (max-width: 560px) {
  .nav-logo { height: 24px; max-width: 150px; }
  .foot-logo { height: 22px; }
  .foot-logo-fh { height: 18px; }
}


/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #1a56ff, #123fce);
  box-shadow: 0 12px 28px rgba(26, 86, 255, 0.32);
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}
.btn-ghost:hover:not(:disabled) {
  border-color: rgba(77, 139, 255, 0.45);
  background: rgba(26, 86, 255, 0.08);
  color: var(--text);
}

/* HERO */
.hero {
  padding: 56px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 22px;
}
.hero-ctas {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-bottom: 18px;
}
.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.hero-bullets li {
  position: relative;
  padding-left: 14px;
  color: #c5d0e4;
  font-size: 0.88rem;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
}

.hero-card-inner {
  background: linear-gradient(180deg, #0c1a33 0%, #0a1528 100%);
  border: 1px solid rgba(77, 139, 255, 0.28);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 8px;
}
.hero-card h2 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-steps {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-steps li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(5, 11, 22, 0.7);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: #c5d0e4;
}
.hero-steps strong {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--blue-2);
}
.hero-note {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

/* LOGOS */
.logos-section {
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.55);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.logos-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 110px;
}
.logo-item img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.15) brightness(1.05);
  opacity: 0.92;
}
.logo-item span {
  font-size: 0.72rem;
  color: #6b7c96;
  font-weight: 600;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.proof-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 16px;
}
.proof-links a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dashed rgba(139, 155, 181, 0.35);
}
.proof-links a:hover { color: var(--blue-2); }

/* ABOUT */
.about {
  padding: 64px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}
.about h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.about p {
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 54ch;
}
.about strong { color: var(--text); }
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
}
.stat strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--text);
}
.stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* OFFERS */
.offers {
  padding: 20px 0 64px;
}
.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.section-lead {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.offer-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.offer-primary {
  border-color: rgba(77, 139, 255, 0.4);
  background: linear-gradient(180deg, #0c1a33 0%, #0a1528 100%);
  box-shadow: 0 20px 50px rgba(26, 86, 255, 0.12);
}
.offer-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-2);
  background: rgba(26, 86, 255, 0.14);
  border: 1px solid rgba(77, 139, 255, 0.3);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.offer-badge.muted {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}
.offer-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.offer-price {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 4px;
}
.offer-price-sm { font-size: 1.6rem; }
.offer-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.offer-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  flex: 1;
}
.offer-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: #c5d0e4;
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}
.offer-not {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(5, 11, 22, 0.65);
  border: 1px solid var(--line);
}

/* SCOPE */
.scope {
  padding: 48px 0;
  background: rgba(7, 17, 31, 0.45);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.scope-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.scope h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.scope > .container > div > p,
.scope-grid > div > p {
  color: var(--muted);
}
.scope-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.scope-card {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--card);
}
.scope-card h4 {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.scope-card.ok h4 { color: var(--ok); }
.scope-card.no h4 { color: var(--danger); }
.scope-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.scope-card li {
  font-size: 0.88rem;
  color: #c5d0e4;
  padding-left: 12px;
  position: relative;
}
.scope-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* ORDER FORM */
.order {
  padding: 64px 0;
}
.order-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.order-copy h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.order-copy > p {
  color: var(--muted);
  margin-bottom: 16px;
}
.order-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.order-points li {
  position: relative;
  padding-left: 16px;
  color: #c5d0e4;
  font-size: 0.92rem;
}
.order-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-2);
}
.order-fine {
  font-size: 0.78rem;
  color: #6b7c96;
  line-height: 1.5;
}

.order-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.order-form h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.form-block-title {
  margin-top: 8px;
  margin-bottom: 12px !important;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.label-hint {
  font-weight: 500;
  opacity: 0.8;
}
.field input,
.field textarea {
  width: 100%;
  max-width: 100%;
  background: #050b16;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
}
/* Força o estilo escuro mesmo com autofill do navegador */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field textarea:-webkit-autofill,
.affix input:-webkit-autofill {
  -webkit-text-fill-color: var(--text) !important;
  -webkit-box-shadow: 0 0 0 1000px #050b16 inset !important;
  box-shadow: 0 0 0 1000px #050b16 inset !important;
  caret-color: var(--text);
  transition: background-color 9999s ease-in-out 0s;
}
.field input:focus,
.field textarea:focus,
.affix:focus-within {
  border-color: rgba(77, 139, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(26, 86, 255, 0.16);
}
.affix {
  display: flex;
  align-items: stretch;
  background: #050b16;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.affix span {
  display: flex;
  align-items: center;
  padding: 0 0 0 14px;
  color: var(--blue-2);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.affix input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 12px 14px 12px 8px;
  min-width: 0;
  flex: 1;
}
.field-hint {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #6b7c96;
  font-family: var(--mono);
}
.field-hint.over { color: var(--danger); }

.segment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.seg-btn {
  border: 1px solid var(--line);
  background: #050b16;
  color: var(--muted);
  border-radius: 10px;
  padding: 11px 8px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
}
.seg-btn.active {
  color: #fff;
  border-color: rgba(77, 139, 255, 0.55);
  background: rgba(26, 86, 255, 0.2);
}

.checks { margin: 8px 0 4px; }
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 10px 0;
  cursor: pointer;
  line-height: 1.45;
}
.check input {
  margin-top: 3px;
  accent-color: var(--blue);
  flex-shrink: 0;
}
.form-actions {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.form-secure {
  margin-top: 12px;
  text-align: center;
  font-size: 0.78rem;
  color: #6b7c96;
}

/* CHECKOUT MVP */
#view-checkout {
  display: none;
  padding: 48px 0 64px;
}
#view-checkout.active { display: block; }
.checkout-wrap {
  display: flex;
  justify-content: center;
}
.checkout-card {
  width: min(560px, 100%);
  background: var(--card);
  border: 1px solid rgba(77, 139, 255, 0.3);
  border-radius: 20px;
  padding: 28px;
}
.checkout-card h2 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.checkout-lead {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.checkout-summary {
  background: #050b16;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #c5d0e4;
  margin-bottom: 16px;
  white-space: pre-wrap;
  font-family: var(--mono);
  line-height: 1.55;
}
.checkout-actions {
  display: grid;
  gap: 8px;
}

/* FAQ */
.faq {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* FOOTER */
.site-foot {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  position: relative;
  z-index: 1;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.foot-row p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}
.foot-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.foot-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}
.foot-links a:hover { color: var(--blue-2); }
.foot-copy {
  text-align: center;
  font-size: 0.75rem;
  color: #5a6a84;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.72);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.open { display: flex; }
.modal-box {
  width: min(480px, 100%);
  max-height: 85vh;
  overflow: auto;
  background: #0c1830;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.modal-head h3 { font-size: 1.05rem; }
.x {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
}
.modal-body {
  font-size: 0.9rem;
  color: #c5d0e4;
  margin-bottom: 16px;
}
.modal-body ol { padding-left: 18px; margin: 10px 0; }
.modal-body li { margin-bottom: 8px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .offer-grid,
  .scope-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }
  .topnav-links { display: none; }
  .scope-cards { grid-template-columns: 1fr; }
  .foot-row {
    flex-direction: column;
  }
  .foot-links { align-items: flex-start; }
}
@media (max-width: 560px) {
  .grid-2 { grid-template-columns: 1fr; }
  .segment { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .container { width: calc(100% - 28px); }
  .hero { padding-top: 32px; }
}


/* TEAM */
.team {
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px 20px;
  text-align: center;
  height: auto;
  align-self: start;
}
.team-photo-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 12px;
}
.team-photo {
  width: 140px;
  height: 140px;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-photo-btn:hover .team-photo {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 86, 255, 0.2);
}
.team-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-role {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.35;
}
.team-bio {
  text-align: left;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: #c5d0e4;
}
.team-bio[hidden] { display: none !important; }
.team-bio p { margin-bottom: 10px; }
.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.team-links a {
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}
.team-links a:hover { text-decoration: underline; }

/* HOW IT WORKS */
.how {
  padding: 56px 0;
  background: rgba(7, 17, 31, 0.4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.how-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 16px;
}
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(26, 86, 255, 0.18);
  color: var(--blue-2);
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.how-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.modal-box-lg {
  width: min(560px, 100%);
}

@media (max-width: 960px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-photo { width: 120px; height: 120px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .team-card { padding: 12px 10px 14px; }
  .team-photo { width: 96px; height: 96px; border-radius: 12px; }
  .team-card h3 { font-size: 0.88rem; }
  .team-role { font-size: 0.7rem; }
  .how-grid { grid-template-columns: 1fr; }
}

/* ========== Service choice cards ========== */
.service-choice { margin-top: 8px; }
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
.service-card {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  transition: border-color .2s, background .2s, box-shadow .2s;
  position: relative;
}
.service-card input { position: absolute; opacity: 0; pointer-events: none; }
.service-card-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px;
}
.service-card .service-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-2);
}
.service-card .service-badge.muted { color: var(--muted); }
.service-card strong {
  font-size: 0.95rem;
  color: var(--text);
}
.service-card .service-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-2);
}
.service-card .service-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.service-card:hover {
  border-color: rgba(77, 139, 255, 0.35);
}
.service-card.active {
  border-color: var(--blue);
  background: linear-gradient(160deg, rgba(26, 86, 255, 0.12), rgba(115, 0, 239, 0.06));
  box-shadow: 0 0 0 1px rgba(26, 86, 255, 0.25);
}
@media (max-width: 560px) {
  .service-cards { grid-template-columns: 1fr; }
}

/* ========== Success views ========== */
.view { display: none; }
.view.active { display: block; }

.checkout-wrap {
  padding: 60px 0 100px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card {
  width: min(520px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(45, 212, 168, 0.12);
  color: var(--ok);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon.purple {
  background: rgba(115, 0, 239, 0.14);
  color: #c4b5fd;
}

.success-card .kicker { margin-bottom: 8px; }
.success-card h2 {
  font-size: 1.55rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.success-lead {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

.success-steps {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.success-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 86, 255, 0.18);
  color: var(--blue-2);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-step strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.success-step p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.success-ref {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.success-ref code {
  font-family: var(--mono);
  font-size: 0.78rem;
  background: rgba(255,255,255,0.05);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--text);
}

.success-card .btn { width: auto; min-width: 160px; margin: 0 auto; }

/* Loading state on button */
.btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}
.btn.is-loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== Compare table ========== */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare-table th {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.25);
}
.compare-table th.highlight,
.compare-table td.highlight {
  background: rgba(26, 86, 255, 0.08);
}
.compare-table th.highlight {
  color: var(--blue-2);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .actions-row td {
  padding-top: 20px;
  padding-bottom: 20px;
}
.compare-table .btn,
.compare-table .btn-ghost {
  width: auto;
  display: inline-flex;
  padding: 12px 18px;
  font-size: 0.88rem;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .compare-table { font-size: 0.84rem; }
  .compare-table th,
  .compare-table td { padding: 12px 12px; }
}
