/* ============================================
   MEADOW LANDING PAGE
   Green-themed, modern, single-page
   ============================================ */

:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;

  --gray-50:  #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --gray-950: #09090b;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Default = dark theme */
  --bg:       #050a07;
  --bg-card:  #0d1510;
  --bg-card-hover: #111f16;
  --border:   rgba(34, 197, 94, 0.12);
  --border-bright: rgba(34, 197, 94, 0.25);
  --text-primary: #ffffff;
  --text-secondary: var(--gray-300);
  --text-muted: var(--gray-400);
  --text-faint: var(--gray-500);
  --text-dim: var(--gray-600);
  --nav-bg: rgba(5, 10, 7, 0.8);
  --nav-mobile-bg: rgba(5, 10, 7, 0.95);
  --bubble-user-bg: var(--green-600);
  --bubble-user-text: #fff;
  --glow-color: rgba(34, 197, 94, 0.12);
  --btn-ghost-hover-bg: rgba(34, 197, 94, 0.08);
  --input-bg: var(--bg-card);
  --input-text: #fff;
  --input-placeholder: var(--gray-600);
}

[data-theme="light"] {
  --bg:       #f8faf9;
  --bg-card:  #ffffff;
  --bg-card-hover: #f0fdf4;
  --border:   rgba(21, 128, 61, 0.12);
  --border-bright: rgba(21, 128, 61, 0.25);
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-700);
  --text-muted: var(--gray-600);
  --text-faint: var(--gray-500);
  --text-dim: var(--gray-400);
  --nav-bg: rgba(248, 250, 249, 0.85);
  --nav-mobile-bg: rgba(248, 250, 249, 0.97);
  --bubble-user-bg: var(--green-500);
  --bubble-user-text: #fff;
  --glow-color: rgba(34, 197, 94, 0.08);
  --btn-ghost-hover-bg: rgba(34, 197, 94, 0.06);
  --input-bg: #fff;
  --input-text: var(--gray-900);
  --input-placeholder: var(--gray-400);
}

/* Light theme element overrides */
[data-theme="light"] .gradient-text {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 50%, var(--green-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .btn--lg {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

[data-theme="light"] .btn--lg:hover {
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.3);
}

[data-theme="light"] .section-label {
  color: var(--green-600);
}

[data-theme="light"] .chat__name {
  color: var(--green-600);
}

[data-theme="light"] .brief__tag--bday {
  color: var(--green-600);
}

[data-theme="light"] .brief__card-header {
  background: rgba(34, 197, 94, 0.04);
  color: var(--green-600);
}

[data-theme="light"] .cta__success {
  color: var(--green-600);
}

[data-theme="light"] .how__step-num {
  color: var(--green-600);
}

[data-theme="light"] .nav__icon {
  color: var(--green-600);
}

[data-theme="light"] .trust__icon {
  background: rgba(34, 197, 94, 0.08);
}

[data-theme="light"] .trust__icon svg {
  color: var(--green-600);
}

[data-theme="light"] .trust__item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .trust__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .contact-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .phone-mockup {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .brief__card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .contact-card__avatar {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-600);
}

/* Theme toggle visibility */
.theme-toggle__light { display: none; }
.theme-toggle__dark { display: block; }
[data-theme="light"] .theme-toggle__light { display: block; }
[data-theme="light"] .theme-toggle__dark { display: none; }

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---- SECTION TITLES ---- */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-400);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  text-align: center;
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--sm {
  font-size: 0.85rem;
  padding: 8px 20px;
  background: var(--green-500);
  color: #fff;
}

.btn--sm:hover { background: var(--green-400); }

.btn--lg {
  font-size: 1rem;
  padding: 14px 32px;
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.3);
}

