/* ─── Tokens ─── */
:root {
  --coral: #EB776C;
  --coral-light: #f09e96;
  --coral-dark: #d65f54;
  --charcoal: #3D3D3D;
  --cream: #f7f4ef;
  --cream-dark: #eee9e0;
  --white: #ffffff;
  --muted: #6f6a60;
  --gold: #d4af37;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 8px 32px rgba(235, 119, 108, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --container: 1140px;
  --section-pad: 110px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ─── Skip to Content ─── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
}

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader.is-gone {
  display: none;
}

.preloader-inner img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: contain;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0% {
    opacity: 0.5;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.5;
    transform: scale(0.92);
  }
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s;
  text-decoration: none;
  position: relative;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary {
  background: var(--coral);
  color: var(--white);
  padding: 12px 28px;
  box-shadow: 0 4px 16px rgba(235, 119, 108, 0.3);
}

.btn-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 8px 28px rgba(235, 119, 108, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  padding: 12px 28px;
  border: 2px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.btn-white {
  background: var(--white);
  color: var(--coral);
  padding: 14px 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  padding: 14px 24px;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 244, 239, 0.95);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

.navbar-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: clamp(16px, 2vw, 36px);
  margin: 0 auto;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
  transition: width 0.25s var(--ease);
}

.navbar-links a:hover {
  color: var(--charcoal);
}

.navbar-links a:hover::after {
  width: 100%;
}

/* ─── Navbar Right ─── */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.lang-opt {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.25s;
  letter-spacing: 0.03em;
}

.lang-opt.active {
  color: var(--charcoal);
}

.lang-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--ease);
  pointer-events: none;
}

.lang-switch[data-active="en"] .lang-slider {
  transform: translateX(100%);
}

/* ─── Hero ─── */
.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
  z-index: 2;
}

.hero-sticky {
  position: sticky;
  top: 0;
  padding: 160px 0 var(--section-pad);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hero-sticky::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(235, 119, 108, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-sticky::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease) 0.1s forwards;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease) 0.25s forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease) 0.4s forwards;
}

.hero-cta-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}

.hero-phone {
  position: relative;
}

.hero-phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 0 80px rgba(235, 119, 108, 0.18),
    0 0 160px rgba(235, 119, 108, 0.08);
  background: var(--white);
  transform: rotate(3deg);
}

.hero-scroll-img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  transition: none;
}

/* Auto-scroll animation for mobile hero phone */
@keyframes phoneAutoScroll {
  0%, 12% { transform: translateY(0); }
  88%, 100% { transform: translateY(var(--phone-scroll, 0px)); }
}

