:root {
  --teal-900: #063138;
  --teal-800: #0a5560;
  --teal-700: #0f8494;
  --teal-500: #4fd1c5;
  --teal-100: #e6f7f5;
  --sand: #faf7f2;
  --sand-dark: #f2ede4;
  --white: #ffffff;
  --gray-900: #0e1a20;
  --gray-700: #37474f;
  --gray-500: #6b7a80;
  --gray-200: #e3e2dc;
  --gray-100: #f3f1ec;
  --accent: #c9942f;
  --accent-dark: #a8791f;
  --success: #0f8b6c;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(10, 30, 35, 0.07);
  --shadow-lg: 0 24px 70px rgba(10, 30, 35, 0.16);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Fraunces', 'Georgia', serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.serif { font-family: var(--font-serif); font-optical-sizing: auto; letter-spacing: -0.01em; }
::selection { background: var(--teal-500); color: var(--teal-900); }

/* Promo bar */
.promo-bar {
  background: var(--teal-900);
  color: var(--teal-500);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.promo-bar .sep { opacity: 0.4; margin: 0 0.5rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--teal-800);
}
.logo-icon { width: 36px; height: 36px; color: var(--teal-800); }
.logo-text span { color: var(--teal-500); }
.nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color 0.2s;
}
.nav a:hover { color: var(--teal-800); }
.header-cta { margin-left: 0; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 1.85rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
  color: var(--white);
  box-shadow: 0 6px 22px rgba(10, 85, 96, 0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 85, 96, 0.42);
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-outline {
  background: var(--white);
  color: var(--teal-800);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--teal-500); transform: translateY(-2px); }

/* Hero */
.hero {
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 74% 15%, rgba(79, 209, 197, 0.22), transparent),
    radial-gradient(ellipse 55% 45% at 8% 85%, rgba(10, 85, 96, 0.07), transparent),
    var(--sand);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 85, 96, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 75% 10%, black, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  color: var(--teal-800);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 1rem 0.5rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(79, 209, 197, 0.45);
  box-shadow: var(--shadow);
}
.badge-flag { font-size: 0.95rem; }
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-500) 70%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 480px;
  margin-bottom: 1rem;
}
.hero-seo {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-700);
  max-width: 480px;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}
.hero-rating__stars {
  color: var(--accent);
  letter-spacing: 0.05em;
}
.hero-rating__text { color: var(--gray-700); }
.hero-rating__text strong { color: var(--gray-900); }
.hero-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.price-old {
  font-size: 1.1rem;
  color: var(--gray-500);
  text-decoration: line-through;
}
.price-new {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-800);
}
.price-new.large { font-size: 2.5rem; }
.price-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* Pack cards */
.section-sub {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.hero-packs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.packs { background: var(--white); padding-top: 3.5rem; }
.packs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 820px;
  margin-inline: auto;
}
.packs-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 600;
}

.pack-card {
  position: relative;
  text-align: left;
  font-family: var(--font);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.pack-card--compact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.pack-card--compact .pack-card__name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pack-card--compact .pack-card__price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal-800);
}
.pack-card--compact .pack-card__save {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--success);
}
.pack-card--compact.active,
.pack-card--compact:hover {
  border-color: var(--teal-800);
  box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.35);
}
.pack-card--compact.pack-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fffbeb, var(--white));
}
.pack-card--compact.pack-card--featured.active {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.pack-card--full {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pack-card--full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pack-card--full.active {
  border-color: var(--teal-800);
  box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.3), var(--shadow-lg);
}
.pack-card--full.pack-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fffbeb 0%, var(--white) 35%);
}
.pack-card--full.pack-card--featured.active {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.28), var(--shadow-lg);
}

.pack-card__badge {
  position: absolute;
  top: -0.55rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}
.pack-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--teal-800), var(--teal-700));
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.45rem;
  border-radius: 18px 18px 0 0;
  letter-spacing: 0.02em;
}
.pack-card--full.pack-card--featured { padding-top: 2.5rem; }

.pack-card__header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0.35rem 0 0.2rem;
}
.pack-card__emoji { font-size: 1.75rem; }
.pack-card__tagline {
  font-size: 0.88rem;
  color: var(--gray-500);
}

