/*
 * THE HORIZON - Design Manifesto
 *
 * "This is not a website. This is a threshold.
 *  Behind you: the old way.
 *  Before you: what comes next."
 *
 * Orbs drift behind the content, soft-focused, breathing.
 * Glass cards float above void — translucent.
 * Green pulling into warm gold pulling into orange.
 * The future isn't one color. It's a spectrum arriving.
 */

:root {
  --bg-void: #030306;

  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --glass-hover: rgba(255, 255, 255, 0.06);

  --text-white: #ffffff;
  --text-bright: #f0f0f5;
  --text-dim: #c8c8d8;
  --text-muted: #b8b8d0;

  /* 1UP — green + muted gold */
  --green: #22c55e;
  --amber: #C5A55A;
  --orange: #f97316;

  --glow-green: rgba(34, 197, 94, 0.5);
  --glow-amber: rgba(197, 165, 90, 0.35);
  --glow-orange: rgba(249, 115, 22, 0.3);

  /* Spacing scale */
  --space-xs:          8px;
  --space-sm:          clamp(12px, 1.5vw, 16px);
  --space-md:          clamp(16px, 2.5vw, 24px);
  --space-lg:          clamp(24px, 3vw, 32px);
  --space-xl:          clamp(32px, 4vw, 40px);
  --space-2xl:         clamp(36px, 5vw, 48px);
  --space-section-sm:  clamp(24px, 4vw, 40px);
  --space-section:     clamp(40px, 6vw, 64px);
  --space-section-lg:  clamp(48px, 8vw, 80px);
}

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

html {
  font-size: 19.2px;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--bg-void);
  color: var(--text-bright);
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== THE ORBS ===== */
/* Single-element ambient glow — all gradients composited in one pass */
.gradient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  animation: breathe 90s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
  background:
    radial-gradient(800px at 25% 25%, rgba(249, 115, 22, 0.18) 0%, transparent 100%),
    radial-gradient(600px at 15% 40%, rgba(197, 130, 50, 0.10) 0%, transparent 100%),
    radial-gradient(500px at 80% 72%, rgba(249, 115, 22, 0.10) 0%, transparent 100%),
    radial-gradient(400px at 75% 80%, rgba(197, 130, 50, 0.06) 0%, transparent 100%);
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ===== LAYOUT ===== */
.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 32px);
}

/* Offset anchor scroll to account for sticky header (~94px tall) */
[id] { scroll-margin-top: 100px; }

/* ===== HEADER ===== */
header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease;
}

header.scrolled {
  background: rgba(3, 3, 6, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 9px 18px;
  background: transparent;
  color: var(--green);
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--green);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--green);
  color: white;
}

@media (max-width: 640px) {
  .header-nav .nav-link { display: none; }
}

/* PDPA bar below chat */
.pdpa-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 16px 0;
  font-size: clamp(0.6875rem, 1.3vw, 0.8125rem);
  color: var(--text-muted);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.pdpa-bar svg { color: var(--green); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: clamp(42px, 5vw, 54px);
  height: clamp(42px, 5vw, 54px);
  background: transparent;
  border: 2.5px solid var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  color: var(--green);
  position: relative;
  text-shadow: 0 0 8px var(--green), 0 0 16px var(--green), 0 0 32px var(--green);
  box-shadow: 0 0 8px var(--green), 0 0 16px rgba(34, 197, 94, 0.4), inset 0 0 12px rgba(34, 197, 94, 0.15);
  animation: neon-flicker 4s ease-in-out infinite;
}

.logo-mark::before {
  content: '1UP!';
  position: absolute;
  color: var(--orange);
  text-shadow: 0 0 10px var(--orange), 0 0 20px var(--orange), 0 0 30px var(--orange);
  animation: glitch 0.1s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes neon-flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.85; }
  94% { opacity: 1; }
  96% { opacity: 0.9; }
  97% { opacity: 1; }
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-2px, 1px); }
  50% { transform: translate(2px, -1px); }
  75% { transform: translate(-1px, -1px); }
}