.hero-auto-scroll {
  animation: phoneAutoScroll 5s ease-in-out infinite alternate;
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(235, 119, 108, 0.15) 0%, rgba(235, 119, 108, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* ─── Features ─── */
.features {
  padding: var(--section-pad) 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(235, 119, 108, 0.1) 0%, rgba(235, 119, 108, 0.04) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.features-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 44px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─── Metrics ─── */
.metrics {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.metrics::before,
.metrics::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.metrics::before {
  top: 0;
}

.metrics::after {
  bottom: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.metric-item {
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--line);
}

.metric-value {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1.2;
  margin-bottom: 8px;
}

.metric-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─── Why Menuu ─── */
.why-menuu {
  padding: var(--section-pad) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(235, 119, 108, 0.08);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── How It Works ─── */
.how-it-works {
  padding: var(--section-pad) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(235, 119, 108, 0.3);
}

.step-line {
  position: absolute;
  top: 22px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(90deg, var(--coral-light), var(--line));
  opacity: 0.5;
}

.step:last-child .step-line {
  display: none;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(235, 119, 108, 0.1) 0%, rgba(235, 119, 108, 0.04) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ─── Demo Block ─── */
.demo-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.demo-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
}

.demo-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.demo-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.demo-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.demo-qr {
  flex-shrink: 0;
  text-align: center;
}

.demo-qr img {
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.demo-qr-link {
  display: none;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--coral);
  text-decoration: none;
}

@media (max-width: 768px) {
  .demo-qr-link {
    display: block;
  }
}

.demo-qr-link:hover {
  text-decoration: underline;
}

/* ─── Pricing ─── */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}

.pricing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
}

.pricing-urgency {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Yearly-only elements: animated show/hide */
.yearly-only {
  overflow: hidden;
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease), transform 0.35s var(--ease), margin 0.35s var(--ease), padding 0.35s var(--ease);
}

.pricing.is-monthly .yearly-only {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 5px;
  width: fit-content;
  position: relative;
}

.toggle-option {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.toggle-option.active {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.toggle-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--coral);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}


.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 52px;
}

.pricing-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.pricing-card:not(.pricing-card--featured) {
  align-self: stretch;
}

.pricing-card .btn-block {
  margin-top: auto;
}

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

.pricing-card--featured {
  background: var(--white);
  border-color: var(--coral);
  box-shadow: 0 16px 48px rgba(235, 119, 108, 0.18), 0 0 0 1px rgba(235, 119, 108, 0.1);
  padding: 36px 32px;
  margin: -24px 0;
  z-index: 1;
  align-self: stretch;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pricing-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(235, 119, 108, 0.28), 0 0 0 1px rgba(235, 119, 108, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(235, 119, 108, 0.3);
  white-space: nowrap;
}

.pricing-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0;
}

.pricing-price {
  position: relative;
}

.price-old {
  position: absolute;
  bottom: 100%;
  right: 0;
  font-size: 0.8rem;
  color: #c0392b;
  text-decoration: line-through;
  font-weight: 500;
  line-height: 1.4;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.pricing.is-monthly .price-old {
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  transition: color 0.35s var(--ease);
}

.pricing.is-yearly .price-amount {
  color: #2e7d32;
}

.pricing.is-monthly .price-amount {
  color: var(--charcoal);
}

/* Price animation */
.price-amount.price-flip {
  animation: priceFlip 0.4s var(--ease);
}

@keyframes priceFlip {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  40% {
    opacity: 0;
    transform: translateY(-12px) scale(0.95);
  }

  60% {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.price-period {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  transition: opacity 0.3s var(--ease);
}

.pricing-gift {
  background: rgba(46, 125, 50, 0.08);
  color: #2e7d32;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.pricing-savings {
  color: var(--coral);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.pricing-trial-note {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}

@keyframes urgency-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.pricing-urgency {
  animation: urgency-pulse 2.5s ease-in-out infinite;
}

.pricing-features {
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li.feat-yes::before {
  content: "+";
  width: 18px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #2e7d32;
  text-align: center;
}

.pricing-features li.feat-no {
  color: var(--muted);
  opacity: 0.7;
}

.pricing-features li.feat-no::before {
  content: "\2014";
  width: 18px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* ─── Comparison Table ─── */
.comparison {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.comparison-toggle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}

.comparison-toggle:hover {
  background: rgba(235, 119, 108, 0.06);
}

.comparison-toggle svg {
  transition: transform 0.35s var(--ease);
}

.comparison-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.comparison-table-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
  margin-top: 0;
}

.comparison-table-wrap.expanded {
  max-height: 720px;
  opacity: 1;
  margin-top: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.9rem;
}

.comparison-table th {
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 2px solid var(--line);
  color: var(--charcoal);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr {
  transition: background 0.2s;
}

.comparison-table tbody tr:hover {
  background: rgba(235, 119, 108, 0.02);
}

.check-no {
  color: var(--muted);
  font-size: 1rem;
}

/* ─── FAQ ─── */
.faq {
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-trigger {
  width: 100%;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: color 0.2s;
}

.faq-trigger:hover {
  color: var(--coral);
}

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
  transition: transform 0.35s var(--ease), background 0.2s, color 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(235, 119, 108, 0.1);
  color: var(--coral);
}

.faq-collapse {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease);
}

.faq-item.open .faq-collapse {
  opacity: 1;
}

.faq-answer {
  padding: 0 0 22px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Bottom CTA ─── */
.bottom-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--coral) 0%, #e8887f 50%, var(--coral-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bottom-cta h2 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  position: relative;
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
}

.bottom-cta .btn-white {
  position: relative;
}

.bottom-cta-whatsapp {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.bottom-cta-whatsapp span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.2s, transform 0.2s;
}

.whatsapp-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* ─── Footer ─── */
.footer {
  background: #1a1a1a;
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  opacity: 0.6;
  filter: brightness(1.8);
  transition: opacity 0.2s;
}

.footer-logo-img:hover {
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.8rem;
  color: #555;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.85rem;
  color: #888;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.8;
}

/* ─── Hamburger ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(247, 244, 239, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.mobile-menu.open {
  max-height: 320px;
  opacity: 1;
  padding: 24px 0;
  border-bottom-color: var(--line);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}

.mobile-menu-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
}

.mobile-menu-links a:hover {
  color: var(--coral);
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--coral);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease), background 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ccc;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 200;
  font-size: 0.85rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-link {
  font-size: 0.8rem;
  color: #888;
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-link:hover {
  color: var(--white);
}

/* ─── Exit Intent Popup ─── */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.exit-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.exit-popup {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s var(--ease-bounce);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.exit-overlay.visible .exit-popup {
  transform: scale(1) translateY(0);
}

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.exit-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--charcoal);
}

.exit-popup h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.exit-popup p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ─── Hero Secondary Link ─── */
.hero-secondary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease);
}

.hero-secondary:hover {
  gap: 10px;
}

.hero-secondary::after {
  content: "\2192";
  font-size: 1.1rem;
}

/* ─── Hero Trust Badges ─── */
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease) 0.55s forwards;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.hero-trust-item svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* ─── Trust Strip ─── */
.trust-strip {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

/* ─── Feature Highlights ─── */
.features-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(235, 119, 108, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.highlight-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.highlight-card .highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(235, 119, 108, 0.1) 0%, rgba(235, 119, 108, 0.04) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.highlight-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ─── Scroll Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* Staggered delays for groups */
.feature-card.fade-in:nth-child(2) {
  transition-delay: 0.08s;
}

.feature-card.fade-in:nth-child(3) {
  transition-delay: 0.16s;
}

.step.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.step.fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

.pricing-card.fade-in:nth-child(2) {
  transition-delay: 0.08s;
}

.pricing-card.fade-in:nth-child(3) {
  transition-delay: 0.16s;
}

.metric-item.fade-in:nth-child(2) {
  transition-delay: 0.06s;
}

.metric-item.fade-in:nth-child(3) {
  transition-delay: 0.12s;
}

.metric-item.fade-in:nth-child(4) {
  transition-delay: 0.18s;
}

.highlight-card.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.trust-item.fade-in:nth-child(2) {
  transition-delay: 0.06s;
}

.trust-item.fade-in:nth-child(3) {
  transition-delay: 0.12s;
}

.trust-item.fade-in:nth-child(4) {
  transition-delay: 0.18s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Themes Section ─── */
.themes {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}

.themes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.themes-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.themes-section-title {
  text-align: left;
  margin-bottom: 0;
  font-size: 1.85rem;
  white-space: nowrap;
}

.themes-badge {
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 10px;
  line-height: 1;
  position: relative;
  top: -2px;
}

.themes-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 440px;
}

.theme-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.theme-pill {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--line);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.theme-pill:hover {
  border-color: var(--coral-light);
  color: var(--coral);
}

.theme-pill.is-active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.themes-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coral);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.25s var(--ease);
}

.themes-cta:hover {
  gap: 10px;
}

/* Phone frame */
.themes-phone {
  display: flex;
  justify-content: center;
}

.theme-phone-frame {
  width: 280px;
  height: 520px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 0 80px rgba(235, 119, 108, 0.12);
  background: #1a1a2e;
  position: relative;
}

/* Theme preview inside phone */
.theme-preview {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.tp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 16px 14px;
  background: #16213e;
}

.tp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.tp-name {
  color: #f0f0f0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* Categories */
.tp-categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px;
  transition: all 0.4s var(--ease);
}

.tp-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #16213e;
  padding: 10px 12px;
  border-radius: 6px;
  transition: all 0.4s var(--ease);
}

.tp-cat-img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2a2a4a, #3a3a5c);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.tp-cat-label {
  color: #ccc;
  font-size: 0.72rem;
  font-weight: 600;
  transition: all 0.4s var(--ease);
}

