:root {
  color-scheme: light;
  --bg: #f5f8fd;
  --surface: #ffffff;
  --ink: #0a1a4b;
  --ink-soft: #55618a;
  --indigo: #0a1a4b;
  --indigo-soft: #0f2d72;
  --violet: #087af8;
  --violet-dark: #035ad6;
  --coral: #01baa3;
  --mint: #004bbf;
  --sand: #4fe0c9;
  --border: #e2e8f7;
  --shadow-lg: 0 30px 60px rgba(10, 26, 75, 0.16);
  --shadow-sm: 0 10px 24px rgba(10, 26, 75, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, .display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--indigo);
}

.brand img {
  height: 60px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--indigo);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 14px 28px rgba(108, 92, 231, 0.32);
}

.btn-primary:hover {
  background: var(--violet-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}

.btn-secondary:hover {
  background: var(--indigo);
  color: #fff;
}

.btn-on-dark {
  background: #fff;
  color: var(--indigo);
}

.btn-on-dark:hover {
  background: var(--sand);
  transform: translateY(-2px);
}

.btn-ghost-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-on-dark:hover {
  border-color: #fff;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: radial-gradient(circle at 85% 15%, #0f2d72 0%, var(--indigo) 55%);
  color: #fff;
  overflow: hidden;
  padding: 4.5rem 0 6rem;
}

.hero-orbit-decor {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #cfe0ff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}

.eyebrow-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  color: #fff;
  margin-bottom: 1.1rem;
}

.hero-copy .lead {
  color: #c3d2f2;
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--indigo);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.hero-trust p {
  margin: 0;
  font-size: 0.88rem;
  color: #c3d2f2;
}

.hero-media {
  position: relative;
  overflow: visible;
}

.hero-media img {
  width: 110%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -5%;
}

.hero-media svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.floating-chip {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float 6s ease-in-out infinite;
}

.floating-chip span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.chip-1 {
  top: 6%;
  left: -6%;
  animation-delay: 0s;
}

.chip-2 {
  bottom: 8%;
  right: -4%;
  animation-delay: 1.4s;
}

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

@media (prefers-reduced-motion: reduce) {
  .floating-chip { animation: none; }
}

/* ---------- Trust bar ---------- */

.trust-bar {
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 600;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.wordmark {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #9fb0d9;
  letter-spacing: -0.01em;
}

/* ---------- Sections ---------- */

.section {
  padding: 5.5rem 0;
}

/* ---------- Delete Account Page ---------- */
.delete-account-card{
  background: var(--surface);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin: 48px auto;
}
.delete-account-card h2{ color:var(--indigo); margin-bottom:6px }
.delete-account-card .muted{ color:var(--ink-soft) }
.delete-account-card label{ margin-top:14px; display:block; color:var(--ink); font-weight:600 }
.delete-account-card input[type="text"],
.delete-account-card input[type="email"],
.delete-account-card textarea{
  width:100%; padding:12px; margin-top:8px; border-radius:8px; border:1px solid var(--border);
  background:var(--surface); color:var(--ink); box-shadow:none; font-size:0.95rem
}
.delete-account-card textarea{ min-height:96px }
.delete-account-controls{ display:flex; gap:12px; align-items:center; margin-top:14px }
.delete-account-controls .btn{ padding:10px 14px }
.otp-section{ margin-top:18px }
.hidden{ display:none !important }
.message{ padding:10px 12px; border-radius:8px; font-weight:600; display:inline-block }
.message.success{ background: rgba(13, 110, 253, 0.06); color: var(--violet); border:1px solid rgba(13, 110, 253, 0.12) }
.message.error{ background: rgba(255, 99, 71, 0.06); color: #ff4d4f; border:1px solid rgba(255,77,79,0.12) }

@media (max-width:640px){
  .delete-account-card{ margin:24px; padding:18px }
}

/* Page-specific tighter spacing for single-page content like Privacy/Payments/FAQ */
.page-card {
  padding: 2.25rem 0;
}
.page-card .section {
  padding: 1.1rem 0;
}

/* FAQ accordion styles */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  margin-bottom: 0.9rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10,26,75,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--indigo);
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.faq-question:hover {
  background: rgba(8, 122, 248, 0.03);
}

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(8, 122, 248, 0.08);
  color: var(--violet);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.24s ease;
  padding: 0 1.25rem;
}

.faq-answer.open {
  padding: 0 1.25rem 1.05rem;
  max-height: 600px;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.page-card h1 {
  margin-bottom: 2rem;
}

.section-alt {
  background: #eef3fc;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.8rem;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

/* ---------- Stats ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.stat-card {
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  color: #fff;
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
  margin-bottom: 0.3rem;
}

.stat-card span {
  font-size: 0.88rem;
  opacity: 0.9;
}

.stat-card.tone-violet { background: var(--violet); }
.stat-card.tone-coral { background: var(--coral); }
.stat-card.tone-indigo { background: var(--indigo); }
.stat-card.tone-mint { background: var(--mint); }

/* ---------- Showcase ---------- */

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--mint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.image-card {
  border-radius: 24px;
  background: linear-gradient(160deg, #e4edfc 0%, #e3faf5 100%);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
}

.image-card svg,
.image-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ---------- Problem / Solution ---------- */

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.compare-problem,
.compare-solution {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.compare-problem {
  color: var(--ink-soft);
}

.compare-solution {
  color: var(--ink);
  font-weight: 600;
}

.compare-problem::before,
.compare-solution::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.compare-problem::before {
  background-color: #ffe3e0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5484d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.compare-solution::before {
  background-color: var(--mint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.compare-arrow {
  color: var(--violet);
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 720px) {
  .compare-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .compare-arrow {
    display: none;
  }
}

/* ---------- Orbit / signature section ---------- */

.orbit-section .showcase-grid {
  align-items: center;
}

.orbit-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.orbit-wrap svg {
  width: 100%;
  height: 100%;
}

/* ---------- Feature grid ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.card .icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
}

.icon-chip.tone-violet { background: #e4edfc; color: var(--violet); }
.icon-chip.tone-coral { background: #d9f5f0; color: var(--coral); }
.icon-chip.tone-mint { background: #dbe9fd; color: var(--mint); }

/* ---------- Process list (real sequence, numbered) ---------- */

.process-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 1.1rem;
}

.process-list li {
  counter-increment: step;
  position: relative;
  padding-left: 2.6rem;
  color: var(--ink-soft);
}

.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Testimonial ---------- */

.testimonial-box {
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-box blockquote {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin: 1.2rem 0 1.6rem;
  color: var(--ink);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.testimonial-author .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- CTA band ---------- */

.cta-box {
  border-radius: 28px;
  background: radial-gradient(circle at 20% 20%, #0f2d72 0%, var(--indigo) 60%);
  color: #fff;
  padding: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-box .eyebrow {
  color: #a9c8ff;
}

.cta-box h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.pitch-band-wrap {
  padding-top: 3rem;
}

/* ---------- Sales pitch band ---------- */

.pitch-band {
  position: relative;
  border-radius: 28px;
  background: radial-gradient(circle at 80% 20%, #0f2d72 0%, var(--indigo) 60%);
  color: #fff;
  padding: 4rem 3.5rem;
  text-align: center;
  overflow: hidden;
}

.pitch-band .eyebrow-pill {
  margin: 0 auto 1.2rem;
}

.pitch-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 700px;
  margin: 0 auto 1.4rem;
}

.pitch-split {
  max-width: 620px;
  margin: 0 auto 2rem;
  display: grid;
  gap: 0.9rem;
}

.pitch-problem {
  color: #a9b6dd;
  font-size: 1rem;
}

.pitch-arrow-down {
  color: var(--sand);
  font-size: 1.3rem;
  line-height: 1;
}

.pitch-solution {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 1rem 1.3rem;
}

.pitch-band p {
  color: #c3d2f2;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.pitch-band .hero-actions {
  justify-content: center;
}

/* ---------- Footer ---------- */

.site-footer {
  background: linear-gradient(135deg, #07153d 0%, var(--indigo) 100%);
  color: #c3d2f2;
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-brand img {
  width: 300px;
  display: block;
}

.footer-brand p {
  margin: 0;
  max-width: 32ch;
  color: #dfe8ff;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-section h4 {
  color: #fff;
  font-size: 0.96rem;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-contact a {
  color: #dfe8ff;
  transition: color 0.15s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 0.7rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #7f9bd6;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9c8ff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-legal a {
  color: #a9c8ff;
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-dot {
  color: #5772a8;
}

/* ---------- Page hero (about/services/contact) ---------- */

.page-hero {
  padding: 4rem 0 5rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.copy-block {
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-card,
.form-card {
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}

.contact-list strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mint);
  margin-bottom: 0.2rem;
}

.contact-list p,
.contact-list a {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--sand);
}

.form-grid {
  display: grid;
  gap: 0.2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-grid button {
  margin-top: 1.5rem;
  width: 100%;
}

.form-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 1rem 0 0.4rem;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: 2px solid var(--violet);
  outline-offset: 1px;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-grid,
  .showcase-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 24px;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta .btn-secondary {
    display: none;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .floating-chip {
    display: none;
  }

  .footer-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .footer-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Help & Support ---------- */
.support-options {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.support-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(10, 26, 75, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  font-family: inherit;
}

.support-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(8, 122, 248, 0.35);
}

.support-option-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 79, 0.1);
  color: #ff4d4f;
}

.support-option-icon svg {
  width: 22px;
  height: 22px;
}

.support-option-body {
  flex: 1;
}

.support-option-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.support-option-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.support-option-arrow {
  color: var(--ink-soft);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 75, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  padding: 1.8rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--bg);
}

.modal-box h2 {
  font-size: 1.35rem;
  padding-right: 1.5rem;
}

.modal-subtext {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 0.4rem;
}

.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
}

.modal-box label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
}

.modal-box input[type="text"],
.modal-box input[type="email"],
.modal-box textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.95rem;
  font-family: inherit;
}

.modal-box textarea {
  min-height: 80px;
  resize: vertical;
}

.modal-box input:focus,
.modal-box textarea:focus {
  outline: none;
  border-color: var(--violet);
}

.otp-input {
  letter-spacing: 0.4em;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
}

.modal-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.modal-actions .btn {
  width: 100%;
}

.btn-danger {
  background: #ff4d4f;
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 77, 79, 0.28);
}

.btn-danger:hover {
  background: #e6393b;
  transform: translateY(-2px);
}

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

.modal-link-btn {
  background: none;
  border: none;
  color: var(--violet);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
  text-align: center;
  font-family: inherit;
}

.modal-link-btn:hover {
  text-decoration: underline;
}

.modal-message {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}

.modal-message.show {
  display: block;
}

.modal-message.success {
  background: rgba(1, 186, 163, 0.1);
  color: #01836f;
  border: 1px solid rgba(1, 186, 163, 0.25);
}

.modal-message.error {
  background: rgba(255, 77, 79, 0.08);
  color: #d6363a;
  border: 1px solid rgba(255, 77, 79, 0.2);
}

.otp-meta {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