.logo-text {
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

/* ===== HERO ===== */
.hero {
  padding: var(--space-section-lg) 0 var(--space-section);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  font-weight: 700;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.08));
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: clamp(10px, 1.5vw, 14px) clamp(16px, 3vw, 28px);
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(1.75rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: clamp(20px, 3vw, 32px);
  text-wrap: balance;
}

h1 .line-1 {
  display: block;
  color: var(--text-white);
  text-shadow:
    0 0 60px rgba(255, 255, 255, 0.2),
    1px 1px 0 rgba(200, 200, 210, 0.9),
    2px 2px 0 rgba(170, 170, 185, 0.8),
    3px 3px 0 rgba(140, 140, 160, 0.7),
    4px 4px 0 rgba(110, 110, 135, 0.6),
    5px 5px 0 rgba(80, 80, 110, 0.5),
    6px 10px 20px rgba(0, 0, 0, 0.4);
}

h1 .line-2 {
  display: block;
  background: linear-gradient(135deg, #86efac 0%, #4ade80 50%, #22c55e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: spectrum-shift 5s ease infinite;
  position: relative;
  filter: drop-shadow(1px 1px 0 rgba(34, 197, 94, 0.35))
          drop-shadow(2px 2px 0 rgba(34, 197, 94, 0.2))
          drop-shadow(3px 3px 0 rgba(34, 197, 94, 0.1))
          drop-shadow(4px 8px 15px rgba(0, 0, 0, 0.35));
}

@keyframes spectrum-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-sub {
  font-size: clamp(0.9375rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--text-dim);
  max-width: 750px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 14px);
  padding: clamp(16px, 2vw, 20px) clamp(28px, 4vw, 36px);
  background: linear-gradient(135deg, var(--green), #15803d);
  color: white;
  font-size: clamp(0.9375rem, 1.7vw, 1.0625rem);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  border-radius: clamp(14px, 2vw, 18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 25px 50px -12px var(--glow-green);
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 35px 70px -12px var(--glow-green),
    0 0 40px var(--glow-green);
}

.hero-cta:focus-visible,
.cta-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* Global baseline — catches all buttons/links, zero specificity via :where() */
:where(button, a):focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.hero-cta svg { width: clamp(22px, 2.5vw, 24px); height: clamp(22px, 2.5vw, 24px); }

.hero-arrow {
  display: block;
  margin: clamp(32px, 5vw, 52px) auto 0;
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s;
  animation: bounce-down 2s ease-in-out infinite;
}

.hero-arrow:hover { opacity: 1; }
.hero-arrow svg { width: 100%; height: 100%; }

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-section) 0;
}

/* Prevent doubled vertical padding between adjacent sections */
.container > .section + .section,
.container > .section + .cta-section {
  padding-top: 0;
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-tag {
  display: inline-block;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.5rem, 6vw, 3.25rem);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-sub {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-dim);
  margin-top: var(--space-sm);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

.testimonial {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: clamp(18px, 3vw, 24px);
  padding: clamp(22px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}

.testimonial .testimonial-text { flex: 1; }
.testimonial .testimonial-author { margin-top: auto; }

.testimonial:first-child { grid-column: span 2; }

.testimonial-text {
  font-size: clamp(0.875rem, 2.5vw, 1.375rem);
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: clamp(20px, 3vw, 32px);
}

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

.testimonial-author { display: flex; align-items: center; gap: clamp(14px, 2vw, 18px); }

.author-avatar {
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  background: linear-gradient(135deg, var(--green), #15803d);
  border-radius: clamp(14px, 2vw, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: white;
}

.author-info { flex: 1; }
.author-name { font-size: clamp(0.9375rem, 2vw, 1.125rem); font-weight: 600; color: var(--text-white); }
.author-role { font-size: clamp(0.8125rem, 1.5vw, 1rem); color: var(--text-dim); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 14px);
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: clamp(18px, 3vw, 24px);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item:hover { border-color: var(--glass-border-hover); }

.faq-q {
  width: 100%;
  padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 32px);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 1.5vw, 16px);
}

.faq-q span {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1.375rem);
  font-weight: 600;
  color: var(--text-white);
}

.faq-q svg {
  width: clamp(20px, 2.5vw, 24px);
  height: clamp(20px, 2.5vw, 24px);
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--green); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 clamp(18px, 3vw, 32px) clamp(20px, 3vw, 30px);
  font-size: clamp(0.8125rem, 2vw, 1.25rem);
  color: var(--text-dim);
  line-height: 1.75;
}

