/* ================================================================
   PagaMe — Premium Landing v3
   Skills applied: high-end-visual-design, design-taste-frontend,
   redesign-existing-projects, full-output-enforcement
   
   Palette: Zinc neutrals + single emerald accent
   Font: Outfit (Google Fonts)
   Vibe: Ethereal Glass, Asymmetric layouts
   ================================================================ */

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

/* ---- Design Tokens ---- */
:root {
  --bg-0: #09090b;
  --bg-1: #0c0c0f;
  --bg-2: #18181b;
  --bg-3: #27272a;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-up: rgba(255, 255, 255, 0.05);
  --surface-active: rgba(255, 255, 255, 0.08);
  --border-0: rgba(255, 255, 255, 0.05);
  --border-1: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text-0: #fafafa;
  --text-1: #a1a1aa;
  --text-2: #71717a;
  --text-3: #52525b;
  --accent: #10b981;
  --accent-light: #34d399;
  --accent-dim: rgba(16, 185, 129, 0.10);
  --accent-border: rgba(16, 185, 129, 0.18);
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.10);
  --rose: #fb7185;
  --rose-dim: rgba(251, 113, 133, 0.10);
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-w: 1140px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 9999px;
}

/* ---- Base ---- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Noise grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: var(--r-pill); }

/* ---- Utilities ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
}

/* Section common */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  border-radius: var(--r-pill);
}

.s-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  text-wrap: balance;
}

.s-desc {
  font-size: 1rem;
  color: var(--text-1);
  max-width: 520px;
  line-height: 1.7;
}

/* Scroll reveal */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

.rv-d1 { transition-delay: 0.07s; }
.rv-d2 { transition-delay: 0.14s; }
.rv-d3 { transition-delay: 0.21s; }
.rv-d4 { transition-delay: 0.28s; }
.rv-d5 { transition-delay: 0.35s; }
.rv-d6 { transition-delay: 0.42s; }

/* ---- Buttons ---- */
/* Button-in-button (premium pattern) */
.btn-prime {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 6px 28px;
  background: var(--accent);
  color: #022c22;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  transition: all 500ms var(--ease);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.2), 0 4px 24px rgba(16, 185, 129, 0.2);
}

.btn-prime:hover {
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.3), 0 8px 36px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.btn-prime:active {
  transform: translateY(0) scale(0.98);
}

.btn-prime .btn-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms var(--ease);
}

.btn-prime:hover .btn-arrow {
  transform: translateX(2px) scale(1.05);
}

.btn-prime .btn-arrow .icon {
  width: 16px;
  height: 16px;
  color: #022c22;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--border-1);
  color: var(--text-1);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 300ms var(--ease);
}

.btn-ghost:hover {
  border-color: var(--border-2);
  color: var(--text-0);
  background: var(--surface);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--surface);
  border: 1px solid var(--border-0);
  color: var(--text-0);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 300ms var(--ease);
  width: 100%;
}

.btn-secondary:hover {
  background: var(--surface-up);
  border-color: var(--border-1);
}

/* ================================================================
   NAVBAR — Floating pill
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px 0;
}

.nav-pill {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 24px;
  background: rgba(9, 9, 11, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-0);
  border-radius: var(--r-pill);
  transition: all 500ms var(--ease);
}

.navbar.scrolled .nav-pill {
  background: rgba(9, 9, 11, 0.85);
  border-color: var(--border-1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark { color: var(--text-0); }
.logo-dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 200ms;
}

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

.nav-cta {
  padding: 8px 20px;
  background: var(--surface-up);
  border: 1px solid var(--border-1);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-0);
  transition: all 300ms var(--ease);
}

.nav-cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 101;
}

.hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--text-0);
  border-radius: 2px;
  transition: all 300ms var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ================================================================
   HERO — Asymmetric left-aligned
   ================================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Ambient glow */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow span {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-glow span:nth-child(1) {
  width: 480px;
  height: 480px;
  background: rgba(16, 185, 129, 0.08);
  top: -10%;
  right: 10%;
  animation: glow-drift 18s ease-in-out infinite;
}

.hero-glow span:nth-child(2) {
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.05);
  bottom: 0;
  left: -5%;
  animation: glow-drift 18s ease-in-out infinite -6s;
}

@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

/* Grid pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 10%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero content — LEFT aligned */
.hero-content {
  max-width: 500px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 6px;
  background: var(--surface);
  border: 1px solid var(--border-0);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 28px;
  animation: fade-up 0.7s var(--ease) 0.15s both;
}