.btn--lg:hover {
  background: var(--green-400);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.45);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-bright);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--btn-ghost-hover-bg);
  color: var(--text-primary);
  box-shadow: none;
  transform: translateY(-1px);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav__icon {
  width: 24px;
  height: 24px;
  color: var(--green-400);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a:not(.btn) {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav__links a:not(.btn):hover { color: var(--text-primary); }

.nav__mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__mobile svg {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.theme-toggle:hover {
  background: var(--btn-ghost-hover-bg);
  border-color: var(--green-500);
}

.theme-toggle:hover svg {
  color: var(--green-500);
}

/* ---- HERO: Horizontal Split ---- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--glow-color) 0%, transparent 70%);
  pointer-events: none;
}

.hero__split {
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero__text {
  flex: 1;
  min-width: 0;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__cta {
  margin-bottom: 16px;
}

.hero__trust {
  font-size: 0.85rem;
  color: var(--text-faint);
}

.hero__phone {
  flex-shrink: 0;
}

/* ---- PHONE MOCKUP ---- */
.phone-mockup {
  width: 320px;
  background: var(--bg-card);
  border: 2px solid var(--border-bright);
  border-radius: 36px;
  padding: 12px;
  position: relative;
}

.phone-mockup__notch {
  width: 100px;
  height: 6px;
  background: var(--border-bright);
  border-radius: var(--radius-full);
  margin: 4px auto 12px;
}

.phone-mockup__screen {
  background: var(--bg);
  border-radius: 24px;
  padding: 20px 16px;
  min-height: 200px;
}

.phone-mockup--sm {
  width: 300px;
}

.phone-mockup--sm .phone-mockup__screen {
  padding: 16px 14px;
}

/* ---- CHAT BUBBLES ---- */
.chat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat--compact {
  gap: 12px;
}

.chat__msg {
  display: flex;
  flex-direction: column;
}

.chat__msg--user {
  align-items: flex-end;
}

.chat__msg--agent {
  align-items: flex-start;
}

.chat__name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-400);
  margin-bottom: 4px;
  padding-left: 4px;
}

.chat__bubble {
  max-width: 90%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.55;
}

.chat__msg--user .chat__bubble {
  background: var(--bubble-user-bg);
  color: var(--bubble-user-text);
  border-bottom-right-radius: 4px;
}

.chat__msg--agent .chat__bubble {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-bottom-left-radius: 4px;
}


/* ---- PROBLEM STATEMENT ---- */
.problem {
  padding: 60px 0 72px;
  background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.03) 50%, transparent 100%);
}

.problem__text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}


/* ---- COMPARE: Old Way vs Meadow ---- */
.compare {
  padding: 0 0 80px;
}

.compare__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.compare__col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.compare__col--new {
  border-color: var(--green-500);
  border-width: 2px;
}

.compare__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.compare__col--old .compare__heading {
  color: var(--text-muted);
}

.compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.compare__col--old .compare__list li {
  color: var(--text-faint);
}

.compare__col--new .compare__list li {
  color: var(--text-secondary);
}

.compare__list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare__col--old .compare__list svg {
  color: var(--text-dim);
}

.compare__col--new .compare__list svg {
  color: var(--green-400);
}

[data-theme="light"] .compare__col {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .compare__col--new .compare__list svg {
  color: var(--green-600);
}

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

  .compare__col {
    padding: 24px 20px;
  }
}


/* ---- HOW IT WORKS: Alternating Horizontal Steps ---- */
.how {
  padding: 100px 0 120px;
}

.how__step {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 80px;
}

.how__step:last-child {
  margin-bottom: 0;
}

.how__step--reverse {
  flex-direction: row-reverse;
}

.how__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.how__text {
  flex: 1;
  min-width: 0;
}

.how__step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-500);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.how__text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.how__text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ---- CONTACT CARD (How It Works Step 2) ---- */
.contact-card {
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}

.contact-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-card__meta {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 2px;
}

.contact-card__details {
  padding: 12px 20px 16px;
}

.contact-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  flex-shrink: 0;
  margin-right: 16px;
}


/* ---- BRIEF CARD (How It Works Step 3) ---- */
.brief__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 360px;
}

.brief__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(34, 197, 94, 0.06);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-400);
}

.brief__card-header svg {
  width: 16px;
  height: 16px;
}

.brief__card-body {
  padding: 16px 20px;
}

.brief__section {
  margin-bottom: 16px;
}

.brief__section:last-child {
  margin-bottom: 0;
}

.brief__section strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.brief__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.brief__name {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.brief__tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(128, 128, 128, 0.1);
  color: var(--text-muted);
}

.brief__tag--urgent {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

.brief__tag--bday {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green-400);
}

.brief__draft {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid var(--border);
  line-height: 1.5;
}


/* ---- INTERACTIVE DEMO ---- */
.demo {
  padding: 80px 0 100px;
  text-align: center;
}

.demo__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.demo__phone {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.phone-mockup--demo {
  width: 360px;
}

.phone-mockup--demo .phone-mockup__screen {
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.demo__chat {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
}

.demo__prompts {
  padding: 8px 12px 16px;
  display: flex;
  justify-content: center;
}

.demo__prompt-btn {
  display: inline-block;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--bubble-user-text);
  background: var(--bubble-user-bg);
  border: none;
  border-radius: 16px 16px 4px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: 100%;
  text-align: left;
  line-height: 1.4;
  opacity: 0;
  animation: demoFadeIn 0.3s ease forwards;
}

.demo__prompt-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.demo__prompt-btn:active {
  transform: translateY(0);
}

.demo__typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  width: fit-content;
}