/* ===== CTA ===== */
.cta-section {
  padding: var(--space-section) 0 var(--space-section-lg);
}

.cta-card {
  text-align: center;
  padding: var(--space-section-lg) clamp(24px, 5vw, 52px);
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: clamp(24px, 4vw, 36px);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent 95%);
}

.cta-card::after {
  content: '';
  position: absolute;
  top: clamp(-180px, -15vw, -100px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(450px, 70vw, 900px);
  height: clamp(220px, 35vw, 450px);
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.2) 0%, transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.5rem, 6vw, 3.125rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: clamp(18px, 2vw, 22px);
  position: relative;
  text-wrap: balance;
}

.cta-card h2 .g {
  background: linear-gradient(135deg, #86efac, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-color: #4ade80;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.cta-card p {
  font-size: clamp(0.875rem, 2.5vw, 1.5rem);
  color: var(--text-dim);
  margin-bottom: clamp(32px, 5vw, 48px);
  position: relative;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 14px);
  padding: clamp(16px, 2vw, 22px) clamp(32px, 5vw, 44px);
  background: linear-gradient(135deg, var(--green), #15803d);
  color: white;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  border-radius: clamp(16px, 2.5vw, 22px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 25px 60px -15px var(--glow-green);
}

/* Breathing glow on the final CTA — draws the eye after scrolling */
.final-cta .cta-btn {
  animation: cta-breathe 3s ease-in-out infinite;
}

.final-cta .cta-btn:hover {
  animation-play-state: paused;
}

@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset, 0 25px 60px -15px var(--glow-green); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,0.2) inset, 0 30px 70px -12px var(--glow-green), 0 0 30px var(--glow-green); }
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 35px 80px -15px var(--glow-green),
    0 0 50px var(--glow-green);
}

.cta-btn svg { width: clamp(22px, 3vw, 26px); height: clamp(22px, 3vw, 26px); }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}

.step-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: clamp(18px, 3vw, 24px);
  padding: clamp(32px, 4vw, 40px) clamp(24px, 3vw, 28px);
  text-align: left;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.step-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.step-week {
  font-size: clamp(0.6875rem, 1.3vw, 0.8125rem);
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.step-num {
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), #15803d);
  color: white;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  border-radius: 50%;
  margin: 0 0 clamp(20px, 3vw, 24px);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.step-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-white);
}

.step-card p {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  color: var(--text-dim);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 52px);
  flex-wrap: wrap;
}

.footer-brand { flex: 1; min-width: 300px; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-mark {
  width: clamp(34px, 4vw, 42px);
  height: clamp(34px, 4vw, 42px);
  background: transparent;
  border: 2px solid var(--green);
  border-radius: clamp(8px, 1vw, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.625rem, 1.2vw, 0.6875rem);
  font-weight: 800;
  color: var(--green);
  text-shadow: 0 0 8px var(--green), 0 0 16px var(--green);
  box-shadow: 0 0 8px var(--green), inset 0 0 8px rgba(34, 197, 94, 0.1);
}

.footer-logo-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--text-white);
}

.footer-tagline {
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
  color: var(--text-muted);
  margin-bottom: clamp(18px, 2vw, 22px);
}

.footer-badges { display: flex; gap: clamp(10px, 1.5vw, 14px); flex-wrap: wrap; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.6875rem, 1.2vw, 0.75rem);
  font-weight: 500;
  color: var(--text-muted);
  background: var(--glass);
  padding: clamp(8px, 1vw, 10px) clamp(12px, 1.5vw, 16px);
  border-radius: clamp(10px, 1.2vw, 12px);
  border: 1px solid var(--glass-border);
}

.footer-badge svg { width: 14px; height: 14px; color: #22c55e; }

.footer-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 12px 0;
}

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