.pack-card__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}
.pack-card__old {
  font-size: 0.95rem;
  color: var(--gray-500);
  text-decoration: line-through;
  width: 100%;
}
.pack-card__amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-800);
  line-height: 1;
}
.pack-card__amount small { font-size: 1rem; font-weight: 700; }
.pack-card__unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.pack-card__save-pill {
  background: #d1fae5;
  color: #047857;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.pack-card__perks {
  list-style: none;
  flex: 1;
}
.pack-card__perks li {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 0.4rem 0 0.4rem 1.35rem;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.pack-card__perks li:last-child { border-bottom: none; }
.pack-card__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

.pack-card__cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--gray-100);
  color: var(--teal-800);
  border: 2px solid var(--gray-200);
  transition: background 0.2s, color 0.2s;
}
.pack-card--full.active .pack-card__cta,
.pack-card--full:hover .pack-card__cta {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
  color: var(--white);
  border-color: transparent;
}
.pack-card__cta--featured {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border-color: transparent;
}
.pack-card--full.pack-card--featured.active .pack-card__cta,
.pack-card--full.pack-card--featured:hover .pack-card__cta {
  background: linear-gradient(135deg, var(--accent-dark), #b45309);
  color: var(--white);
}

/* Form pack selector */
.packs-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pack-card--form {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.1rem;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  text-align: left;
}
.pack-card--form:hover { border-color: var(--teal-500); }
.pack-card--form.active {
  border-color: var(--teal-800);
  background: var(--teal-100);
  box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.25);
}
.pack-card--form.pack-card--featured {
  background: linear-gradient(90deg, #fffbeb, var(--white));
}
.pack-card--form.pack-card--featured.active {
  border-color: var(--accent-dark);
  background: linear-gradient(90deg, #fef3c7, #fffbeb);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.22);
}
.pack-card__radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  flex-shrink: 0;
  position: relative;
}
.pack-card--form.active .pack-card__radio {
  border-color: var(--teal-800);
}
.pack-card--form.active .pack-card__radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--teal-800);
  border-radius: 50%;
}
.pack-card--form.pack-card--featured.active .pack-card__radio {
  border-color: var(--accent-dark);
}
.pack-card--form.pack-card--featured.active .pack-card__radio::after {
  background: var(--accent-dark);
}
.pack-card__form-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.pack-card__form-body strong {
  font-size: 0.95rem;
  color: var(--gray-900);
}
.pack-card__form-body span {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.pack-card__form-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal-800);
  white-space: nowrap;
}

/* Sticky mobile bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.1);
  padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-bar__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.sticky-bar__info strong {
  font-size: 0.88rem;
  color: var(--gray-900);
}
.sticky-bar__info span {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-bar__price {
  text-align: right;
}
.sticky-bar__price strong {
  display: block;
  font-size: 1.1rem;
  color: var(--teal-800);
  line-height: 1.1;
}
.sticky-bar__price span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--success);
  text-transform: uppercase;
}
.sticky-bar__btn { flex-shrink: 0; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-icon {
  color: var(--success);
  font-weight: 800;
}

/* Product gallery */
.hero-visual { display: flex; justify-content: center; }
.product-card {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  width: 100%;
  max-width: 420px;
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.product-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(79, 209, 197, 0.25), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  box-shadow: var(--shadow-lg);
  animation: float-chip 5s ease-in-out infinite;
}
.floating-chip--rating {
  top: 8%;
  left: -6%;
  animation-delay: 0.4s;
}
.floating-chip--clients {
  bottom: 12%;
  right: -7%;
  animation-delay: 1.1s;
}
@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.floating-chip__stars { color: var(--accent); font-size: 0.82rem; letter-spacing: 0.03em; }
.floating-chip__num {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal-800);
  line-height: 1;
}
.floating-chip__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .floating-chip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .product-card, .floating-chip { animation: none; }
}
.product-gallery {
  position: relative;
  z-index: 1;
}
.product-main {
  background: linear-gradient(180deg, #f8fafc, var(--white));
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.product-main--real {
  aspect-ratio: 3 / 4;
  max-height: 520px;
}
.product-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.25s ease;
  background: #f8fafc;
}
.product-thumbs--single { justify-content: center; }
.showcase-item--featured img {
  object-fit: contain;
  background: #f8fafc;
  aspect-ratio: 3 / 4;
}
.order-product-img img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: var(--gray-100);
}
.product-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.85rem;
  justify-content: center;
}
.thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.2s, transform 0.15s;
}
.thumb:hover { border-color: var(--teal-500); transform: scale(1.03); }
.thumb.active { border-color: var(--teal-800); box-shadow: 0 0 0 2px rgba(79, 209, 197, 0.35); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.product-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--teal-100);
  color: var(--teal-800);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.showcase-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.showcase-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.showcase-item figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-800);
  text-align: center;
  background: var(--teal-100);
}

