/* ========================================
   GLP-1 Café — Tropical Glass
   Fresh greens, frosted glass, grain texture
   ======================================== */

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

:root {
  --bg: #fcfdfc;
  --bg-raised: #f6f9f6;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --border: rgba(49, 109, 69, 0.1);
  --border-light: rgba(49, 109, 69, 0.06);
  --text: #1a2e1f;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --accent: #3f8c56;
  --accent-hover: #316d45;
  --accent-light: #58a86c;
  --accent-muted: rgba(88, 168, 108, 0.08);
  --accent-glow: rgba(49, 109, 69, 0.15);
  --green: #58a86c;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-hover: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: 16px;
  --shadow-sm: 0 2px 8px rgba(49, 109, 69, 0.06);
  --shadow-md: 0 10px 30px rgba(49, 109, 69, 0.1);
  --shadow-lg: 0 20px 40px rgba(49, 109, 69, 0.12);
  --shadow-glow: 0 10px 30px rgba(49, 109, 69, 0.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --radius: 14px;
  --radius-lg: 20px;
}

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

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

/* Floating gradient orbs */
.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.orb--1 {
  width: 700px;
  height: 700px;
  background: rgba(88, 168, 108, 0.25);
  top: -15%;
  left: -10%;
  animation: float1 20s ease-in-out infinite;
}

.orb--2 {
  width: 600px;
  height: 600px;
  background: rgba(63, 140, 86, 0.18);
  top: 35%;
  right: -12%;
  animation: float2 25s ease-in-out infinite;
}

.orb--3 {
  width: 550px;
  height: 550px;
  background: rgba(88, 168, 108, 0.2);
  bottom: 5%;
  left: 15%;
  animation: float3 22s ease-in-out infinite;
}

.orb--4 {
  width: 450px;
  height: 450px;
  background: rgba(49, 109, 69, 0.15);
  top: 55%;
  left: -10%;
  animation: float4 28s ease-in-out infinite;
}

.orb--5 {
  width: 500px;
  height: 500px;
  background: rgba(88, 168, 108, 0.14);
  top: -8%;
  right: 10%;
  animation: float5 24s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, 40px) scale(1.05); }
  50% { transform: translate(20px, 80px) scale(0.95); }
  75% { transform: translate(-40px, 30px) scale(1.02); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-50px, 30px) scale(0.97); }
  50% { transform: translate(-80px, -40px) scale(1.04); }
  75% { transform: translate(-20px, -60px) scale(0.98); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.06); }
  66% { transform: translate(-30px, -20px) scale(0.94); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.03); }
  50% { transform: translate(70px, -10px) scale(0.96); }
  75% { transform: translate(40px, 30px) scale(1.01); }
}

@keyframes float5 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(-30px, 50px) scale(0.97); }
  60% { transform: translate(20px, 70px) scale(1.05); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none !important; }
}

/* Grain texture overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  z-index: 100;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Container --- */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section label --- */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(49, 109, 69, 0.2);
}

.btn--full {
  width: 100%;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 9999px;
  transition: all 0.2s;
}

.nav__link:hover {
  color: var(--accent-hover);
  background: var(--accent-muted);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.hero__center {
  max-width: 720px;
  margin: 0 auto;
}

.hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero__note {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ========================================
   Social proof strip
   ======================================== */
.proof {
  padding: 20px 0;
  text-align: center;
}

.proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.proof__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.proof__text {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ========================================
   Stats
   ======================================== */
.stats {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats__inner {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.stat {
  text-align: center;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ========================================
   Pricing
   ======================================== */
.pricing {
  padding: 100px 0;
}

.pricing__header {
  margin-bottom: 48px;
}

.pricing__note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.pricing__single {
  max-width: 440px;
  margin: 0 auto;
}

.pricing__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing__list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}

.pricing__list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
}

.pricing__guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-top: 16px;
}

.pricing__community {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.pricing__community p {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.pricing__waitlist-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}

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

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

.pricing__card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.pricing__card:hover {
  background: var(--glass-hover);
  border-color: rgba(88, 168, 108, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing__card-top {
  margin-bottom: 32px;
}

.pricing__card-top h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-top: 8px;
}

.pricing__anchor {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  text-decoration: line-through;
  font-weight: 500;
}

.pricing__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

.pricing__period {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-top: 6px;
}

.pricing__sub {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin-top: 32px;
}

/* ========================================
   Problem / Agitate
   ======================================== */
.problem {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.problem__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.3;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.problem__card {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(180, 60, 60, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.problem__icon {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #b45c3c;
}

.problem__card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.problem__card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problem__kicker {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   Features
   ======================================== */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

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

.feature {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature:hover {
  background: var(--glass-hover);
  border-color: rgba(88, 168, 108, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(49, 109, 69, 0.1);
}

.feature__icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
}

.feature h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   Why
   ======================================== */
.why {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.why__content {
  max-width: 620px;
}

.why__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.3;
}

.why__content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

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

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.testimonial {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial:hover {
  background: var(--glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(49, 109, 69, 0.1);
  border-color: rgba(88, 168, 108, 0.3);
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial__author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

.testimonial__author span {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ========================================
   Who this is for
   ======================================== */
.for-you {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.for-you__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.3;
}

.for-you__yes {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(88, 168, 108, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}

.for-you__yes ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.for-you__yes li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 32px;
  position: relative;
  font-weight: 500;
}

.for-you__yes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

/* Section CTA (centered button after sections) */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================================
   How it works
   ======================================== */
.how {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.how__step {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.how__step:hover {
  background: var(--glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(49, 109, 69, 0.1);
  border-color: rgba(88, 168, 108, 0.3);
}

.how__num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  display: block;
}

.how__step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.how__step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   Comparison
   ======================================== */
.compare {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.compare__table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.compare__table th {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
}

.compare__table th:first-child {
  text-align: left;
  color: var(--text-tertiary);
}

.compare__table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.82rem;
}

.compare__table td:first-child {
  text-align: left;
  color: var(--text-secondary);
  font-weight: 500;
}

.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__hl {
  background: var(--accent-muted) !important;
  color: var(--accent) !important;
  font-weight: 600 !important;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.faq__list {
  max-width: 680px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq__item[open] {
  border-color: rgba(88, 168, 108, 0.3);
  box-shadow: var(--shadow-md);
}

.faq__item summary {
  padding: 18px 24px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.faq__item summary:hover {
  color: var(--accent);
}

.faq__item summary::marker,
.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-tertiary);
  transition: all 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq__item p {
  padding: 0 24px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   Final CTA
   ======================================== */
.cta-final {
  padding: 120px 0;
  border-top: 1px solid var(--border-light);
}

.cta-final__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(88, 168, 108, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(88, 168, 108, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 500;
}

.cta-final__note {
  display: block;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

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

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

.footer__brand {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.footer__copy a {
  color: var(--text-tertiary);
  transition: color 0.2s;
}

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

.footer__disclaimer {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  max-width: 600px;
  line-height: 1.5;
  opacity: 0.7;
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .nav__right .nav__link { display: none; }
  .nav__toggle { display: flex; }

  .hero { padding: 130px 0 60px; }
  .hero__title { font-size: 1.8rem; }

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

  .pricing__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .problem__grid { grid-template-columns: 1fr; }

  .compare__table-wrap {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .cta-final__inner {
    padding: 40px 24px;
  }

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

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

@media (max-width: 480px) {
  .stats__inner { gap: 16px; }
}