.footer-bottom {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(22px, 3vw, 28px);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal,
.footer-company {
  font-size: clamp(0.75rem, 1.3vw, 0.8125rem);
  color: var(--text-muted);
}

/* ===== RESPONSIVE — layout shifts only ===== */

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

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial:first-child { grid-column: span 1; }

  .footer-content { flex-direction: column; }
  .footer-brand { min-width: unset; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  html { font-size: 20px; }
  /* ===== MAJOR THIRD TYPE SCALE (1.25x, 18px base) =====
   * 36px — Display/H1  (hero heading, pricing number)
   * 28px — H2           (section headings, CTA heading)
   * 22px — H3           (card titles, step headings)
   * 18px — Body         (reading text, hero sub, testimonials)
   * 16px — Secondary    (descriptions, FAQ, captions)
   * 14px — Meta         (tags, labels, badges)
   */

  /* Display / H1 */
  h1 { font-size: 36px; line-height: 1.1; }
  .pricing-range { font-size: 36px; }

  /* H2 — section headings */
  .section-title { font-size: 28px; line-height: 1.15; }
  .cta-card h2 { font-size: 28px; line-height: 1.15; }

  /* H3 — card headings */
  .step-card h3 { font-size: 22px; line-height: 1.25; }

  /* Body — primary reading text */
  .hero-sub { font-size: 18px; line-height: 1.55; }
  .testimonial-text { font-size: 18px; line-height: 1.55; }
  .bridge-text { font-size: 18px; line-height: 1.55; }
  .guarantee-body { font-size: 18px; }

  /* Secondary — supporting text */
  .step-card p { font-size: 16px; line-height: 1.5; }
  .faq-q span { font-size: 16px; }
  .faq-a-inner { font-size: 16px; line-height: 1.5; }
  .section-sub { font-size: 16px; }
  .pricing-reason { font-size: 16px; line-height: 1.5; }
  .pricing-anchor { font-size: 16px; }
  .pricing-highlight { font-size: 18px; }
  .cta-card p { font-size: 16px; }

  /* Meta — labels, tags, badges */
  .section-tag { font-size: 14px; }
  .author-name { font-size: 16px; }
  .author-role { font-size: 14px; }
  .cta-micro { font-size: 14px; }

  /* Keep glow, remove 3D offset stack (too thick at 36px) */
  h1 .line-1 { text-shadow: 0 0 60px rgba(255, 255, 255, 0.2); }
  h1 .line-2 { filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)); }

  /* Disable GPU-heavy animations on mobile */
  .logo-mark { animation: none; }
  h1 .line-2 { animation: none; }
  .founder-img::before { animation: none; }
  .gradient-bg {
    animation: none;
    will-change: auto;
    background:
      radial-gradient(ellipse 350px 500px at 40% 35%, rgba(249, 115, 22, 0.16) 0%, transparent 100%),
      radial-gradient(ellipse 280px 400px at 65% 75%, rgba(197, 130, 50, 0.10) 0%, transparent 100%);
  }

  /* Reduce backdrop-filter on mobile */
  .step-card,
  .cta-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  /* Compact footer on mobile */
  footer { padding: 24px 0; }
  .footer-logo { margin-bottom: 10px; }
  .footer-tagline { margin-bottom: 12px; }
  .footer-link { padding: 6px 0; font-size: 16px; }
  .footer-bottom { margin-top: 20px; padding-top: 16px; gap: 8px; }
  .footer-badges { gap: 8px; }
}

/* ===== BRIDGE ===== */
.bridge-section {
  padding: var(--space-xs) 0;
  position: relative;
  z-index: 2;
}

.bridge-text {
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  font-weight: 500;
  color: var(--text-dim);
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--green);
  border-radius: clamp(18px, 3vw, 24px);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
}

/* ===== INDUSTRIES ===== */
.industries-section {
  position: relative;
  z-index: 2;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.carousel-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
  margin-top: var(--space-lg);
}

.carousel-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.scroll-row {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  width: max-content;
}