/* Sections */
section { padding: 4.5rem 0; }
.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-700);
  margin-bottom: 0.65rem;
}
.section-tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head.center .section-tag { justify-content: center; }
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stars {
  margin-top: 0.75rem;
  color: var(--accent);
  font-size: 1.1rem;
}
.stars span { color: var(--gray-500); font-size: 0.9rem; margin-left: 0.5rem; }

/* Lifestyle */
.lifestyle { background: var(--white); padding: 4.5rem 0; }
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.lifestyle-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lifestyle-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.lifestyle-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--teal-900);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.lifestyle-content h2 { margin: 0.5rem 0 1rem; font-size: clamp(1.6rem, 3vw, 2.15rem); line-height: 1.2; }
.lifestyle-content .hero-desc { max-width: 520px; margin-bottom: 1.5rem; }
.lifestyle-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.lifestyle-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
}
.lifestyle-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Pain */
.pain { background: var(--white); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.pain-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pain-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  color: var(--teal-800);
  box-shadow: var(--shadow);
}
.pain-icon svg { width: 26px; height: 26px; }
.pain-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.9rem; color: var(--gray-700); }
.solution-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
}
.solution-text h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.4rem; }
.solution-text p { opacity: 0.85; font-size: 0.95rem; }
.solution-banner .btn-primary {
  background: var(--white);
  color: var(--teal-800);
  box-shadow: none;
  flex-shrink: 0;
}

/* Features */
.features { background: var(--sand); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--teal-500); }
.feature-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal-500);
  margin-bottom: 0.75rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--gray-700); }

/* How */
.how { background: var(--white); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
}
.step-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-500));
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-weight: 700; margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; color: var(--gray-700); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--teal-500);
  padding-top: 1rem;
  font-weight: 300;
}

/* Reviews */
.reviews { background: var(--teal-100); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--accent); margin-bottom: 0.75rem; font-size: 0.9rem; }
.review-card p { font-size: 0.92rem; color: var(--gray-700); margin-bottom: 1.25rem; font-style: italic; }
.review-card footer { display: flex; flex-direction: column; gap: 0.15rem; }
.review-card strong { font-size: 0.9rem; }
.review-card span { font-size: 0.8rem; color: var(--gray-500); }

/* Order */
.order { background: var(--sand); }
.order-product-img {
  max-width: 220px;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--teal-500);
  box-shadow: var(--shadow);
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.order-tagline {
  font-size: 1.1rem;
  color: var(--teal-700);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.order-price-box {
  background: var(--white);
  border: 2px solid var(--teal-500);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.stock { font-size: 0.85rem; font-weight: 600; color: var(--success); }
.order-pack-label {
  display: block;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 0.25rem;
}
.order-includes {
  list-style: none;
  margin-bottom: 1.5rem;
}
.order-includes li {
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  padding-left: 1.5rem;
  position: relative;
}
.order-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}
.order-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.order-cities span {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--teal-100);
  color: var(--teal-800);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

/* Form */
.order-form {
  background: var(--white);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
}
.order-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, var(--teal-500), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}
.order-form h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--teal-900);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  background: var(--gray-100);
  color: var(--gray-900);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.18);
}
.form-group input:invalid:not(:placeholder-shown) {
  border-color: #dc7a5f;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--gray-100);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--teal-800);
}
.qty-btn:hover { background: var(--teal-100); }
.qty-control input {
  width: 56px;
  text-align: center;
  border: none;
  border-left: 2px solid var(--gray-200);
  border-right: 2px solid var(--gray-200);
  border-radius: 0;
  font-weight: 700;
}
.qty-hint { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.4rem; }
.form-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 2px dashed var(--gray-200);
}
.form-total strong { font-size: 1.5rem; color: var(--teal-800); }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}