/* Items */
.tp-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 8px 16px 16px;
  transition: all 0.4s var(--ease);
}

.tp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s var(--ease);
}

.tp-item:last-child {
  border-bottom: none;
}

.tp-item-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2a2a4a, #3a3a5c);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.tp-item-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tp-item-name {
  color: #e0e0e0;
  font-size: 0.72rem;
  font-weight: 500;
}

.tp-item-price {
  color: var(--coral-light);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ── Theme variations ── */

/* Rounded */
[data-active-theme="rounded"] .tp-cat {
  border-radius: 20px;
  padding: 10px 14px;
}

[data-active-theme="rounded"] .tp-cat-img {
  border-radius: 50%;
}

[data-active-theme="rounded"] .tp-item-img {
  border-radius: 50%;
}

/* Grid */
[data-active-theme="grid"] .tp-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

[data-active-theme="grid"] .tp-cat {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 8px;
}

[data-active-theme="grid"] .tp-cat-img {
  width: 36px;
  height: 36px;
}

/* Elegant */
[data-active-theme="elegant"] .tp-cat {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
}

[data-active-theme="elegant"] .tp-cat-img {
  border-radius: 8px;
}

[data-active-theme="elegant"] .tp-item {
  border-bottom-color: rgba(255, 255, 255, 0.04);
  padding: 12px 0;
}

[data-active-theme="elegant"] .tp-item-img {
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

/* Magazine */
[data-active-theme="magazine"] .tp-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

[data-active-theme="magazine"] .tp-cat {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
}

[data-active-theme="magazine"] .tp-cat-img {
  width: 100%;
  height: 44px;
  border-radius: 0;
}

[data-active-theme="magazine"] .tp-cat-label {
  padding: 8px 10px;
}

[data-active-theme="magazine"] .tp-item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

/* Compact */
[data-active-theme="compact"] .tp-cat {
  padding: 6px 12px;
  border-radius: 4px;
  border-left: 3px solid var(--coral);
  gap: 8px;
}

[data-active-theme="compact"] .tp-cat-img {
  width: 22px;
  height: 22px;
  border-radius: 3px;
}

[data-active-theme="compact"] .tp-item {
  padding: 6px 0;
}

[data-active-theme="compact"] .tp-item-img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

[data-active-theme="compact"] .tp-cat-label,
[data-active-theme="compact"] .tp-item-name {
  font-size: 0.68rem;
}

/* List */
[data-active-theme="list"] .tp-cat {
  background: transparent;
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-active-theme="list"] .tp-cat-img {
  display: none;
}

[data-active-theme="list"] .tp-cat-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral-light);
}