.scroll-left { animation: scrollLeft 40s linear infinite; }
.scroll-right { animation: scrollRight 40s linear infinite; }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.industry-card {
  width: clamp(180px, 22vw, 260px);
  height: clamp(110px, 14vw, 160px);
  border-radius: clamp(12px, 2vw, 18px);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.industry-card span {
  position: relative;
  padding: clamp(10px, 1.5vw, 16px);
  font-size: clamp(0.75rem, 1.4vw, 0.9375rem);
  font-weight: 600;
  color: white;
}

.industry-card:hover { transform: scale(1.03); }

/* 3rd row: mobile only */
.scroll-row-3 { display: none; }

/* Mobile industries: 3-row auto-scroll */
@media (max-width: 640px) {
  .carousel-wrap { gap: 8px; }

  .scroll-row-3 { display: flex; }

  /* Slower scroll on mobile */
  .scroll-left { animation-duration: 50s; }
  .scroll-right { animation-duration: 50s; }

  .industry-card {
    width: 160px;
    height: 100px;
  }
  .industry-card span { font-size: 0.75rem; padding: 8px 10px; }
}

.industries-cta {
  text-align: center;
  padding-top: clamp(32px, 5vw, 52px);
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 64px);
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: clamp(18px, 3vw, 24px);
}

.stat-item { text-align: center; min-width: 120px; }

.stat-value {
  display: block;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #86efac, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: clamp(0.6875rem, 1.3vw, 0.875rem);
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ===== PRICING BLOCK ===== */
.pricing-block {
  text-align: center;
  margin-top: clamp(48px, 7vw, 72px);
  padding: clamp(32px, 5vw, 52px);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: clamp(18px, 3vw, 24px);
}

.pricing-label {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.pricing-range {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-range span { font-size: 0.4em; font-weight: 500; color: var(--text-muted); }

.pricing-anchor {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--text-dim);
  margin-bottom: 16px;
}

.pricing-highlight {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.pricing-reason {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--text-dim);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
  margin-bottom: clamp(8px, 1.5vw, 12px);
}

.pricing-note {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== GUARANTEE ===== */
.guarantee-card {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: clamp(24px, 4vw, 36px);
  padding: clamp(28px, 5vw, 52px);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--green), transparent 95%);
}

.guarantee-header {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: clamp(20px, 3vw, 28px);
}

.guarantee-section .founder-img {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.guarantee-section .founder-img img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}

.guarantee-title {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.guarantee-sub {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--text-muted);
  margin-top: 4px;
}

.guarantee-body {
  font-size: clamp(0.9375rem, 2.5vw, 1.375rem);
  color: var(--text-dim);
  line-height: 1.7;
}

.guarantee-singlish {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--text-muted);
  margin-top: clamp(16px, 2vw, 24px);
  font-style: italic;
}

.guarantee-ctas {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 20px);
  flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 32px);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(14px, 2vw, 18px) clamp(20px, 3vw, 28px);
  background: transparent;
  color: var(--text-dim);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  border-radius: clamp(14px, 2vw, 18px);
  cursor: pointer;
  transition: all 0.25s ease;
}

.ghost-btn:hover {
  border-color: var(--glass-border-hover);
  color: var(--text-white);
  background: var(--glass-hover);
}

/* ===== CTA MICRO ===== */
.cta-micro {
  font-size: clamp(0.75rem, 1.3vw, 0.875rem);
  color: var(--text-muted);
  margin-top: 16px;
  position: relative;
}

/* ===== FOOTER GRID ===== */
.footer-links-grid {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .stats-row { gap: 16px; }
  .stat-item { min-width: calc(50% - 16px); }
  .footer-links-grid { flex-direction: column; gap: 24px; }
}

/* ===== CHAT COMPARISON ===== */
.chat-section {
  position: relative;
  z-index: 2;
}

.chat-section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-section) clamp(18px, 3vw, 32px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chat-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.chat-scene {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.chat-title {
  font-size: clamp(1.375rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
}

.chat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
}

.chat-label {
  font-size: clamp(0.6875rem, 1.4vw, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: clamp(8px, 1vw, 14px);
  text-align: center;
}

.chat-label-human { color: var(--text-muted); }
.chat-label-ai { color: var(--green); }

.chat-frame {
  background: rgba(12, 12, 15, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: clamp(14px, 2vw, 20px);
  overflow: hidden;
}

.chat-frame-ai {
  border-color: rgba(34, 197, 94, 0.18);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.06);
}

.chat-frame-header {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  padding: clamp(10px, 1.5vw, 16px) clamp(12px, 2vw, 18px);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.015);
}

.chat-avatar-circle {
  width: clamp(28px, 3.5vw, 36px);
  height: clamp(28px, 3.5vw, 36px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.5rem, 1vw, 0.625rem);
  font-weight: 800;
  color: var(--text-muted);
}

.ai-avatar {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--green);
}

.chat-frame-name {
  font-size: clamp(0.75rem, 1.4vw, 0.875rem);
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.2;
}

.chat-frame-status {
  font-size: clamp(0.625rem, 1.1vw, 0.75rem);
  color: var(--text-muted);
  line-height: 1.3;
}

.status-online {
  color: #25D366;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-online-dot {
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.5);
}