.demo__typing span {
  width: 6px;
  height: 6px;
  background: var(--text-faint);
  border-radius: 50%;
  animation: demoBounce 1.2s ease-in-out infinite;
}

.demo__typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.demo__typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes demoBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

@keyframes demoFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.demo__final {
  display: none;
  text-align: center;
}

.demo__final--visible {
  display: block;
  animation: demoFadeIn 0.5s ease forwards;
}

.demo__final p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

@media (max-width: 640px) {
  .phone-mockup--demo {
    width: 300px;
  }
}


/* ---- TRUST BAR ---- */
.trust {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust__item {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.trust__item:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.trust__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
  margin: 0 auto 14px;
}

.trust__icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-400);
}

.trust__item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.trust__item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ---- PRICING ---- */
.pricing {
  padding: 100px 0 120px;
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing__toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-faint);
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}

.pricing__toggle-label--active {
  color: var(--text-primary);
}

.pricing__toggle-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-400);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
}

.pricing__toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
  font-family: inherit;
}

.pricing__toggle-switch:hover {
  border-color: var(--green-500);
}

.pricing__toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--text-faint);
  border-radius: 50%;
  transition: all 0.25s;
}

.pricing__toggle-switch--active .pricing__toggle-knob {
  left: 25px;
  background: var(--green-500);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing__card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.pricing__card--primary {
  border-top: 3px solid var(--green-500);
}

.pricing__card--primary:hover {
  border-color: var(--border-bright);
  border-top-color: var(--green-400);
}

.pricing__popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--green-500);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

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

.pricing__amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing__period {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing__pitch {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.pricing__pitch--alt {
  color: var(--text-muted);
}

.pricing__billed {
  font-size: 0.82rem;
  color: var(--text-faint);
  min-height: 1.4em;
  margin-bottom: 24px;
}

.pricing__billed--static {
  color: var(--text-muted);
  font-weight: 500;
}

.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pricing__features svg {
  width: 18px;
  height: 18px;
  color: var(--green-400);
  flex-shrink: 0;
}

.pricing__cta {
  width: 100%;
  text-align: center;
}

.pricing__telegram-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-faint);
  margin-top: 32px;
}

.pricing__telegram-note a {
  color: var(--green-400);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.pricing__telegram-note a:hover {
  color: var(--green-300);
}

/* Light theme pricing overrides */
[data-theme="light"] .pricing__card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .pricing__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .pricing__toggle-switch {
  background: var(--gray-100);
}

[data-theme="light"] .pricing__toggle-badge {
  color: var(--green-600);
}

[data-theme="light"] .pricing__features svg {
  color: var(--green-600);
}

[data-theme="light"] .pricing__telegram-note a {
  color: var(--green-600);
}


/* ---- FAQ ---- */
.faq {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.02) 50%, transparent 100%);
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  border-color: var(--border-bright);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
}

.faq__chevron {
  width: 20px;
  height: 20px;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq__item--open .faq__answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

[data-theme="light"] .faq__item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .faq__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* ---- CTA ---- */
.cta {
  position: relative;
  padding: 100px 0 120px;
  text-align: center;
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--glow-color) 0%, transparent 70%);
  pointer-events: none;
}

.cta__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}

.cta__input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  font-family: var(--font);
  font-size: 1rem;
  background: var(--input-bg);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
  color: var(--input-text);
  outline: none;
  transition: border-color 0.2s;
}

.cta__input::placeholder {
  color: var(--input-placeholder);
}

.cta__input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.cta__fine {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.cta__success {
  display: none;
  font-size: 1.1rem;
  color: var(--green-400);
  font-weight: 600;
  padding: 20px;
}

.cta__error {
  font-size: 0.9rem;
  color: #ef4444;
  margin-top: 12px;
}


/* ---- VS-MONICA PAGE ---- */
.vs-hero {
  text-align: center;
  padding: 160px 0 60px;
}

.vs-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.vs-hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}

.vs-respect {
  padding: 0 0 60px;
}

.vs-respect__text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-faint);
  line-height: 1.7;
  font-style: italic;
}

/* Feature comparison table */
.vs-table-section {
  padding: 60px 0 80px;
}

.vs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vs-table {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.vs-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-bright);
}

.vs-table th.vs-table__meadow {
  color: var(--green-500);
}

.vs-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.vs-table td.vs-table__feature {
  font-weight: 600;
  color: var(--text-primary);
}

.vs-table td.vs-table__meadow {
  color: var(--text-secondary);
}

.vs-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.vs-check {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.vs-check--yes { background: var(--green-500); }
.vs-check--no { background: #ef4444; }
.vs-check--neutral { background: var(--gray-400); }

/* Key differences cards */
.vs-diffs {
  padding: 80px 0;
}

.vs-diffs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.vs-diffs__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.vs-diffs__card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.vs-diffs__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
  margin-bottom: 16px;
}

.vs-diffs__icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-400);
}