/* FAQ */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--teal-700); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.92rem;
  color: var(--gray-700);
}

/* Footer */
.footer {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 3rem;
}
.footer .logo { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-brand p { font-size: 0.9rem; margin: 1rem 0; max-width: 280px; }
.footer-domain { color: var(--teal-500); font-weight: 700; }
.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.footer-links a,
.footer-contact a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--teal-500); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 200;
  transition: transform 0.2s var(--ease);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.9); }
}
.whatsapp-float:hover { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
}

/* Trust strip & marquee */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0 0;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-bottom: 1.5rem;
}
.trust-stat {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--teal-100), var(--white));
  border: 1px solid rgba(79, 209, 197, 0.35);
}
.trust-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-800);
  line-height: 1.2;
}
.trust-stat span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
}
.marquee {
  overflow: hidden;
  background: var(--teal-900);
  padding: 0.65rem 0;
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee__track span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-500);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee__track span::before { content: '● '; opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Compare table */
.compare { background: var(--sand); }
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.compare-table thead th {
  background: var(--gray-100);
  font-weight: 800;
  font-size: 0.85rem;
}
.compare-col--nqima {
  background: var(--teal-100);
  font-weight: 600;
}
.compare-table thead .compare-col--nqima {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
  color: var(--white);
}
.compare-table tbody tr { transition: background 0.2s var(--ease); }
.compare-table tbody tr:hover { background: var(--gray-100); }
.compare-table tbody tr:hover .compare-col--nqima { background: #d9f2ee; }
.compare-yes { color: var(--success); font-weight: 700; }
.compare-no { color: var(--gray-500); }
.compare-cta { text-align: center; margin-top: 2rem; }

/* Guarantee */
.guarantee {
  background: linear-gradient(135deg, var(--teal-900) 0%, #0a5c68 50%, var(--teal-800) 100%);
  color: var(--white);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.guarantee .section-tag { color: var(--teal-500); }
.guarantee-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.guarantee-content > p {
  opacity: 0.88;
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.guarantee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.guarantee-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.guarantee-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--teal-500);
}
.guarantee-icon svg { width: 22px; height: 22px; }
.guarantee-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.guarantee-list span {
  font-size: 0.82rem;
  opacity: 0.75;
}
.guarantee-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
}
.guarantee-seal {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  color: var(--teal-500);
  position: relative;
}
.guarantee-seal span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.guarantee-quote {
  font-style: italic;
  opacity: 0.9;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.guarantee-card .btn-primary {
  background: var(--white);
  color: var(--teal-800);
  box-shadow: none;
}

/* SEO content */
.seo-content {
  background: var(--gray-100);
  padding: 3rem 0 4rem;
}
.seo-article {
  max-width: 760px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  border: 1px solid var(--gray-200);
}
.seo-article h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-900);
  margin-bottom: 1rem;
}
.seo-article p {
  font-size: 0.92rem;
  color: var(--gray-700);
  margin-bottom: 0.85rem;
  line-height: 1.75;
}
.seo-article p:last-child { margin-bottom: 0; }

/* Form trust */
.form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
}
.form-trust span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-500);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reviews 6-col grid on desktop */
.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Responsive */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

.header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 24px rgba(10, 30, 35, 0.08);
}

@media (max-width: 900px) {
  .hero-grid,
  .order-grid,
  .packs-grid,
  .lifestyle-grid,
  .guarantee-grid { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .packs-grid { max-width: 400px; }
  .hero-packs { max-width: 100%; }
  .hero-visual { order: -1; }
  .product-card { max-width: 320px; margin-inline: auto; }
  .pain-grid,
  .features-grid,
  .reviews-grid,
  .showcase-grid { grid-template-columns: 1fr; }
  .solution-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
}
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding-top: 2rem; }
  .hero-actions .btn { flex: 1; min-width: 140px; }
  .whatsapp-float { bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
  body:has(.sticky-bar.visible) .footer { padding-bottom: 5rem; }
}
