:root {
  --navy: #0b1e3b;
  --navy-light: #152a4a;
  --pink: #e91e63;
  --pink-dark: #c2185b;
  --pink-soft: #fff0f5;
  --pink-glow: rgba(233, 30, 99, 0.35);
  --bg: #f8f9fc;
  --text: #0b1e3b;
  --muted: #64748b;
  --white: #ffffff;
  --border: rgba(11, 30, 59, 0.08);
  --glass: rgba(255, 255, 255, 0.72);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(11, 30, 59, 0.06);
  --shadow: 0 12px 40px rgba(11, 30, 59, 0.08);
  --shadow-pink: 0 12px 32px rgba(233, 30, 99, 0.25);
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #fce4ec 0%, transparent 70%);
  top: -120px;
  right: -80px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 30, 59, 0.06) 0%, transparent 70%);
  bottom: 20%;
  left: -100px;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.12) 0%, transparent 70%);
  top: 40%;
  left: 30%;
}

.logo-accent {
  color: var(--pink);
}

.logo-accent-light {
  color: #ff8fab;
}

.text-gradient {
  background: linear-gradient(135deg, var(--pink) 0%, #ff6090 50%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--pink-dark);
}

.hidden {
  display: none !important;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.85;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--navy);
  text-decoration: none;
}

.header-cta {
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 16px 40px rgba(233, 30, 99, 0.35);
}

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  color: var(--navy);
  border-color: rgba(233, 30, 99, 0.25);
  background: var(--pink-soft);
}

.btn-white {
  background: var(--white);
  color: var(--pink);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  color: var(--pink-dark);
}

/* ── Hero ── */
.hero {
  padding: 3rem 1.5rem 5rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.badge-outline {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
  box-shadow: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--navy);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 0.75rem;
  line-height: 1.7;
}

.tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink);
  margin: 0 0 1.75rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.phone-mock {
  width: 280px;
  background: var(--navy);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(11, 30, 59, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  z-index: 1;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  margin: -4px auto 8px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
  border-radius: 28px;
  padding: 1.25rem;
  min-height: 380px;
}

.mock-header {
  margin-bottom: 1.25rem;
}

.mock-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

.mock-logo span {
  color: var(--pink);
}

.mock-card {
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mock-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink-soft), #fce4ec);
  flex-shrink: 0;
}

.mock-title {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

.mock-sub {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}

.mock-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.5s ease infinite;
}

.mock-progress {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.mock-progress span {
  display: block;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), #ff6090);
  border-radius: 999px;
  animation: progress 2s ease infinite alternate;
}

@keyframes progress {
  from { width: 55%; }
  to { width: 75%; }
}

.mock-price {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.mock-price strong {
  color: var(--white);
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}

.hero-float svg {
  width: 16px;
  height: 16px;
  color: var(--pink);
}

.hero-float-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 15%;
  right: -10px;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Sections ── */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step:hover::before {
  opacity: 1;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pink-soft);
  -webkit-text-stroke: 1px var(--pink);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(233, 30, 99, 0.15);
}

.feature-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
}

.feature-highlight h3 {
  color: var(--white);
}

.feature-highlight p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-highlight .feature-icon-wrap {
  background: rgba(233, 30, 99, 0.2);
  color: #ff8fab;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 1.25rem;
}

.feature-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.cta-section {
  max-width: 1120px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.cta-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 50%, var(--pink-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.3) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  pointer-events: none;
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.cta-slogan {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 1.5rem 0;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--white);
}

.footer-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-loc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.45;
}

/* Legacy aliases for admin + legal */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

main {
  max-width: 1120px;
  margin: 0 auto;
}

/* Legal pages */
.legal-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.25rem;
  letter-spacing: -0.03em;
}

.legal-page .updated {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  color: var(--muted);
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.legal-lead {
  font-size: 1.05rem;
  color: var(--muted);
  border-left: 4px solid var(--pink);
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.legal-nav {
  display: flex;
  gap: 1.5rem;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-nav a:hover {
  color: var(--navy);
  text-decoration: none;
}

.legal-links-box {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.legal-links-box p {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
  width: 100%;
}

.btn-outline-sm {
  display: inline-flex;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  border: 2px solid var(--pink);
  text-decoration: none;
}

.btn-outline-sm:hover {
  background: var(--pink-soft);
  text-decoration: none;
}

.legal-page ol {
  padding-left: 1.35rem;
}

.legal-page ol li {
  margin-bottom: 0.35rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-float-1 {
    left: 5%;
  }

  .hero-float-2 {
    right: 5%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }

  .phone-mock {
    width: 250px;
  }

  .hero-float {
    display: none;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .legal-card {
    padding: 1.5rem;
  }
}