.chat-messages {
  padding: clamp(12px, 1.5vw, 18px);
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vw, 10px);
  min-height: clamp(160px, 22vw, 260px);
}

.wa-msg {
  display: flex;
  opacity: 0;
  transform: translateY(12px);
}

.wa-out { justify-content: flex-end; }
.wa-in { justify-content: flex-start; }

.wa-bubble {
  padding: clamp(6px, 0.8vw, 10px) clamp(10px, 1.2vw, 14px);
  font-size: clamp(0.75rem, 1.4vw, 0.875rem);
  line-height: 1.5;
  max-width: 88%;
  word-break: break-word;
}

.wa-bubble-out {
  background: #1a3a2a;
  color: #d4edda;
  border-radius: 12px 12px 0 12px;
}

.wa-bubble-in {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  border-radius: 12px 12px 12px 0;
}

.wa-meta {
  display: block;
  text-align: right;
  font-size: clamp(0.5625rem, 1vw, 0.6875rem);
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3px;
  white-space: nowrap;
}

.wa-ticks {
  letter-spacing: -3px;
  margin-left: 2px;
}

.ticks-grey { color: rgba(255, 255, 255, 0.3); }
.ticks-blue { color: #4FC3F7; font-size: 1.1em; }

/* WhatsApp-style reaction bubble */
.wa-bubble-with-reaction { position: relative; margin-bottom: 14px; }

.wa-reaction {
  position: absolute;
  bottom: -12px;
  right: 8px;
  font-size: 0.875rem;
  background: rgba(30, 30, 35, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2px 6px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.5);
}

.wa-date-label {
  text-align: center;
  font-size: clamp(0.625rem, 1.1vw, 0.6875rem);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 12px;
  border-radius: 8px;
  width: fit-content;
  margin: clamp(6px, 1vw, 10px) auto;
  opacity: 0;
  transform: translateY(12px);
}

/* Stopwatch — centered overlay during blackout */
.stopwatch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
}

