/* ============================================================
   PAGEDIN YYC — STYLE.CSS
   Deep navy (#1b3a6b) primary · Warm amber (#d97706) accent
   Cabinet Grotesk (display) + Satoshi (body) · Fontshare CDN
   Light + dark mode · Mobile-first responsive
============================================================ */

/* ============================================================
   1. DESIGN TOKENS
============================================================ */

:root,
[data-theme="light"] {
  /* Brand colours */
  --color-navy: #1b3a6b;
  --color-navy-deep: #122952;
  --color-navy-light: #2a4f8a;
  --color-navy-subtle: #e8eef7;
  --color-accent: #d97706;
  --color-accent-hover: #b45309;
  --color-accent-light: #fef3c7;

  /* Surfaces */
  --color-bg: #f9f8f5;
  --color-surface: #ffffff;
  --color-surface-2: #f4f3ef;
  --color-surface-offset: #edeae4;
  --color-border: #ddd9d2;
  --color-divider: #e8e5e0;

  /* Text */
  --color-text: #1a1a1a;
  --color-text-muted: #5a5855;
  --color-text-faint: #9a9895;

  /* Semantic roles mapped to brand */
  --color-primary: var(--color-navy);
  --color-primary-hover: var(--color-navy-deep);

  /* Hero specifically */
  --hero-bg: var(--color-navy);
  --hero-text: #ffffff;
  --hero-text-muted: rgba(255,255,255,0.72);
  --hero-pattern-color: rgba(255,255,255,1);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Inter', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(27,58,107,0.06), 0 1px 2px rgba(27,58,107,0.04);
  --shadow-md: 0 4px 16px rgba(27,58,107,0.10), 0 2px 4px rgba(27,58,107,0.06);
  --shadow-lg: 0 12px 40px rgba(27,58,107,0.14), 0 4px 8px rgba(27,58,107,0.06);

  /* Transitions */
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --content-default: 1080px;
  --content-narrow: 720px;
  --nav-height: 72px;
}

[data-theme="dark"] {
  --color-bg: #0e1825;
  --color-surface: #132035;
  --color-surface-2: #1a2d48;
  --color-surface-offset: #1f3455;
  --color-border: #2a3e5c;
  --color-divider: #243349;

  --color-text: #e8edf5;
  --color-text-muted: #8a9ab5;
  --color-text-faint: #4a607a;

  --color-navy-subtle: #1a2d48;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-accent-light: #2d2010;

  --hero-bg: #0a1422;
  --hero-text: #e8edf5;
  --hero-text-muted: rgba(232,237,245,0.65);
  --hero-pattern-color: rgba(255,255,255,1);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

/* System preference fallback */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0e1825;
    --color-surface: #132035;
    --color-surface-2: #1a2d48;
    --color-surface-offset: #1f3455;
    --color-border: #2a3e5c;
    --color-divider: #243349;
    --color-text: #e8edf5;
    --color-text-muted: #8a9ab5;
    --color-text-faint: #4a607a;
    --color-navy-subtle: #1a2d48;
    --color-accent: #f59e0b;
    --color-accent-hover: #d97706;
    --color-accent-light: #2d2010;
    --hero-bg: #0a1422;
    --hero-text: #e8edf5;
    --hero-text-muted: rgba(232,237,245,0.65);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  }
}

/* ============================================================
   2. BASE RESET
============================================================ */

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color 0.25s ease, color 0.25s ease;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* Hero background SVG must fill its container */
.hero-pattern {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

ul[role="list"], ol[role="list"] { list-style: none; }

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.12;
  font-family: var(--font-display);
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 68ch;
}

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

button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(217, 119, 6, 0.2);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   3. LAYOUT UTILITIES
============================================================ */

.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

/* ============================================================
   4. NAVIGATION
============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: color-mix(in oklab, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-primary);
  flex-shrink: 0;
}

[data-theme="dark"] .logo {
  color: var(--color-accent);
}

.logo-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-primary);
}

[data-theme="dark"] .logo-wordmark {
  color: var(--color-text);
}

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

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding-block: var(--space-2);
  transition: color var(--transition);
}

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

[data-theme="dark"] .nav-link:hover {
  color: var(--color-accent);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-4);
}

.btn-demo {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-demo:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(217,119,6,0.35);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--color-primary);
  background: var(--color-surface-offset);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4);
  flex-direction: column;
  gap: var(--space-1);
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-link:hover {
  background: var(--color-surface-2);
  color: var(--color-primary);
}

.mobile-nav-wa {
  color: #25d366;
  font-weight: 600;
}

/* ============================================================
   5. BUTTONS
============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-6);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

[data-theme="dark"] .btn-outline {
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: var(--color-navy-subtle);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1da852;
  border-color: #1da852;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-10);
}

/* ============================================================
   6. SECTION COMMON ELEMENTS
============================================================ */

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.section-headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  max-width: 22ch;
}

