/* ============================================
   SnoutWalker — Marketing Site Styles
   Mobile-first, performance-optimized
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary */
  --navy: #1E3A5F;
  --amber: #F4A261;
  --green: #52B788;

  /* Background */
  --bg: #FAF8F5;
  --bg-secondary: #F0EDE8;
  --bg-dark: #1E3A5F;

  /* Text */
  --text: #2C2924;
  --text-secondary: #8A8480;
  --text-inverse: #FFFFFF;

  /* Semantic */
  --error: #E63946;
  --success: #2D6A4F;
  --info: #457B9D;

  /* Surfaces */
  --border-light: rgba(44, 41, 36, 0.08);
  --border-medium: rgba(44, 41, 36, 0.15);
  --shadow-card: 0 2px 8px rgba(30, 58, 95, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(30, 58, 95, 0.1);
  --shadow-button: 0 2px 8px rgba(244, 162, 97, 0.35);
  --shadow-nav: 0 1px 3px rgba(30, 58, 95, 0.06);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-full: 9999px;

  /* Spacing */
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 40px;
  --s-2xl: 64px;
  --s-3xl: 96px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 16px; }

/* --- Typography --- */
h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.175rem; font-weight: 600; color: var(--text); }
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s-sm);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}
.section-pad { padding: var(--s-3xl) 0; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s 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; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-nav); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: none;
  align-items: center;
  gap: var(--s-lg);
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-button);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-nav:hover {
  background: #E8884A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(12px);
  padding: var(--s-md) var(--s-lg) var(--s-lg);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.08);
}
.nav-mobile.open { display: flex; flex-direction: column; gap: var(--s-md); }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: var(--s-sm) 0;
}
.nav-mobile .btn-nav {
  text-align: center;
  justify-content: center;
  margin-top: var(--s-xs);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: calc(64px + var(--s-3xl)) 0 var(--s-3xl);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
  margin-bottom: var(--s-md);
  line-height: 1.1;
}
.hero-content h1 span {
  display: inline;
  background: linear-gradient(135deg, var(--amber), #E8884A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--s-lg);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
  align-items: center;
  margin-bottom: var(--s-md);
}
.hero-trust {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Buttons (shared) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-button);
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: #E8884A;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(244, 162, 97, 0.4);
}
.btn-primary:active { transform: scale(0.98); }
.btn-secondary-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.btn-secondary-link:hover { color: var(--amber); }

/* Hero phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 260px;
  height: 520px;
  background: var(--navy);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 24px 48px rgba(30, 58, 95, 0.18), 0 0 0 1px rgba(30, 58, 95, 0.1);
  position: relative;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 100px;
  height: 22px;
  background: var(--navy);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.phone-map {
  width: 100%;
  height: 55%;
  background: linear-gradient(160deg, #E8F0E3, #D4E4D9, #E2EBE6);
  position: relative;
  overflow: hidden;
}
/* Stylized map streets */
.phone-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.5) 30%, rgba(255,255,255,0.5) 31%, transparent 31%),
    linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.5) 60%, rgba(255,255,255,0.5) 61%, transparent 61%),
    linear-gradient(0deg, transparent 25%, rgba(255,255,255,0.5) 25%, rgba(255,255,255,0.5) 26%, transparent 26%),
    linear-gradient(0deg, transparent 55%, rgba(255,255,255,0.5) 55%, rgba(255,255,255,0.5) 56%, transparent 56%),
    linear-gradient(0deg, transparent 80%, rgba(255,255,255,0.5) 80%, rgba(255,255,255,0.5) 81%, transparent 81%);
}
/* GPS route line via SVG */
.phone-route {
  position: absolute;
  inset: 0;
}
.phone-route svg {
  width: 100%;
  height: 100%;
}
/* Walking stats bar */
.phone-stats {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}
.phone-stat-item {
  text-align: center;
}
.phone-stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.phone-stat-label {
  font-size: 0.55rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* Walk info */
.phone-walk-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-dog-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #E8884A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.phone-walk-text { line-height: 1.3; }
.phone-walk-name { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.phone-walk-detail { font-size: 0.65rem; color: var(--text-secondary); }
.phone-walk-badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: #E8F7F0;
  color: var(--success);
}

/* Decorative amber blob behind phone */
.hero-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Floating paw prints (decorative) */
.hero-paw {
  position: absolute;
  opacity: 0.06;
  z-index: 0;
}
.hero-paw-1 { top: 20%; right: 8%; transform: rotate(15deg); }
.hero-paw-2 { bottom: 15%; left: 5%; transform: rotate(-20deg); }

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: var(--s-2xl); }
  .hero { padding-bottom: var(--s-2xl); }
  .phone-frame { width: 280px; height: 560px; }
}
@media (min-width: 1024px) {
  .hero { padding-top: calc(64px + var(--s-3xl) + 20px); }
  .phone-frame { width: 300px; height: 600px; }
}