.stopwatch-svg {
  width: clamp(80px, 15vw, 140px);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.stopwatch-label {
  font-size: clamp(0.875rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
}

/* Desktop: receptionist left, AI right */
.chat-phone { display: flex; flex-direction: column; }
.chat-phone .chat-frame { flex: 1; display: flex; flex-direction: column; }
.chat-phone .chat-messages { flex: 1; }
.chat-phone-human { order: 1; }
.chat-phone-ai { order: 2; }

/* Mobile: stack vertically, AI on top */
@media (max-width: 640px) {
  /* Vertical stacked chat — content-driven height, pin handles viewport */
  .chat-section-inner {
    padding: 16px 12px 0;
    justify-content: flex-start;
  }
  .chat-intro { margin-bottom: 8px; }
  .chat-scene { font-size: 10px; margin-bottom: 4px; }
  .chat-title { font-size: 24px; line-height: 1.15; text-wrap: balance; }

  .chat-grid { grid-template-columns: 1fr; gap: 5px; }

  .chat-label { font-size: 10px; margin-bottom: 2px; }
  .chat-frame { border-radius: 10px; }
  .chat-frame-header { padding: 6px 10px; gap: 6px; }
  .chat-avatar-circle { width: 22px; height: 22px; font-size: 8px; }
  .chat-frame-name { font-size: 13px; line-height: 1.1; }
  .chat-frame-status { font-size: 10px; }
  .wa-online-dot { width: 4px; height: 4px; }

  .chat-messages { padding: 6px 8px; gap: 4px; min-height: auto; overflow: hidden; }
  .wa-bubble { padding: 6px 10px; font-size: 14px; line-height: 1.4; max-width: 85%; }
  .wa-meta { font-size: 10px; margin-top: 1px; }
  .wa-ticks { letter-spacing: -2px; }
  .wa-date-label { font-size: 10px; padding: 2px 6px; margin: 2px auto; }
  .wa-reaction { font-size: 11px; bottom: -9px; right: 5px; padding: 1px 3px; }
  .wa-bubble-with-reaction { margin-bottom: 10px; }

  .pdpa-bar { font-size: 10px; padding: 4px 12px 0; }

  .chat-phone-human { order: 1; }
  .chat-phone-ai { order: 2; }

  /* Header slides out when chat is pinned */
  header { transition: background 0.3s ease, transform 0.3s ease; }
}

/* ===== LEAD FORM MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3, 3, 6, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: rgba(18, 18, 22, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(32px, 5vw, 48px);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--green), transparent 95%);
  border-radius: 28px 28px 0 0;
}

.modal-close {
  position: absolute;
  top: clamp(14px, 2vw, 20px);
  right: clamp(14px, 2vw, 20px);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close svg { width: 18px; height: 18px; color: var(--text-muted); }
.modal-close:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--glass-border-hover); }
.modal-close:hover svg { color: var(--text-white); }

.modal-title {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  color: var(--text-muted);
  margin-bottom: clamp(24px, 4vw, 32px);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-white);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input:focus {
  border-color: var(--green);
  background: rgba(34, 197, 94, 0.04);
}

.form-group.has-error input {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.04);
}

.field-error {
  display: block;
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 6px;
  min-height: 18px;
}

/* intl-tel-input overrides to match our design */
.iti { width: 100%; }

.iti__selected-dial-code {
  color: var(--text-dim);
  font-family: 'Outfit', sans-serif;
}

.iti__country-container {
  border-radius: 12px 0 0 12px;
}

.iti__dropdown-content {
  background: #1a1a1e;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  max-height: 250px;
}

.iti__search-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  padding: 8px 12px;
}

.iti__country {
  padding: 8px 12px;
}

.iti__country:hover,
.iti__country--highlight {
  background: rgba(34, 197, 94, 0.1);
}

.iti__country-name,
.iti__dial-code {
  color: var(--text-dim);
}

.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--green), #15803d);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 15px 40px -10px var(--glow-green);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 20px 50px -10px var(--glow-green),
    0 0 30px var(--glow-green);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

.modal-pdpa-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 12px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.modal-pdpa-badge svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* Success state */
.modal-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08));
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg { width: 28px; height: 28px; color: var(--green); }

.modal-success .modal-title { margin-bottom: 12px; }
.modal-success .modal-sub { margin-bottom: 0; }

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(3, 3, 6, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
  padding: 12px clamp(16px, 3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible { transform: translateY(0); }
.sticky-cta[data-dismissed="true"] { display: none; }

.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.sticky-cta-text {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--text-dim);
}

.sticky-cta-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--green), #15803d);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset, 0 8px 24px -8px var(--glow-green);
}

.sticky-cta-btn:hover { transform: scale(1.03); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 12px 32px -8px var(--glow-green); }

.sticky-cta-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta-close svg { width: 16px; height: 16px; color: var(--text-muted); }
.sticky-cta-close:hover svg { color: var(--text-white); }

@media (max-width: 640px) {
  .sticky-cta-text { display: none; }
  .sticky-cta { justify-content: center; }
}

/* ===== TOUCH DEVICES ===== */
@media (hover: none) and (pointer: coarse) {
  .step-card:hover { transform: none; box-shadow: none; }
  .hero-cta:hover, .cta-btn:hover { transform: none; }

  .hero-cta:active, .cta-btn:active { transform: scale(0.98); opacity: 0.9; }
  .step-card:active { background: var(--glass-hover); }
  .faq-q:active { background: rgba(255, 255, 255, 0.02); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .logo-mark, h1 .line-2, .founder-img::before, .status-dot {
    animation: none !important;
  }

  .scroll-left, .scroll-right { animation: none !important; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* orbs use radial-gradient now — no blur filter needed */

  .step-card, .cta-card, .guarantee-card, .status-pill {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .gradient-bg { animation: none; }
}