[data-theme="dark"] .section-headline {
  color: var(--color-text);
}

.section-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 58ch;
  margin-bottom: var(--space-10);
}

/* ============================================================
   7. HERO
============================================================ */

.hero {
  position: relative;
  background: var(--hero-bg);
  color: var(--hero-text);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
}

.hero-bg {
  position: absolute;
  inset: 0;
  color: var(--hero-pattern-color);
  pointer-events: none;
  overflow: hidden;
}

.hero-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Amber gradient wash on right */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(217,119,6,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Deep shadow on left */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(11,22,40,0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-narrow);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  background: rgba(217,119,6,0.12);
  border: 1px solid rgba(217,119,6,0.3);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4) var(--space-1) var(--space-3);
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: var(--space-6);
  line-height: 1.06;
}

.hero-sub {
  font-size: var(--text-base);
  color: var(--hero-text-muted);
  max-width: 54ch;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  max-width: none;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.trust-divider {
  opacity: 0.4;
}

/* Floating trade chips */
.hero-floats {
  position: absolute;
  right: clamp(var(--space-6), 5vw, var(--space-24));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: 2;
}

.float-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  animation: floatChip 4s ease-in-out infinite;
}

.float-chip:nth-child(1) { animation-delay: 0s; }
.float-chip:nth-child(2) { animation-delay: 0.5s; }
.float-chip:nth-child(3) { animation-delay: 1s; }
.float-chip:nth-child(4) { animation-delay: 1.5s; }
.float-chip:nth-child(5) { animation-delay: 2s; }

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

/* ============================================================
   8. PROBLEM SECTION
============================================================ */

.problem-section {
  background: var(--color-bg);
  position: relative;
}

/* Amber accent stripe at top */
.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 0 0 var(--radius-full) var(--radius-full);
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.pain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(217,119,6,0.25);
}

.pain-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-subtle);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

[data-theme="dark"] .pain-icon {
  background: var(--color-surface-2);
  color: var(--color-accent);
}

.pain-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.65;
  font-style: italic;
  max-width: none;
}

/* ============================================================
   9. HOW IT WORKS
============================================================ */

.how-section {
  background: var(--color-surface-2);
  position: relative;
}

[data-theme="dark"] .how-section {
  background: var(--color-surface);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-12);
  max-width: 720px;
}

.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(27,58,107,0.25);
}

[data-theme="dark"] .step:hover {
  border-color: rgba(245,158,11,0.25);
}

.step-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  padding-top: var(--space-1);
  opacity: 0.9;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
}

[data-theme="dark"] .step-title {
  color: var(--color-text);
}

.step-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 44ch;
}

.step-icon {
  color: var(--color-primary);
  opacity: 0.6;
  align-self: center;
}

[data-theme="dark"] .step-icon {
  color: var(--color-accent);
}

.step-connector {
  display: flex;
  justify-content: start;
  padding-left: calc(3.5rem / 2 - 1px + var(--space-6));
  height: 40px;
  align-items: center;
  color: var(--color-text-faint);
}

/* ============================================================
   10. FEATURES / WHAT'S INCLUDED
============================================================ */