/* ============================================
   Stats / Social Proof Bar
   ============================================ */
.stats-bar {
  background: var(--bg-secondary);
  padding: var(--s-xl) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-sm);
}
.stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 162, 97, 0.12);
  border-radius: var(--r-md);
  color: var(--amber);
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Pain Points
   ============================================ */
.pain-points { background: #fff; }
.pain-points h2 {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--s-xl);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
}
.pain-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.pain-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.pain-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 162, 97, 0.1);
  border-radius: var(--r-md);
  margin-bottom: var(--s-md);
  color: var(--amber);
}
.pain-icon svg { width: 24px; height: 24px; }
.pain-card h3 { margin-bottom: var(--s-sm); }
.pain-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Features
   ============================================ */
.features { background: var(--bg); }
.features h2 {
  text-align: center;
  margin-bottom: var(--s-xs);
}
.features .section-sub {
  text-align: center;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto var(--s-2xl);
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: center;
  margin-bottom: var(--s-2xl);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-text h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: var(--s-sm);
}
.feature-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}
.feature-text .check-list {
  margin-top: var(--s-md);
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.check-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green);
}

/* Feature mockup frames */
.feature-mockup {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}
.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-medium);
}
.mockup-body { padding: var(--s-md); }

/* GPS Map mockup */
.mockup-map {
  height: 200px;
  background: linear-gradient(160deg, #E8F0E3, #D4E4D9, #E2EBE6);
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--s-md);
}
.mockup-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 25%, rgba(255,255,255,0.4) 25%, rgba(255,255,255,0.4) 26%, transparent 26%),
    linear-gradient(90deg, transparent 55%, rgba(255,255,255,0.4) 55%, rgba(255,255,255,0.4) 56%, transparent 56%),
    linear-gradient(0deg, transparent 35%, rgba(255,255,255,0.4) 35%, rgba(255,255,255,0.4) 36%, transparent 36%),
    linear-gradient(0deg, transparent 70%, rgba(255,255,255,0.4) 70%, rgba(255,255,255,0.4) 71%, transparent 71%);
}
.mockup-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mockup-stat-row {
  display: flex;
  gap: var(--s-md);
}
.mockup-stat {
  flex: 1;
  background: var(--bg);
  padding: 10px;
  border-radius: var(--r-sm);
  text-align: center;
}
.mockup-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
}
.mockup-stat span { font-size: 0.7rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }

/* Report card mockup */
.mockup-report { text-align: center; }
.report-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-md);
  text-align: left;
}
.report-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #E8884A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.report-meta strong { display: block; font-size: 0.95rem; color: var(--text); }
.report-meta span { font-size: 0.8rem; color: var(--text-secondary); }
.report-body {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: var(--s-md);
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  border-left: 3px solid var(--green);
}
.report-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: var(--s-md);
}
.report-photo {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Client list mockup */
.mockup-clients { }
.client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.client-row:last-child { border-bottom: none; }
.client-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.client-avatar-1 { background: #EBF4FF; }
.client-avatar-2 { background: #FEF9E7; }
.client-avatar-3 { background: #E8F7F0; }
.client-avatar-4 { background: #FEF2F2; }
.client-info { flex: 1; }
.client-info strong { font-size: 0.9rem; display: block; color: var(--text); }
.client-info span { font-size: 0.75rem; color: var(--text-secondary); }
.client-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.badge-active { background: #E8F7F0; color: var(--success); }
.badge-pending { background: #FEF9E7; color: #B7791F; }

@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: var(--s-2xl); }
  .feature-row.reverse .feature-mockup { order: -1; }
  .mockup-map { height: 220px; }
}

/* ============================================
   Pet Parent Experience
   ============================================ */
.pet-parent { background: #fff; }
.pet-parent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: center;
}
.pet-parent-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  border: 1px solid var(--border-light);
}
.pp-sms { display: flex; flex-direction: column; gap: var(--s-md); }
.pp-sms-bubble {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-md);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  position: relative;
}
.pp-sms-bubble strong { color: var(--navy); font-size: 0.85rem; }
.pp-sms-time {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
@media (min-width: 768px) {
  .pet-parent-grid { grid-template-columns: 1fr 1fr; gap: var(--s-2xl); }
}

/* ============================================
   More Features Grid (Pro+)
   ============================================ */
.more-features { background: var(--bg-secondary); }
.more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
}
.more-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.more-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.more-card h3 { margin-bottom: var(--s-sm); }
.more-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
@media (min-width: 768px) {
  .more-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .more-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.pricing h2 {
  color: #fff;
  text-align: center;
  margin-bottom: var(--s-xs);
}
.pricing .section-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--s-lg);
}

/* Monthly/Annual toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  margin-bottom: var(--s-xl);
}
.pricing-toggle span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
.pricing-toggle span.active { color: #fff; }
.toggle-track {
  width: 48px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--r-full);
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-track.annual { background: var(--amber); }
.toggle-thumb {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-track.annual .toggle-thumb { transform: translateX(22px); }
.save-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: rgba(82, 183, 136, 0.2);
  color: var(--green);
  margin-left: 6px;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover { border-color: rgba(255, 255, 255, 0.2); }
.pricing-card.featured {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--amber);
  transform: scale(1);
}
.pricing-card.featured:hover { transform: scale(1.02); }
.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  background: var(--amber);
  color: #fff;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: var(--s-sm);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--s-xs);
}
.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.pricing-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--s-md);
}
.pricing-features {
  margin-bottom: var(--s-lg);
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-features li.disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: var(--r-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-pricing-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: var(--shadow-button);
}
.btn-pricing-primary:hover {
  background: #E8884A;
  transform: translateY(-1px);
}
.btn-pricing-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-pricing-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.pricing-footer {
  text-align: center;
  margin-top: var(--s-xl);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
  .pricing-card.featured {
    transform: scale(1.04);
    z-index: 2;
  }
  .pricing-card.featured:hover { transform: scale(1.06); }
  .pricing-addons { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-sm); }
  .pricing-card.featured {
    transform: scale(1.03);
    z-index: 2;
  }
  .pricing-card.featured:hover { transform: scale(1.05); }
  .pricing-card { padding: var(--s-lg) var(--s-md); }
  .pricing-features li { font-size: 0.85rem; }
  .price-amount { font-size: 2.2rem; }
}

.pricing-addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
  max-width: 960px;
  margin: var(--s-lg) auto 0;
}
.pricing-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: var(--s-md) var(--s-lg);
}
.addon-info { }
.addon-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.addon-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.addon-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: #fff; }
.faq h2 { text-align: center; margin-bottom: var(--s-xl); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--s-lg) 0;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  gap: var(--s-md);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--navy); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: var(--s-lg);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  background: var(--amber);
  text-align: center;
  padding: var(--s-3xl) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta h2 {
  color: #fff;
  margin-bottom: var(--s-sm);
}
.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: var(--s-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--r-full);
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}
.btn-cta-dark:hover {
  background: #15304F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.35);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--s-xl) 0 var(--s-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
  margin-bottom: var(--s-lg);
  padding-bottom: var(--s-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s-sm);
}
.footer-tagline { font-size: 0.85rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
}
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-locale {
  font-size: 0.85rem;
}
.footer-bottom {
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
  }
  .footer-links { justify-content: center; }
  .footer-locale { text-align: right; }
}

/* ============================================
   Register Page
   ============================================ */
.page-header {
  padding: calc(64px + var(--s-xl)) 0 var(--s-xl);
  background: var(--bg);
  text-align: center;
}
.page-header p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: var(--s-sm) auto 0;
}
.register-section {
  background: var(--bg);
  padding: 0 0 var(--s-3xl);
}
.register-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-xl) var(--s-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
@media (min-width: 768px) {
  .register-card { padding: var(--s-xl); }
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
  min-width: 0;
}
.form-row-2 > * { min-width: 0; }
.form-input { width: 100%; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label .optional {
  font-weight: 400;
  color: var(--text-secondary);
}
.form-input {
  padding: 12px 14px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.12);
}
.form-input::placeholder { color: var(--text-secondary); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238A8480' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 4px;
  display: none;
}
.form-group.error .form-input { border-color: var(--error); }
.form-group.error .form-error { display: block; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--amber);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-button);
  transition: all 0.2s ease;
  margin-top: var(--s-sm);
}
.btn-submit:hover {
  background: #E8884A;
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-footer {
  text-align: center;
  margin-top: var(--s-md);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.form-footer a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--border-medium);
  text-underline-offset: 2px;
}
.form-footer a:hover { text-decoration-color: var(--navy); }

/* ============================================
   Legal Pages (Privacy / Terms)
   ============================================ */
.legal-section {
  background: var(--bg);
  padding: 0 0 var(--s-3xl);
}
.legal-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}
.legal-card h2 {
  font-size: 1.25rem;
  margin-top: var(--s-xl);
  margin-bottom: var(--s-sm);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--s-md);
}
.legal-card ul {
  margin-bottom: var(--s-md);
  padding-left: var(--s-lg);
}
.legal-card ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  list-style: disc;
  margin-bottom: 4px;
}
.legal-card a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.legal-card a:hover { color: #E8884A; }
.legal-updated {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--s-lg);
}

/* ============================================
   Utilities
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 767px) {
  .btn-primary { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-secondary-link { text-align: center; }
}