.hero-chip-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  animation: blink 2.5s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  text-wrap: balance;
  animation: fade-up 0.7s var(--ease) 0.3s both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-1);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
  animation: fade-up 0.7s var(--ease) 0.45s both;
}

.hero-desc strong {
  color: var(--text-0);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fade-up 0.7s var(--ease) 0.6s both;
}

/* Hero visual — Floating promo cards */
.hero-visual {
  position: relative;
  height: 420px;
  animation: fade-right 0.9s var(--ease) 0.5s both;
}

/* Promo cards — marketing visuals, NOT fake screenshots */
.promo {
  position: absolute;
  background: rgba(12, 12, 15, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 600ms var(--ease);
}

.promo:hover { transform: translateY(-4px) !important; }

.promo-main {
  top: 20px;
  left: 0;
  right: 40px;
  z-index: 3;
}

.promo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.promo-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.5s ease infinite;
}

.promo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.promo-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-metric-label {
  font-size: 0.62rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.promo-metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-light);
}

.promo-metric-val.white { color: var(--text-0); }

.promo-metric-delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--accent);
}

.promo-metric-delta .icon {
  width: 10px;
  height: 10px;
}

/* Secondary promo */
.promo-side {
  bottom: 40px;
  left: -20px;
  width: 200px;
  z-index: 4;
  padding: 18px;
}

.promo-side-val {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 6px;
}

.promo-side-sub {
  font-size: 0.68rem;
  color: var(--text-2);
  margin-top: 2px;
}

/* Notification promo */
.promo-notif {
  bottom: 0;
  right: 0;
  z-index: 5;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-color: var(--accent-border);
  max-width: 240px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.promo-notif.show {
  opacity: 1;
  transform: translateY(0);
}

.promo-notif-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-notif-check .icon {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.promo-notif-text {
  font-size: 0.68rem;
  color: var(--text-2);
  line-height: 1.4;
}

.promo-notif-text strong {
  color: var(--text-0);
  font-weight: 600;
}

/* notif-in removed: JS controls notification rotation */

/* ================================================================
   PROBLEMS — Editorial split layout
   ================================================================ */
.problems {
  padding: 120px 0;
  position: relative;
}

.section-line {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-1), transparent);
}

.problems-layout {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 64px;
  align-items: start;
}

.problems-header {
  position: sticky;
  top: 120px;
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-0);
  transition: all 400ms var(--ease);
}

.p-item:first-child {
  padding-top: 0;
}

.p-item:hover {
  padding-left: 8px;
}

.p-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-dim);
  border: 1px solid rgba(251, 113, 133, 0.12);
  flex-shrink: 0;
  margin-top: 2px;
}

.p-item-icon .icon {
  width: 18px;
  height: 18px;
  color: var(--rose);
}

.p-item-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.p-item-body p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ================================================================
   SOLUTION — Steps horizontal
   ================================================================ */
.solution {
  padding: 120px 0;
  background: var(--bg-1);
  position: relative;
}

.solution-header {
  text-align: center;
  margin-bottom: 72px;
}

.solution-header .s-desc {
  margin: 0 auto;
}

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

/* Connecting line */
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(16, 185, 129, 0.3), var(--accent));
  opacity: 0.3;
}

.step {
  text-align: center;
}

.step-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: var(--accent-dim);
  border: 1.5px solid var(--accent-border);
  position: relative;
  z-index: 1;
  transition: all 400ms var(--ease);
}

.step-ring .icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.step:hover .step-ring {
  transform: scale(1.12);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-1);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

/* ================================================================
   FEATURES — Asymmetric bento grid
   ================================================================ */
.features {
  padding: 120px 0;
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .s-desc {
  margin: 0 auto;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.f-card {
  background: var(--surface);
  border: 1px solid var(--border-0);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 500ms var(--ease);
  overflow: hidden;
  position: relative;
}

.f-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}

.f-card:hover {
  background: var(--surface-up);
  border-color: var(--border-1);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px var(--border-0);
}

.f-card:hover::after { opacity: 1; }

/* Bento sizing */
.f-card:nth-child(1) { grid-column: span 7; }
.f-card:nth-child(2) { grid-column: span 5; }
.f-card:nth-child(3) { grid-column: span 5; }
.f-card:nth-child(4) { grid-column: span 7; }
.f-card:nth-child(5) { grid-column: span 4; }
.f-card:nth-child(6) { grid-column: span 8; }

.f-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.f-card-icon .icon {
  width: 18px;
  height: 18px;
}

.ic-accent {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}

.ic-amber {
  background: var(--amber-dim);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: var(--amber);
}

.f-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.f-card p {
  font-size: 0.85rem;
  color: var(--text-1);
  line-height: 1.65;
}

.f-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.12);
}