.features-section {
  background: var(--color-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.feature-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(217,119,6,0.3);
  transform: translateY(-1px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  color: var(--color-accent-hover);
  flex-shrink: 0;
}

[data-theme="dark"] .feature-icon {
  background: rgba(245,158,11,0.12);
  color: var(--color-accent);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.feature-text strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.feature-text span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   11. PRICING
============================================================ */

.pricing-section {
  background: var(--color-surface-2);
}

[data-theme="dark"] .pricing-section {
  background: var(--color-surface);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
  max-width: 760px;
}

.pricing-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card--launch {
  border-color: var(--color-accent);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(217,119,6,0.08);
}

.pricing-card--launch:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(217,119,6,0.08);
}

.pricing-card--monthly:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pricing-plan {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.pricing-currency {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-primary);
}

[data-theme="dark"] .pricing-price {
  color: var(--color-text);
}

.pricing-period {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.pricing-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  max-width: none;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.pricing-check {
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}

.pricing-badge-after {
  position: absolute;
  top: -1px;
  right: var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: var(--space-1) var(--space-3);
}

.pricing-footnote {
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

.pricing-footnote a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   12. DEMO SECTION
============================================================ */

.demo-section {
  background: var(--color-bg);
}

.demo-frame-wrap {
  margin-top: var(--space-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  max-width: 860px;
}

/* Browser chrome */
.browser-chrome {
  background: var(--color-surface-offset);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.browser-dots {
  display: flex;
  gap: var(--space-2);
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--color-text-faint);
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-bar {
  flex: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  display: flex;
  align-items: center;
  max-width: 360px;
}

.browser-url {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

/* Demo site mockup */
.demo-site {
  background: #1b3a6b;
  color: white;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.demo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.demo-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: white;
}

.demo-cta-sm {
  font-size: 0.75rem;
  font-weight: 600;
  background: #d97706;
  color: white;
  border-radius: 9999px;
  padding: 4px 14px;
}

.demo-hero-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-8) var(--space-6);
  flex: 1;
  gap: var(--space-6);
}

.demo-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 420px;
}

.demo-badge-sm {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(217,119,6,0.18);
  color: #fbbf24;
  border: 1px solid rgba(217,119,6,0.35);
  border-radius: 9999px;
  padding: 2px 10px;
  width: fit-content;
}

.demo-headline-sm {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
}

.demo-sub-sm {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 36ch;
}

.demo-buttons-sm {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

.demo-btn-primary {
  font-size: 0.72rem;
  font-weight: 700;
  background: #d97706;
  color: white;
  border-radius: 9999px;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.demo-btn-wa {
  font-size: 0.72rem;
  font-weight: 700;
  background: #25d366;
  color: white;
  border-radius: 9999px;
  padding: 6px 16px;
}

.demo-hero-visual {
  flex-shrink: 0;
  opacity: 0.5;
}

.demo-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
}

.demo-service-pill {
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  padding: 3px 12px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

.demo-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-6);
  background: rgba(0,0,0,0.3);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.demo-cta-wrap {
  margin-top: var(--space-10);
  display: flex;
  justify-content: center;
}

/* ============================================================
   13. ABOUT SECTION
============================================================ */

.about-section {
  background: var(--color-surface-2);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .about-section {
  background: var(--color-bg);
}

/* Subtle background accent */
.about-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(27,58,107,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: start;
}

.about-avatar {
  flex-shrink: 0;
  align-self: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.about-headline {
  max-width: 28ch;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  margin-top: var(--space-2);
}

.about-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ============================================================
   14. FOOTER
============================================================ */

.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-12) var(--space-8);
}

[data-theme="dark"] .site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-logo .logo-wordmark {
  color: #fff;
}

[data-theme="dark"] .footer-logo .logo-wordmark {
  color: var(--color-text);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  max-width: none;
}

[data-theme="dark"] .footer-tagline {
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
}

.footer-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

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

[data-theme="dark"] .footer-link {
  color: var(--color-text-muted);
}

[data-theme="dark"] .footer-link:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
}

[data-theme="dark"] .footer-bottom {
  border-top-color: var(--color-border);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  max-width: none;
}

[data-theme="dark"] .footer-copy {
  color: var(--color-text-faint);
}

.footer-domain {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   15. SCROLL REVEAL ANIMATIONS
============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   16. RESPONSIVE
============================================================ */

/* Tablet: hide float chips, adjustments */
@media (max-width: 900px) {
  .hero-floats {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-avatar {
    align-self: center;
    margin-inline: auto;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .btn-demo {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding-block: var(--space-16) var(--space-20);
  }

  .hero-headline {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .pain-cards {
    grid-template-columns: 1fr;
  }

  .steps {
    max-width: 100%;
  }

  .step {
    grid-template-columns: 2.5rem 1fr;
  }

  .step-icon {
    display: none;
  }

  .step-connector {
    padding-left: calc(2.5rem / 2 - 1px + var(--space-6));
  }

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

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .browser-chrome {
    padding: var(--space-2) var(--space-4);
  }

  .demo-hero-area {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-hero-visual {
    display: none;
  }

  .demo-trust-row {
    gap: var(--space-3);
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-6);
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .about-inner {
    gap: var(--space-8);
  }

  .about-avatar svg {
    width: 90px;
    height: 90px;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero-headline {
    font-size: 2rem;
  }

  .section-headline {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
}

/* Large screens — center-lock layout */
@media (min-width: 1400px) {
  :root {
    --content-default: 1120px;
  }
}

/* --- Contact CTA section additions --- */
.about-inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.about-actions--center {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.contact-note {
  font-size: var(--text-xs, 0.8rem);
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* --- Onboarding pre-fill states --- */
.ob-prefill-badge {
  display: none;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #2d7a3a;
  background: #d4edda;
  padding: 1px 7px;
  border-radius: 9999px;
  margin-left: 0.5rem;
  vertical-align: middle;
  font-family: 'Cabinet Grotesk', sans-serif;
  letter-spacing: 0.02em;
}
.ob-oops {
  display: none;
  font-size: 0.8rem;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.4rem;
  padding: 0.4rem 0.7rem;
  margin-top: 0.35rem;
}