[data-active-theme="list"] .tp-item-img {
  display: none;
}

[data-active-theme="list"] .tp-item {
  padding: 8px 0;
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .hero-inner {
    gap: 40px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

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

  .pricing-grid {
    gap: 20px;
  }

  .pricing-card--featured {
    padding: 48px 30px;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  .themes-layout {
    gap: 40px;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-right .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-inner {
    height: 60px;
  }

  .cookie-banner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .hero-sticky {
    padding: 120px 0 var(--section-pad);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text {
    display: contents;
  }

  .hero-title {
    font-size: 2.1rem;
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-subtitle {
    order: 3;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    order: 4;
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    order: 5;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-phone-frame {
    width: 220px;
    height: 440px;
  }

  .trust-items {
    gap: 20px;
    justify-content: center;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

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

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

  .features-strip {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .metric-item:not(:last-child)::after {
    display: none;
  }

  .metric-value {
    font-size: 2.1rem;
  }

  .themes-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .themes-section-title {
    text-align: center;
    font-size: 1.4rem;
    white-space: normal;
  }

  .themes-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .theme-pills {
    justify-content: center;
  }

  .themes-cta {
    justify-content: center;
  }

  .theme-phone-frame {
    width: 240px;
    height: 450px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-line {
    display: none;
  }

  .demo-content {
    flex-direction: column;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }


  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }

  .bottom-cta {
    padding: 72px 0;
  }

  .bottom-cta h2 {
    font-size: 1.65rem;
  }

  .bottom-cta-whatsapp {
    flex-direction: column;
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-center {
    position: static;
    transform: none;
  }

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

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero-title,
  .hero-subtitle,
  .hero-cta,
  .hero-trust,
  .hero-visual {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-auto-scroll {
    animation: none;
  }

  .faq-collapse,
  .comparison-table-wrap {
    transition: none;
  }

  .price-amount.price-flip {
    animation: none;
  }
}