/* ===== TOKENS (extends design-system.css tokens) ===== */
:root {
  /* Base design tokens */
  --white: #FFFFFF;
  --accent: #0D5C5C;
  --accent-dark: #0a4f4f;
  --accent-light: #E8F4F4;
  --mint: #4CBAAE;
  --mint-light: #D0EDEA;
  --orange: #D96E3A;
  --border: #DDD8D0;
  --radius: 14px;
  --radius-sm: 8px;

  /* Semantic aliases — these map to design-system tokens */
  --bg: #F7F4EF;
  --bg-alt: #EFEBE4;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.site-header nav {
  display: flex;
  gap: 32px;
}
.site-header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,186,174,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid rgba(13,92,92,0.15);
}

/* Hero illustration panel */
.hero-illustration { display: flex; justify-content: center; }
.il-panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
}
.il-panel-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.il-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.il-dot.red { background: #FF5F57; }
.il-dot.yellow { background: #FEBC2E; }
.il-dot.green { background: #28C840; }
.il-panel-title { font-size: 0.75rem; font-weight: 600; color: var(--fg-muted); margin-left: 8px; }
.il-conversation { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.il-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.5;
}
.il-msg-user { background: var(--accent); color: #fff; align-self: flex-end; max-width: 85%; }
.il-msg-ai { background: var(--bg-alt); color: var(--fg); border: 1px solid var(--border); }
.il-msg-action { font-size: 0.7rem; color: var(--mint); background: transparent; border: none; padding: 4px 14px; }
.il-pet-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--accent-light);
}
.il-pet-info { display: flex; flex-direction: column; gap: 2px; }
.il-pet-info strong { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.il-pet-info span { font-size: 0.72rem; color: var(--fg-muted); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--accent);
  padding: 32px 0;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item { text-align: center; padding: 0 40px; }
.stat-number { display: block; font-size: 1.75rem; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; }
.stat-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step-card { padding: 32px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.step-number { font-size: 0.75rem; font-weight: 700; color: var(--mint); letter-spacing: 0.1em; margin-bottom: 16px; display: block; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--fg); }
.step-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: var(--bg-alt); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; margin-bottom: 8px; color: var(--fg); }
.feature-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== PROBLEM ===== */
.problem-section { padding: 100px 0; background: var(--bg); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }
.problem-queries { display: flex; flex-direction: column; gap: 20px; }
.query-card {
  padding: 20px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.query-card-query { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.query-text { font-weight: 600; font-size: 0.95rem; display: block; margin-bottom: 8px; color: var(--fg); }
.query-source { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.5; }
.query-card-pawli { background: var(--accent-light); border-color: rgba(13,92,92,0.3); }
.query-card-pawli .query-source { color: var(--accent); font-weight: 500; }

/* ===== PRICING ===== */
.pricing { padding: 100px 0; background: var(--bg-alt); }
.pricing-sub { font-size: 1rem; color: var(--fg-muted); margin-bottom: 48px; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pricing-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--fg); margin-bottom: 12px; }
.pricing-price { margin-bottom: 8px; }
.price-amount { font-size: 2rem; font-weight: 700; color: var(--fg); }
.price-period { font-size: 0.875rem; color: var(--fg-muted); }
.pricing-tagline { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 20px; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li { font-size: 0.8rem; color: var(--fg-muted); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.pricing-features li::before { content: '→'; color: var(--mint); font-weight: 600; flex-shrink: 0; }
.btn { display: inline-block; padding: 12px 24px; border-radius: 100px; font-size: 0.875rem; font-weight: 600; text-align: center; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #0a4f4f; }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent-light); }
.pricing-cta { text-align: center; }

/* ===== CLOSING ===== */
.closing { padding: 100px 0; background: var(--accent); }
.closing-content { text-align: center; max-width: 600px; margin: 0 auto; }
.closing-headline { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: #fff; margin-bottom: 20px; }
.closing-body { font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 40px; }
.closing-pets { display: flex; justify-content: center; gap: 24px; }
.closing-pet-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dog::before { content: ''; width: 28px; height: 28px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.8)' stroke='none'%3E%3Cpath d='M10 5.5C10 4.1 11.1 3 12.5 3 13.9 3 15 4.1 15 5.5S13.9 8 12.5 8 10 6.9 10 5.5zm-6 6C4 11.5 4 11.7 4 12s0 .5 0 .5v1c0 .3.2.5.5.5h1c.3 0 .5-.2.5-.5v-1c0-.3-.2-.5-.5-.5H4zm12 0c-.3 0-.5.2-.5.5v1c0 .3.2.5.5.5h1c.3 0 .5-.2.5-.5v-1c0-.3-.2-.5-.5-.5h-1zm-6 0c-.3 0-.5.2-.5.5v1c0 .3.2.5.5.5h1c.3 0 .5-.2.5-.5v-1c0-.3-.2-.5-.5-.5h-1zm-3 1h8c0 2-1.5 5-4 5s-4-3-4-5z'/%3E%3C/svg%3E") no-repeat center; }
.cat::before { content: ''; width: 28px; height: 28px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.8)' stroke='none'%3E%3Cpath d='M12 8c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm-7 1l2.5-3.5 1 1.5-2 2h1l1 2h-3.5zm14 0L17 5.5l-1-1.5L19.5 7h-1l-2-2 1-1.5L19 9h-3.5z'/%3E%3C/svg%3E") no-repeat center; }
.paw::before { content: ''; width: 28px; height: 28px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.8)' stroke='none'%3E%3Ccircle cx='12' cy='8' r='3'/%3E%3Ccircle cx='6' cy='5' r='2'/%3E%3Ccircle cx='18' cy='5' r='2'/%3E%3Ccircle cx='4' cy='10' r='1.5'/%3E%3Ccircle cx='20' cy='10' r='1.5'/%3E%3Cellipse cx='12' cy='17' rx='5' ry='4'/%3E%3C/svg%3E") no-repeat center; }

/* ===== FOOTER ===== */
footer { background: #1A1A1A; color: rgba(255,255,255,0.6); }
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.footer-brand .wordmark { color: #fff; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; margin-top: 12px; color: rgba(255,255,255,0.5); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.5); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-copyright { color: rgba(255,255,255,0.4); }

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector { position: relative; display: inline-block; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--fg); font-size: 0.8rem; font-weight: 500;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.lang-btn:hover { border-color: var(--accent); background: var(--accent-light); }
.lang-flag { font-size: 1.1rem; line-height: 1; }
.lang-dropdown {
  position: absolute; top: calc(100% + 4px); right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  min-width: 160px; overflow: hidden; z-index: 200; display: none;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; font-size: 0.8rem; font-weight: 500;
  color: var(--fg); cursor: pointer; text-decoration: none;
  transition: background 0.15s;
}
.lang-option:hover { background: var(--accent-light); }
.lang-option.active { color: var(--accent); font-weight: 600; }
.lang-option-flag { font-size: 1rem; }

/* ===== MOBILE NAV ===== */
.hamburger-btn {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--fg-muted); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-drawer {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 150;
}
.mobile-drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.mobile-drawer-panel {
  position: absolute; top: 0; right: 0;
  width: 280px; max-width: 80vw; height: 100%;
  background: var(--white); box-shadow: var(--shadow-xl);
  padding: 24px 20px; display: flex; flex-direction: column; gap: 12px;
  overflow-y: auto; transform: translateX(100%); transition: transform 0.3s;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-header { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--fg-muted); padding: 4px 8px; border-radius: var(--radius-sm); }
.mobile-nav-link { display: block; padding: 11px 16px; font-size: 0.95rem; font-weight: 500; color: var(--fg); text-decoration: none; border-radius: var(--radius-md); transition: background 0.15s; }
.mobile-nav-link:hover { background: var(--accent-light); }
.mobile-nav-link-highlight { background: var(--accent); color: #fff !important; text-align: center; font-weight: 600; }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-lang-section { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.mobile-drawer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration { display: none; }
  .hero-copy { text-align: center; }
  .hero-lede { max-width: 100%; }
  .hero-pills { justify-content: center; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { order: -1; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .site-header nav { display: none; }
  .section-inner { padding: 0 20px; }
  .hero { padding: 60px 0 40px; }
}

/* ===== LP HERO ===== */
.lp-hero {
  padding: 80px 0 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,186,174,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-hero-copy { }
.lp-hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
}
.lp-hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.lp-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-lg { padding: 14px 28px; font-size: 0.95rem; }
.btn-ghost { background: transparent; color: var(--fg-muted); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--fg); color: var(--fg); }
.btn-secondary { background: var(--mint); color: #fff; border: none; }
.btn-block { width: 100%; border-radius: var(--radius); padding: 14px; font-size: 0.95rem; }
.lp-hero-image { display: flex; justify-content: center; }
.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  object-fit: cover;
}
.hero-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder-inner { text-align: center; color: var(--accent); }
.hero-placeholder-inner p { margin-top: 12px; font-weight: 600; font-size: 0.9rem; }

/* ===== LP SOCIAL PROOF ===== */
.lp-proof {
  background: var(--accent);
  padding: 36px 0;
  text-align: center;
}
.lp-proof-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.lp-proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.lp-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 4px;
}
.lp-proof-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}
.lp-proof-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.lp-proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ===== LP PROBLEM ===== */
.lp-problem { padding: 100px 0; background: var(--bg); }
.lp-problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.lp-problem-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.lp-problem-icon {
  color: var(--mint);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.lp-problem-quote {
  font-size: 0.95rem;
  color: var(--fg);
  font-style: italic;
  line-height: 1.6;
}

/* ===== LP SOLUTION ===== */
.lp-solution { padding: 100px 0; background: var(--bg-alt); }
.lp-solution-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  max-width: 600px;
}
.lp-solution-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.lp-solution-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.lp-solution-text { padding-top: 8px; }
.lp-solution-bullet { font-size: 1rem; color: var(--fg); line-height: 1.7; }

/* ===== LP FEATURES ===== */
.lp-features { padding: 100px 0; background: var(--bg); }
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.lp-feature-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
}
.lp-feature-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
.lp-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.lp-feature-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.lp-feature-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== LP PRICING ===== */
.lp-pricing { padding: 100px 0; background: var(--bg-alt); }
.lp-pricing-trial {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
  text-align: center;
}
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-pricing-card {
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  text-align: center;
}
.lp-pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.lp-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.lp-pricing-tier {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.lp-pricing-price { margin-bottom: 8px; }
.lp-pricing-tagline { font-size: 0.78rem; color: var(--fg-muted); margin-bottom: 20px; }
.lp-pricing-features { margin-bottom: 24px; text-align: left; }
.lp-pricing-features li { font-size: 0.78rem; color: var(--fg-muted); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.lp-pricing-features li::before { content: '→'; color: var(--mint); font-weight: 600; flex-shrink: 0; }
.lp-pricing-cta { text-align: center; }

/* ===== LP FAQ ===== */
.lp-faq { padding: 100px 0; background: var(--bg); }
.lp-faq-inner { max-width: 720px; }
.lp-faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  gap: 16px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--accent-light); }
.faq-chevron { color: var(--fg-muted); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== LP FOOTER CTA ===== */
.lp-footer-cta {
  padding: 100px 0;
  background: var(--accent);
  text-align: center;
}
.lp-footer-cta-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.lp-footer-cta-notice {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.lp-newsletter {
  margin-top: 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.lp-newsletter-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.lp-newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}
.lp-newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.lp-newsletter-input:focus { border-color: rgba(255,255,255,0.7); }
.lp-newsletter-msg { font-size: 0.875rem; color: #fff; margin-top: 12px; }

/* ===== LP FOOTER ===== */
.lp-footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.6);
  padding: 0;
}
.lp-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.lp-footer-brand .wordmark { color: #fff; }
.lp-footer-brand p { font-size: 0.875rem; line-height: 1.6; margin-top: 12px; color: rgba(255,255,255,0.5); }
.lp-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.lp-footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.lp-footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.5); padding: 4px 0; transition: color 0.2s; }
.lp-footer-col a:hover { color: #fff; }
.lp-footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.lp-footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ===== RESPONSIVE — LP SECTIONS ===== */
@media (max-width: 1024px) {
  .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-image { display: none; }
  .lp-hero-copy { text-align: center; }
  .lp-hero-sub { max-width: 100%; }
  .lp-hero-ctas { justify-content: center; }
  .lp-hero-pills { justify-content: center; }
  .lp-proof-grid { flex-wrap: wrap; gap: 20px; }
  .lp-proof-divider { display: none; }
  .lp-proof-item { padding: 0 24px; }
  .lp-problem-cards { grid-template-columns: 1fr; }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-pricing-card-featured { order: -1; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .lp-features-grid { grid-template-columns: 1fr; }
  .site-header nav { display: none; }
  .section-inner { padding: 0 20px; }
}