.vs-diffs__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.vs-diffs__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Honest section */
.vs-honest {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.02) 50%, transparent 100%);
}

.vs-honest__sub {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 48px;
}

.vs-honest__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.vs-honest__item {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.vs-honest__item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.vs-honest__item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.vs-faq {
  padding: 80px 0;
}

[data-theme="light"] .vs-diffs__card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .vs-diffs__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .vs-diffs__icon {
  background: rgba(34, 197, 94, 0.08);
}

[data-theme="light"] .vs-diffs__icon svg {
  color: var(--green-600);
}

[data-theme="light"] .vs-honest__item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

@media (max-width: 640px) {
  .vs-diffs__grid {
    grid-template-columns: 1fr;
  }

  .vs-honest__grid {
    grid-template-columns: 1fr;
  }

  .vs-table {
    font-size: 0.82rem;
  }

  .vs-table th,
  .vs-table td {
    padding: 10px 12px;
  }
}


/* ---- ARTICLE / LONG-FORM CONTENT ---- */
.article-hero {
  text-align: center;
  padding: 160px 0 60px;
}

.article-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.article-hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.article {
  padding: 40px 0 80px;
}

.article__body {
  max-width: 680px;
  margin: 0 auto;
}

.article__body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.article__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 12px;
  line-height: 1.3;
}

.article__body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article__body ul,
.article__body ol {
  margin: 0 0 20px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.article__body li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.article__body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article__body a {
  color: var(--green-400);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.article__body a:hover {
  color: var(--green-300);
}

[data-theme="light"] .article__body a {
  color: var(--green-600);
}

[data-theme="light"] .article__body a:hover {
  color: var(--green-700);
}

.article__cta {
  text-align: center;
  padding: 48px 0;
  margin: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.article__cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

/* Listicle tool cards */
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.tool-card:hover {
  border-color: var(--border-bright);
}

.tool-card--featured {
  border-color: var(--green-500);
  border-width: 2px;
}

.tool-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tool-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.tool-card__best {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-400);
  margin-bottom: 12px;
}

[data-theme="light"] .tool-card__best {
  color: var(--green-600);
}

.tool-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.tool-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 0.85rem;
}

.tool-card__pros-cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tool-card__pros-cons li {
  padding: 3px 0;
  color: var(--text-muted);
}

.tool-card__pros-cons li::before {
  margin-right: 6px;
}

.tool-card__pros li::before {
  content: "+";
  color: var(--green-400);
  font-weight: 700;
}

.tool-card__cons li::before {
  content: "-";
  color: var(--text-dim);
  font-weight: 700;
}

[data-theme="light"] .tool-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .tool-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .tool-card__pros-cons {
    grid-template-columns: 1fr;
  }
}


/* ---- EASTER EGG ---- */
.pi-egg {
  position: fixed;
  bottom: 10px;
  left: 12px;
  right: auto;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: none;
  opacity: 0.15;
  transition: opacity 0.2s;
  z-index: 10;
  cursor: pointer;
  line-height: 1;
  pointer-events: auto;
}

.pi-egg:hover {
  opacity: 0.4;
}

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

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

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-faint);
}

.footer__icon {
  width: 20px;
  height: 20px;
  color: var(--green-700);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-faint);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text-primary);
}

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

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__made {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}


/* ---- ANIMATIONS ---- */
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.how__step.animate:nth-child(2) { transition-delay: 0.1s; }
.how__step.animate:nth-child(3) { transition-delay: 0.2s; }

.trust__item.animate:nth-child(2) { transition-delay: 0.1s; }
.trust__item.animate:nth-child(3) { transition-delay: 0.2s; }
.trust__item.animate:nth-child(4) { transition-delay: 0.3s; }


/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero__split {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    display: flex;
    justify-content: center;
  }

  .how__step,
  .how__step--reverse {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

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

  .pricing__grid {
    max-width: 440px;
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.open { display: flex; }
  .nav__mobile { display: block; }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .hero__phone {
    display: flex;
    justify-content: center;
  }

  .phone-mockup {
    width: 280px;
  }

  .phone-mockup--sm {
    width: 260px;
  }

  .hero__cta .btn--lg {
    width: 100%;
  }

  .problem__text {
    font-size: 1rem;
  }

  .contact-card {
    width: 280px;
  }

  .brief__card {
    width: 300px;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust__item {
    padding: 20px 16px;
  }

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

  .pricing__card {
    padding: 32px 24px;
  }

  .cta__form {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__input {
    min-width: auto;
  }

  .footer__top {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