.f-tag-auto {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: var(--accent-border);
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing {
  padding: 120px 0;
  background: var(--bg-1);
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header .s-desc {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pr-card {
  background: var(--surface);
  border: 1px solid var(--border-0);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: all 500ms var(--ease);
  position: relative;
}

.pr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Featured card — double bezel technique */
.pr-card.featured {
  background: transparent;
  border: none;
  padding: 0;
}

.pr-bezel-outer {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-xl);
  padding: 5px;
}

.pr-bezel-inner {
  background: rgba(16, 185, 129, 0.03);
  border-radius: calc(var(--r-xl) - 5px);
  padding: 36px 28px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

.pr-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #022c22;
  padding: 4px 16px;
  border-radius: var(--r-pill);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pr-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}

.pr-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.pr-dollar {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-2);
}

.pr-amount {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pr-period {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 18px;
}

.pr-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-0);
}

.pr-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.83rem;
  color: var(--text-1);
}

.pr-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-check .icon {
  width: 10px;
  height: 10px;
}

.pr-check.yes {
  background: var(--accent-dim);
  color: var(--accent);
}

.pr-check.no {
  background: rgba(255,255,255,0.03);
  color: var(--text-3);
}

.pr-list {
  margin-bottom: 28px;
}

/* ================================================================
   CTA — Double-bezel card
   ================================================================ */
.cta-section {
  padding: 120px 0;
  position: relative;
}

.cta-bezel-outer {
  background: rgba(16, 185, 129, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 36px;
  padding: 6px;
}

.cta-bezel-inner {
  background: var(--bg-1);
  border-radius: 30px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.03);
}

/* CTA glow */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-glow:nth-child(1) {
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  top: -80px;
  right: -40px;
}

.cta-glow:nth-child(2) {
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.04);
  bottom: -60px;
  left: -20px;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner .s-title {
  margin-bottom: 10px;
}

.cta-inner .s-desc {
  margin: 0 auto 36px;
  text-align: center;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border-1);
  border-radius: var(--r-pill);
  background: rgba(9, 9, 11, 0.6);
  color: var(--text-0);
  font-family: var(--font);
  font-size: 0.88rem;
  outline: none;
  transition: all 300ms var(--ease);
}

.cta-input::placeholder { color: var(--text-3); }

.cta-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--text-3);
}

.cta-note .icon {
  width: 12px;
  height: 12px;
  color: var(--text-3);
}

/* Success */
.cta-success {
  display: none;
  animation: fade-up 0.5s var(--ease);
}

.cta-success.active { display: block; }

.cta-success-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.cta-success-ring .icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.cta-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-success p {
  color: var(--text-1);
  font-size: 0.88rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 52px 0 24px;
  border-top: 1px solid var(--border-0);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 44px;
}

.footer-brand { max-width: 260px; }
.footer-brand .logo { margin-bottom: 12px; }

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer-col li { margin-bottom: 9px; }

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-2);
  transition: color 200ms;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-0);
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-3);
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms var(--ease);
}

.footer-socials a .icon {
  width: 14px;
  height: 14px;
  color: var(--text-2);
  transition: color 200ms;
}

.footer-socials a:hover {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.footer-socials a:hover .icon { color: var(--accent); }

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
    height: 340px;
  }

  .promo-side { left: 0; }
  .promo-notif { right: 10px; }

  .problems-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problems-header {
    position: static;
  }

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

  .f-card:nth-child(n) { grid-column: span 1; }

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

  .pr-card:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-top { flex-direction: column; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 100;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; color: var(--text-0); }
  .nav-cta.desktop { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 64px; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.6rem); }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-prime,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .hero-visual { height: 280px; }

  .promo-main { right: 10px; }
  .promo-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .promo-metrics .promo-metric:last-child { display: none; }
  .promo-side { display: none; }
  .promo-notif { display: none; }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps::before { display: none; }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .pr-card:last-child { max-width: 100%; }

  .cta-bezel-inner { padding: 48px 24px; }
  .cta-form { flex-direction: column; }

  .footer-cols { gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .s-title { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  .footer-cols { flex-direction: column; gap: 24px; }
  .promo-main { padding: 16px; }
  .promo-metric-val { font-size: 1.1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rv { transition: none; opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; }
}
