:root {
  --font-main: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --navy-900: #05162f;
  --navy-800: #0a2245;
  --navy-700: #133463;
  --navy-600: #1c467a;
  --gold-500: #c89c4b;
  --gold-400: #e0b96c;
  --gold-300: #f1d49f;
  --gold-200: #f8e9ca;
  --white: #ffffff;
  --cream: #f6f2ea;
  --paper: #fbf9f6;
  --text: #112845;
  --muted: #617087;
  --line: rgba(17, 40, 69, 0.10);
  --shadow-sm: 0 12px 32px rgba(5, 22, 47, 0.08);
  --shadow-md: 0 22px 50px rgba(5, 22, 47, 0.12);
  --shadow-lg: 0 34px 80px rgba(5, 22, 47, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --maxw: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf8 0%, #f5f0e7 100%);
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(200, 156, 75, 0.06) 0%, transparent 22%),
    linear-gradient(78deg, transparent 18%, rgba(12, 30, 55, 0.04) 19%, transparent 20%),
    linear-gradient(105deg, transparent 43%, rgba(200, 156, 75, 0.05) 44%, transparent 45%),
    linear-gradient(122deg, transparent 66%, rgba(12, 30, 55, 0.035) 67%, transparent 68%);
  opacity: .9;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(var(--maxw), calc(100% - 40px)); margin: 0 auto; }
.marble-bg,
.marble-card-wrap { position: relative; }
.marble-bg::before,
.marble-card-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(80deg, transparent 15%, rgba(200, 156, 75, 0.08) 16%, transparent 17%),
    linear-gradient(104deg, transparent 28%, rgba(10, 34, 69, 0.05) 29%, transparent 30%),
    linear-gradient(120deg, transparent 58%, rgba(200, 156, 75, 0.07) 59%, transparent 60%),
    linear-gradient(72deg, transparent 78%, rgba(10, 34, 69, 0.04) 79%, transparent 80%);
  opacity: .6;
  pointer-events: none;
}

.topbar {
  background: linear-gradient(90deg, #031124 0%, #0a2245 45%, #031124 100%);
  color: #f8e7c1;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
  z-index: 20;
}
.topbar-shell { overflow: hidden; }
.topbar-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 800;
  animation: ticker 28s linear infinite;
}
.topbar .sep { color: var(--gold-400); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(90deg, rgba(3,17,36,.97) 0%, rgba(9,32,64,.96) 46%, rgba(3,17,36,.97) 100%);
  box-shadow: 0 12px 34px rgba(3, 17, 36, 0.22);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 182px; filter: drop-shadow(0 10px 24px rgba(0,0,0,.14)); }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.main-nav > a,
.nav-drop-btn {
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px 0;
  transition: color .22s ease;
}
.main-nav > a:hover,
.nav-drop-btn:hover,
.nav-dropdown:hover .nav-drop-btn { color: var(--gold-300); }
.nav-dropdown { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 8px; }
.caret { font-size: 14px; transition: transform .22s ease; }
.nav-dropdown:hover .caret { transform: rotate(180deg); }
.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 290px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(5, 22, 47, .96);
  border: 1px solid rgba(224,185,108,.18);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .24s ease;
}
.nav-dropdown:hover .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu a {
  display: block;
  padding: 12px 14px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 700;
  border-radius: 14px;
  transition: .22s ease;
}
.nav-menu a:hover { background: rgba(255,255,255,.08); color: var(--gold-300); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(224,185,108,.34);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.95);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: .22s ease;
}
.lang-switch:hover { color: var(--gold-300); border-color: var(--gold-400); }
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 18px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(180deg, #f7d58d 0%, #ddb164 55%, #c8913a 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 14px 24px rgba(200, 156, 75, 0.18),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -8px 12px rgba(148, 99, 26, .12);
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 4px 8px auto 8px;
  height: 46%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,0));
}
.nav-cta-text,
.nav-cta-icon { position: relative; z-index: 1; }
.nav-cta-icon { font-size: 16px; }
.mobile-toggle,
.mobile-panel { display: none; }

.hero {
  padding: 52px 0 30px;
  min-height: calc(100vh - 132px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(250px, .85fr) minmax(170px, .42fr);
  align-items: center;
  gap: 26px;
  position: relative;
  z-index: 1;
}
.hero-copy { text-align: right; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(200, 156, 75, .22);
  box-shadow: var(--shadow-sm);
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 800;
}
.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ca888;
  box-shadow: 0 0 0 4px rgba(124,168,136,.15);
}
.hero-copy h1 {
  margin: 22px 0 14px;
  color: var(--navy-900);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.gold-word { color: var(--gold-500); }
.hero-desc {
  margin: 0 0 18px;
  max-width: 590px;
  color: #5f6d82;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.9;
}
.hero-price-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-price-number {
  color: var(--gold-500);
  font-size: clamp(54px, 5vw, 88px);
  font-weight: 900;
  line-height: 1;
}
.hero-price-currency {
  color: var(--navy-800);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 800;
}
.hero-actions { margin-bottom: 16px; }
.hero-cta {
  min-height: 68px;
  width: min(100%, 330px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6d78f 0%, #ddb165 52%, #c8913a 100%);
  color: var(--navy-900);
  font-size: 24px;
  font-weight: 900;
  box-shadow:
    0 18px 30px rgba(200, 156, 75, .18),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -8px 14px rgba(148, 99, 26, .12);
}
.hero-cta-icon { font-size: 20px; }
.hero-note {
  margin-top: 10px;
  color: #7b6f62;
  font-size: 13px;
  line-height: 1.8;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--navy-700);
  font-size: 14px;
  font-weight: 800;
}

.hero-product-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.product-glow {
  position: absolute;
  inset: 12% 14% 20% 10%;
  border-radius: 44px;
  background: radial-gradient(circle at center, rgba(93, 140, 196, .18) 0%, rgba(93, 140, 196, .08) 26%, rgba(200,156,75,.06) 56%, transparent 74%);
  filter: blur(24px);
}
.product-platform {
  position: absolute;
  bottom: 12px;
  width: clamp(240px, 52%, 360px);
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0f2645 0%, #09162a 100%);
  border: 1px solid rgba(210, 170, 93, .36);
  box-shadow:
    0 16px 28px rgba(4, 15, 31, .20),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -8px 16px rgba(0,0,0,.24);
}
.product-platform::before {
  content: "";
  position: absolute;
  inset: 8px 18px auto 18px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0));
}
.product-platform::after {
  content: "";
  position: absolute;
  inset: auto 14px -16px 14px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(5,22,47,.26) 0%, rgba(5,22,47,.08) 58%, transparent 78%);
  filter: blur(10px);
}
.product-spotlight {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 0 60%, rgba(255,255,255,.16) 62%, transparent 65%);
  opacity: .22;
  transform: translateX(-6%);
  pointer-events: none;
}
.product-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  display: grid;
  place-items: center;
  padding: 10px 16px 56px;
}
.hero-product-image {
  width: 100%;
  max-width: 560px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(17, 40, 69, .16));
  transform: rotate(-2deg);
}

.hero-results-stack {
  display: grid;
  gap: 14px;
  align-items: center;
  justify-items: stretch;
}
.result-card {
  position: relative;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: var(--shadow-sm);
  animation: floatCard 4.4s ease-in-out infinite;
}
.result-card:last-child { animation-delay: -.8s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.result-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}
.result-badge.before { background: linear-gradient(135deg, #173255, #092140); }
.result-badge.after { background: linear-gradient(135deg, #143e67, #1a5c87); }
.result-image {
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
}
.result-image.placeholder {
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
}
.before-placeholder { background: linear-gradient(135deg, #dca287, #f0c4b0); }
.after-placeholder { background: linear-gradient(135deg, #c2817d, #efb9c0); }
.stack-arrow {
  width: 42px;
  height: 42px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  background: linear-gradient(180deg, #e9c57d, #c58f35);
  box-shadow: 0 12px 22px rgba(200,156,75,.18);
}


.reels-section {
  padding: 0 0 28px;
  background: linear-gradient(180deg, rgba(4,15,31,0) 0%, rgba(4,15,31,.02) 100%);
}
.reels-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.reels-head h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
}
.reels-line {
  width: min(18vw, 180px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(200,156,75,.85), transparent);
}
.reels-slider {
  display: grid;
  grid-template-columns: auto repeat(5, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: center;
}
.reels-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #0c2445 0%, #08172d 100%);
  color: #f3d590;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(9, 28, 54, .14);
}
.reel-card {
  position: relative;
  min-height: 235px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(210, 170, 93, .32);
  box-shadow: 0 18px 34px rgba(9, 28, 54, .12);
  background: linear-gradient(180deg, #10284a 0%, #08172d 100%);
}
.reel-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
}
.reel-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 34, .08) 0%, rgba(7, 18, 34, .22) 45%, rgba(7, 18, 34, .84) 100%);
}
.reel-thumb-1 { background-image: linear-gradient(135deg, rgba(28,50,84,.18), rgba(8,23,45,.22)), url('logo-transparent.png'); background-size: 72px, 64px; background-repeat: no-repeat; background-position: center, 12px 12px; }
.reel-thumb-2 { background-image: linear-gradient(135deg, #d7e0eb, #f4f7fb); }
.reel-thumb-3 { background-image: linear-gradient(135deg, #0f2645, #112f58 54%, #1a426c); }
.reel-thumb-4 { background-image: linear-gradient(135deg, #0b1f39, #143154 54%, #0b1f39); }
.reel-thumb-5 { background-image: linear-gradient(135deg, #f0e6d8, #f8f5ef 54%, #e4d9c8); }
.reel-thumb-2::before,
.reel-thumb-5::before {
  content: "";
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  inset: 18% auto auto 50%;
  transform: translateX(-50%);
  border-radius: 18px;
  background: rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}
.reel-thumb-3::before {
  content: "";
  position: absolute;
  inset: 18% 18% 28% 18%;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.reel-thumb-4::before {
  content: "";
  position: absolute;
  inset: 14% 24% 18% 24%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(210, 170, 93, .26);
}
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  background: linear-gradient(180deg, rgba(246,215,143,.94), rgba(200,145,58,.96));
  box-shadow: 0 12px 22px rgba(200,145,58,.22), inset 0 1px 0 rgba(255,255,255,.35);
}
.reel-label {
  position: absolute;
  right: 16px;
  left: 16px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0,0,0,.24);
}

.metrics {
  padding: 12px 0 24px;
}
.metrics-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.metric-card {
  padding: 18px 16px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: var(--shadow-sm);
}
.metric-icon { font-size: 28px; margin-bottom: 10px; }
.metric-card strong {
  display: block;
  color: var(--navy-800);
  font-size: 22px;
  font-weight: 900;
}
.metric-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.info-section { padding: 12px 0 22px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  position: relative;
  z-index: 1;
  padding: 26px 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: var(--shadow-sm);
}
.info-card h2 {
  margin: 0 0 18px;
  color: var(--navy-800);
  font-size: 30px;
  line-height: 1.2;
}
.check-list,
.guarantee-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.check-list li,
.guarantee-points li {
  position: relative;
  padding-right: 28px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
}
.check-list li::before,
.guarantee-points li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-500);
  font-weight: 900;
}
.steps-list { display: grid; gap: 16px; }
.step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(6, 28, 56, .03);
}
.step-num {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #e8c47a, #c58f35);
  color: var(--navy-900);
  font-weight: 900;
}
.step-item p,
.review-item p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}
.review-snippets { display: grid; gap: 16px; }
.review-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(6, 28, 56, .03);
}
.stars {
  color: var(--gold-500);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 8px;
}
.review-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.guarantee-section { padding: 12px 0 34px; }
.guarantee-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: var(--shadow-md);
}
.guarantee-badge {
  width: 200px;
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffe9b9 0%, #d9aa58 42%, #ac7425 74%, #f7deb1 100%);
  box-shadow:
    0 22px 40px rgba(200,156,75,.22),
    inset 0 3px 0 rgba(255,255,255,.48),
    inset 0 -12px 20px rgba(122,82,22,.14);
  color: var(--navy-900);
  text-align: center;
}
.guarantee-badge strong {
  font-size: 74px;
  line-height: 1;
}
.guarantee-badge .small {
  font-size: 18px;
  font-weight: 900;
}
.guarantee-copy h2 {
  margin: 0 0 12px;
  color: var(--navy-800);
  font-size: 42px;
  line-height: 1.2;
}
.guarantee-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.95;
}

.site-footer {
  padding: 30px 0 36px;
  background: linear-gradient(90deg, #031124 0%, #0a2245 46%, #031124 100%);
  color: white;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.footer-logo { width: 168px; }
.footer-kicker {
  margin: 0 0 8px;
  color: var(--gold-300);
  font-size: 13px;
  font-weight: 800;
}
.footer-contact h3 {
  margin: 0 0 10px;
  font-size: 32px;
}
.footer-contact p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.9;
}
.footer-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6d78f 0%, #ddb165 52%, #c8913a 100%);
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 60;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  isolation: isolate;
  transition: transform .25s ease, filter .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-3d-layers,
.whatsapp-3d-layers::before,
.whatsapp-3d-layers::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
}
.whatsapp-3d-layers {
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.55), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, #31d86b 0%, #1fb856 55%, #169c47 100%);
  box-shadow:
    0 18px 30px rgba(10,90,37,.26),
    0 8px 14px rgba(10,90,37,.22),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -8px 12px rgba(0,0,0,.14);
}
.whatsapp-3d-layers::before {
  inset: auto 8px -8px 8px;
  height: 18px;
  background: rgba(11,88,39,.22);
  filter: blur(10px);
  z-index: -2;
}
.whatsapp-3d-layers::after {
  inset: 8px 10px auto 10px;
  height: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.08));
  opacity: .85;
  transform: rotate(-8deg);
}
.whatsapp-icon-wrap {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-icon { width: 34px; height: 34px; display: block; }
.whatsapp-label {
  position: absolute;
  left: 82px;
  bottom: 10px;
  white-space: nowrap;
  background: #fff;
  color: #12311f;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  opacity: 0;
  transform: translateX(-6px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.floating-whatsapp:hover .whatsapp-label { opacity: 1; transform: translateX(0); }
.floating-whatsapp { animation: whatsappFloat 3.2s ease-in-out infinite; }
@keyframes whatsappFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(37,211,102,.25);
  animation: whatsappPulse 2.2s ease-out infinite;
  z-index: -3;
}
@keyframes whatsappPulse { 0% { transform: scale(.92); opacity: .7; } 100% { transform: scale(1.18); opacity: 0; } }

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy product"
      "results results";
  }
  .hero-copy { grid-area: copy; }
  .hero-product-stage { grid-area: product; min-height: 500px; }
  .product-frame { width: min(100%, 520px); }
  .hero-product-image { max-width: 470px; }
  .hero-results-stack {
    grid-area: results;
    grid-template-columns: 1fr auto 1fr;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
  .result-image { height: 180px; }
  .stack-arrow { align-self: center; }
  .reels-slider {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .reels-arrow { display: none; }
  .metrics-grid,
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-card { grid-template-columns: 220px 1fr; }
  .guarantee-points { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .header-shell {
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
  }
  .main-nav,
  .header-actions { display: none; }
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
  }
  .mobile-panel {
    display: none;
    padding: 0 20px 20px;
    background: linear-gradient(180deg, rgba(5,22,47,.98) 0%, rgba(10,34,69,.97) 100%);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-panel.open { display: grid; gap: 14px; }
  .mobile-panel > a,
  .mobile-panel summary,
  .mobile-submenu a {
    color: rgba(255,255,255,.92);
    font-size: 15px;
    font-weight: 700;
  }
  .mobile-panel details {
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mobile-submenu { display: grid; gap: 10px; padding-top: 12px; }
  .mobile-submenu a {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
  }
  .mobile-lang-switch { display: inline-grid; justify-self: start; }
  .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f6d78f 0%, #ddb165 52%, #c8913a 100%);
    color: var(--navy-900);
    font-size: 16px;
    font-weight: 900;
  }
  .brand-logo { width: 154px; }
  .hero {
    min-height: auto;
    padding-top: 32px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "product"
      "results";
    gap: 18px;
  }
  .hero-copy { text-align: center; }
  .eyebrow,
  .hero-cta,
  .hero-desc { margin-inline: auto; }
  .hero-price-row,
  .trust-list { justify-content: center; }
  .hero-product-stage { min-height: 430px; }
  .product-platform { width: 260px; height: 72px; bottom: 10px; }
  .product-frame { width: min(100%, 420px); padding-bottom: 48px; }
  .hero-product-image { max-width: 400px; }
  .hero-results-stack {
    grid-template-columns: 1fr;
    max-width: 320px;
    width: 100%;
  }
  .stack-arrow { transform: rotate(90deg); }
  .reels-slider {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .reel-card { min-height: 200px; }
  .reel-play { width: 52px; height: 52px; font-size: 18px; }
  .reel-label { font-size: 18px; }
  .metrics-grid,
  .cards-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .guarantee-card { grid-template-columns: 1fr; }
  .guarantee-copy,
  .footer-contact,
  .footer-branding { text-align: center; }
  .footer-back { justify-self: center; }
  html[lang="en"] .hero-copy { text-align: center; }
  html[lang="en"] .hero-price-row,
  html[lang="en"] .trust-list { justify-content: center; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, 100%); }
  .topbar-track { font-size: 10px; padding: 7px 0; }
  .header-shell { min-height: 68px; }
  .brand-logo { width: 136px; }
  .hero { padding: 22px 0 16px; }
  .hero-copy h1 { font-size: clamp(32px, 10vw, 44px); line-height: 1.12; }
  .hero-desc { font-size: 15px; line-height: 1.95; }
  .hero-price-number { font-size: 56px; }
  .hero-price-currency { font-size: 22px; }
  .hero-cta { width: 100%; font-size: 20px; min-height: 60px; }
  .hero-note { font-size: 12px; }
  .trust-list { font-size: 12px; gap: 8px 16px; }
  .hero-product-stage { min-height: 320px; }
  .product-platform { width: 210px; height: 56px; bottom: 10px; }
  .product-frame { width: min(100%, 300px); padding: 6px 6px 34px; }
  .hero-product-image { max-width: 290px; }
  .result-card { padding: 10px; border-radius: 16px; }
  .result-image { height: 130px; }
  .result-badge { min-height: 28px; font-size: 11px; }
  .reels-section { padding-bottom: 22px; }
  .reels-head { gap: 10px; margin-bottom: 14px; }
  .reels-head h2 { font-size: 22px; }
  .reels-line { width: 52px; }
  .reels-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .reel-card { min-height: 170px; border-radius: 16px; }
  .reel-play { width: 44px; height: 44px; font-size: 16px; }
  .reel-label { right: 10px; left: 10px; bottom: 10px; font-size: 14px; }
  .metric-card,
  .info-card { border-radius: 18px; }
  .info-card h2 { font-size: 24px; }
  .guarantee-card { padding: 20px; border-radius: 22px; }
  .guarantee-badge { width: 150px; }
  .guarantee-badge strong { font-size: 56px; }
  .guarantee-copy h2 { font-size: 28px; }
  .guarantee-copy p { font-size: 15px; }
  .site-footer { padding-bottom: 96px; }
  .floating-whatsapp {
    left: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }
  .whatsapp-icon-wrap,
  .whatsapp-icon { width: 28px; height: 28px; }
  .whatsapp-label { display: none; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: 28px; }
  .hero-desc { font-size: 13px; }
  .hero-price-number { font-size: 48px; }
  .hero-cta { min-height: 56px; }
  .hero-cta-text { font-size: 18px; }
  .product-frame { width: min(100%, 280px); }
  .hero-product-image { max-width: 270px; }
  .reels-slider { grid-template-columns: 1fr 1fr; }
  .metric-card strong { font-size: 18px; }
}


/* ===== Hero refresh: real product + before/after + logo polish ===== */
.brand-logo {
  width: 198px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.12));
}
.hero.hero.marble-bg::before { opacity: .34; }
.hero-grid-v2 {
  grid-template-columns: minmax(340px, .95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
}
.hero-visual {
  display: grid;
  gap: 18px;
  align-items: start;
}
.hero-copy h1 {
  margin-top: 0;
  margin-bottom: 16px;
}
.hero-desc {
  max-width: 620px;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.9;
  margin-bottom: 20px;
}
.hero-price-row-v2 {
  display: flex;
  align-items: end;
  gap: 22px;
  margin-bottom: 22px;
}
.current-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.old-price-wrap {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
}
.old-price-label {
  color: #7b8798;
  font-size: 13px;
  font-weight: 700;
}
.old-price {
  color: #8792a0;
  font-size: 28px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #d06f66;
}
.hero-cta-split {
  width: min(100%, 520px);
  min-height: 78px;
  padding: 8px 12px;
  border-radius: 22px;
  justify-content: space-between;
  background: linear-gradient(180deg, #17355e 0%, #0f2749 100%);
  border: 1px solid rgba(224,185,108,.55);
  box-shadow: 0 18px 34px rgba(5,22,47,.18), inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-cta-split .hero-cta-price {
  min-width: 150px;
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6d78f 0%, #ddb165 52%, #c8913a 100%);
  color: var(--navy-900);
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
}
.hero-cta-split .hero-cta-text {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
}
.hero-note-v2 {
  margin-top: 12px;
  color: var(--navy-700);
  font-size: 15px;
  font-weight: 700;
}
.trust-list-v2 {
  gap: 12px 18px;
  font-size: 14px;
}
.trust-list-v2 div::before {
  content: '✓';
  color: #5f9a79;
  margin-inline-end: 7px;
}
.hero-product-stage-v2 {
  min-height: 520px;
  border-radius: 34px;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.96) 0%, rgba(233,239,247,.82) 18%, rgba(215,224,239,.16) 56%, transparent 82%), linear-gradient(135deg, rgba(8,25,49,.04), rgba(255,255,255,0));
  overflow: hidden;
}
.product-platform { display: none; }
.product-glow {
  inset: 6% 7% 18% 9%;
  background: radial-gradient(circle at center, rgba(90,140,196,.22) 0%, rgba(90,140,196,.12) 24%, rgba(200,156,75,.08) 44%, transparent 74%);
  filter: blur(20px);
}
.product-spotlight {
  inset: -8% auto 0 8%;
  width: 46%;
  background: radial-gradient(circle at center, rgba(255,255,255,.95) 0%, rgba(255,255,255,.18) 42%, transparent 76%);
  opacity: .82;
  transform: none;
}
.product-frame-v2 {
  width: min(100%, 590px);
  padding: 8px 16px 18px;
}
.hero-product-image {
  max-width: 520px;
  filter: drop-shadow(0 22px 34px rgba(17, 40, 69, .18));
  transform: rotate(-1.6deg);
}
.hero-floating-cards {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  gap: 14px;
  z-index: 3;
}
.hero-mini-card {
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 16px 30px rgba(5,22,47,.10);
  animation: floatCard 4.4s ease-in-out infinite;
}
.hero-mini-card:nth-child(2) { animation-delay: -.7s; }
.mini-card-copy { display: grid; gap: 2px; }
.mini-card-copy strong {
  color: var(--navy-900);
  font-size: 20px;
  font-weight: 900;
}
.mini-card-copy span {
  color: #8b7b69;
  font-size: 15px;
  font-weight: 700;
}
.mini-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f6d78f 0%, #ddb165 52%, #c8913a 100%);
  color: var(--navy-900);
  font-size: 25px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
}
.hero-results-stack-v2 {
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  max-width: 760px;
  width: 100%;
  margin-inline: auto;
}
.result-card {
  padding: 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
}
.result-image {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.result-image-real { display: block; }
.result-badge {
  top: 12px;
  right: 12px;
  z-index: 2;
}
.result-badge.after { background: linear-gradient(135deg, #163457, #0a2245); }
.stack-arrow {
  width: 48px;
  height: 48px;
  align-self: center;
  color: #0f2749;
  background: #fff;
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: var(--shadow-sm);
  font-size: 38px;
  line-height: 1;
}
@media (max-width: 1180px) {
  .hero-grid-v2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-desc,
  .hero-cta-split,
  .hero-note-v2 {
    margin-inline: auto;
  }
  .hero-price-row-v2,
  .trust-list-v2 {
    justify-content: center;
  }
  .hero-product-stage-v2 { min-height: 470px; }
  .hero-results-stack-v2 { max-width: 720px; }
}
@media (max-width: 920px) {
  .brand-logo { width: 174px; }
  .hero-product-stage-v2 {
    min-height: 430px;
    padding-top: 120px;
  }
  .hero-floating-cards {
    top: 18px;
    right: 50%;
    transform: translateX(50%);
    width: min(100%, 520px);
    grid-template-columns: 1fr 1fr;
  }
  .hero-mini-card {
    min-width: 0;
    padding: 14px;
    border-radius: 18px;
  }
  .mini-card-copy strong { font-size: 18px; }
  .mini-card-copy span { font-size: 13px; }
  .mini-card-icon { width: 44px; height: 44px; font-size: 21px; }
  .hero-results-stack-v2 { max-width: 620px; }
}
@media (max-width: 640px) {
  .brand-logo { width: 150px; }
  .hero-grid-v2 { gap: 18px; }
  .hero-price-row-v2 {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .old-price-wrap { padding-bottom: 0; justify-items: center; }
  .old-price { font-size: 22px; }
  .hero-cta-split {
    min-height: 68px;
    border-radius: 18px;
    padding: 7px 8px;
    gap: 8px;
  }
  .hero-cta-split .hero-cta-price {
    min-width: 112px;
    min-height: 50px;
    padding: 0 16px;
    font-size: 18px;
    border-radius: 14px;
  }
  .hero-cta-split .hero-cta-text { font-size: 18px; }
  .hero-note-v2 { font-size: 13px; }
  .hero-product-stage-v2 {
    min-height: 360px;
    padding-top: 116px;
    border-radius: 24px;
  }
  .product-frame-v2 { width: min(100%, 330px); }
  .hero-product-image { max-width: 300px; }
  .hero-floating-cards {
    width: 100%;
    right: 0;
    transform: none;
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  .hero-mini-card { padding: 12px 12px 12px 14px; }
  .mini-card-copy strong { font-size: 16px; }
  .mini-card-copy span { font-size: 12px; }
  .mini-card-icon { width: 38px; height: 38px; border-radius: 12px; font-size: 18px; }
  .hero-results-stack-v2 {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }
  .result-card { padding: 8px; border-radius: 16px; }
  .result-image { height: 106px; border-radius: 12px; }
  .stack-arrow { width: 36px; height: 36px; font-size: 28px; }
  .result-badge { min-height: 24px; padding: 0 10px; font-size: 10px; }
}
@media (max-width: 420px) {
  .hero-product-stage-v2 { min-height: 340px; }
  .hero-product-image { max-width: 270px; }
  .hero-cta-split .hero-cta-text { font-size: 16px; }
  .hero-cta-split .hero-cta-price { min-width: 98px; font-size: 17px; }
  .hero-mini-card { gap: 10px; }
  .result-image { height: 94px; }
}

/* ===== v15 heading + floating product refinements ===== */
.hero-copy h1 {
  letter-spacing: -0.02em;
}

/* تأكيد العنوان الجديد */
.hero-copy h1 .gold-word {
  color: var(--gold-500);
  text-shadow: 0 1px 0 rgba(255,255,255,.18);
}

/* المنتج يطير + ظل ذهبي مضيء + ظل منتج */
.hero-product-stage-v2 {
  position: relative;
  isolation: isolate;
}

.hero-product-stage-v2::before,
.hero-product-stage-v2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* الضوء الذهبي تحت المنتج */
.hero-product-stage-v2::before {
  bottom: 46px;
  width: min(74%, 420px);
  height: 88px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center,
    rgba(231, 190, 106, .52) 0%,
    rgba(220, 171, 75, .28) 32%,
    rgba(220, 171, 75, .12) 55%,
    rgba(220, 171, 75, 0) 74%);
  filter: blur(14px);
  opacity: .98;
  z-index: 0;
  animation: goldGlowPulse 4.8s ease-in-out infinite;
}

/* ظل المنتج */
.hero-product-stage-v2::after {
  bottom: 28px;
  width: min(68%, 360px);
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center,
    rgba(9, 21, 43, .28) 0%,
    rgba(9, 21, 43, .16) 45%,
    rgba(9, 21, 43, 0) 72%);
  filter: blur(10px);
  z-index: 0;
  animation: productShadowFloat 4.8s ease-in-out infinite;
}

.product-frame-v2 {
  position: relative;
  z-index: 2;
  animation: productFloat 4.8s ease-in-out infinite;
  will-change: transform;
}

.hero-product-image {
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 30px 32px rgba(17, 40, 69, .16))
    drop-shadow(0 12px 16px rgba(208, 164, 82, .16));
  transform: rotate(-1.6deg);
}

@keyframes productFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(-0.4deg);
  }
}

@keyframes goldGlowPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: .9;
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes productShadowFloat {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: .28;
  }
  50% {
    transform: translateX(-50%) scale(.9);
    opacity: .18;
  }
}

@media (max-width: 640px) {
  .hero-product-stage-v2::before {
    bottom: 30px;
    width: min(78%, 270px);
    height: 58px;
    filter: blur(12px);
  }

  .hero-product-stage-v2::after {
    bottom: 18px;
    width: min(66%, 210px);
    height: 22px;
  }

  @keyframes productFloat {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-10px) rotate(-0.3deg);
    }
  }
}


/* ===== custom update: hero shine ===== */
.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 18px;
}
.hero-copy h1 .gold-word { display: inline-block; }
.gold-shine {
  background-image: linear-gradient(115deg, #ba842f 0%, #dca64b 16%, #fff1bf 28%, #c78b2e 42%, #fff8d6 50%, #c78b2e 58%, #efd086 72%, #ba842f 100%);
  background-size: 230% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 10px rgba(226, 183, 94, .18));
  animation: goldShimmer 2.8s linear infinite, goldGlowText 2.2s ease-in-out infinite;
}
@keyframes goldShimmer { 0% { background-position: 0% 50%; } 100% { background-position: 230% 50%; } }
@keyframes goldGlowText { 0%, 100% { filter: drop-shadow(0 0 0 rgba(226, 183, 94, .10)); } 50% { filter: drop-shadow(0 0 10px rgba(226, 183, 94, .35)); } }

/* ===== hero product polish ===== */
.hero-visual { position: relative; }
.hero-product-stage-v2 {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background: radial-gradient(circle at 32% 18%, rgba(255,255,255,.98) 0%, rgba(245,248,252,.92) 20%, rgba(230,236,245,.42) 48%, rgba(220,228,240,.08) 66%, transparent 84%), linear-gradient(145deg, rgba(255,255,255,.92) 0%, rgba(237,242,249,.92) 42%, rgba(224,231,242,.88) 100%);
  box-shadow: 0 32px 56px rgba(8,25,49,.12), inset 0 1px 0 rgba(255,255,255,.82);
  overflow: hidden;
}
.hero-product-stage-v2::before,
.hero-product-stage-v2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-product-stage-v2::before {
  bottom: 46px;
  width: min(74%, 420px);
  height: 88px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(231, 190, 106, .52) 0%, rgba(220, 171, 75, .28) 32%, rgba(220, 171, 75, .12) 55%, rgba(220, 171, 75, 0) 74%);
  filter: blur(14px);
  opacity: .98;
  z-index: 0;
  animation: goldGlowPulse 4.8s ease-in-out infinite;
}
.hero-product-stage-v2::after {
  bottom: 28px;
  width: min(68%, 360px);
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(9, 21, 43, .28) 0%, rgba(9, 21, 43, .16) 45%, rgba(9, 21, 43, 0) 72%);
  filter: blur(10px);
  z-index: 0;
  animation: productShadowFloat 4.8s ease-in-out infinite;
}
.product-glow {
  inset: 8% 10% 17% 12%;
  background: radial-gradient(circle at center, rgba(85,139,197,.18) 0%, rgba(85,139,197,.12) 22%, rgba(220,171,75,.16) 46%, rgba(220,171,75,.05) 62%, transparent 76%);
  filter: blur(18px);
}
.product-spotlight {
  inset: -4% auto 0 12%;
  width: 42%;
  opacity: .92;
}
.product-frame-v2 {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  padding: 0 8px 12px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: productFloat 4.8s ease-in-out infinite;
}
.hero-product-image {
  max-width: 550px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 32px rgba(17, 40, 69, .16)) drop-shadow(0 12px 16px rgba(208, 164, 82, .16));
  transform: rotate(-1.1deg);
}
.hero-floating-cards {
  top: 24px;
  right: 24px;
}
.hero-mini-card {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 20px 34px rgba(5,22,47,.11);
}
.mini-card-rating { border-inline-start: 4px solid rgba(208, 164, 82, .7); }
.mini-card-soft { border-inline-start: 4px solid rgba(83, 141, 117, .55); }
.hero-results-stack-v2 {
  margin-top: -34px;
  position: relative;
  z-index: 4;
}
.result-card {
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 18px 36px rgba(8,25,49,.11);
}
.stack-arrow { box-shadow: 0 14px 24px rgba(8,25,49,.10); }
@keyframes productFloat { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-16px) rotate(-0.4deg); } }
@keyframes goldGlowPulse { 0%,100% { transform: translateX(-50%) scale(1); opacity: .9; } 50% { transform: translateX(-50%) scale(1.08); opacity: 1; } }
@keyframes productShadowFloat { 0%,100% { transform: translateX(-50%) scale(1); opacity: .28; } 50% { transform: translateX(-50%) scale(.9); opacity: .18; } }

/* ===== hero proof ===== */
.hero-proof { padding: 10px 0 18px; }
.hero-proof-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: linear-gradient(180deg, #173158 0%, #102749 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(6, 20, 42, .18);
}
.hero-proof-item { position: relative; text-align: center; padding: 24px 14px 22px; }
.hero-proof-item:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 1px; height: 58px; transform: translateY(-50%); background: rgba(255,255,255,.16);
}
.hero-proof-item strong {
  display: block; margin-bottom: 6px; color: var(--gold-400); font-size: clamp(28px, 2.8vw, 42px); font-weight: 900; line-height: 1.15;
}
.hero-proof-item span { display: block; color: rgba(255,255,255,.92); font-size: 15px; font-weight: 500; }

/* ===== centered reels ===== */
.reels-section { padding: 26px 0 36px; }
.reels-shell {
  position: relative;
  padding: 34px 28px 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(249,246,241,.92) 100%);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 24px 52px rgba(8,25,49,.10);
}
.reels-head { margin-bottom: 10px; }
.reels-head h2 { font-size: clamp(26px, 2.4vw, 40px); }
.reels-subtitle {
  max-width: 680px; margin: 0 auto 28px; text-align: center; color: #68778d; font-size: 16px; line-height: 1.9; font-weight: 500;
}
.reels-stage {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; margin-bottom: 24px;
}
.reels-stage-arrow {
  width: 52px; height: 52px; border: 0; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(180deg, #17355e 0%, #0c2341 100%); color: var(--gold-300); font-size: 32px; line-height: 1; cursor: pointer; box-shadow: 0 16px 28px rgba(8,25,49,.14); transition: transform .22s ease, box-shadow .22s ease;
}
.reels-stage-arrow:hover { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(8,25,49,.18); }
.reels-player-shell { display: grid; justify-items: center; gap: 16px; }
.reels-player-window {
  width: min(100%, 410px); aspect-ratio: 9 / 16; border-radius: 30px; padding: 10px; background: linear-gradient(180deg, #173158 0%, #0b1c34 100%); box-shadow: 0 26px 48px rgba(6,20,42,.18), inset 0 1px 0 rgba(255,255,255,.10);
}
.reels-player-frame { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; background: #08172d; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.reels-player-frame iframe { width: 100%; height: 100%; border: 0; display: block; background: #08172d; }
.reels-player-frame.slide-out-next { animation: reelOutNext .24s ease forwards; }
.reels-player-frame.slide-in-next { animation: reelInNext .34s ease forwards; }
.reels-player-frame.slide-out-prev { animation: reelOutPrev .24s ease forwards; }
.reels-player-frame.slide-in-prev { animation: reelInPrev .34s ease forwards; }
@keyframes reelOutNext { from { opacity: 1; transform: translateX(0) scale(1); } to { opacity: 0; transform: translateX(-34px) scale(.98); } }
@keyframes reelInNext { from { opacity: 0; transform: translateX(34px) scale(.98); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes reelOutPrev { from { opacity: 1; transform: translateX(0) scale(1); } to { opacity: 0; transform: translateX(34px) scale(.98); } }
@keyframes reelInPrev { from { opacity: 0; transform: translateX(-34px) scale(.98); } to { opacity: 1; transform: translateX(0) scale(1); } }
.reels-active-meta { text-align: center; }
.reels-active-kicker { display: block; margin-bottom: 6px; color: var(--gold-500); font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.reels-active-title { display: block; color: var(--navy-900); font-size: clamp(20px, 2vw, 28px); font-weight: 800; line-height: 1.55; }
.reels-thumbs {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; align-items: stretch;
}
.reel-thumb-card {
  position: relative; border: 0; padding: 10px; border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: 0 14px 26px rgba(8,25,49,.08); cursor: pointer; text-align: inherit; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; border: 1px solid rgba(17,40,69,.10);
}
.reel-thumb-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(8,25,49,.12); }
.reel-thumb-card.is-active { border-color: rgba(200,156,75,.64); box-shadow: 0 20px 34px rgba(8,25,49,.14), 0 0 0 3px rgba(200,156,75,.10); }
.reel-thumb-image {
  position: relative; display: block; aspect-ratio: 9 / 16; border-radius: 18px; overflow: hidden; background: linear-gradient(180deg, #173158, #0b1c34);
}
.reel-thumb-image::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,25,49,.05) 0%, rgba(8,25,49,.16) 42%, rgba(8,25,49,.72) 100%);
}
.reel-thumb-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-thumb-play {
  position: absolute; top: 22px; right: 22px; z-index: 1; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(180deg, rgba(246,215,143,.96), rgba(200,145,58,.98)); color: var(--navy-900); font-size: 16px; box-shadow: 0 10px 20px rgba(200,145,58,.22);
}
.reel-thumb-text { display: block; margin-top: 12px; color: var(--navy-900); font-size: 14px; font-weight: 700; line-height: 1.8; }

/* ===== comparison cards ===== */
.comparison-section { padding: 10px 0 30px; }
.comparison-head {
  max-width: 860px; margin: 0 auto 28px; text-align: center;
}
.comparison-badge {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 20px; border-radius: 999px; margin-bottom: 18px; background: rgba(200,156,75,.12); border: 1px solid rgba(200,156,75,.22); color: #b48b42; font-size: 13px; font-weight: 700;
}
.comparison-badge::before {
  content: "•"; margin-inline-end: 8px; font-size: 18px; line-height: 1;
}
.comparison-head h2 {
  margin: 0 0 14px; color: var(--navy-800); font-size: clamp(34px, 4vw, 60px); line-height: 1.22; font-weight: 900; letter-spacing: -.02em;
}
.comparison-head h2 span { color: var(--gold-500); }
.comparison-head p {
  margin: 0; color: #6b5a4b; font-size: 17px; line-height: 2;
}
.comparison-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 980px; margin: 0 auto;
}
.compare-card {
  position: relative; min-height: 100%; padding: 28px 28px 26px; border-radius: 30px; overflow: hidden;
}
.compare-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
}
.compare-card-featured {
  background: linear-gradient(180deg, #1a2f56 0%, #203967 100%); color: #fff; box-shadow: 0 24px 54px rgba(14,31,58,.20), inset 0 1px 0 rgba(255,255,255,.08); border: 1px solid rgba(200,156,75,.42);
}
.compare-card-featured::before {
  background: radial-gradient(circle at top left, rgba(255,255,255,.10) 0%, transparent 34%), radial-gradient(circle at bottom right, rgba(200,156,75,.16) 0%, transparent 28%);
}
.compare-card-alt {
  background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.92) 100%); color: var(--navy-900); border: 1px solid rgba(220,190,184,.75); box-shadow: 0 18px 40px rgba(10,22,42,.08);
}
.compare-card-alt::before {
  background: radial-gradient(circle at top right, rgba(207,79,58,.07) 0%, transparent 28%);
}
.compare-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px;
}
.compare-icon {
  width: 68px; height: 68px; border-radius: 22px; display: grid; place-items: center; font-size: 31px; box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.compare-card-featured .compare-icon {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.08);
}
.compare-card-alt .compare-icon {
  background: rgba(207,79,58,.08); border: 1px solid rgba(207,79,58,.10);
}
.compare-pill {
  min-height: 38px; padding: 0 16px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
}
.compare-pill-good { background: rgba(56, 180, 132, .16); color: #96f2ce; border: 1px solid rgba(74,193,148,.22); }
.compare-pill-bad { background: rgba(207,79,58,.10); color: #c94935; border: 1px solid rgba(207,79,58,.16); }
.compare-card h3 { margin: 0 0 8px; font-size: 38px; line-height: 1.3; font-weight: 900; }
.compare-price {
  margin-bottom: 18px; color: var(--gold-300); font-size: clamp(40px, 4vw, 56px); line-height: 1; font-weight: 900;
}
.compare-price span { font-size: .62em; }
.compare-price-alt { color: #c94935; }
.compare-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 12px;
}
.compare-list li {
  position: relative; padding-inline-start: 28px; font-size: 16px; line-height: 1.9;
}
.compare-list li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 8px; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center;
}
.compare-list-good li::before {
  content: "✓"; background: rgba(71, 205, 156, .14); color: #8ef2cb; font-size: 12px; line-height: 18px; text-align: center;
}
.compare-list-bad li::before {
  content: "✕"; background: rgba(207,79,58,.10); color: #c94935; font-size: 11px; line-height: 18px; text-align: center;
}

@media (max-width: 1180px) {
  .reels-thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .hero-proof-shell { grid-template-columns: repeat(2, 1fr); border-radius: 24px; }
  .hero-proof-item:nth-child(2)::after { display: none; }
  .hero-proof-item:nth-child(odd)::after { left: 0; }
  .reels-shell { padding: 24px 18px 20px; border-radius: 28px; }
  .reels-stage { grid-template-columns: 1fr; gap: 14px; }
  .reels-stage-arrow { display: none; }
  .reels-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comparison-grid { grid-template-columns: 1fr; max-width: 620px; }
}
@media (max-width: 640px) {
  .hero-copy h1 { max-width: 100%; }
  .hero-proof { padding: 4px 0 14px; }
  .hero-proof-item { padding: 18px 10px 16px; }
  .hero-proof-item strong { font-size: 24px; }
  .hero-proof-item span { font-size: 13px; }
  .reels-section { padding: 18px 0 24px; }
  .reels-shell { padding: 20px 14px 16px; border-radius: 24px; }
  .reels-subtitle { font-size: 14px; margin-bottom: 20px; }
  .reels-player-window { width: min(100%, 330px); border-radius: 24px; padding: 8px; }
  .reels-player-frame { border-radius: 18px; }
  .reels-thumbs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x proximity; }
  .reels-thumbs::-webkit-scrollbar { height: 6px; }
  .reels-thumbs::-webkit-scrollbar-thumb { background: rgba(17,40,69,.18); border-radius: 999px; }
  .reel-thumb-card { min-width: 180px; scroll-snap-align: center; }
  .comparison-section { padding: 4px 0 24px; }
  .comparison-badge { min-height: 38px; padding: 0 16px; font-size: 12px; }
  .comparison-head h2 { font-size: 30px; }
  .comparison-head p { font-size: 14px; }
  .compare-card { padding: 22px 18px 20px; border-radius: 24px; }
  .compare-card h3 { font-size: 30px; }
  .compare-price { font-size: 42px; }
  .compare-list li { font-size: 14px; }
  .hero-product-stage-v2::before { bottom: 30px; width: min(78%, 270px); height: 58px; filter: blur(12px); }
  .hero-product-stage-v2::after { bottom: 18px; width: min(66%, 210px); height: 22px; }
  @keyframes productFloat { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-10px) rotate(-0.3deg); } }
}

/* ===== WhatsApp support popover ===== */
.floating-whatsapp {
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.whatsapp-widget {
  position: fixed;
  left: 20px;
  bottom: 104px;
  z-index: 70;
  width: min(360px, calc(100vw - 40px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.97);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.whatsapp-widget.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-widget-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 42, 33, .08);
  box-shadow: 0 24px 60px rgba(8, 25, 49, .22);
}

.whatsapp-widget-head {
  position: relative;
  min-height: 118px;
  padding: 24px 22px 22px;
  display: grid;
  grid-template-columns: 42px 1fr 62px;
  gap: 14px;
  align-items: start;
  background:
    radial-gradient(circle at 84% 8%, rgba(255,255,255,.18) 0%, transparent 32%),
    linear-gradient(135deg, #208b6f 0%, #1f8a68 48%, #177455 100%);
  color: #fff;
}

.whatsapp-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.whatsapp-close:hover {
  background: rgba(255,255,255,.18);
  transform: rotate(4deg);
}

.whatsapp-agent {
  text-align: center;
  align-self: center;
}

.whatsapp-agent strong {
  display: block;
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.whatsapp-agent span {
  display: block;
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 500;
}

.whatsapp-brand-bubble {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  padding: 8px;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.whatsapp-brand-bubble img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-widget-body {
  padding: 28px 22px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(251,250,248,.98) 100%);
}

.whatsapp-chat-name {
  margin: 0 0 10px;
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 500;
}

.whatsapp-message {
  position: relative;
  margin-bottom: 26px;
  padding: 0 2px;
  color: #15191f;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.whatsapp-message p {
  margin: 0;
}

.whatsapp-widget-cta {
  min-height: 52px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #249b77 0%, #1f8a68 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(31, 138, 104, .22), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-widget-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 138, 104, .28), inset 0 1px 0 rgba(255,255,255,.22);
}

.whatsapp-widget-cta-icon,
.whatsapp-widget-cta-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

html[lang="en"] .whatsapp-widget-head {
  grid-template-columns: 62px 1fr 42px;
}

html[lang="en"] .whatsapp-close {
  grid-column: 3;
  grid-row: 1;
}

html[lang="en"] .whatsapp-brand-bubble {
  grid-column: 1;
  grid-row: 1;
}

html[lang="en"] .whatsapp-agent {
  grid-column: 2;
  grid-row: 1;
}

@media (max-width: 640px) {
  .whatsapp-widget {
    left: 14px;
    right: 14px;
    bottom: 88px;
    width: auto;
  }

  .whatsapp-widget-head {
    min-height: 108px;
    padding: 20px 18px;
    grid-template-columns: 38px 1fr 58px;
  }

  .whatsapp-agent strong {
    font-size: 20px;
  }

  .whatsapp-widget-body {
    padding: 24px 18px 18px;
  }

  .whatsapp-message {
    font-size: 15px;
  }

  .whatsapp-label {
    display: inline-flex;
    opacity: 1;
    transform: none;
    right: 62px;
    left: auto;
    bottom: 8px;
    font-size: 12px;
    padding: 7px 10px;
  }
}

/* ===== three steps timeline section ===== */
.three-steps-section {
  padding: 18px 0 34px;
}

.three-steps-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.three-steps-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(200,156,75,.10);
  border: 1px solid rgba(200,156,75,.22);
  color: #b58b43;
  font-size: 13px;
  font-weight: 700;
}

.three-steps-badge::before {
  content: "•";
  margin-inline-end: 8px;
  font-size: 18px;
  line-height: 1;
}

.three-steps-head h2 {
  margin: 0 0 12px;
  color: var(--navy-800);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -.02em;
}

.three-steps-head h2 span {
  color: var(--gold-500);
}

.three-steps-head p {
  margin: 0;
  color: #6b5a4b;
  font-size: 17px;
  line-height: 2;
}

.three-steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.three-steps-timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,156,75,0) 0%, rgba(200,156,75,.34) 18%, rgba(200,156,75,.34) 82%, rgba(200,156,75,0) 100%);
}

.timeline-step-card {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.timeline-step-icon {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
}

.timeline-step-icon::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,156,75,.12) 0%, rgba(200,156,75,0) 70%);
  filter: blur(2px);
}

.timeline-step-icon img {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  display: block;
  object-fit: contain;
}

.timeline-step-content h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.3;
  font-weight: 900;
}

.timeline-step-content p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--text);
  font-size: 16px;
  line-height: 1.95;
}

.timeline-step-card:nth-child(2) .timeline-step-content p {
  max-width: 330px;
}

@media (max-width: 920px) {
  .three-steps-timeline {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 580px;
  }

  .three-steps-timeline::before {
    top: 0;
    bottom: 0;
    right: 50%;
    left: auto;
    width: 1px;
    height: auto;
    transform: translateX(50%);
    background: linear-gradient(180deg, rgba(200,156,75,0) 0%, rgba(200,156,75,.34) 18%, rgba(200,156,75,.34) 82%, rgba(200,156,75,0) 100%);
  }

  .timeline-step-card {
    display: grid;
    grid-template-columns: 116px 1fr;
    align-items: center;
    gap: 10px 18px;
    text-align: right;
    padding: 0;
  }

  .timeline-step-icon {
    margin: 0;
  }

  .timeline-step-content p {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .three-steps-section {
    padding: 8px 0 22px;
  }

  .three-steps-head {
    margin-bottom: 26px;
  }

  .three-steps-badge {
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  .three-steps-head h2 {
    font-size: 30px;
  }

  .three-steps-head p {
    font-size: 14px;
  }

  .three-steps-timeline {
    gap: 18px;
  }

  .timeline-step-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .three-steps-timeline::before {
    display: none;
  }

  .timeline-step-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto 14px;
  }

  .timeline-step-icon img {
    width: 88px;
    height: 88px;
    object-fit: contain;
  }

  .timeline-step-content h3 {
    font-size: 28px;
  }

  .timeline-step-content p {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* ===== scientific ingredients section ===== */
.ingredients-section {
  padding: 6px 0 34px;
}

.ingredients-shell {
  direction: ltr;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 36px;
  align-items: center;
}

.ingredients-copy,
.ingredients-visual {
  direction: rtl;
}

.ingredients-copy {
  max-width: 100%;
}

.ingredients-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(200,156,75,.10);
  border: 1px solid rgba(200,156,75,.22);
  color: #b58b43;
  font-size: 13px;
  font-weight: 700;
}

.ingredients-badge::before {
  content: "•";
  margin-inline-end: 8px;
  font-size: 18px;
  line-height: 1;
}

.ingredients-copy h2 {
  margin: 0 0 22px;
  color: var(--navy-800);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.02em;
}

.ingredients-copy h2 span {
  color: var(--gold-500);
}

.ingredients-list {
  display: grid;
  gap: 16px;
}

.ingredient-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 18px 18px 20px;
  border-radius: 26px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(17,40,69,.06);
  box-shadow: 0 14px 30px rgba(8,25,49,.06), inset 0 1px 0 rgba(255,255,255,.75);
}

.ingredient-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(200,156,75,0) 0%, rgba(200,156,75,.035) 100%);
}

.ingredient-text h3 {
  margin: 0 0 4px;
  color: var(--navy-900);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 800;
}

.ingredient-text p {
  margin: 0;
  color: #907f6f;
  font-size: 14px;
  line-height: 1.85;
}

.ingredient-icon-wrap {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #f5e8cb 0%, #efdfbe 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 10px 18px rgba(200,156,75,.12);
}

.ingredient-icon-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ingredients-visual {
  display: grid;
  place-items: center;
}

.ingredients-orbit {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,.68);
  box-shadow: 0 40px 80px rgba(8,25,49,.08);
}

.ingredients-core {
  position: relative;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 20%),
    linear-gradient(180deg, #efe7d8 0%, #e3dac8 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 18px 40px rgba(8,25,49,.08);
}

.ingredients-core::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(200,156,75,.18);
}

.ingredients-core img {
  width: 54%;
  height: auto;
  object-fit: contain;
}

.orbit-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255,255,255,.22);
}

.orbit-dot-gold {
  top: 16%;
  left: 24%;
  background: #c89c4b;
}

.orbit-dot-blue {
  right: 20%;
  bottom: 21%;
  background: #5f8ebd;
}

@media (max-width: 1040px) {
  .ingredients-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ingredients-copy,
  .ingredients-visual {
    direction: rtl;
  }

  .ingredients-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .ingredients-visual {
    order: -1;
  }

  .ingredients-orbit {
    width: min(100%, 380px);
  }
}

@media (max-width: 640px) {
  .ingredients-section {
    padding: 4px 0 24px;
  }

  .ingredients-badge {
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
    margin-bottom: 14px;
  }

  .ingredients-copy h2 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .ingredients-list {
    gap: 12px;
  }

  .ingredient-item {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 14px 14px 16px;
    border-radius: 22px;
  }

  .ingredient-text h3 {
    font-size: 16px;
    line-height: 1.6;
  }

  .ingredient-text p {
    font-size: 12px;
    line-height: 1.8;
  }

  .ingredient-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .ingredient-icon-wrap img {
    width: 34px;
    height: 34px;
  }

  .ingredients-orbit {
    width: min(100%, 300px);
  }

  .orbit-ring {
    border-width: 6px;
  }

  .orbit-dot {
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 4px rgba(255,255,255,.18);
  }
}

/* ===== ingredients section creative redesign ===== */
.ingredients-section {
  padding: 8px 0 36px;
}

.ingredients-panel {
  position: relative;
  border-radius: 40px;
  padding: 30px;
  background:
    radial-gradient(circle at 14% 18%, rgba(200,156,75,.12) 0%, rgba(200,156,75,0) 26%),
    radial-gradient(circle at 85% 78%, rgba(95,142,189,.10) 0%, rgba(95,142,189,0) 24%),
    linear-gradient(180deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,.22) 100%);
  border: 1px solid rgba(255,255,255,.44);
  box-shadow: 0 30px 80px rgba(8,25,49,.08), inset 0 1px 0 rgba(255,255,255,.76);
  overflow: hidden;
}

.ingredients-panel::before,
.ingredients-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.ingredients-panel::before {
  width: 240px;
  height: 240px;
  top: -110px;
  left: -80px;
  background: rgba(200,156,75,.12);
}

.ingredients-panel::after {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -90px;
  background: rgba(10,34,69,.08);
}

.ingredients-shell {
  position: relative;
  z-index: 1;
  direction: ltr;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 44px;
  align-items: center;
}

.ingredients-copy,
.ingredients-visual {
  direction: rtl;
}

.ingredients-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(200,156,75,.12);
  border: 1px solid rgba(200,156,75,.22);
  color: #b58b43;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.ingredients-badge::before {
  content: "•";
  margin-inline-end: 8px;
  font-size: 18px;
  line-height: 1;
}

.ingredients-copy h2 {
  margin: 0 0 14px;
  color: var(--navy-800);
  font-size: clamp(36px, 4.1vw, 62px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.03em;
}

.ingredients-copy h2 span {
  color: var(--gold-500);
}

.ingredients-lead {
  max-width: 650px;
  margin: 0 0 26px;
  color: #7d6f62;
  font-size: 16px;
  line-height: 2.05;
}

.ingredients-list {
  position: relative;
  display: grid;
  gap: 16px;
}

.ingredients-list::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  right: 37px;
  width: 2px;
  background: linear-gradient(180deg, rgba(200,156,75,0) 0%, rgba(200,156,75,.38) 12%, rgba(200,156,75,.38) 88%, rgba(200,156,75,0) 100%);
  opacity: .8;
}

.ingredient-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px 18px 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(17,40,69,.06);
  box-shadow: 0 16px 40px rgba(8,25,49,.05), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease, background .34s ease;
  isolation: isolate;
}

.ingredient-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.56) 45%, rgba(255,255,255,0) 100%);
  transform: translateX(105%);
  transition: transform .7s ease;
  pointer-events: none;
}

.ingredient-item:hover::before,
.ingredient-item.is-active::before {
  transform: translateX(-105%);
}

.ingredient-item:hover,
.ingredient-item.is-active {
  transform: translateY(-4px) translateX(-4px);
  border-color: rgba(200,156,75,.22);
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 50px rgba(8,25,49,.09), 0 0 0 1px rgba(200,156,75,.08), inset 0 1px 0 rgba(255,255,255,.84);
}

.ingredient-item-accent {
  position: absolute;
  top: 14px;
  bottom: 14px;
  right: 14px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(200,156,75,.95), rgba(10,34,69,.95));
  opacity: .14;
  transition: opacity .32s ease, transform .32s ease;
}

.ingredient-item:hover .ingredient-item-accent,
.ingredient-item.is-active .ingredient-item-accent {
  opacity: 1;
  transform: scaleY(1.06);
}

.ingredient-icon-wrap {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7ead0 0%, #f2dfbb 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 10px 22px rgba(200,156,75,.14);
  transition: transform .34s ease, box-shadow .34s ease;
}

.ingredient-item:hover .ingredient-icon-wrap,
.ingredient-item.is-active .ingredient-icon-wrap {
  transform: rotate(-8deg) scale(1.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 16px 28px rgba(200,156,75,.20);
}

.ingredient-icon-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ingredient-overline {
  margin-bottom: 4px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.ingredient-text h3 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.4;
  font-weight: 900;
}

.ingredient-text h3 span {
  font-size: .82em;
}

.ingredient-text p {
  margin: 0;
  color: #897869;
  font-size: 14px;
  line-height: 1.9;
}

.ingredient-item:nth-child(1) .ingredient-item-accent { background: linear-gradient(180deg, #d4aa55, #0a2245); }
.ingredient-item:nth-child(2) .ingredient-item-accent { background: linear-gradient(180deg, #4ec6f2, #0a2245); }
.ingredient-item:nth-child(3) .ingredient-item-accent { background: linear-gradient(180deg, #8ac64d, #0a2245); }
.ingredient-item:nth-child(4) .ingredient-item-accent { background: linear-gradient(180deg, #49c1ee, #0a2245); }

.ingredients-visual {
  display: grid;
  place-items: center;
}

.ingredients-scene {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.science-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: .85;
  pointer-events: none;
}

.glow-one {
  width: 220px;
  height: 220px;
  top: 12%;
  right: 10%;
  background: rgba(200,156,75,.17);
  animation: sciencePulse 7s ease-in-out infinite;
}

.glow-two {
  width: 180px;
  height: 180px;
  left: 12%;
  bottom: 15%;
  background: rgba(10,34,69,.14);
  animation: sciencePulse 8s ease-in-out infinite reverse;
}

.glow-three {
  width: 120px;
  height: 120px;
  right: 18%;
  bottom: 26%;
  background: rgba(95,142,189,.13);
  animation: sciencePulse 6s ease-in-out infinite 1.2s;
}

.orbit-shell {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,156,75,.16);
}

.orbit-shell-outer {
  inset: 10%;
  border-width: 8px;
  border-color: rgba(255,255,255,.72);
  box-shadow: 0 30px 70px rgba(8,25,49,.10);
  animation: spinSlow 26s linear infinite;
}

.orbit-shell-middle {
  inset: 23%;
  border-color: rgba(200,156,75,.20);
  animation: spinReverse 20s linear infinite;
}

.orbit-shell-inner {
  inset: 33%;
  border-color: rgba(10,34,69,.10);
  animation: spinSlow 18s linear infinite;
}

.ingredients-core {
  position: relative;
  z-index: 2;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.78) 0%, rgba(255,255,255,0) 22%),
    linear-gradient(180deg, #f1eadc 0%, #e7dece 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.94), 0 26px 46px rgba(8,25,49,.10);
  animation: coreFloat 6.5s ease-in-out infinite;
}

.core-halo {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,156,75,.16) 0%, rgba(200,156,75,0) 72%);
}

.core-pulse {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  border: 1px solid rgba(200,156,75,.18);
  opacity: 0;
}

.pulse-one { animation: coreRipple 2.8s ease-out infinite; }
.pulse-two { animation: coreRipple 2.8s ease-out infinite 1.4s; }

.ingredients-core img {
  position: relative;
  z-index: 1;
  width: 48%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(8,25,49,.08));
}

.core-spark {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(255,255,255,.22);
}

.spark-one {
  top: 22%;
  left: 20%;
  animation: sparkMove 4.5s ease-in-out infinite;
}

.spark-two {
  right: 18%;
  top: 35%;
  width: 10px;
  height: 10px;
  background: #5f8ebd;
  animation: sparkMove 5.2s ease-in-out infinite 1s;
}

.spark-three {
  bottom: 22%;
  left: 28%;
  width: 8px;
  height: 8px;
  background: #b7d642;
  animation: sparkMove 4s ease-in-out infinite 1.8s;
}

.ingredient-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 16px 32px rgba(8,25,49,.10), inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  transition: transform .32s ease, box-shadow .32s ease, opacity .32s ease;
  animation: badgeFloat 6.5s ease-in-out infinite;
}

.ingredient-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ingredient-float span {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ingredient-float.is-active {
  box-shadow: 0 20px 40px rgba(8,25,49,.14), 0 0 0 1px rgba(200,156,75,.12), inset 0 1px 0 rgba(255,255,255,.90);
  transform: scale(1.06);
}

.float-pap {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.float-hydro {
  top: 20%;
  right: 2%;
  animation-delay: .8s;
}

.float-aloe {
  bottom: 20%;
  left: 2%;
  animation-delay: 1.4s;
}

.float-potassium {
  bottom: 10%;
  right: 8%;
  animation-delay: 2s;
}

.science-caption {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(78%, 320px);
  text-align: center;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: 0 18px 34px rgba(8,25,49,.08);
  backdrop-filter: blur(7px);
}

.science-caption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 900;
}

.science-caption span {
  display: block;
  color: #7c6e61;
  font-size: 13px;
  line-height: 1.8;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes coreFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes sciencePulse {
  0%, 100% { transform: scale(1); opacity: .72; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes sparkMove {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .95; }
  50% { transform: translate(4px,-6px) scale(1.14); opacity: .7; }
}

@keyframes coreRipple {
  0% { transform: scale(.88); opacity: 0; }
  18% { opacity: .65; }
  100% { transform: scale(1.22); opacity: 0; }
}

@media (max-width: 1120px) {
  .ingredients-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ingredients-visual {
    order: -1;
  }

  .ingredients-scene {
    width: min(100%, 430px);
  }
}

@media (max-width: 760px) {
  .ingredients-panel {
    padding: 22px 16px 18px;
    border-radius: 28px;
  }

  .ingredients-badge {
    min-height: 38px;
    font-size: 12px;
    margin-bottom: 14px;
  }

  .ingredients-copy h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .ingredients-lead {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.95;
  }

  .ingredients-list::before {
    right: 27px;
  }

  .ingredient-item {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 14px 14px 14px 12px;
    border-radius: 22px;
  }

  .ingredient-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .ingredient-icon-wrap img {
    width: 36px;
    height: 36px;
  }

  .ingredient-overline {
    font-size: 11px;
  }

  .ingredient-text h3 {
    font-size: 16px;
    line-height: 1.6;
  }

  .ingredient-text p {
    font-size: 12px;
    line-height: 1.8;
  }

  .ingredients-scene {
    width: min(100%, 330px);
  }

  .ingredient-float {
    min-height: 44px;
    padding: 8px 10px 8px 8px;
    gap: 8px;
  }

  .ingredient-float img {
    width: 24px;
    height: 24px;
  }

  .ingredient-float span {
    font-size: 10px;
  }

  .science-caption {
    width: min(90%, 250px);
    padding: 12px 14px;
    border-radius: 18px;
  }

  .science-caption strong {
    font-size: 15px;
  }

  .science-caption span {
    font-size: 11px;
  }
}

@media (max-width: 540px) {
  .ingredients-section {
    padding: 4px 0 24px;
  }

  .ingredient-item:hover,
  .ingredient-item.is-active {
    transform: translateY(-3px);
  }

  .ingredients-list::before {
    display: none;
  }

  .ingredient-float {
    min-height: 0;
    padding: 8px;
  }

  .ingredient-float span {
    display: none;
  }

  .float-pap { top: 11%; left: 9%; }
  .float-hydro { top: 14%; right: 3%; }
  .float-aloe { bottom: 28%; left: 4%; }
  .float-potassium { bottom: 23%; right: 6%; }
}

@media (prefers-reduced-motion: reduce) {
  .ingredient-item,
  .ingredient-item::before,
  .ingredient-icon-wrap,
  .science-glow,
  .orbit-shell,
  .ingredients-core,
  .core-pulse,
  .core-spark,
  .ingredient-float {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== v9 hero spacing + mobile polish fix ===== */
.hero {
  min-height: auto;
  padding: clamp(26px, 4vw, 44px) 0 12px;
}

.hero-grid-v2 {
  align-items: start;
  gap: clamp(18px, 3vw, 30px);
}

.hero-visual {
  gap: 12px;
}

.hero-results-stack-v2 {
  margin-top: -16px;
}

.stack-arrow {
  transform: none;
}

.hero-proof {
  padding: 4px 0 18px;
}

@media (max-width: 920px) {
  .hero {
    padding: 20px 0 10px;
  }

  .hero-grid-v2 {
    gap: 16px;
  }

  .hero-visual {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }

  .hero-product-stage-v2 {
    min-height: 392px;
    padding-top: 92px;
  }

  .hero-floating-cards {
    top: 14px;
    width: min(100%, 420px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-mini-card {
    padding: 12px 12px 12px 14px;
    min-width: 0;
  }

  .mini-card-copy strong {
    font-size: 16px;
  }

  .mini-card-copy span {
    font-size: 12px;
  }

  .mini-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 18px;
  }

  .hero-results-stack-v2 {
    max-width: 540px;
    gap: 10px;
    margin-top: -2px;
  }

  .result-card {
    padding: 8px;
    border-radius: 18px;
  }

  .result-image {
    height: 128px;
  }

  .stack-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .hero-price-row-v2 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 16px;
  }

  .hero-cta-split {
    width: min(100%, 560px);
  }

  .hero-note-v2 {
    margin-top: 8px;
  }

  .trust-list-v2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 13px;
  }

  .hero-proof-shell {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 28px;
  }

  .hero-proof-item {
    padding: 18px 12px 16px;
  }

  .hero-proof-item:nth-child(2)::after {
    display: none;
  }

  .hero-proof-item:nth-child(odd)::after {
    left: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 16px 0 8px;
  }

  .hero-grid-v2 {
    gap: 14px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
  }

  .hero-desc {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-price-row-v2 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
  }

  .old-price-wrap {
    justify-items: center;
  }

  .hero-cta-split {
    min-height: 64px;
    padding: 7px;
    gap: 8px;
  }

  .hero-cta-split .hero-cta-text {
    font-size: 17px;
  }

  .hero-cta-split .hero-cta-price {
    min-width: 104px;
    min-height: 48px;
    font-size: 17px;
  }

  .hero-product-stage-v2 {
    min-height: 330px;
    padding-top: 82px;
    border-radius: 24px;
  }

  .product-frame-v2 {
    width: min(100%, 300px);
  }

  .hero-product-image {
    max-width: 274px;
  }

  .hero-floating-cards {
    width: min(100%, 320px);
    padding: 0;
  }

  .hero-mini-card {
    padding: 10px;
    border-radius: 16px;
    gap: 8px;
  }

  .mini-card-copy strong {
    font-size: 14px;
  }

  .mini-card-copy span {
    font-size: 11px;
  }

  .hero-results-stack-v2 {
    grid-template-columns: 1fr auto 1fr;
    max-width: 100%;
    gap: 8px;
    margin-top: 2px;
  }

  .result-image {
    height: 100px;
  }

  .stack-arrow {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .result-badge {
    min-height: 22px;
    padding: 0 9px;
    font-size: 10px;
  }

  .hero-proof {
    padding: 6px 0 14px;
  }

  .hero-proof-shell {
    border-radius: 22px;
  }

  .hero-proof-item strong {
    font-size: 22px;
  }

  .hero-proof-item span {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-product-stage-v2 {
    min-height: 310px;
    padding-top: 78px;
  }

  .product-frame-v2 {
    width: min(100%, 280px);
  }

  .hero-product-image {
    max-width: 252px;
  }

  .hero-floating-cards {
    width: min(100%, 292px);
    gap: 8px;
  }

  .result-image {
    height: 88px;
  }

  .hero-proof-item {
    padding: 16px 8px 14px;
  }
}

/* ===== v10 hero visual cleanup for desktop + mobile ===== */
.hero-visual {
  gap: 16px;
}

.hero-product-stage-v2 {
  padding-bottom: 18px;
}

.hero-results-stack-v2 {
  position: relative;
  z-index: 5;
  margin-top: 8px;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(247,244,239,.88) 100%);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 18px 40px rgba(8,25,49,.10);
}

.result-card {
  background: #fff;
}

.stack-arrow {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #17355e 0%, #0f2749 100%);
  color: #fff;
  border: 1px solid rgba(224,185,108,.50);
  box-shadow: 0 14px 28px rgba(8,25,49,.14);
}

@media (max-width: 920px) {
  .hero-results-stack-v2 {
    max-width: 560px;
    margin-top: 6px;
    padding: 9px;
  }

  .hero-product-stage-v2 {
    min-height: 380px;
    padding-bottom: 14px;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    gap: 12px;
  }

  .hero-results-stack-v2 {
    order: 1;
    margin-top: 0;
    padding: 8px;
    border-radius: 20px;
    max-width: 100%;
  }

  .hero-product-stage-v2 {
    order: 2;
    min-height: 290px;
    padding-top: 76px;
    padding-bottom: 16px;
    border-radius: 22px;
  }

  .hero-floating-cards {
    inset: 10px 10px auto 10px;
    right: auto;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-mini-card {
    min-height: 58px;
    align-items: center;
    background: rgba(255,255,255,.94);
  }

  .mini-card-copy strong {
    font-size: 13px;
  }

  .mini-card-copy span {
    font-size: 10px;
    line-height: 1.5;
  }

  .mini-card-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .product-frame-v2 {
    width: min(100%, 286px);
    padding-bottom: 0;
  }

  .hero-product-image {
    max-width: 250px;
  }

  .result-card {
    padding: 7px;
    border-radius: 14px;
  }

  .result-image {
    height: 98px;
    border-radius: 10px;
  }

  .stack-arrow {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .floating-whatsapp {
    left: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-icon-wrap,
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .floating-whatsapp::after {
    inset: -6px;
  }

  .whatsapp-label {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-results-stack-v2 {
    padding: 7px;
    border-radius: 18px;
  }

  .hero-product-stage-v2 {
    min-height: 276px;
    padding-top: 72px;
  }

  .hero-floating-cards {
    inset: 8px 8px auto 8px;
  }

  .hero-mini-card {
    padding: 8px;
    min-height: 54px;
  }

  .product-frame-v2 {
    width: min(100%, 268px);
  }

  .hero-product-image {
    max-width: 238px;
  }

  .result-image {
    height: 88px;
  }

  .stack-arrow {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}

/* ===== v11 viewport density fix: reduce empty side space on zoomed / wide screens ===== */
:root {
  --maxw: 1440px;
}

.container {
  width: min(var(--maxw), calc(100% - clamp(24px, 4vw, 72px)));
}

@media (min-width: 1500px) {
  :root {
    --maxw: 1560px;
  }

  .hero > .container {
    width: min(1680px, calc(100% - clamp(36px, 5vw, 110px)));
  }

  .hero-grid-v2 {
    grid-template-columns: minmax(420px, .92fr) minmax(560px, 1.08fr);
    gap: clamp(28px, 4vw, 72px);
  }

  .hero-product-stage-v2 {
    min-height: clamp(500px, 31vw, 600px);
  }

  .product-frame-v2 {
    width: min(100%, 650px);
  }

  .hero-product-image {
    max-width: 590px;
  }

  .hero-results-stack-v2 {
    max-width: 830px;
  }

  .hero-proof-shell {
    max-width: none;
  }
}

@media (min-width: 1900px) {
  :root {
    --maxw: 1680px;
  }

  .hero > .container {
    width: min(1840px, calc(100% - clamp(44px, 5vw, 130px)));
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 28px, 100%);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 100%);
  }
}

/* ===== v12 REAL wide-screen / browser-zoom density fix =====
   The old fix only increased the outer container a little. The actual issue
   appears when the browser is zoomed out or the viewport becomes very wide:
   the hero cards, text, proof bar and reels keep small max-widths, so the
   page sits in the middle with large empty sides. These rules intentionally
   scale the desktop layout and widen the important sections while keeping
   mobile/tablet rules untouched. */
html,
body {
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  :root {
    --maxw: 1680px;
  }

  .container {
    width: min(var(--maxw), calc(100% - clamp(32px, 4vw, 88px)));
  }

  .hero > .container,
  .hero-proof > .container,
  .reels-section > .container {
    width: min(1760px, calc(100% - clamp(32px, 4vw, 88px)));
  }

  .hero-grid-v2 {
    grid-template-columns: minmax(520px, 1fr) minmax(620px, 1fr);
    gap: clamp(34px, 4vw, 76px);
  }

  .hero-copy h1 {
    max-width: 860px;
    font-size: clamp(64px, 4.9vw, 98px);
  }

  .hero-desc {
    max-width: 780px;
    font-size: clamp(20px, 1.35vw, 28px);
  }

  .hero-price-number {
    font-size: clamp(76px, 5vw, 112px);
  }

  .hero-price-currency {
    font-size: clamp(28px, 1.8vw, 42px);
  }

  .hero-cta-split {
    width: min(100%, 660px);
    min-height: 86px;
  }

  .hero-cta-text,
  .hero-cta-price {
    font-size: clamp(22px, 1.35vw, 30px);
  }

  .hero-product-stage-v2 {
    min-height: clamp(540px, 34vw, 720px);
  }

  .product-frame-v2 {
    width: min(100%, 780px);
  }

  .hero-product-image {
    max-width: 720px;
  }

  .hero-floating-cards {
    width: min(46%, 380px);
  }

  .hero-mini-card {
    min-height: 86px;
    padding: 16px;
  }

  .mini-card-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .mini-card-copy strong {
    font-size: 20px;
  }

  .mini-card-copy span {
    font-size: 14px;
  }

  .hero-results-stack-v2 {
    max-width: 980px;
    margin-top: -20px;
  }

  .result-card {
    padding: 12px;
  }

  .result-image {
    height: clamp(132px, 8vw, 185px);
  }

  .stack-arrow {
    width: 52px;
    height: 52px;
    font-size: 36px;
  }

  .hero-proof-shell {
    width: 100%;
    max-width: none;
  }

  .hero-proof-item {
    padding: clamp(22px, 1.8vw, 34px) 18px;
  }

  .hero-proof-item strong {
    font-size: clamp(36px, 2.6vw, 56px);
  }

  .hero-proof-item span {
    font-size: clamp(15px, .9vw, 20px);
  }

  .reels-shell {
    padding: clamp(36px, 2.6vw, 54px) clamp(30px, 2.8vw, 60px) clamp(30px, 2.5vw, 48px);
  }

  .reels-head h2 {
    font-size: clamp(38px, 2.7vw, 62px);
  }

  .reels-subtitle {
    max-width: 920px;
    font-size: clamp(17px, 1vw, 23px);
  }

  .reels-player-window {
    width: min(100%, clamp(430px, 26vw, 560px));
  }

  .reels-thumbs {
    gap: clamp(14px, 1.4vw, 28px);
  }

  .reel-thumb-text {
    font-size: clamp(14px, .9vw, 18px);
  }
}

@media (min-width: 1700px) {
  :root {
    --maxw: 2080px;
  }

  .container {
    width: min(var(--maxw), calc(100% - clamp(40px, 4vw, 120px)));
  }

  .hero > .container,
  .hero-proof > .container,
  .reels-section > .container {
    width: min(2180px, calc(100% - clamp(40px, 4vw, 120px)));
  }

  .header-shell {
    min-height: 104px;
  }

  .brand-logo {
    width: clamp(210px, 10vw, 280px);
  }

  .main-nav {
    gap: clamp(26px, 1.8vw, 46px);
  }

  .main-nav > a,
  .nav-drop-btn {
    font-size: clamp(16px, .8vw, 21px);
  }

  .nav-cta {
    min-height: 58px;
    padding-inline: 26px;
    font-size: clamp(16px, .8vw, 21px);
  }

  .lang-switch {
    width: 54px;
    height: 54px;
  }

  .hero {
    padding-top: clamp(38px, 3vw, 70px);
  }

  .hero-grid-v2 {
    grid-template-columns: minmax(680px, .98fr) minmax(800px, 1.02fr);
    gap: clamp(58px, 5vw, 130px);
  }

  .hero-copy h1 {
    max-width: 1050px;
    font-size: clamp(88px, 4.4vw, 138px);
  }

  .hero-desc {
    max-width: 930px;
    font-size: clamp(24px, 1.2vw, 36px);
  }

  .trust-list-v2,
  .hero-note-v2 {
    font-size: clamp(15px, .8vw, 19px);
  }

  .hero-product-stage-v2 {
    min-height: clamp(680px, 33vw, 880px);
  }

  .product-frame-v2 {
    width: min(100%, 960px);
  }

  .hero-product-image {
    max-width: 880px;
  }

  .hero-results-stack-v2 {
    max-width: 1160px;
  }

  .result-image {
    height: clamp(170px, 8vw, 230px);
  }
}

@media (min-width: 2400px) {
  :root {
    --maxw: 2600px;
  }

  .container {
    width: min(var(--maxw), calc(100% - clamp(56px, 4vw, 160px)));
  }

  .hero > .container,
  .hero-proof > .container,
  .reels-section > .container {
    width: min(2800px, calc(100% - clamp(56px, 4vw, 160px)));
  }

  .hero-grid-v2 {
    grid-template-columns: minmax(850px, 1fr) minmax(980px, 1fr);
    gap: clamp(90px, 6vw, 180px);
  }

  .hero-copy h1 {
    max-width: 1280px;
    font-size: clamp(116px, 4.1vw, 172px);
  }

  .hero-desc {
    max-width: 1120px;
    font-size: clamp(30px, 1.15vw, 44px);
  }

  .hero-price-number {
    font-size: clamp(118px, 4.4vw, 178px);
  }

  .hero-price-currency {
    font-size: clamp(42px, 1.5vw, 60px);
  }

  .hero-cta-split {
    width: min(100%, 860px);
    min-height: 106px;
    border-radius: 28px;
  }

  .hero-cta-text,
  .hero-cta-price {
    font-size: clamp(30px, 1vw, 40px);
  }

  .hero-product-stage-v2 {
    min-height: clamp(840px, 32vw, 1080px);
  }

  .product-frame-v2 {
    width: min(100%, 1180px);
  }

  .hero-product-image {
    max-width: 1080px;
  }

  .hero-floating-cards {
    width: min(45%, 520px);
  }

  .hero-mini-card {
    min-height: 112px;
    padding: 22px;
  }

  .mini-card-icon {
    width: 68px;
    height: 68px;
    font-size: 32px;
  }

  .mini-card-copy strong {
    font-size: 27px;
  }

  .mini-card-copy span {
    font-size: 18px;
  }

  .hero-results-stack-v2 {
    max-width: 1420px;
  }

  .result-image {
    height: clamp(225px, 7.6vw, 310px);
  }

  .stack-arrow {
    width: 68px;
    height: 68px;
    font-size: 50px;
  }

  .hero-proof-item strong {
    font-size: clamp(54px, 2vw, 78px);
  }

  .hero-proof-item span {
    font-size: clamp(20px, .75vw, 26px);
  }

  .reels-player-window {
    width: min(100%, 690px);
  }
}

/* ===== responsive comparison visual ===== */
.comparison-visual-wrap {
  width: min(100%, 1040px);
  margin: clamp(16px, 3vw, 30px) auto 0;
}

.comparison-visual {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: clamp(10px, 2.4vw, 24px);
  border-radius: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 18% 10%, rgba(246, 215, 143, .22), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(214, 231, 255, .62), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.36));
  border: 1px solid rgba(200, 156, 75, .18);
  box-shadow: 0 24px 56px rgba(10, 22, 42, .08);
  overflow: hidden;
  isolation: isolate;
}

.comparison-visual::before,
.comparison-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.comparison-visual::before {
  inset: 10px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,0));
}

.comparison-visual::after {
  width: min(68%, 560px);
  height: 34px;
  left: 50%;
  bottom: clamp(10px, 2vw, 22px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(9, 28, 55, .12);
  filter: blur(18px);
}

.comparison-visual-image {
  display: block;
  width: clamp(280px, 72vw, 860px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  flex: 0 1 auto;
  filter: drop-shadow(0 18px 24px rgba(10, 22, 42, .10));
  transform: translateY(0) scale(1);
  transition: transform .32s ease, filter .32s ease;
}

.comparison-visual:hover .comparison-visual-image,
.comparison-visual:focus-within .comparison-visual-image {
  transform: translateY(-6px) scale(1.015);
  filter: drop-shadow(0 24px 30px rgba(10, 22, 42, .14));
}

html[lang="ar"] .comparison-visual-ar,
html:not([lang="en"]) .comparison-visual-ar { display: flex; }
html[lang="ar"] .comparison-visual-en,
html:not([lang="en"]) .comparison-visual-en { display: none; }
html[lang="en"] .comparison-visual-ar { display: none; }
html[lang="en"] .comparison-visual-en { display: flex; }

@media (max-width: 920px) {
  .comparison-visual-wrap { width: min(100%, 720px); }
  .comparison-visual { padding: clamp(8px, 2.2vw, 16px); border-radius: 28px; }
  .comparison-visual-image { width: min(100%, 680px); }
}

@media (max-width: 640px) {
  .comparison-visual-wrap { margin-top: 14px; }
  .comparison-visual { padding: 8px; border-radius: 22px; }
  .comparison-visual-image { width: 100%; }
  .comparison-visual:hover .comparison-visual-image,
  .comparison-visual:focus-within .comparison-visual-image { transform: translateY(-3px) scale(1.006); }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-visual-image {
    transition: none !important;
  }
  .comparison-visual:hover .comparison-visual-image,
  .comparison-visual:focus-within .comparison-visual-image {
    transform: none !important;
  }
}


/* ===== Final premium guarantee + footer override ===== */
.guarantee-section {
  padding: 26px 0 70px;
}

.guarantee-card.guarantee-card-pro {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(247,242,233,.96) 52%, rgba(243,236,224,.92) 100%);
  border: 1px solid rgba(200,156,75,.20);
  box-shadow: 0 34px 80px rgba(6,23,46,.10), inset 0 1px 0 rgba(255,255,255,.95);
}

.guarantee-card.guarantee-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.66), transparent 25%),
    linear-gradient(118deg, transparent 8%, rgba(200,156,75,.08) 12%, transparent 14%),
    linear-gradient(68deg, transparent 24%, rgba(10,34,69,.05) 27%, transparent 30%),
    linear-gradient(106deg, transparent 66%, rgba(200,156,75,.10) 68%, transparent 70%);
  pointer-events: none;
}

.guarantee-card.guarantee-card-pro::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -120px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,191,123,.18), rgba(226,191,123,0));
  filter: blur(8px);
  pointer-events: none;
}

.guarantee-badge-shell {
  position: relative;
  display: grid;
  place-items: center;
}

.guarantee-badge.guarantee-badge-3d {
  position: relative;
  isolation: isolate;
  width: clamp(200px, 24vw, 250px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px 20px;
  border-radius: 50%;
  text-align: center;
  color: var(--navy-900);
  transform: perspective(1200px) rotateX(11deg) rotateY(-7deg);
  background:
    radial-gradient(circle at 28% 24%, #fff3cf 0%, rgba(255,243,207,.92) 16%, rgba(255,243,207,0) 22%),
    radial-gradient(circle at 32% 26%, #f3d189 0%, #e0b35b 36%, #bf832a 72%, #8f5c18 100%);
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,.78),
    inset 0 -18px 26px rgba(110,67,12,.22),
    inset 16px 0 24px rgba(255,243,207,.14),
    0 34px 46px rgba(143,92,24,.24),
    0 12px 18px rgba(6,23,46,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}

.guarantee-card.guarantee-card-pro:hover .guarantee-badge.guarantee-badge-3d {
  transform: perspective(1200px) rotateX(8deg) rotateY(-4deg) translateY(-5px);
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,.82),
    inset 0 -18px 26px rgba(110,67,12,.24),
    0 38px 54px rgba(143,92,24,.28),
    0 14px 20px rgba(6,23,46,.12);
}

.guarantee-badge.guarantee-badge-3d::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 230deg, #f7e2b2, #ae7526, #f8dfaa, #d5a14b, #f7e2b2);
  z-index: -2;
  filter: saturate(1.1);
  box-shadow: 0 0 0 8px rgba(247,226,178,.22);
}

.guarantee-badge.guarantee-badge-3d::after {
  content: "";
  position: absolute;
  inset: 10px 16px auto 16px;
  height: 34%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,0));
  filter: blur(2px);
  opacity: .9;
}

.guarantee-badge .small {
  display: block;
  position: relative;
  z-index: 1;
  color: #072347;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 900;
  line-height: 1.15;
}

.guarantee-badge .badge-top {
  margin-bottom: -4px;
}

.guarantee-badge .badge-bottom {
  margin-top: -6px;
}

.guarantee-badge strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(86px, 8vw, 118px);
  line-height: .92;
  letter-spacing: -.04em;
  color: #041c3a;
  text-shadow: 0 4px 0 rgba(255,255,255,.28), 0 16px 22px rgba(69,42,7,.12);
}

.guarantee-copy {
  position: relative;
  z-index: 1;
}

.guarantee-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(200,156,75,.10);
  border: 1px solid rgba(200,156,75,.18);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
}

.guarantee-copy h2 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.guarantee-copy p {
  margin: 0 0 18px;
  max-width: 720px;
  color: #5d6a7d;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2;
}

.guarantee-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guarantee-points li {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 16px 28px rgba(6,23,46,.06);
  color: var(--navy-800);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

.guarantee-points li::before {
  content: "✓";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f6d78f 0%, #ddb165 55%, #c8913a 100%);
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 10px 16px rgba(200,156,75,.18);
}

.guarantee-action-row {
  display: flex;
  align-items: center;
  gap: 14px 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.guarantee-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f6d78f 0%, #ddb165 52%, #c8913a 100%);
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(200,156,75,.18), inset 0 1px 0 rgba(255,255,255,.58);
}

.guarantee-note {
  color: #7d6a4f;
  font-size: 13px;
  font-weight: 700;
}

.site-footer.footer-pro {
  position: relative;
  padding: 0;
  background: #f4f4f6;
  color: var(--navy-900);
  border-top: 1px solid rgba(17,40,69,.08);
}

.footer-shell {
  position: relative;
  padding: clamp(34px, 4vw, 52px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 30px;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: #313a4c;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.3;
}

.footer-store p {
  margin: 0;
  max-width: 440px;
  color: #3b4558;
  font-size: 16px;
  line-height: 2.05;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 28px;
}

.social-btn {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(17,40,69,.08);
  color: #576171;
  box-shadow: 0 12px 20px rgba(6,23,46,.05), inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .2s ease, color .2s ease, box-shadow .2s ease;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-btn:hover {
  transform: translateY(-2px);
  color: var(--gold-500);
  box-shadow: 0 16px 24px rgba(6,23,46,.08);
}

.footer-cert-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-cert {
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-cert-icon {
  width: 66px;
  height: 54px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.02em;
  box-shadow: 0 10px 18px rgba(6,23,46,.06);
}

.footer-cert-icon-image {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  min-width: 82px;
  min-height: 54px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-cert-icon-image img {
  display: block;
  width: auto;
  max-width: 92px;
  height: 54px;
  object-fit: contain;
}

.footer-cert-icon-vat-image img {
  max-width: 98px;
}

.footer-cert-icon-cr-image img {
  max-width: 112px;
}

.footer-cert-icon-vat {
  background: linear-gradient(180deg, #11805c 0%, #0f7052 100%);
  color: #ffdf71;
}

.footer-cert-icon-sa {
  background: linear-gradient(180deg, #0b7d55 0%, #096746 100%);
  color: #fff;
}

.footer-cert-copy span {
  display: block;
  color: #616b7d;
  font-size: 14px;
  line-height: 1.5;
}

.footer-cert-copy strong {
  display: block;
  color: #2f3848;
  font-size: 16px;
  font-weight: 800;
  margin-top: 3px;
}

.footer-links-list,
.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links-list {
  display: grid;
  gap: 14px;
}

.footer-links-list a {
  color: #384255;
  font-size: 16px;
  line-height: 1.7;
  transition: color .2s ease, transform .2s ease;
}

.footer-links-list a:hover {
  color: var(--gold-500);
  transform: translateX(-3px);
}

html[lang="en"] .footer-links-list a:hover {
  transform: translateX(3px);
}

.footer-contact-list {
  display: grid;
  gap: 16px;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #354053;
  font-size: 16px;
  line-height: 1.7;
}

.footer-contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(17,40,69,.08);
  color: #576171;
  box-shadow: 0 10px 18px rgba(6,23,46,.05);
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-contact-list a:hover .footer-contact-icon {
  color: var(--gold-500);
}

.footer-bottombar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(17,40,69,.08);
}

.payment-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pay-badge {
  min-width: 88px;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,40,69,.08);
  color: #394252;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(6,23,46,.05);
}

.footer-copyright {
  margin: 0;
  color: #3c4556;
  font-size: 16px;
}

.floating-whatsapp {
  right: 22px;
  left: auto;
  bottom: 22px;
  width: auto;
  height: 56px;
  min-width: 172px;
  padding: 0 18px;
  gap: 12px;
  border-radius: 999px;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}

.whatsapp-3d-layers,
.whatsapp-3d-layers::before,
.whatsapp-3d-layers::after {
  border-radius: 999px;
}

.whatsapp-3d-layers::after {
  inset: 7px 16px auto 16px;
  height: 18px;
  transform: none;
}

.whatsapp-icon-wrap {
  width: 28px;
  height: 28px;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

.whatsapp-label {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: none;
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  box-shadow: none;
  font-size: 18px;
  font-weight: 800;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp::after {
  display: none;
}

.whatsapp-widget {
  left: auto;
  right: 20px;
  bottom: 90px;
}

html[lang="en"] .footer-grid {
  direction: ltr;
}

html[lang="en"] .footer-store,
html[lang="en"] .footer-links,
html[lang="en"] .footer-contact,
html[lang="en"] .footer-copyright {
  text-align: left;
}

html[lang="en"] .footer-contact-list a,
html[lang="en"] .footer-bottombar {
  direction: ltr;
}

html[lang="en"] .footer-socials,
html[lang="en"] .payment-badges,
html[lang="en"] .footer-cert-row {
  justify-content: flex-start;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .footer-store {
    grid-column: 1 / -1;
  }

  .guarantee-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .guarantee-card.guarantee-card-pro {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 22px 18px;
  }

  .guarantee-badge.guarantee-badge-3d {
    width: min(100%, 220px);
    transform: none;
  }

  .guarantee-copy,
  .footer-col,
  .footer-store,
  .footer-links,
  .footer-contact,
  html[lang="en"] .footer-store,
  html[lang="en"] .footer-links,
  html[lang="en"] .footer-contact {
    text-align: center;
  }

  .guarantee-kicker {
    margin-inline: auto;
  }

  .guarantee-action-row {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-socials,
  .footer-cert-row,
  .payment-badges {
    justify-content: center;
  }

  .footer-contact-list a {
    justify-content: center;
  }

  .footer-bottombar {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 0;
    height: 56px;
    padding: 0 16px;
  }

  .whatsapp-widget {
    right: 14px;
    left: 14px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .footer-cert {
    min-width: 100%;
    justify-content: center;
  }

  .footer-cert-icon-image img {
    max-width: 88px;
    height: 50px;
  }

  .footer-cert-icon-cr-image img {
    max-width: 106px;
  }

  .pay-badge {
    min-width: 74px;
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 14px;
  }
}


/* ===== Sticky product CTA bar ===== */
:root { --sticky-cta-height: 86px; }

body {
  padding-bottom: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom, 0px));
}

.sticky-order-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  min-height: var(--sticky-cta-height);
  padding: 12px clamp(12px, 2vw, 22px) calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 249, 246, .94);
  border-top: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 -18px 45px rgba(5,22,47,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  direction: rtl;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  color: var(--navy-900);
}

.sticky-cta-price {
  flex: 0 0 auto;
  min-width: clamp(92px, 8vw, 140px);
  display: grid;
  gap: 2px;
  text-align: center;
  line-height: 1.2;
}

.sticky-cta-price strong {
  color: var(--navy-900);
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 950;
  white-space: nowrap;
}

.sticky-cta-price small {
  color: #8b745a;
  font-size: clamp(10px, .95vw, 13px);
  font-weight: 700;
  white-space: nowrap;
}

.sticky-cta-button {
  min-height: 54px;
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1d2f50 0%, #112542 100%);
  color: #fff;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(5,22,47,.22), inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.sticky-order-cta:hover .sticky-cta-button {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(5,22,47,.28), inset 0 1px 0 rgba(255,255,255,.16);
  background: linear-gradient(180deg, #22385f 0%, #122947 100%);
}

.floating-whatsapp {
  bottom: calc(var(--sticky-cta-height) + 18px);
}

.whatsapp-widget {
  bottom: calc(var(--sticky-cta-height) + 92px);
}

html[lang="en"] .sticky-order-cta {
  direction: ltr;
}

@media (max-width: 640px) {
  :root { --sticky-cta-height: 76px; }

  .sticky-order-cta {
    gap: 9px;
    padding-inline: 10px;
  }

  .sticky-cta-price {
    min-width: 82px;
  }

  .sticky-cta-button {
    min-height: 50px;
  }

  .floating-whatsapp {
    bottom: calc(var(--sticky-cta-height) + 14px);
  }

  .whatsapp-widget {
    bottom: calc(var(--sticky-cta-height) + 84px);
  }
}

/* ===== Professional mobile hero/header refinement - non-destructive override =====
   Keeps the existing desktop identity and sections intact, but makes the mobile
   first screen tighter, closer to the web hierarchy, with a visible account + CTA. */
.mobile-header-actions {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    box-shadow: 0 10px 24px rgba(3,17,36,.18);
  }

  .header-shell {
    min-height: 66px;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .brand-logo {
    width: 132px;
  }

  .mobile-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
  }

  .mobile-header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-header-account {
    min-width: 38px;
    padding: 0 10px;
    color: rgba(255,255,255,.94);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
  }

  .mobile-header-account svg {
    width: 17px;
    height: 17px;
  }

  .mobile-header-order {
    min-width: 64px;
    padding: 0 12px;
    color: var(--navy-900);
    background: linear-gradient(180deg, #f7d58d 0%, #ddb164 58%, #c8913a 100%);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 18px rgba(200,156,75,.16), inset 0 1px 0 rgba(255,255,255,.55);
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 20px;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-grid-v2 {
    gap: 14px;
  }

  .hero-copy {
    order: 1;
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-visual {
    order: 2;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero-copy h1 {
    margin-top: 8px;
  }

  .hero-desc {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .topbar-track {
    padding: 6px 0;
  }

  .header-shell {
    min-height: 58px;
    gap: 7px;
  }

  .brand-logo {
    width: 108px;
  }

  .mobile-header-actions {
    gap: 6px;
  }

  .mobile-header-action {
    min-height: 34px;
    border-radius: 12px;
    font-size: 11px;
  }

  .mobile-header-account {
    padding: 0 8px;
  }

  .mobile-header-account span {
    display: none;
  }

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

  .mobile-header-order {
    min-width: 56px;
    padding: 0 10px;
  }

  .mobile-toggle {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 18px;
  }

  .hero {
    padding: 12px 0 6px;
  }

  .hero-grid-v2 {
    gap: 12px;
  }

  .hero-copy h1 {
    margin: 4px 0 8px;
    font-size: clamp(29px, 8.2vw, 38px);
    line-height: 1.14;
  }

  .hero-desc {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.75;
  }

  .hero-price-row-v2 {
    margin-bottom: 10px;
    gap: 6px 10px;
  }

  .hero-price-number {
    font-size: 44px;
  }

  .hero-price-currency {
    font-size: 18px;
  }

  .old-price {
    font-size: 17px;
  }

  .hero-cta-split {
    min-height: 58px;
    border-radius: 16px;
  }

  .hero-cta-split .hero-cta-text {
    font-size: 16px;
  }

  .hero-cta-split .hero-cta-price {
    min-width: 94px;
    min-height: 44px;
    font-size: 16px;
  }

  .hero-note-v2 {
    margin-top: 6px;
    font-size: 12px;
  }

  .trust-list-v2 {
    gap: 7px 9px;
    font-size: 11px;
  }

  .hero-results-stack-v2 {
    order: 2;
    padding: 6px;
    margin-top: 0;
  }

  .hero-product-stage-v2 {
    order: 1;
    min-height: 252px;
    padding-top: 62px;
    padding-bottom: 10px;
    border-radius: 20px;
  }

  .hero-floating-cards {
    inset: 7px 7px auto 7px;
    gap: 6px;
  }

  .hero-mini-card {
    min-height: 48px;
    padding: 7px;
    border-radius: 14px;
  }

  .mini-card-copy strong {
    font-size: 12px;
  }

  .mini-card-copy span {
    font-size: 9.5px;
    line-height: 1.35;
  }

  .mini-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 14px;
  }

  .product-frame-v2 {
    width: min(100%, 248px);
  }

  .hero-product-image {
    max-width: 220px;
  }

  .result-image {
    height: 82px;
  }

  .stack-arrow {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .hero-proof {
    padding-top: 4px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 98px;
  }

  .mobile-header-order {
    min-width: 50px;
    padding-inline: 8px;
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .hero-product-stage-v2 {
    min-height: 236px;
  }

  .product-frame-v2 {
    width: min(100%, 232px);
  }

  .hero-product-image {
    max-width: 206px;
  }

  .result-image {
    height: 76px;
  }
}

/* ===== Customer profile reviews + desktop account polish =====
   Non-destructive add-on: keeps the existing reviews card and header logic,
   while upgrading the reviews presentation to match the requested profile style. */
.nav-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 18px;
  color: rgba(255,255,255,.95);
  font-size: 14px;
  font-weight: 900;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: .22s ease;
}

.nav-account:hover {
  color: var(--gold-300);
  border-color: rgba(224,185,108,.36);
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}

.nav-account svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.reviews-profile-card {
  overflow: hidden;
}

.reviews-card-head {
  margin-bottom: 18px;
}

.reviews-card-head h2 {
  margin-bottom: 8px;
}

.reviews-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 700;
}

.review-profile-list {
  gap: 14px;
}

.review-profile-item {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 148px;
  padding: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 12%, rgba(246,215,143,.16), transparent 34%),
    rgba(255,255,255,.82);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 14px 34px rgba(5,22,47,.06);
}

.review-profile-item::after {
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  color: rgba(200,156,75,.16);
  font-size: 82px;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-avatar-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 118px;
  aspect-ratio: 1 / 1.06;
  border-radius: 20px;
  overflow: hidden;
  background: #f7f0e6;
  box-shadow: 0 12px 24px rgba(5,22,47,.10);
}

.review-avatar {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-profile-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.review-profile-copy .stars {
  margin-bottom: 8px;
  font-size: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.review-profile-copy p {
  color: var(--navy-900);
  font-size: 17px;
  line-height: 1.85;
  font-weight: 900;
}

.review-profile-copy span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7c8796;
  font-size: 13px;
  font-weight: 800;
}

.review-profile-copy span::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: currentColor;
  opacity: .8;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5A7.5 7.5 0 0 0 4.5 10c0 5.3 7.5 11.5 7.5 11.5S19.5 15.3 19.5 10A7.5 7.5 0 0 0 12 2.5Zm0 10.1A2.6 2.6 0 1 1 12 7.4a2.6 2.6 0 0 1 0 5.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5A7.5 7.5 0 0 0 4.5 10c0 5.3 7.5 11.5 7.5 11.5S19.5 15.3 19.5 10A7.5 7.5 0 0 0 12 2.5Zm0 10.1A2.6 2.6 0 1 1 12 7.4a2.6 2.6 0 0 1 0 5.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (min-width: 921px) {
  .reviews-profile-card {
    padding: 28px 24px;
  }
}

@media (max-width: 1100px) and (min-width: 921px) {
  .review-profile-item {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }

  .review-avatar-wrap {
    width: 104px;
    border-radius: 18px;
  }

  .review-profile-copy p {
    font-size: 15px;
  }
}

@media (max-width: 920px) {
  .nav-account {
    display: none;
  }

  .review-profile-item {
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 156px;
  }

  .review-avatar-wrap {
    width: 132px;
  }
}

@media (max-width: 520px) {
  .reviews-card-head p {
    font-size: 13px;
  }

  .review-profile-item {
    grid-template-columns: 114px minmax(0, 1fr);
    gap: 12px;
    min-height: 134px;
    padding: 12px;
    border-radius: 19px;
  }

  .review-profile-item::after {
    top: 6px;
    left: 12px;
    font-size: 60px;
  }

  .review-avatar-wrap {
    width: 114px;
    border-radius: 16px;
  }

  .review-profile-copy .stars {
    margin-bottom: 5px;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .review-profile-copy p {
    font-size: 14px;
    line-height: 1.75;
  }

  .review-profile-copy span {
    margin-top: 5px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .review-profile-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .review-avatar-wrap {
    width: 96px;
  }

  .review-profile-copy p {
    font-size: 13px;
  }
}


/* ===== Step 3: final content additions before handoff ===== */
.comparison-html-wrap {
  max-width: 980px;
}

.comparison-choice-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(14px, 2vw, 22px);
  width: 100%;
  padding: clamp(16px, 2.5vw, 26px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(246,215,143,.20), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,244,236,.92));
  border: 1px solid rgba(200,156,75,.18);
  box-shadow: 0 28px 72px rgba(5,22,47,.10);
}

.choice-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 18px 38px rgba(5,22,47,.07);
}

.rivaeel-choice-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(246,215,143,.30), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,251,244,.95));
  border-color: rgba(200,156,75,.24);
}

.choice-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.choice-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #8a5e35;
  background: #f7eee4;
  font-size: 26px;
  font-weight: 900;
}

.choice-icon-gold {
  color: var(--navy-900);
  background: linear-gradient(180deg, #f7dc9a, #c89c4b);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 14px 24px rgba(200,156,75,.22);
}

.choice-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #8792a4;
  font-size: 12px;
  font-weight: 800;
}

.choice-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.choice-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.choice-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 18px;
  color: var(--navy-800);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,40,69,.07);
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 900;
}

.choice-list li::before {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.choice-list-muted li::before {
  content: "•";
  color: #8a5e35;
  background: #f4e8dc;
}

.choice-list-positive li::before {
  content: "✓";
  color: var(--navy-900);
  background: linear-gradient(180deg, #f7dc9a, #c89c4b);
}

.comparison-vs {
  align-self: center;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: linear-gradient(180deg, #fff7df, #e0b96c);
  border: 6px solid rgba(255,255,255,.92);
  box-shadow: 0 18px 32px rgba(5,22,47,.14);
  font-size: 20px;
  font-weight: 900;
  direction: ltr;
}

.guarantee-proof-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guarantee-proof-cards li {
  min-height: 126px;
  align-items: flex-start;
}

.guarantee-proof-cards li::before {
  content: none;
}

.guarantee-point-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--navy-900);
  background: linear-gradient(180deg, #f7dc9a, #c89c4b);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58), 0 12px 20px rgba(200,156,75,.20);
  font-weight: 900;
}

.guarantee-proof-cards strong {
  display: block;
  color: var(--navy-900);
  font-size: 16px;
  line-height: 1.55;
}

.guarantee-proof-cards small {
  display: block;
  margin-top: 4px;
  color: #6b7688;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.8;
}

.faq-section {
  position: relative;
  padding: 18px 0 36px;
}

.faq-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 10%, rgba(246,215,143,.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,242,233,.96));
  border: 1px solid rgba(200,156,75,.18);
  box-shadow: 0 30px 74px rgba(5,22,47,.09);
}

.faq-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(104deg, transparent 18%, rgba(200,156,75,.07) 20%, transparent 23%),
    linear-gradient(72deg, transparent 64%, rgba(10,34,69,.04) 66%, transparent 68%);
  pointer-events: none;
}

.faq-head,
.faq-list {
  position: relative;
  z-index: 1;
}

.faq-head {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--gold-500);
  background: rgba(200,156,75,.10);
  border: 1px solid rgba(200,156,75,.20);
  font-size: 12px;
  font-weight: 900;
}

.faq-head h2 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.22;
  font-weight: 900;
}

.faq-head h2 span {
  color: var(--gold-500);
}

.faq-head p {
  margin: 0 auto;
  color: #687486;
  font-size: clamp(14px, 1.45vw, 18px);
  line-height: 1.9;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 14px 30px rgba(5,22,47,.055);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding: 18px 22px;
  color: var(--navy-900);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: linear-gradient(180deg, #f7dc9a, #c89c4b);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #647085;
  font-size: 14px;
  line-height: 1.95;
  font-weight: 700;
}

@media (max-width: 920px) {
  .comparison-choice-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 26px;
  }

  .choice-card {
    min-height: 0;
    border-radius: 22px;
  }

  .comparison-vs {
    width: 58px;
    height: 58px;
    justify-self: center;
    margin: -4px 0;
    font-size: 16px;
  }

  .guarantee-proof-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .comparison-html-wrap {
    margin-top: 14px;
  }

  .choice-card-head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .choice-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 16px;
    font-size: 22px;
  }

  .choice-card h3 {
    font-size: 24px;
  }

  .choice-list {
    gap: 9px;
  }

  .choice-list li {
    min-height: 48px;
    padding: 9px 12px;
    border-radius: 15px;
    font-size: 13px;
  }

  .faq-section {
    padding: 10px 0 24px;
  }

  .faq-shell {
    padding: 20px 14px;
    border-radius: 26px;
  }

  .faq-head {
    margin-bottom: 18px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 15px 14px;
    font-size: 14px;
  }

  .faq-item summary::after {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 20px;
  }

  .faq-item p {
    padding: 0 14px 16px;
    font-size: 13px;
  }

  .guarantee-proof-cards li {
    min-height: auto;
  }
}

/* ===== Step 5: moderated customer review submission ===== */
.review-submit-card {
  grid-column: 1 / -1;
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 34px);
  background:
    radial-gradient(circle at 8% 12%, rgba(246,215,143,.18), transparent 32%),
    radial-gradient(circle at 92% 5%, rgba(11,36,70,.07), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(250,246,238,.92));
}

.review-submit-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(200,156,75,.13);
  pointer-events: none;
}

.review-submit-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.review-submit-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--gold-500);
  background: rgba(200,156,75,.10);
  border: 1px solid rgba(200,156,75,.20);
  font-size: 12px;
  font-weight: 900;
}

.review-submit-head h2 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: clamp(28px, 3.6vw, 44px);
}

.review-submit-head p {
  margin: 0 auto;
  color: #647085;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.95;
  font-weight: 800;
}

.customer-review-form {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(16px, 2.4vw, 24px);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 20px 44px rgba(5,22,47,.07);
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-field {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 900;
}

.review-field input,
.review-field textarea {
  width: 100%;
  border: 1px solid rgba(17,40,69,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  color: var(--navy-900);
  font: inherit;
  font-weight: 800;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.review-field input {
  min-height: 54px;
  padding: 0 16px;
}

.review-field textarea {
  resize: vertical;
  min-height: 118px;
  padding: 16px;
  line-height: 1.8;
}

.review-field input:focus,
.review-field textarea:focus {
  border-color: rgba(200,156,75,.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,156,75,.13);
}

.review-message-field {
  margin-top: 14px;
}

.review-rating-field {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}

.review-rating-field legend {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 900;
}

.review-rating-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-rating-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-rating-options label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--gold-500);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(200,156,75,.20);
  box-shadow: 0 10px 22px rgba(5,22,47,.045);
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.review-rating-options input:checked + label,
.review-rating-options label:hover {
  background: linear-gradient(180deg, #fff8e6, #f7e4b5);
  border-color: rgba(200,156,75,.42);
  transform: translateY(-1px);
}

.review-upload-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  align-items: stretch;
  margin-top: 14px;
}

.review-photo-upload {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  border: 1.5px dashed rgba(200,156,75,.38);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(246,215,143,.18), transparent 32%),
    rgba(255,255,255,.68);
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.review-photo-upload:hover {
  border-color: rgba(200,156,75,.72);
  background: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

.review-photo-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.review-upload-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 18px;
  color: var(--navy-900);
  background: linear-gradient(180deg, #f7dc9a, #c89c4b);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 14px 24px rgba(200,156,75,.20);
  font-size: 28px;
  font-weight: 700;
}

.review-photo-upload strong {
  display: block;
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 900;
}

.review-photo-upload small {
  display: block;
  margin-top: 6px;
  color: #778295;
  font-size: 12px;
  font-weight: 800;
}

.review-photo-preview {
  position: relative;
  display: none;
  margin: 0;
  min-height: 150px;
  border-radius: 22px;
  overflow: hidden;
  background: #f6efe4;
  border: 1px solid rgba(17,40,69,.08);
  box-shadow: 0 14px 28px rgba(5,22,47,.08);
}

.review-photo-preview.is-visible {
  display: block;
}

.review-photo-preview img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
  object-fit: cover;
}

.review-photo-preview button {
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(9,28,55,.78);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.review-consent-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(9,28,55,.035);
  border: 1px solid rgba(17,40,69,.06);
}

.review-consent-box label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5f6a7b;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 800;
}

.review-consent-box input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: #c89c4b;
}

.review-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}

.review-submit-button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  box-shadow: 0 16px 28px rgba(5,22,47,.18);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.review-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(5,22,47,.22);
}

.review-form-note {
  margin: 0;
  color: #748094;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 800;
}

.review-form-status {
  display: none;
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 900;
}

.review-form-status.is-visible {
  display: block;
}

.review-form-status.is-success {
  color: #17623a;
  background: rgba(29,163,91,.10);
  border: 1px solid rgba(29,163,91,.18);
}

.review-form-status.is-error {
  color: #8b2534;
  background: rgba(179,56,76,.10);
  border: 1px solid rgba(179,56,76,.18);
}

html[lang="en"] .review-rating-options label {
  letter-spacing: 1px;
}

@media (max-width: 760px) {
  .review-form-grid,
  .review-upload-panel {
    grid-template-columns: 1fr;
  }

  .review-photo-preview {
    min-height: 210px;
  }

  .review-photo-preview img {
    min-height: 210px;
  }

  .review-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .review-submit-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .review-submit-card {
    padding: 18px 14px;
  }

  .review-submit-card::before {
    inset: 8px;
    border-radius: 20px;
  }

  .customer-review-form {
    padding: 14px;
    border-radius: 22px;
  }

  .review-rating-options label {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
}


/* ===== Step 6: floating moderated review form ===== */
.reviews-card-head-with-action {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.review-open-modal-btn {
  position: relative;
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--navy-900);
  background: linear-gradient(180deg, #fff7e2, #e3b963);
  box-shadow: 0 14px 28px rgba(200,156,75,.22), inset 0 1px 0 rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.review-open-modal-btn:hover,
.review-open-modal-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(200,156,75,.28), inset 0 1px 0 rgba(255,255,255,.78);
  outline: none;
}

.review-open-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy-900);
  font-size: 17px;
  line-height: 1;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  place-items: center;
  padding: clamp(14px, 3vw, 30px);
  isolation: isolate;
}

.review-modal.is-open {
  display: grid;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 36, .54);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: reviewBackdropIn .22s ease forwards;
}

.review-floating-card {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: clamp(20px, 3.6vw, 34px);
  border-radius: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 6% 12%, rgba(246,215,143,.20), transparent 30%),
    radial-gradient(circle at 96% 0%, rgba(11,36,70,.08), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,246,238,.96));
  border: 1px solid rgba(200,156,75,.24);
  box-shadow: 0 34px 80px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.86);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  animation: reviewCardIn .28s cubic-bezier(.2,.8,.2,1) forwards;
}

.review-floating-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(clamp(24px, 3vw, 36px) - 10px);
  border: 1px solid rgba(200,156,75,.13);
  pointer-events: none;
}

.review-modal-close {
  position: sticky;
  top: 0;
  inset-inline-start: 0;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-inline-start: auto;
  margin-bottom: -18px;
  border: 0;
  border-radius: 50%;
  color: var(--navy-900);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 26px rgba(5,22,47,.12);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.review-modal-close:hover,
.review-modal-close:focus-visible {
  transform: rotate(8deg) scale(1.04);
  background: #fff6df;
  outline: none;
}

.review-modal .review-submit-head,
.review-modal .customer-review-form {
  position: relative;
  z-index: 1;
}

.review-modal .customer-review-form {
  margin-top: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 54px rgba(5,22,47,.09);
}

.review-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.review-star-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

.review-star-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-star-picker label {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: rgba(200,156,75,.32);
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(200,156,75,.18);
  box-shadow: 0 10px 20px rgba(5,22,47,.045);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease;
}

.review-star-picker label:hover,
.review-star-picker label.is-active,
.review-star-picker label.is-filled {
  color: #d19a2f;
  background: linear-gradient(180deg, #fff9e8, #f6e0a7);
  border-color: rgba(200,156,75,.44);
}

.review-star-picker label:hover {
  transform: translateY(-2px) scale(1.04);
}

.review-rating-value {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: #6a7280;
  background: rgba(9,28,55,.045);
  font-size: 12px;
  font-weight: 900;
}

body.is-review-modal-open {
  overflow: hidden;
}

@keyframes reviewBackdropIn {
  to { opacity: 1; }
}

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

@media (max-width: 920px) {
  .reviews-card-head-with-action {
    align-items: stretch;
    flex-direction: column;
  }

  .review-open-modal-btn {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .review-modal {
    align-items: end;
    padding: 10px;
  }

  .review-floating-card {
    width: 100%;
    max-height: 92vh;
    border-radius: 26px 26px 18px 18px;
    padding: 18px 14px;
  }

  .review-modal-close {
    width: 38px;
    height: 38px;
    margin-bottom: -10px;
  }

  .review-star-picker {
    gap: 6px;
  }

  .review-star-picker label {
    width: 37px;
    height: 37px;
    border-radius: 13px;
    font-size: 22px;
  }
}

/* ===== Step 8: fix customer reviews placement and floating review modal ===== */
@media (min-width: 921px) {
  .info-section .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .info-section .reviews-profile-card {
    grid-column: 1 / -1;
  }
}

.reviews-profile-card {
  padding: clamp(24px, 3.5vw, 38px);
  border-radius: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(circle at 8% 0%, rgba(246, 215, 143, .18), transparent 34%),
    radial-gradient(circle at 96% 12%, rgba(9, 28, 55, .055), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(250,246,238,.94));
  border: 1px solid rgba(200, 156, 75, .18);
  box-shadow: 0 28px 68px rgba(5, 22, 47, .08);
}

.reviews-card-head-with-action {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.reviews-card-head h2 {
  color: var(--navy-900);
  font-size: clamp(30px, 3.3vw, 46px);
}

.review-profile-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.review-profile-item {
  min-height: 178px;
  grid-template-columns: clamp(118px, 12vw, 150px) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(14px, 2vw, 20px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(246,215,143,.16), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(17, 40, 69, .08);
  box-shadow: 0 18px 40px rgba(5,22,47,.07);
}

.review-avatar-wrap {
  width: clamp(118px, 12vw, 150px);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}

.review-profile-copy .stars {
  margin-bottom: 9px;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-profile-copy p {
  max-width: 28ch;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.75;
}

.review-open-modal-btn {
  white-space: nowrap;
}

#reviewModal[aria-hidden="true"],
#reviewModal:not(.is-open) {
  display: none !important;
}

#reviewModal.is-open {
  display: grid !important;
}

.review-floating-card {
  overscroll-behavior: contain;
}

@media (max-width: 920px) {
  .reviews-profile-card {
    padding: 22px 16px;
  }

  .review-profile-list {
    grid-template-columns: 1fr;
  }

  .reviews-card-head-with-action {
    align-items: flex-start;
    gap: 14px;
  }

  .review-profile-item {
    grid-template-columns: 122px minmax(0, 1fr);
    min-height: 150px;
  }

  .review-avatar-wrap {
    width: 122px;
    border-radius: 19px;
  }
}

@media (max-width: 520px) {
  .review-profile-item {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 128px;
  }

  .review-avatar-wrap {
    width: 104px;
    border-radius: 17px;
  }

  .review-profile-copy p {
    font-size: 14px;
  }
}


/* =========================================================
   FINAL DOMAIN-SAFE PATCH
   Purpose: prevents Salla/hosting cache or external styles from breaking
   the reviews placement, account icon, and floating review modal.
   ========================================================= */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Keep the information cards clean: only Why + How in this grid. */
.info-section .cards-grid,
.info-section .container.cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 26px) !important;
  align-items: stretch !important;
}

.info-section .info-card {
  width: 100% !important;
  min-width: 0 !important;
}

/* Reviews now live in their own full-width section under the information cards. */
.reviews-section,
.reviews-full-section {
  position: relative !important;
  z-index: 2 !important;
  padding: clamp(18px, 3vw, 34px) 0 clamp(22px, 4vw, 48px) !important;
}

.reviews-section-container {
  display: block !important;
}

.reviews-section .reviews-profile-card,
.reviews-full-section .reviews-profile-card,
#reviews .reviews-profile-card {
  display: block !important;
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  grid-column: 1 / -1 !important;
  padding: clamp(24px, 3.5vw, 42px) !important;
  border-radius: clamp(26px, 3vw, 40px) !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(246, 215, 143, .18), transparent 34%),
    radial-gradient(circle at 96% 12%, rgba(9, 28, 55, .055), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(250,246,238,.95)) !important;
  border: 1px solid rgba(200, 156, 75, .18) !important;
  box-shadow: 0 28px 68px rgba(5, 22, 47, .08) !important;
}

.reviews-card-head-with-action {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.review-profile-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(14px, 2vw, 22px) !important;
}

.review-profile-item {
  display: grid !important;
  grid-template-columns: clamp(118px, 12vw, 150px) minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 178px !important;
  gap: clamp(14px, 2vw, 22px) !important;
  padding: clamp(14px, 2vw, 20px) !important;
}

.review-avatar-wrap {
  width: clamp(118px, 12vw, 150px) !important;
  max-width: 150px !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.review-avatar {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.review-open-modal-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: fit-content !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

/* Account icons must never inherit giant icon sizes from the store theme. */
.nav-account svg,
.nav-account img,
.mobile-header-account svg,
.mobile-header-account img,
.mobile-header-action svg,
.mobile-header-action img,
.header-actions .nav-account svg,
.header-actions .nav-account img {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px !important;
  display: inline-block !important;
}

.mobile-header-account svg,
.mobile-header-account img,
.mobile-header-action svg,
.mobile-header-action img {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex-basis: 16px !important;
}

.nav-account,
.mobile-header-account {
  line-height: 1 !important;
}

/* The review form is a modal only. It must never render as normal page content. */
#reviewModal[hidden],
#reviewModal[aria-hidden="true"],
#reviewModal:not(.is-open),
.review-modal[hidden],
.review-modal[aria-hidden="true"],
.review-modal:not(.is-open) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#reviewModal.is-open,
.review-modal.is-open {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  display: grid !important;
  place-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  padding: clamp(14px, 3vw, 30px) !important;
}

#reviewModal .review-modal-backdrop,
.review-modal .review-modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
}

#reviewModal .review-floating-card,
.review-modal .review-floating-card {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, 920px) !important;
  max-height: min(92vh, 920px) !important;
  overflow: auto !important;
}

body.is-review-modal-open {
  overflow: hidden !important;
}

@media (max-width: 920px) {
  .info-section .cards-grid,
  .info-section .container.cards-grid {
    grid-template-columns: 1fr !important;
  }

  .reviews-card-head-with-action {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .review-profile-list {
    grid-template-columns: 1fr !important;
  }

  .review-profile-item {
    grid-template-columns: 122px minmax(0, 1fr) !important;
    min-height: 150px !important;
  }

  .review-avatar-wrap {
    width: 122px !important;
    max-width: 122px !important;
  }
}

@media (max-width: 560px) {
  #reviewModal.is-open,
  .review-modal.is-open {
    align-items: end !important;
    place-items: end center !important;
    padding: 10px !important;
  }

  .review-profile-item {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    min-height: 128px !important;
  }

  .review-avatar-wrap {
    width: 104px !important;
    max-width: 104px !important;
  }

  .review-profile-copy p {
    font-size: 14px !important;
  }
}


/* ===== Final polish: rating, ingredients visual spacing, and English alignment ===== */
.mini-card-rating .rating-score {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .035em;
  white-space: nowrap;
  line-height: 1.2;
}

.ingredients-scene {
  isolation: isolate;
}

.ingredients-core img {
  transform: translateY(-7px);
}

.science-caption {
  bottom: -1%;
  padding: 18px 22px;
  z-index: 4;
}

.science-caption strong {
  margin-bottom: 9px;
  line-height: 1.35;
}

.science-caption span {
  line-height: 2;
}

.float-pap {
  top: 8%;
  left: 6%;
}

.float-hydro {
  top: 14%;
  right: 0;
}

.float-aloe {
  bottom: 31%;
  left: 0;
}

.float-potassium {
  bottom: 31%;
  right: 0;
}

html[lang="en"] .ingredients-copy,
html[lang="en"] .ingredients-copy h2,
html[lang="en"] .ingredients-lead,
html[lang="en"] .ingredient-text,
html[lang="en"] .ingredient-text h3,
html[lang="en"] .ingredient-text p,
html[lang="en"] .ingredient-overline,
html[lang="en"] .science-caption,
html[lang="en"] .science-caption strong,
html[lang="en"] .science-caption span {
  direction: ltr !important;
  text-align: left !important;
}

html[lang="en"] .ingredients-visual {
  direction: ltr !important;
}

html[lang="en"] .ingredients-badge {
  direction: ltr !important;
  text-align: left !important;
}

html[lang="en"] .ingredients-list::before {
  right: auto !important;
  left: 37px !important;
}

html[lang="en"] .ingredient-item {
  direction: ltr !important;
  text-align: left !important;
  padding: 18px 18px 18px 20px;
}

html[lang="en"] .ingredient-item-accent {
  right: auto !important;
  left: 14px !important;
}

html[lang="en"] .ingredient-item:hover,
html[lang="en"] .ingredient-item.is-active {
  transform: translateY(-4px) translateX(4px);
}

html[lang="en"] .ingredient-float {
  direction: ltr !important;
  flex-direction: row-reverse;
  justify-content: space-between;
  text-align: left !important;
  min-width: 170px;
  padding: 10px 10px 10px 15px;
}

html[lang="en"] .ingredient-float span {
  text-align: left !important;
  flex: 1 1 auto;
}

html[lang="en"] .float-hydro,
html[lang="en"] .float-potassium {
  min-width: 210px;
}

html[lang="en"] .science-caption {
  width: min(82%, 350px);
}

html[lang="en"] .mini-card-copy,
html[lang="en"] .mini-card-copy strong,
html[lang="en"] .mini-card-copy span {
  direction: ltr !important;
  text-align: left !important;
}

@media (max-width: 1120px) {
  .science-caption {
    bottom: -3%;
  }

  .float-aloe,
  .float-potassium {
    bottom: 33%;
  }
}

@media (max-width: 760px) {
  .ingredients-core img {
    transform: translateY(-5px);
  }

  .science-caption {
    bottom: -4%;
    padding: 14px 16px;
  }

  .science-caption strong {
    margin-bottom: 7px;
  }

  .float-pap { top: 8%; left: 7%; }
  .float-hydro { top: 12%; right: 4%; }
  .float-aloe { bottom: 34%; left: 5%; }
  .float-potassium { bottom: 34%; right: 5%; }

  html[lang="en"] .ingredients-list::before {
    left: 27px !important;
  }

  html[lang="en"] .ingredient-item {
    padding: 14px 12px 14px 14px;
  }

  html[lang="en"] .ingredient-float {
    min-width: auto;
  }
}

@media (max-width: 540px) {
  .science-caption {
    bottom: -6%;
    width: min(92%, 270px);
  }

  .float-aloe { bottom: 38%; left: 8%; }
  .float-potassium { bottom: 38%; right: 8%; }

  html[lang="en"] .ingredient-float {
    min-width: 0;
    flex-direction: row;
  }
}

/* ======================================================================
   TYPOGRAPHY COMPACT PASS v1
   Goal: make the whole page closer to the compact Cloud/reference scale.
   Reference scale used: hero title ~30-52px, section titles ~26-42px,
   body copy ~13-17px, card copy ~12-15px.
   ====================================================================== */
:root {
  --fs-badge: 12px;
  --fs-small: 12px;
  --fs-body: 14px;
  --fs-body-lg: 15px;
  --fs-card-title: clamp(17px, 1.5vw, 22px);
  --fs-section-title: clamp(26px, 3vw, 42px);
  --fs-hero-title: clamp(30px, 4.2vw, 52px);
}

body {
  font-size: var(--fs-body);
  line-height: 1.75;
}

/* Header / nav */
.topbar-track {
  padding: 7px 0;
  font-size: 10px;
}
.header-shell {
  min-height: 70px;
  gap: 16px;
}
.brand-logo {
  width: 150px;
}
.main-nav {
  gap: 20px;
}
.main-nav > a,
.nav-drop-btn,
.nav-menu a {
  font-size: 13px;
}
.main-nav > a,
.nav-drop-btn {
  padding: 8px 0;
}
.nav-menu a {
  padding: 10px 12px;
}
.lang-switch {
  width: 40px;
  height: 40px;
  font-size: 14px;
}
.nav-account {
  min-height: 40px;
  padding: 0 13px;
  border-radius: 14px;
  font-size: 12px;
}
.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 15px;
  font-size: 13px;
}
.nav-cta-icon {
  font-size: 14px;
}

/* Hero */
.hero {
  padding: 40px 0 24px;
  min-height: auto;
}
.hero-copy h1 {
  margin-bottom: 12px;
  font-size: var(--fs-hero-title);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.hero-desc {
  max-width: 540px;
  margin-bottom: 16px;
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.85;
}
.hero-price-row,
.hero-price-row-v2 {
  gap: 14px;
  margin-bottom: 16px;
}
.hero-price-number {
  font-size: clamp(38px, 4vw, 56px);
}
.hero-price-currency {
  font-size: clamp(15px, 1.5vw, 20px);
}
.old-price-label {
  font-size: 11px;
}
.old-price {
  font-size: 20px;
}
.hero-cta,
.hero-cta-split {
  min-height: 56px;
  border-radius: 18px;
  font-size: 16px;
}
.hero-cta-split {
  width: min(100%, 440px);
  padding: 6px 10px;
}
.hero-cta-split .hero-cta-price {
  min-width: 118px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 15px;
}
.hero-cta-split .hero-cta-text {
  font-size: 15px;
}
.hero-note,
.hero-note-v2,
.trust-list,
.trust-list-v2 {
  font-size: 12px;
}
.trust-list,
.trust-list-v2 {
  gap: 8px 14px;
}
.mini-card-copy strong {
  font-size: 14px;
}
.mini-card-copy span {
  font-size: 11px;
}
.result-badge {
  font-size: 10px;
}

/* Shared section headings */
.reels-head h2,
.comparison-head h2,
.three-steps-head h2,
.ingredients-copy h2,
.info-card h2,
.reviews-card-head h2,
.guarantee-copy h2,
.faq-head h2 {
  font-size: var(--fs-section-title);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.reels-subtitle,
.comparison-head p,
.three-steps-head p,
.ingredients-lead,
.info-card p,
.reviews-card-head p,
.guarantee-copy p,
.faq-head p {
  font-size: clamp(13px, 1.35vw, 16px);
  line-height: 1.8;
}
.comparison-badge,
.three-steps-badge,
.ingredients-badge,
.faq-badge,
.guarantee-kicker,
.section-badge {
  min-height: 34px;
  padding: 0 15px;
  margin-bottom: 12px;
  font-size: var(--fs-badge);
}

/* Proof / metrics */
.hero-proof-item {
  padding: 18px 12px 16px;
}
.hero-proof-item strong,
.metric-card strong,
.proof-num {
  font-size: clamp(22px, 2.4vw, 32px);
}
.hero-proof-item span,
.metric-card span,
.proof-lbl {
  font-size: 12px;
}

/* Reels */
.reels-section {
  padding: 22px 0 30px;
}
.reels-shell {
  padding: 26px 22px 22px;
}
.reels-active-kicker {
  font-size: 11px;
}
.reels-active-title {
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}
.reel-thumb-text {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.65;
}
.reel-thumb-play {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

/* Problem / solution */
.comparison-head {
  margin-bottom: 22px;
}
.compare-card,
.choice-card {
  padding: 22px;
}
.compare-icon,
.choice-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  font-size: 24px;
}
.compare-pill,
.choice-eyebrow {
  font-size: 11px;
}
.compare-card h3,
.choice-card h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
}
.compare-price {
  font-size: clamp(30px, 3vw, 42px);
}
.compare-list li,
.choice-list li {
  font-size: clamp(13px, 1.25vw, 15px);
  line-height: 1.75;
}

/* Three steps */
.timeline-step-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 16px;
}
.timeline-step-icon img {
  width: 76px;
  height: 76px;
}
.timeline-step-content h3 {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
}
.timeline-step-content p {
  font-size: 13px;
  line-height: 1.75;
}
.three-steps-timeline::before {
  top: 42px;
}

/* Ingredients */
.ingredient-item {
  padding: 14px 16px;
  border-radius: 20px;
}
.ingredient-icon-wrap {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 15px;
}
.ingredient-overline {
  font-size: 11px;
}
.ingredient-text h3 {
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.45;
}
.ingredient-text p {
  font-size: 12px;
  line-height: 1.7;
}
.ingredient-float strong {
  font-size: 12px;
}
.ingredient-float span,
.science-caption span {
  font-size: 11px;
}
.science-caption strong {
  font-size: 13px;
}

/* Info cards */
.info-card {
  padding: 24px;
}
.info-card ul,
.info-card li,
.step-item {
  font-size: 13px;
  line-height: 1.75;
}
.step-num {
  font-size: 12px;
}

/* Reviews */
.review-open-modal-btn {
  font-size: 12px;
}
.review-profile-item {
  min-height: 128px;
  grid-template-columns: 104px minmax(0, 1fr);
}
.review-avatar-wrap {
  width: 104px;
}
.review-profile-copy .stars {
  font-size: 13px;
}
.review-profile-copy p {
  font-size: 14px;
  line-height: 1.75;
}
.review-profile-copy span {
  font-size: 11px;
}

/* Guarantee */
.guarantee-card.guarantee-card-pro {
  padding: clamp(22px, 3.2vw, 34px);
}
.guarantee-badge .small {
  font-size: clamp(15px, 1.7vw, 19px);
}
.guarantee-badge strong {
  font-size: clamp(62px, 6vw, 86px);
}
.guarantee-proof-cards strong {
  font-size: 14px;
}
.guarantee-proof-cards small,
.guarantee-note {
  font-size: 11px;
  line-height: 1.7;
}
.guarantee-point-icon {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  border-radius: 13px;
}
.guarantee-link {
  font-size: 13px;
}

/* FAQ */
.faq-shell {
  padding: clamp(20px, 3vw, 34px);
}
.faq-item summary {
  min-height: 56px;
  padding: 15px 18px;
  font-size: clamp(14px, 1.25vw, 16px);
}
.faq-item summary::after {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  font-size: 19px;
}
.faq-item p {
  padding: 0 18px 16px;
  font-size: 13px;
  line-height: 1.8;
}

/* Footer */
.footer-col h3,
.footer-contact h3 {
  font-size: 15px;
}
.footer-store p,
.footer-links-list a,
.footer-contact-list a,
.footer-copyright,
.footer-cert-copy span,
.footer-cert-copy strong {
  font-size: 12px;
  line-height: 1.75;
}

@media (max-width: 920px) {
  .header-shell {
    min-height: 64px;
  }
  .brand-logo {
    width: 132px;
  }
  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .hero-desc {
    font-size: 14px;
  }
  .reels-head h2,
  .comparison-head h2,
  .three-steps-head h2,
  .ingredients-copy h2,
  .info-card h2,
  .reviews-card-head h2,
  .guarantee-copy h2,
  .faq-head h2 {
    font-size: clamp(24px, 6vw, 34px);
  }
  .timeline-step-card {
    grid-template-columns: 92px 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--maxw), calc(100% - 28px));
  }
  .topbar-track {
    font-size: 9px;
  }
  .header-shell {
    min-height: 58px;
    gap: 10px;
  }
  .brand-logo {
    width: 116px;
  }
  .mobile-header-action {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
    border-radius: 12px;
  }
  .mobile-toggle {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .hero {
    padding: 26px 0 18px;
  }
  .hero-copy h1 {
    font-size: clamp(26px, 9vw, 34px);
    line-height: 1.25;
  }
  .hero-desc {
    font-size: 13px;
    line-height: 1.8;
  }
  .hero-price-number {
    font-size: 42px;
  }
  .hero-price-currency,
  .old-price {
    font-size: 16px;
  }
  .hero-cta-split {
    min-height: 50px;
  }
  .hero-cta-split .hero-cta-text,
  .hero-cta-split .hero-cta-price {
    font-size: 13px;
  }
  .hero-cta-split .hero-cta-price {
    min-width: 94px;
    min-height: 38px;
    padding: 0 12px;
  }
  .trust-list,
  .trust-list-v2 {
    font-size: 11px;
  }
  .hero-proof-item strong,
  .metric-card strong,
  .proof-num {
    font-size: 22px;
  }
  .hero-proof-item span,
  .metric-card span,
  .proof-lbl {
    font-size: 11px;
  }
  .reels-subtitle,
  .comparison-head p,
  .three-steps-head p,
  .ingredients-lead,
  .info-card p,
  .reviews-card-head p,
  .guarantee-copy p,
  .faq-head p {
    font-size: 13px;
  }
  .timeline-step-card {
    grid-template-columns: 1fr;
  }
  .timeline-step-content h3 {
    font-size: 20px;
  }
  .timeline-step-content p,
  .compare-list li,
  .choice-list li {
    font-size: 13px;
  }
  .ingredient-text h3 {
    font-size: 16px;
  }
  .ingredient-text p {
    font-size: 12px;
  }
  .review-profile-item {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 118px;
  }
  .review-avatar-wrap {
    width: 96px;
  }
  .review-profile-copy p {
    font-size: 13px;
  }
  .faq-item summary {
    font-size: 14px;
  }
  .faq-item p {
    font-size: 12px;
  }
}

/* ======================================================================
   TYPOGRAPHY GOLDEN RATIO PASS v2
   Ratio: 1.168
   هدفه: توحيد الفرق بين مستويات النصوص بسلم ثابت بدل أحجام عشوائية.
   ملاحظة: استخدمناه كسلم Typographic Scale، مش كضرب مباشر مرة واحدة لكل العناوين،
   عشان العنوان يفضل واضح بصرياً ومايبقاش قريب جداً من النص اللي تحته.
   ====================================================================== */
:root {
  --type-ratio-1168: 1.168;

  /* Modular scale based on 1.168 */
  --type--2: 9.9px;
  --type--1: 11.6px;
  --type-0: 13.5px;
  --type-1: 15.8px;
  --type-2: 18.4px;
  --type-3: 21.5px;
  --type-4: 25.1px;
  --type-5: 29.3px;
  --type-6: 34.3px;
  --type-7: 40px;

  --fs-badge: var(--type--1);
  --fs-small: var(--type--1);
  --fs-body: var(--type-0);
  --fs-body-lg: var(--type-1);
  --fs-card-title: var(--type-2);
  --fs-section-title: clamp(var(--type-4), 2.55vw, var(--type-6));
  --fs-hero-title: clamp(var(--type-5), 3.15vw, var(--type-7));

  --title-sub-gap: 10px;
  --section-head-gap: 14px;
}

body {
  font-size: var(--type-0);
  line-height: 1.72;
}

/* Hero title/subtitle scale */
.hero-copy h1 {
  font-size: var(--fs-hero-title);
  line-height: 1.168;
  margin-bottom: var(--title-sub-gap);
}
.hero-desc {
  font-size: var(--type-1);
  line-height: 1.72;
  margin-bottom: var(--section-head-gap);
}
.hero-note,
.hero-note-v2,
.trust-list,
.trust-list-v2 {
  font-size: var(--type--1);
  line-height: 1.68;
}

/* Shared section title/subtitle scale */
.reels-head h2,
.comparison-head h2,
.three-steps-head h2,
.ingredients-copy h2,
.info-card h2,
.reviews-card-head h2,
.guarantee-copy h2,
.faq-head h2 {
  font-size: var(--fs-section-title);
  line-height: 1.168;
  margin-bottom: var(--title-sub-gap);
}
.reels-subtitle,
.comparison-head p,
.three-steps-head p,
.ingredients-lead,
.info-card p,
.reviews-card-head p,
.guarantee-copy p,
.faq-head p {
  font-size: var(--type-1);
  line-height: 1.72;
}
.comparison-head,
.three-steps-head,
.faq-head,
.reviews-card-head,
.reels-head {
  gap: var(--title-sub-gap);
}

/* Badges and small labels */
.comparison-badge,
.three-steps-badge,
.ingredients-badge,
.faq-badge,
.guarantee-kicker,
.section-badge,
.reels-active-kicker,
.compare-pill,
.choice-eyebrow,
.ingredient-overline,
.old-price-label,
.result-badge {
  font-size: var(--type--1);
  line-height: 1.45;
}

/* Cards: title is one controlled step above body copy */
.compare-card h3,
.choice-card h3,
.timeline-step-content h3,
.reels-active-title {
  font-size: var(--type-2);
  line-height: 1.25;
  margin-bottom: 8px;
}
.compare-list li,
.choice-list li,
.timeline-step-content p,
.info-card ul,
.info-card li,
.step-item,
.reel-thumb-text {
  font-size: var(--type-0);
  line-height: 1.72;
}

/* Ingredient cards: exact 1.168 step between title and description */
.ingredient-text h3 {
  font-size: var(--type-1);
  line-height: 1.35;
  margin-bottom: 4px;
}
.ingredient-text p {
  font-size: var(--type-0);
  line-height: 1.7;
}
.ingredient-text h3 span {
  font-size: inherit;
}

/* Reviews */
.review-profile-copy .stars {
  font-size: var(--type-0);
}
.review-profile-copy p {
  font-size: var(--type-0);
  line-height: 1.72;
}
.review-profile-copy span,
.review-open-modal-btn {
  font-size: var(--type--1);
}

/* Guarantee and FAQ */
.guarantee-proof-cards strong,
.footer-col h3,
.footer-contact h3 {
  font-size: var(--type-1);
  line-height: 1.35;
}
.guarantee-proof-cards small,
.guarantee-note,
.faq-item p,
.footer-store p,
.footer-links-list a,
.footer-contact-list a,
.footer-copyright,
.footer-cert-copy span,
.footer-cert-copy strong {
  font-size: var(--type--1);
  line-height: 1.72;
}
.faq-item summary {
  font-size: var(--type-1);
  line-height: 1.35;
}

/* Price remains visually important but still follows the compact system */
.hero-price-number {
  font-size: clamp(var(--type-6), 3.7vw, 50px);
}
.hero-price-currency,
.old-price {
  font-size: var(--type-2);
}

@media (max-width: 920px) {
  :root {
    --fs-section-title: clamp(var(--type-4), 5.4vw, var(--type-6));
    --fs-hero-title: clamp(var(--type-5), 7.2vw, var(--type-7));
  }
  .hero-desc,
  .reels-subtitle,
  .comparison-head p,
  .three-steps-head p,
  .ingredients-lead,
  .info-card p,
  .reviews-card-head p,
  .guarantee-copy p,
  .faq-head p {
    font-size: var(--type-0);
  }
}

@media (max-width: 640px) {
  :root {
    --fs-section-title: clamp(var(--type-3), 6vw, var(--type-5));
    --fs-hero-title: clamp(var(--type-4), 8vw, var(--type-6));
    --title-sub-gap: 8px;
  }
  .hero-copy h1 {
    line-height: 1.168;
  }
  .hero-desc {
    font-size: var(--type-0);
    line-height: 1.7;
  }
  .compare-card h3,
  .choice-card h3,
  .timeline-step-content h3,
  .reels-active-title {
    font-size: var(--type-1);
  }
  .compare-list li,
  .choice-list li,
  .timeline-step-content p,
  .ingredient-text p,
  .review-profile-copy p,
  .faq-item p {
    font-size: var(--type--1);
  }
  .ingredient-text h3,
  .faq-item summary {
    font-size: var(--type-0);
  }
}

/* FONT MATCH PASS v3 - Cairo like the supplied reference screenshot */
:root {
  --font-main: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--font-main) !important;
}

body {
  font-weight: 500;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-copy h1 {
  font-family: var(--font-main) !important;
  font-weight: 900;
  line-height: 1.168;
  letter-spacing: 0;
  color: var(--navy-900);
  text-wrap: balance;
}

.hero-copy h1 .gold-word,
.gold-word {
  color: var(--gold-500);
  font-weight: 900;
}

.hero-desc,
.section-subtitle,
.comparison-head p,
.three-steps-head p,
.ingredients-lead,
.reviews-card-head p,
.guarantee-copy p,
.faq-head p {
  font-family: var(--font-main) !important;
  font-weight: 500;
  letter-spacing: 0;
}

.reels-head h2,
.comparison-head h2,
.three-steps-head h2,
.ingredients-head h2,
.info-card h2,
.reviews-card-head h2,
.guarantee-copy h2,
.faq-head h2 {
  font-family: var(--font-main) !important;
  font-weight: 900;
  line-height: 1.168;
  letter-spacing: 0;
  text-wrap: balance;
}

@media (max-width: 640px) {
  .hero-copy h1 {
    line-height: 1.168;
    letter-spacing: 0;
  }
}

/* FONT WEIGHT SOFTEN PASS v4 - lighter Cairo, less heavy bold */
:root {
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-heading: 700;
  --fw-hero: 750;
}

body {
  font-weight: var(--fw-regular);
}

.hero-copy h1 {
  font-weight: var(--fw-hero) !important;
  letter-spacing: -0.01em;
}

.hero-copy h1 .gold-word,
.gold-word {
  font-weight: var(--fw-heading) !important;
}

.reels-head h2,
.comparison-head h2,
.three-steps-head h2,
.ingredients-head h2,
.info-card h2,
.reviews-card-head h2,
.guarantee-copy h2,
.faq-head h2,
.section-title {
  font-weight: var(--fw-heading) !important;
}

.nav-link,
.nav-cta,
.hero-desc,
.section-subtitle,
.reels-subtitle,
.comparison-head p,
.three-steps-head p,
.ingredients-lead,
.reviews-card-head p,
.guarantee-copy p,
.faq-head p,
.compare-list li,
.choice-list li,
.timeline-step-content p,
.ingredient-text p,
.review-profile-copy p,
.faq-item p {
  font-weight: var(--fw-regular) !important;
}

.hero-badge,
.section-badge,
.comparison-badge,
.three-steps-badge,
.ingredients-badge,
.faq-badge,
.guarantee-kicker,
.compare-pill,
.choice-eyebrow,
.ingredient-overline,
.result-badge {
  font-weight: var(--fw-semibold) !important;
}

.compare-card h3,
.choice-card h3,
.timeline-step-content h3,
.ingredient-text h3,
.reels-active-title,
.faq-item summary,
.review-profile-copy strong,
.footer-col h3,
.footer-contact h3 {
  font-weight: var(--fw-semibold) !important;
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-weight: 700 !important;
  }
}

/* FONT WEIGHT 650 PASS v5 - requested lighter bold weight */
:root {
  --fw-heading: 650;
  --fw-hero: 650;
  --fw-semibold: 650;
}

.hero-copy h1,
.hero-copy h1 .gold-word,
.gold-word,
.reels-head h2,
.comparison-head h2,
.three-steps-head h2,
.ingredients-head h2,
.info-card h2,
.reviews-card-head h2,
.guarantee-copy h2,
.faq-head h2,
.section-title,
.compare-card h3,
.choice-card h3,
.timeline-step-content h3,
.ingredient-text h3,
.reels-active-title,
.faq-item summary,
.review-profile-copy strong,
.footer-col h3,
.footer-contact h3,
.nav-cta,
.btn-primary,
.btn-secondary,
.hero-main-cta,
.sticky-cta-btn {
  font-weight: 650 !important;
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-weight: 650 !important;
  }
}

/* HERO VISUAL SHRINK PASS v6 - product preview area a little smaller */
.hero-visual {
  max-width: 520px;
  margin-inline: auto;
  gap: 12px !important;
}

.hero-product-stage-v2 {
  min-height: 430px !important;
  border-radius: 28px !important;
  padding-bottom: 10px !important;
}

.product-frame-v2 {
  width: min(100%, 500px) !important;
  padding: 0 6px 8px !important;
}

.hero-product-image {
  max-width: 455px !important;
}

.hero-floating-cards {
  top: 18px !important;
  right: 18px !important;
  gap: 10px !important;
}

.hero-mini-card {
  min-width: 210px !important;
  padding: 11px 12px 11px 14px !important;
  border-radius: 16px !important;
  gap: 10px !important;
}

.mini-card-copy strong {
  font-size: 15px !important;
  font-weight: 650 !important;
}

.mini-card-copy span {
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}

.mini-card-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 11px !important;
  font-size: 17px !important;
}

.hero-results-stack-v2 {
  max-width: 440px !important;
  margin-top: 4px !important;
  padding: 8px !important;
  border-radius: 18px !important;
  gap: 10px !important;
}

.result-card {
  padding: 7px !important;
  border-radius: 14px !important;
}

.result-image {
  height: 92px !important;
  border-radius: 10px !important;
}

.result-badge {
  min-height: 21px !important;
  padding: 0 8px !important;
  font-size: 9px !important;
  top: 7px !important;
  right: 7px !important;
}

.stack-arrow {
  width: 30px !important;
  height: 30px !important;
  font-size: 17px !important;
}

@media (max-width: 920px) {
  .hero-visual {
    max-width: 500px;
  }

  .hero-product-stage-v2 {
    min-height: 360px !important;
  }

  .product-frame-v2 {
    width: min(100%, 410px) !important;
  }

  .hero-product-image {
    max-width: 365px !important;
  }

  .hero-results-stack-v2 {
    max-width: 430px !important;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    max-width: 100%;
    gap: 10px !important;
  }

  .hero-product-stage-v2 {
    min-height: 265px !important;
    padding-top: 66px !important;
    border-radius: 20px !important;
  }

  .hero-floating-cards {
    inset: 8px 8px auto 8px !important;
    gap: 6px !important;
  }

  .hero-mini-card {
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 7px 8px !important;
    border-radius: 12px !important;
  }

  .mini-card-copy strong {
    font-size: 11px !important;
  }

  .mini-card-copy span {
    font-size: 8.5px !important;
    line-height: 1.35 !important;
  }

  .mini-card-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 9px !important;
    font-size: 13px !important;
  }

  .product-frame-v2 {
    width: min(100%, 250px) !important;
  }

  .hero-product-image {
    max-width: 225px !important;
  }

  .hero-results-stack-v2 {
    max-width: 100% !important;
    padding: 6px !important;
    border-radius: 16px !important;
    gap: 7px !important;
  }

  .result-card {
    padding: 6px !important;
    border-radius: 12px !important;
  }

  .result-image {
    height: 78px !important;
    border-radius: 8px !important;
  }

  .stack-arrow {
    width: 26px !important;
    height: 26px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 420px) {
  .hero-product-stage-v2 {
    min-height: 248px !important;
    padding-top: 62px !important;
  }

  .product-frame-v2 {
    width: min(100%, 228px) !important;
  }

  .hero-product-image {
    max-width: 205px !important;
  }

  .result-image {
    height: 70px !important;
  }
}


/* =========================================
   REELS CAROUSEL PROFESSIONAL PASS v6
========================================= */
.reels-section-professional {
  padding: 34px 0 42px;
}

.reels-section-professional > .container {
  max-width: 1240px;
}

.reels-shell-carousel {
  background: linear-gradient(180deg, #f7f3ec 0%, #f4efe8 100%);
  border: 1px solid rgba(192, 172, 138, 0.24);
  border-radius: 34px;
  padding: 32px 28px 30px;
  box-shadow: 0 18px 44px rgba(31, 20, 7, 0.05);
}

.reels-heading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 16px;
  margin: 0 auto 12px;
  background: rgba(214, 183, 122, 0.16);
  color: #8d6c2f;
  border: 1px solid rgba(184, 150, 81, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

.reels-head-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.reels-head-stack h2 {
  margin: 0;
  color: #16223d;
  font-size: clamp(26px, 2.35vw, 40px);
  font-weight: 650;
  line-height: 1.25;
}

.reels-shell-carousel .reels-subtitle {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  color: #907e69;
  font-size: 15px;
  line-height: 1.9;
}

.reels-carousel-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.reels-carousel-viewport {
  overflow: hidden;
}

.reels-carousel-track {
  --reels-gap: 18px;
  --reels-visible: 4;
  display: flex;
  gap: var(--reels-gap);
  direction: ltr;
  transition: transform 0.36s ease;
  will-change: transform;
}

.reels-slide-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--reels-gap) * (var(--reels-visible) - 1))) / var(--reels-visible));
  min-width: 0;
  display: block;
  padding: 0;
  border: 1px solid rgba(191, 173, 141, 0.32);
  border-radius: 24px;
  background: #ebe5db;
  box-shadow: 0 10px 24px rgba(36, 27, 14, 0.05);
  overflow: hidden;
  cursor: pointer;
  text-align: right;
  direction: rtl;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.reels-slide-card:hover,
.reels-slide-card:focus-visible,
.reels-slide-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(184, 150, 81, 0.58);
  box-shadow: 0 18px 34px rgba(36, 27, 14, 0.1);
  outline: none;
}

.reels-slide-thumb {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, #dfe7ef 0%, #bdc5cf 100%);
}

.reels-slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reels-slide-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(11, 19, 36, 0) 0%, rgba(11, 19, 36, 0.76) 100%);
  pointer-events: none;
}

.reels-slide-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #24375f;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(17, 26, 43, 0.18);
}

.reels-slide-caption {
  position: absolute;
  inset: auto 18px 18px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.reels-carousel-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #20365d;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(18, 37, 68, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.reels-carousel-arrow:hover {
  transform: translateY(-2px);
  background: #172948;
}

.reels-carousel-arrow:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.reels-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.reels-carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 54, 93, 0.18);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reels-carousel-dot.is-active {
  background: #20365d;
  transform: scale(1.18);
}

.reels-video-modal[hidden] {
  display: none !important;
}

.reels-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
}

.reels-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 23, 0.7);
  backdrop-filter: blur(6px);
}

.reels-video-modal-dialog {
  position: relative;
  width: min(100% - 28px, 920px);
  margin: 6vh auto 0;
  background: #fffdf9;
  border-radius: 26px;
  padding: 22px 22px 18px;
  box-shadow: 0 24px 70px rgba(9, 17, 29, 0.28);
}

.reels-video-modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 54, 93, 0.08);
  color: #20365d;
  font-size: 24px;
  cursor: pointer;
}

.reels-video-modal-head {
  padding-inline: 8px 50px;
  margin-bottom: 16px;
}

.reels-video-modal-kicker {
  display: block;
  margin-bottom: 6px;
  color: #9a7c45;
  font-size: 12px;
  font-weight: 650;
}

.reels-video-modal-title {
  color: #16223d;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.5;
}

.reels-video-modal-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #0d1727;
  aspect-ratio: 16 / 9;
}

.reels-video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1120px) {
  .reels-carousel-track {
    --reels-visible: 3;
  }
}

@media (max-width: 820px) {
  .reels-section-professional {
    padding: 22px 0 28px;
  }

  .reels-shell-carousel {
    border-radius: 28px;
    padding: 24px 18px 22px;
  }

  .reels-carousel-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reels-carousel-arrow {
    display: none;
  }

  .reels-carousel-track {
    --reels-gap: 14px;
    --reels-visible: 2;
  }

  .reels-slide-card {
    border-radius: 22px;
  }

  .reels-slide-play {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
}

@media (max-width: 580px) {
  .reels-shell-carousel {
    padding: 20px 14px 18px;
  }

  .reels-heading-badge {
    min-height: 30px;
    padding: 5px 14px;
    font-size: 12px;
  }

  .reels-head-stack h2 {
    font-size: 24px;
  }

  .reels-shell-carousel .reels-subtitle {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .reels-carousel-track {
    --reels-gap: 12px;
  }

  .reels-slide-play {
    width: 48px;
    height: 48px;
  }

  .reels-slide-caption {
    inset: auto 14px 14px 14px;
    font-size: 13px;
  }

  .reels-video-modal-dialog {
    width: min(100% - 18px, 920px);
    margin-top: 4vh;
    border-radius: 22px;
    padding: 18px 14px 14px;
  }

  .reels-video-modal-title {
    font-size: 19px;
  }
}

body.modal-open { overflow: hidden; }


/* =========================================
   REELS INLINE PLAY PASS v7
========================================= */
.reels-slide-thumb {
  position: relative;
  overflow: hidden;
}

.reels-slide-thumb img {
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.reels-inline-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
  z-index: 4;
}

.reels-slide-card.is-playing .reels-slide-thumb img {
  opacity: 0;
}

.reels-slide-card.is-playing .reels-slide-overlay,
.reels-slide-card.is-playing .reels-slide-play {
  opacity: 0;
  pointer-events: none;
}

.reels-slide-card.is-playing {
  border-color: rgba(184, 150, 81, 0.75);
  box-shadow: 0 20px 38px rgba(36, 27, 14, 0.14);
}


/* =========================================
   GUARANTEE MODERN STRONG PASS v2
========================================= */
.guarantee-section-modern {
  padding: 18px 0 42px;
}

.guarantee-card.guarantee-card-modern {
  position: relative;
  padding: 34px 32px 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 22%, rgba(255,255,255,.82) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 84% 74%, rgba(224, 197, 143, .12) 0%, rgba(224, 197, 143, 0) 28%),
    linear-gradient(135deg, #f7f4ee 0%, #f1ece4 48%, #f5f1e8 100%);
  border: 1px solid rgba(214, 187, 138, 0.38);
  box-shadow: 0 26px 56px rgba(38, 28, 10, 0.08);
  overflow: hidden;
}

.guarantee-card.guarantee-card-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,.05) 35%, rgba(255,255,255,.18) 54%, rgba(255,255,255,.04) 78%, rgba(255,255,255,.24) 100%);
  mix-blend-mode: screen;
  opacity: .55;
  pointer-events: none;
}

.guarantee-hero-modern {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
  direction: ltr;
}

.guarantee-copy-modern {
  direction: rtl;
  text-align: right;
}

.guarantee-kicker-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(225, 187, 105, 0.12);
  border: 1px solid rgba(203, 164, 92, 0.22);
  color: #b77f1f;
  font-size: 13px;
  font-weight: 650;
}

.guarantee-card-modern .guarantee-copy h2 {
  margin: 0 0 12px;
  color: #091f4a;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.15;
}

.guarantee-card-modern .guarantee-copy p {
  max-width: 820px;
  margin: 0;
  color: #475977;
  font-size: 17px;
  line-height: 1.9;
}

.guarantee-badge-shell-modern {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  direction: rtl;
  text-align: center;
}

.guarantee-badge.guarantee-badge-modern {
  width: 246px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 30px 22px;
  border-radius: 50%;
  border: 4px solid rgba(243, 223, 182, 0.72);
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.55) 15%, rgba(255,255,255,0) 30%),
    linear-gradient(145deg, #b77816 0%, #e3bb66 28%, #f6e2aa 55%, #ddb15a 78%, #c1831f 100%);
  box-shadow:
    inset 0 2px 12px rgba(255,255,255,.32),
    inset 0 -14px 26px rgba(159, 101, 9, .14),
    0 18px 40px rgba(183, 127, 31, .18);
}

.guarantee-badge.guarantee-badge-modern .badge-top,
.guarantee-badge.guarantee-badge-modern .badge-bottom {
  display: block;
  color: #082250;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 16px;
}

.guarantee-badge.guarantee-badge-modern strong {
  margin: 6px 0 4px;
  color: #082250;
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}

.guarantee-badge-note {
  max-width: 225px;
  color: #5d6f88;
  font-size: 14px;
  line-height: 1.8;
}

.guarantee-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.guarantee-proof-card {
  position: relative;
  min-height: 118px;
  padding: 22px 22px 18px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(207, 186, 151, 0.30);
  box-shadow: 0 14px 30px rgba(21, 25, 33, 0.05);
}

.guarantee-proof-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.guarantee-proof-step {
  position: absolute;
  top: 14px;
  inset-inline-end: 16px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #c69031 0%, #f0cc7b 100%);
  color: #082250;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(195, 141, 40, .18);
}

.guarantee-proof-copy {
  padding-inline-end: 46px;
}

.guarantee-proof-copy strong {
  display: block;
  margin-bottom: 8px;
  color: #0b214c;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.45;
}

.guarantee-proof-copy small {
  display: block;
  color: #566883;
  font-size: 16px;
  line-height: 1.9;
}

.guarantee-footer-modern {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.guarantee-note-modern {
  margin: 0;
  color: #70809a;
  font-size: 14px;
  line-height: 1.8;
}

.guarantee-link.guarantee-link-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 54px;
  padding: 12px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #c89437 0%, #efcc78 100%);
  color: #081f48;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 26px rgba(200, 148, 55, 0.20);
}

.guarantee-link.guarantee-link-modern:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(200, 148, 55, 0.26);
}

@media (max-width: 1180px) {
  .guarantee-hero-modern {
    grid-template-columns: minmax(0, 1fr) 238px;
    gap: 22px;
  }

  .guarantee-card-modern .guarantee-copy h2 {
    font-size: clamp(30px, 3vw, 44px);
  }

  .guarantee-badge.guarantee-badge-modern {
    width: 220px;
  }

  .guarantee-badge.guarantee-badge-modern strong {
    font-size: 72px;
  }

  .guarantee-proof-copy strong {
    font-size: 22px;
  }

  .guarantee-proof-copy small {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .guarantee-card.guarantee-card-modern {
    padding: 24px 18px 22px;
    border-radius: 28px;
  }

  .guarantee-hero-modern {
    grid-template-columns: 1fr;
    direction: rtl;
    justify-items: center;
    text-align: center;
  }

  .guarantee-copy-modern {
    text-align: center;
  }

  .guarantee-card-modern .guarantee-copy p {
    margin-inline: auto;
  }

  .guarantee-proof-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-footer-modern {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .guarantee-link.guarantee-link-modern {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .guarantee-section-modern {
    padding: 10px 0 28px;
  }

  .guarantee-card.guarantee-card-modern {
    padding: 20px 14px 18px;
    border-radius: 24px;
  }

  .guarantee-kicker-modern {
    min-height: 34px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .guarantee-card-modern .guarantee-copy h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .guarantee-card-modern .guarantee-copy p {
    font-size: 15px;
  }

  .guarantee-badge.guarantee-badge-modern {
    width: 188px;
    padding: 22px 16px;
  }

  .guarantee-badge.guarantee-badge-modern .badge-top,
  .guarantee-badge.guarantee-badge-modern .badge-bottom {
    font-size: 14px;
  }

  .guarantee-badge.guarantee-badge-modern strong {
    font-size: 60px;
  }

  .guarantee-badge-note {
    max-width: 220px;
    font-size: 13px;
  }

  .guarantee-proof-card {
    min-height: auto;
    padding: 18px 16px 16px;
    border-radius: 20px;
  }

  .guarantee-proof-step {
    width: 30px;
    height: 30px;
    top: 12px;
    inset-inline-end: 12px;
    font-size: 13px;
  }

  .guarantee-proof-copy {
    padding-inline-end: 38px;
  }

  .guarantee-proof-copy strong {
    font-size: 19px;
    line-height: 1.55;
  }

  .guarantee-proof-copy small {
    font-size: 14px;
    line-height: 1.8;
  }

  .guarantee-note-modern {
    font-size: 13px;
  }

  .guarantee-link.guarantee-link-modern {
    min-height: 50px;
    border-radius: 16px;
    font-size: 15px;
  }
}


/* =========================================
   GUARANTEE REFERENCE MATCH FIX v3
========================================= */
.guarantee-section-reference {
  padding: 18px 0 40px;
}

.guarantee-section-reference > .container {
  max-width: 1180px;
}

.guarantee-reference-shell {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 14%, rgba(255,255,255,.04), rgba(255,255,255,0) 30%), linear-gradient(135deg, #19294a 0%, #22365d 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 54px rgba(9, 18, 37, .20), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}

.guarantee-reference-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.01) 100%);
  pointer-events: none;
}

.guarantee-reference-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.guarantee-reference-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(228, 190, 104, .20);
  color: #d6b365;
  font-size: 13px;
  font-weight: 650;
}

.guarantee-reference-head h2 {
  margin: 0 0 10px;
  color: #f7f7f7;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.16;
}

.guarantee-reference-head h2 span {
  color: #d6b365;
}

.guarantee-reference-head p {
  margin: 0;
  color: rgba(244, 246, 251, .84);
  font-size: 17px;
  line-height: 1.95;
}

.guarantee-reference-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: start;
  direction: ltr;
}

.guarantee-reference-steps {
  display: grid;
  gap: 16px;
}

.guarantee-reference-step {
  position: relative;
  min-height: 90px;
  padding: 18px 76px 18px 24px;
  border-radius: 22px;
  background: rgba(51, 70, 108, .66);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  direction: rtl;
  text-align: right;
}

.guarantee-reference-step-num {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #c49a44 0%, #e0be72 100%);
  color: #13284d;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(212, 173, 91, .14);
}

.guarantee-reference-step-copy strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.guarantee-reference-step-copy small {
  display: block;
  color: rgba(233, 238, 248, .82);
  font-size: 14px;
  line-height: 1.8;
}

.guarantee-reference-badge-col {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-top: 6px;
  direction: rtl;
  text-align: center;
}

.guarantee-reference-badge {
  width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 22px;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 28%), linear-gradient(145deg, #d3af6d 0%, #e3c37f 100%);
  border: 4px solid rgba(239, 215, 162, .46);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 36px rgba(219, 184, 103, .24);
}

.guarantee-reference-badge strong {
  display: block;
  color: #16294c;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.guarantee-reference-badge .badge-day {
  display: block;
  margin-top: 3px;
  color: #16294c;
  font-size: 17px;
  font-weight: 800;
}

.guarantee-reference-badge .badge-caption {
  display: block;
  margin-top: 8px;
  color: rgba(22,41,76,.82);
  font-size: 15px;
  font-weight: 700;
}

.guarantee-reference-badge-note {
  max-width: 220px;
  margin: 0;
  color: rgba(240, 243, 248, .86);
  font-size: 15px;
  line-height: 1.85;
}

.guarantee-reference-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.guarantee-reference-note {
  margin: 0;
  color: rgba(223, 231, 245, .62);
  font-size: 13px;
  line-height: 1.8;
}

.guarantee-reference-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #c49336 0%, #e0be72 100%);
  color: #13284d;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 24px rgba(212, 173, 91, .14);
}

.guarantee-reference-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(212, 173, 91, .18);
}

@media (max-width: 960px) {
  .guarantee-reference-shell {
    padding: 28px 20px 24px;
    border-radius: 28px;
  }

  .guarantee-reference-body {
    grid-template-columns: 1fr;
    direction: rtl;
  }

  .guarantee-reference-badge-col {
    order: -1;
    padding-top: 0;
  }

  .guarantee-reference-foot {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .guarantee-reference-link {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .guarantee-section-reference {
    padding: 12px 0 28px;
  }

  .guarantee-reference-shell {
    padding: 22px 14px 18px;
    border-radius: 24px;
  }

  .guarantee-reference-kicker {
    min-height: 32px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .guarantee-reference-head h2 {
    font-size: 31px;
  }

  .guarantee-reference-head p {
    font-size: 15px;
  }

  .guarantee-reference-step {
    min-height: auto;
    padding: 16px 64px 16px 16px;
    border-radius: 18px;
  }

  .guarantee-reference-step-num {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
  }

  .guarantee-reference-step-copy strong {
    font-size: 17px;
  }

  .guarantee-reference-step-copy small {
    font-size: 13px;
  }

  .guarantee-reference-badge {
    width: 176px;
  }

  .guarantee-reference-badge strong {
    font-size: 56px;
  }

  .guarantee-reference-badge .badge-day {
    font-size: 15px;
  }

  .guarantee-reference-badge .badge-caption {
    font-size: 14px;
  }

  .guarantee-reference-badge-note {
    font-size: 14px;
  }
}


/* =========================================
   GUARANTEE FULL WIDTH PASS v4
========================================= */
.guarantee-section-reference {
  padding: 0;
}

.guarantee-section-reference > .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.guarantee-reference-shell {
  width: 100%;
  border-radius: 0;
  padding: 42px clamp(18px, 4vw, 56px) 40px;
}

@media (max-width: 960px) {
  .guarantee-reference-shell {
    padding: 30px 18px 26px;
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .guarantee-reference-shell {
    padding: 24px 14px 22px;
    border-radius: 0;
  }
}


/* =========================================
   FINAL CTA PREMIUM CARD v1
========================================= */
.final-cta-section {
  padding: 26px 0 28px;
}

.final-cta-section .container {
  max-width: 1180px;
}

.final-cta-card {
  position: relative;
  padding: 52px 34px 40px;
  border-radius: 40px;
  background: linear-gradient(180deg, #fbfbfb 0%, #f6f5f2 100%);
  border: 1px solid rgba(210, 189, 145, 0.34);
  box-shadow: 0 26px 54px rgba(26, 34, 58, 0.08);
  text-align: center;
  overflow: hidden;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b6862b 0%, #ddbe78 100%);
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2e8d2 0%, #e9dcc2 100%);
  border: 1px solid rgba(209, 184, 137, 0.6);
  color: #b68426;
  font-size: 14px;
  font-weight: 700;
}

.final-cta-badge::after {
  content: '•';
  font-size: 18px;
  line-height: 1;
}

.final-cta-card h2 {
  margin: 18px 0 10px;
  color: #1c2f55;
  font-size: clamp(40px, 5.1vw, 68px);
  font-weight: 800;
  line-height: 1.12;
}

.final-cta-card h2 span {
  color: #bc9445;
}

.final-cta-subtitle {
  margin: 0 0 16px;
  color: #594f42;
  font-size: 18px;
  line-height: 1.8;
}

.final-cta-offer-strip {
  max-width: 900px;
  margin: 0 auto 22px;
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f6edd1 0%, #f2e8ca 100%);
  border: 1px solid rgba(212, 189, 142, 0.64);
  color: #5c4926;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.final-cta-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.final-cta-save-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d5b06d 0%, #bb8c39 100%);
  color: #14284d;
  font-size: 16px;
  font-weight: 800;
}

.final-cta-price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #1c2f55;
}

.final-cta-price-main {
  font-size: clamp(56px, 7vw, 82px);
  font-weight: 900;
  line-height: 1;
}

.final-cta-price-currency {
  font-size: 24px;
  font-weight: 700;
  color: #b68426;
}

.final-cta-price-old {
  color: #8e8170;
  font-size: 22px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.final-cta-button {
  width: min(100%, 900px);
  min-height: 78px;
  margin: 0 auto 24px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1e325b 0%, #1a2b50 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(24, 40, 74, 0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.final-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(24, 40, 74, 0.22);
}

.final-cta-installments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.final-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f8f5ef;
  border: 1px solid rgba(205, 190, 167, 0.72);
  color: #5e5347;
  font-size: 15px;
  font-weight: 600;
}

.final-cta-pill::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.final-cta-pill-tamara::before {
  background: #23c2b9;
}

.final-cta-pill-tabby::before {
  background: #9c8df4;
}

.final-cta-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.final-cta-payment {
  min-width: 92px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(206, 194, 171, 0.86);
  color: #584d41;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(32, 41, 65, 0.04);
}

.final-cta-security {
  margin: 0;
  color: #6e6254;
  font-size: 15px;
  line-height: 1.8;
}

.final-cta-section + .faq-section {
  padding-top: 0;
}

@media (max-width: 900px) {
  .final-cta-card {
    padding: 40px 20px 30px;
    border-radius: 30px;
  }

  .final-cta-card::before {
    left: 18px;
    right: 18px;
  }

  .final-cta-offer-strip {
    font-size: 15px;
  }

  .final-cta-button {
    min-height: 68px;
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .final-cta-section {
    padding: 20px 0 22px;
  }

  .final-cta-card {
    padding: 32px 14px 24px;
    border-radius: 24px;
  }

  .final-cta-badge {
    min-height: 34px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .final-cta-card h2 {
    font-size: 34px;
  }

  .final-cta-subtitle {
    font-size: 16px;
  }

  .final-cta-offer-strip {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14px;
  }

  .final-cta-price-row {
    gap: 14px;
    margin-bottom: 18px;
  }

  .final-cta-save-badge {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .final-cta-price-main {
    font-size: 52px;
  }

  .final-cta-price-currency {
    font-size: 20px;
  }

  .final-cta-price-old {
    font-size: 18px;
  }

  .final-cta-button {
    width: 100%;
    min-height: 60px;
    padding: 14px 16px;
    font-size: 18px;
    border-radius: 22px;
  }

  .final-cta-pill,
  .final-cta-payment,
  .final-cta-security {
    font-size: 13px;
  }

  .final-cta-payment {
    min-width: 82px;
    min-height: 38px;
  }
}


/* =========================================
   REVIEWS SLIDER + DETAIL POPUP v1
========================================= */
.reviews-slider-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.reviews-slider-viewport {
  overflow: hidden;
}

.review-slider-track {
  --reviews-gap: 16px;
  --reviews-visible: 2;
  display: flex;
  gap: var(--reviews-gap);
  direction: ltr;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-slider-card {
  appearance: none;
  background: #fff;
  flex: 0 0 calc((100% - (var(--reviews-gap) * (var(--reviews-visible) - 1))) / var(--reviews-visible));
  min-width: 0;
  border: 1px solid rgba(207, 187, 147, 0.28);
  cursor: pointer;
  text-align: right;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.review-slider-card:hover,
.review-slider-card:focus-visible,
.review-slider-card.is-active {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(26, 34, 58, 0.08);
  border-color: rgba(188, 148, 69, 0.48);
  outline: none;
}

.review-slider-card .review-profile-copy p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-slider-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #1d3158;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(28, 47, 85, 0.16);
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.reviews-slider-arrow:hover {
  transform: translateY(-2px);
  background: #162846;
}

.reviews-slider-arrow:disabled {
  opacity: .42;
  cursor: default;
  transform: none;
}

.reviews-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.reviews-slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(29, 49, 88, 0.18);
  cursor: pointer;
  padding: 0;
  transition: transform .18s ease, background .18s ease;
}

.reviews-slider-dot.is-active {
  background: #bc9445;
  transform: scale(1.18);
}

.review-detail-modal[hidden] {
  display: none !important;
}

.review-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
}

.review-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 33, 0.68);
  backdrop-filter: blur(5px);
}

.review-detail-card {
  position: relative;
  width: min(100% - 24px, 640px);
  margin: 9vh auto 0;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  border: 1px solid rgba(214, 189, 146, 0.38);
  box-shadow: 0 28px 60px rgba(10, 18, 33, 0.24);
  z-index: 1;
  direction: rtl;
  text-align: right;
}

.review-detail-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 47, 85, 0.08);
  color: #1c2f55;
  font-size: 24px;
  cursor: pointer;
}

.review-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.review-detail-avatar-wrap {
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(188, 148, 69, 0.22);
  box-shadow: 0 12px 24px rgba(26, 34, 58, 0.08);
}

.review-detail-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-detail-meta {
  min-width: 0;
}

.review-detail-meta .stars {
  margin-bottom: 6px;
  color: #d5aa4d;
  font-size: 18px;
}

.review-detail-meta h3 {
  margin: 0 0 4px;
  color: #1c2f55;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
}

.review-detail-meta p {
  margin: 0;
  color: #6c655a;
  font-size: 15px;
}

.review-detail-text {
  margin: 0;
  color: #364760;
  font-size: 17px;
  line-height: 2;
}

body.is-review-detail-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .review-slider-track {
    --reviews-visible: 2;
  }
}

@media (max-width: 680px) {
  .reviews-slider-shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reviews-slider-arrow {
    display: none;
  }

  .review-slider-track {
    --reviews-visible: 1;
    --reviews-gap: 12px;
  }

  .review-detail-card {
    width: min(100% - 16px, 640px);
    margin-top: 6vh;
    padding: 20px 14px 18px;
    border-radius: 22px;
  }

  .review-detail-head {
    align-items: flex-start;
  }

  .review-detail-avatar-wrap {
    flex-basis: 70px;
    width: 70px;
    height: 70px;
  }

  .review-detail-meta h3 {
    font-size: 20px;
  }

  .review-detail-text {
    font-size: 15px;
    line-height: 1.9;
  }
}


/* =========================================
   REVIEWS SLIDER PRO PASS v2
========================================= */
.reviews-profile-card {
  position: relative;
  overflow: hidden;
}

.reviews-profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(188, 148, 69, 0.08), transparent 26%);
  pointer-events: none;
}

.reviews-slider-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.reviews-slider-viewport {
  overflow: hidden;
  padding: 6px 2px;
}

.review-slider-track {
  --reviews-gap: 16px;
  --reviews-visible: 3;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--reviews-gap);
  direction: ltr;
  transition: transform 0.38s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.review-slider-card {
  appearance: none;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  flex: 0 0 calc((100% - (var(--reviews-gap) * (var(--reviews-visible) - 1))) / var(--reviews-visible));
  min-width: 0;
  min-height: 190px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(207, 187, 147, 0.28);
  text-align: right;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 31, 58, 0.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.review-slider-card:hover,
.review-slider-card:focus-visible,
.review-slider-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(188, 148, 69, 0.56);
  box-shadow: 0 16px 32px rgba(17, 31, 58, 0.09);
  outline: none;
}

.review-slider-card .review-avatar-wrap {
  width: 66px;
  height: 66px;
  margin: 0 0 14px auto;
  border: 2px solid rgba(188, 148, 69, 0.24);
  box-shadow: 0 8px 18px rgba(17, 31, 58, 0.06);
}

.review-slider-card .review-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-slider-card .review-profile-copy {
  gap: 0;
}

.review-slider-card .review-profile-copy .stars {
  margin-bottom: 8px;
}

.review-slider-card .review-profile-copy p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 72px;
  margin: 0 0 10px;
  color: #364760;
  font-size: 15px;
  line-height: 1.75;
}

.review-slider-card .review-profile-copy span {
  color: #1c2f55;
  font-weight: 700;
}

.reviews-slider-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #1d3158 0%, #172746 100%);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(28, 47, 85, 0.16);
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.reviews-slider-arrow:hover {
  transform: translateY(-2px);
}

.reviews-slider-arrow:disabled {
  opacity: .36;
  cursor: default;
  transform: none;
}

.reviews-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.reviews-slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 47, 85, 0.16);
  cursor: pointer;
  padding: 0;
  transition: transform .18s ease, background .18s ease;
}

.reviews-slider-dot.is-active {
  background: #bc9445;
  transform: scale(1.22);
}

.review-detail-modal[hidden] {
  display: none !important;
}

.review-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
}

.review-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 33, 0.72);
  backdrop-filter: blur(6px);
}

.review-detail-card {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, 680px);
  margin: 9vh auto 0;
  padding: 28px 24px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  border: 1px solid rgba(214, 189, 146, 0.42);
  box-shadow: 0 30px 62px rgba(11, 19, 33, 0.24);
  direction: rtl;
  text-align: right;
}

.review-detail-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 47, 85, 0.08);
  color: #1c2f55;
  font-size: 24px;
  cursor: pointer;
}

.review-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.review-detail-avatar-wrap {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(188, 148, 69, 0.24);
  box-shadow: 0 12px 22px rgba(17, 31, 58, 0.08);
}

.review-detail-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-detail-meta .stars {
  margin-bottom: 6px;
  color: #d5aa4d;
  font-size: 18px;
}

.review-detail-meta h3 {
  margin: 0 0 4px;
  color: #1c2f55;
  font-size: 25px;
  font-weight: 800;
}

.review-detail-meta p {
  margin: 0;
  color: #645b4d;
  font-size: 15px;
}

.review-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.review-detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f5efe2;
  border: 1px solid rgba(208, 186, 144, 0.6);
  color: #5b4c31;
  font-size: 14px;
  font-weight: 700;
}

.review-detail-badge.has-image {
  background: rgba(226, 244, 234, 0.92);
  border-color: rgba(116, 179, 134, 0.35);
  color: #2f6a43;
}

.review-detail-text {
  margin: 0;
  color: #364760;
  font-size: 17px;
  line-height: 2;
}

body.is-review-detail-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .review-slider-track {
    --reviews-visible: 2;
  }
}

@media (max-width: 680px) {
  .reviews-slider-shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reviews-slider-arrow {
    display: none;
  }

  .review-slider-track {
    --reviews-visible: 1;
    --reviews-gap: 12px;
  }

  .review-slider-card {
    min-height: 176px;
    padding: 16px;
  }

  .review-slider-card .review-profile-copy p {
    min-height: auto;
  }

  .review-detail-card {
    width: min(100% - 16px, 680px);
    margin-top: 6vh;
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .review-detail-head {
    align-items: flex-start;
  }

  .review-detail-avatar-wrap {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .review-detail-meta h3 {
    font-size: 20px;
  }

  .review-detail-badge,
  .review-detail-text {
    font-size: 14px;
  }
}


/* =========================================
   REVIEWS FINAL PREMIUM AUTOPLAY v3
========================================= */
.reviews-profile-card {
  position: relative;
  overflow: hidden;
}

.reviews-profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(188, 148, 69, 0.08), transparent 26%);
  pointer-events: none;
}

.reviews-slider-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.reviews-slider-viewport {
  overflow: hidden;
  padding: 8px 2px;
  touch-action: pan-y;
}

.review-slider-track {
  --reviews-gap: 16px;
  --reviews-visible: 3;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: var(--reviews-gap) !important;
  direction: ltr;
  transition: transform 0.38s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.review-slider-card {
  appearance: none;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%) !important;
  flex: 0 0 calc((100% - (var(--reviews-gap) * (var(--reviews-visible) - 1))) / var(--reviews-visible)) !important;
  width: auto !important;
  min-width: 0;
  min-height: 194px;
  padding: 18px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(207, 187, 147, 0.28) !important;
  text-align: right;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 31, 58, 0.04) !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.review-slider-card:hover,
.review-slider-card:focus-visible,
.review-slider-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(188, 148, 69, 0.56) !important;
  box-shadow: 0 16px 32px rgba(17, 31, 58, 0.09) !important;
  outline: none;
}

.review-slider-card .review-avatar-wrap {
  width: 66px !important;
  height: 66px !important;
  margin: 0 0 14px auto !important;
  border: 2px solid rgba(188, 148, 69, 0.24);
  box-shadow: 0 8px 18px rgba(17, 31, 58, 0.06);
}

.review-slider-card .review-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-slider-card .review-profile-copy {
  gap: 0;
}

.review-slider-card .review-profile-copy .stars {
  margin-bottom: 8px;
}

.review-slider-card .review-profile-copy p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 72px;
  margin: 0 0 10px;
  color: #364760;
  font-size: 15px;
  line-height: 1.75;
}

.review-slider-card .review-profile-copy span {
  color: #1c2f55;
  font-weight: 700;
}

.reviews-slider-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #1d3158 0%, #172746 100%);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(28, 47, 85, 0.16);
  transition: transform .18s ease, opacity .18s ease;
}

.reviews-slider-arrow:hover {
  transform: translateY(-2px);
}

.reviews-slider-arrow:disabled {
  opacity: .36;
  cursor: default;
  transform: none;
}

.reviews-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.reviews-slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 47, 85, 0.16);
  cursor: pointer;
  padding: 0;
  transition: transform .18s ease, background .18s ease;
}

.reviews-slider-dot.is-active {
  background: #bc9445;
  transform: scale(1.22);
}

.review-detail-modal[hidden] {
  display: none !important;
}

.review-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
}

.review-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 33, 0.72);
  backdrop-filter: blur(6px);
}

.review-detail-card-pro {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, 760px);
  margin: 7vh auto 0;
  padding: 28px 24px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  border: 1px solid rgba(214, 189, 146, 0.42);
  box-shadow: 0 30px 62px rgba(11, 19, 33, 0.24);
  direction: rtl;
  text-align: right;
}

.review-detail-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 47, 85, 0.08);
  color: #1c2f55;
  font-size: 24px;
  cursor: pointer;
}

.review-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-inline-end: 4px;
}

.review-detail-avatar-wrap {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(188, 148, 69, 0.24);
  box-shadow: 0 12px 22px rgba(17, 31, 58, 0.08);
}

.review-detail-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-detail-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: rgba(188, 148, 69, 0.10);
  color: #9e7733;
  font-size: 12px;
  font-weight: 700;
}

.review-detail-meta .stars {
  margin-bottom: 6px;
  color: #d5aa4d;
  font-size: 18px;
}

.review-detail-meta h3 {
  margin: 0 0 4px;
  color: #1c2f55;
  font-size: 25px;
  font-weight: 800;
}

.review-detail-meta p {
  margin: 0;
  color: #645b4d;
  font-size: 15px;
}

.review-detail-content-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.review-detail-photo-preview {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #f5efe2;
  border: 1px solid rgba(208, 186, 144, 0.48);
  box-shadow: 0 12px 24px rgba(17, 31, 58, 0.06);
}

.review-detail-photo-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.review-detail-photo-preview figcaption {
  padding: 10px 12px;
  color: #5b4c31;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.review-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.review-detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f5efe2;
  border: 1px solid rgba(208, 186, 144, 0.6);
  color: #5b4c31;
  font-size: 14px;
  font-weight: 700;
}

.review-detail-badge.has-image {
  background: rgba(226, 244, 234, 0.92);
  border-color: rgba(116, 179, 134, 0.35);
  color: #2f6a43;
}

.review-detail-text {
  margin: 0;
  color: #364760;
  font-size: 17px;
  line-height: 2;
}

body.is-review-detail-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .review-slider-track {
    --reviews-visible: 2;
  }
}

@media (max-width: 680px) {
  .reviews-slider-shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reviews-slider-arrow {
    display: none;
  }

  .review-slider-track {
    --reviews-visible: 1;
    --reviews-gap: 12px;
  }

  .review-slider-card {
    min-height: 176px;
    padding: 16px !important;
  }

  .review-slider-card .review-profile-copy p {
    min-height: auto;
  }

  .review-detail-card-pro {
    width: min(100% - 16px, 760px);
    margin-top: 5vh;
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .review-detail-head {
    align-items: flex-start;
  }

  .review-detail-avatar-wrap {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .review-detail-meta h3 {
    font-size: 20px;
  }

  .review-detail-content-grid {
    grid-template-columns: 1fr;
  }

  .review-detail-photo-preview {
    max-width: 180px;
    justify-self: center;
  }

  .review-detail-badge,
  .review-detail-text {
    font-size: 14px;
  }
}


/* WhatsApp icon replacement */
.footer-contact-icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.footer-contact-list a:hover .footer-contact-icon-whatsapp img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(30%) saturate(643%) hue-rotate(358deg) brightness(94%) contrast(88%);
}

.whatsapp-widget-cta-icon img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

.whatsapp-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}


/* WhatsApp transparent icon refinement */
.footer-contact-icon-whatsapp,
.whatsapp-widget-cta-icon,
.whatsapp-icon-wrap {
  background: transparent !important;
}

.footer-contact-icon-whatsapp img,
.whatsapp-widget-cta-icon img,
.whatsapp-icon-wrap img,
.whatsapp-icon {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ==========================================================
   COMPACT HEADER PATCH - requested smaller header height
   الهدف: تقليل ارتفاع الهيدر مع الحفاظ على نفس شكل التصميم.
   ========================================================== */
.topbar-track {
  padding: 4px 0 !important;
  font-size: 9px !important;
  gap: 10px !important;
}
.header-shell {
  min-height: 56px !important;
  gap: 12px !important;
}
.brand-logo {
  width: 122px !important;
}
.main-nav {
  gap: 16px !important;
}
.main-nav > a,
.nav-drop-btn {
  padding: 6px 0 !important;
  font-size: 12px !important;
}
.lang-switch {
  width: 34px !important;
  height: 34px !important;
  font-size: 12px !important;
}
.nav-account {
  min-height: 34px !important;
  padding: 0 10px !important;
  border-radius: 12px !important;
  font-size: 11px !important;
  gap: 6px !important;
}
.nav-account svg {
  width: 15px !important;
  height: 15px !important;
}
.nav-cta {
  min-height: 36px !important;
  padding: 0 13px !important;
  border-radius: 13px !important;
  font-size: 12px !important;
  gap: 6px !important;
}
.nav-cta-icon {
  font-size: 13px !important;
}
.nav-menu {
  top: calc(100% + 8px) !important;
}

@media (max-width: 920px) {
  .topbar-track {
    padding: 4px 0 !important;
    font-size: 9px !important;
  }
  .header-shell {
    min-height: 54px !important;
    gap: 8px !important;
  }
  .brand-logo {
    width: 112px !important;
  }
  .mobile-header-action {
    min-height: 32px !important;
    padding: 0 9px !important;
    border-radius: 11px !important;
    font-size: 10.5px !important;
  }
  .mobile-header-account svg {
    width: 15px !important;
    height: 15px !important;
  }
  .mobile-header-order {
    min-width: 52px !important;
  }
  .mobile-toggle {
    width: 32px !important;
    height: 32px !important;
    border-radius: 11px !important;
    font-size: 17px !important;
  }
}

@media (max-width: 640px) {
  .topbar-track {
    padding: 3px 0 !important;
    font-size: 8.5px !important;
  }
  .header-shell {
    min-height: 48px !important;
    gap: 6px !important;
  }
  .brand-logo {
    width: 94px !important;
  }
  .mobile-header-actions {
    gap: 5px !important;
  }
  .mobile-header-action {
    min-height: 30px !important;
    padding: 0 8px !important;
    border-radius: 10px !important;
    font-size: 10px !important;
  }
  .mobile-header-account {
    min-width: 30px !important;
  }
  .mobile-header-order {
    min-width: 48px !important;
  }
  .mobile-toggle {
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
  }
}

/* ==========================================================
   HEADER HEIGHT TIGHTEN PATCH v2
   تصغير مساحة الهيدر الداكنة الظاهرة في الصورة.
   ========================================================== */
.site-header {
  padding-block: 0 !important;
}
.header-shell {
  min-height: 72px !important;
  gap: 10px !important;
}
.brand-logo {
  width: 92px !important;
  height: auto !important;
  display: block !important;
}
.main-nav {
  gap: 18px !important;
}
.main-nav > a,
.nav-drop-btn {
  padding: 4px 0 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
}
.header-actions {
  gap: 8px !important;
}
.lang-switch {
  width: 34px !important;
  height: 34px !important;
  font-size: 12px !important;
}
.nav-account,
.nav-cta {
  min-height: 34px !important;
}
.nav-account {
  padding: 0 10px !important;
  font-size: 11px !important;
}
.nav-cta {
  padding: 0 12px !important;
  font-size: 12px !important;
  border-radius: 12px !important;
}

@media (max-width: 920px) {
  .header-shell {
    min-height: 58px !important;
  }
  .brand-logo {
    width: 82px !important;
  }
}

@media (max-width: 640px) {
  .header-shell {
    min-height: 52px !important;
  }
  .brand-logo {
    width: 72px !important;
  }
}

/* ==========================================================
   HEADER EXACT HEIGHT PATCH v3
   Requested: make the dark header area exactly 75px high.
   ========================================================== */
.site-header {
  height: 75px !important;
  min-height: 75px !important;
  padding-block: 0 !important;
}
.site-header > .container.header-shell,
.header-shell {
  height: 75px !important;
  min-height: 75px !important;
  max-height: 75px !important;
  align-items: center !important;
  gap: 10px !important;
}
.brand-logo {
  width: 96px !important;
  max-height: 58px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}
.main-nav {
  gap: 18px !important;
}
.main-nav > a,
.nav-drop-btn {
  padding: 0 !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
}
.header-actions {
  align-items: center !important;
  gap: 8px !important;
}
.lang-switch {
  width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  font-size: 12px !important;
}
.nav-account,
.nav-cta {
  height: 34px !important;
  min-height: 34px !important;
  line-height: 34px !important;
}
.nav-account {
  padding: 0 10px !important;
  font-size: 11px !important;
}
.nav-cta {
  padding: 0 12px !important;
  font-size: 12px !important;
  border-radius: 12px !important;
}

@media (max-width: 920px) {
  .site-header {
    height: 75px !important;
    min-height: 75px !important;
  }
  .site-header > .container.header-shell,
  .header-shell {
    height: 75px !important;
    min-height: 75px !important;
    max-height: 75px !important;
  }
  .brand-logo {
    width: 88px !important;
    max-height: 55px !important;
  }
  .mobile-header-action,
  .mobile-toggle {
    height: 34px !important;
    min-height: 34px !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 75px !important;
    min-height: 75px !important;
  }
  .site-header > .container.header-shell,
  .header-shell {
    height: 75px !important;
    min-height: 75px !important;
    max-height: 75px !important;
  }
  .brand-logo {
    width: 82px !important;
    max-height: 52px !important;
  }
}



/* ==========================================================
   FIXED HEADER PATCH v4
   Requested: keep the 75px header fixed while scrolling.
   ========================================================== */
:root {
  --fixed-header-height: 75px;
}
html {
  scroll-padding-top: calc(var(--fixed-header-height) + 14px) !important;
}
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--fixed-header-height) !important;
  min-height: var(--fixed-header-height) !important;
  max-height: var(--fixed-header-height) !important;
  z-index: 99999 !important;
}
.site-header + main {
  padding-top: var(--fixed-header-height) !important;
}
.site-header > .container.header-shell,
.header-shell {
  height: var(--fixed-header-height) !important;
  min-height: var(--fixed-header-height) !important;
  max-height: var(--fixed-header-height) !important;
}
.mobile-panel {
  position: fixed !important;
  top: var(--fixed-header-height) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99998 !important;
}


/* ===== CTA refinement: professional order button ===== */
.nav-cta {
  gap: 8px !important;
  min-height: 46px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  background: linear-gradient(180deg, #d5b46a 0%, #c8a24d 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 10px 22px rgba(200, 156, 75, 0.18), inset 0 1px 0 rgba(255,255,255,.18) !important;
}
.nav-cta::before {
  inset: 4px 10px auto 10px !important;
  height: 40% !important;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0)) !important;
}
.nav-cta-text,
.nav-cta-price,
.nav-cta-sep {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.nav-cta-text,
.nav-cta-price {
  color: #fff !important;
}
.nav-cta-text {
  font-weight: 800 !important;
}
.nav-cta-sep {
  color: rgba(255,255,255,.72) !important;
  font-weight: 700;
}
.nav-cta-price {
  font-weight: 900 !important;
  letter-spacing: 0;
}
.nav-cta-icon {
  display: none !important;
}
.mobile-header-order {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  white-space: nowrap;
}
.mobile-header-order-price {
  font-weight: 800;
  opacity: .92;
}
@media (max-width: 860px) {
  .nav-cta {
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }
  .nav-cta-price {
    font-size: 13px !important;
  }
  .mobile-header-order {
    gap: 4px !important;
    padding-inline: 12px !important;
  }
  .mobile-header-order-price {
    font-size: 12px;
  }
}

/* ===== Reviews actions failsafe patch ===== */
.reviews-full-section .review-open-modal-btn,
.reviews-full-section .reviews-slider-arrow,
.reviews-full-section .review-slider-card,
.reviews-full-section .reviews-slider-dot {
  pointer-events: auto !important;
  user-select: none;
}
.reviews-full-section .reviews-slider-arrow {
  z-index: 5;
}
.review-modal.is-open {
  display: grid !important;
}
.review-detail-modal:not([hidden]) {
  display: grid !important;
}


/* ==========================================================
   PREMIUM ANNOUNCEMENT BAR v1
   شريط إعلانات/ثقة متحرك أعلى الهيدر بنفس محتوى الاندكس المرجعي.
   ========================================================== */
:root {
  --announcement-height: 38px;
  --fixed-top-stack-height: calc(var(--announcement-height) + var(--fixed-header-height));
}

html {
  scroll-padding-top: calc(var(--fixed-top-stack-height) + 14px) !important;
}

.topbar.premium-announcement {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: var(--announcement-height) !important;
  min-height: var(--announcement-height) !important;
  z-index: 100000 !important;
  overflow: hidden !important;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 0%, rgba(241, 212, 159, .20), transparent 38%),
    radial-gradient(circle at 82% 100%, rgba(224, 185, 108, .14), transparent 34%),
    linear-gradient(90deg, #031124 0%, #0a2245 44%, #05162f 100%) !important;
  color: #fff7e8 !important;
  border-bottom: 1px solid rgba(241, 212, 159, .20) !important;
  box-shadow: 0 10px 28px rgba(3, 17, 36, .24), inset 0 -1px 0 rgba(255,255,255,.05) !important;
}

.topbar.premium-announcement::before,
.topbar.premium-announcement::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.topbar.premium-announcement::before {
  right: 0;
  background: linear-gradient(270deg, #031124 0%, rgba(3,17,36,0) 100%);
}

.topbar.premium-announcement::after {
  left: 0;
  background: linear-gradient(90deg, #031124 0%, rgba(3,17,36,0) 100%);
}

.topbar-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.12) 42%, transparent 56%);
  transform: translateX(65%);
  animation: announcementShine 6.5s ease-in-out infinite;
  opacity: .7;
  z-index: 1;
}

.topbar.premium-announcement .topbar-shell {
  height: 100% !important;
  overflow: hidden !important;
  position: relative;
  z-index: 2;
}

.topbar.premium-announcement .topbar-track {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  width: max-content !important;
  white-space: nowrap !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  animation: premiumTicker 31s linear infinite !important;
  will-change: transform;
}

.topbar.premium-announcement:hover .topbar-track {
  animation-play-state: paused !important;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  color: rgba(255, 248, 235, .92);
  text-shadow: 0 1px 12px rgba(0,0,0,.18);
}

.topbar-item-featured {
  color: #ffffff;
}

.topbar-icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1;
  color: var(--gold-300);
  background: linear-gradient(180deg, rgba(248,233,202,.16), rgba(200,156,75,.08));
  border: 1px solid rgba(241, 212, 159, .22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 5px 14px rgba(0,0,0,.14);
}

.topbar-text {
  display: inline-block;
  transform: translateY(-.5px);
}

.topbar.premium-announcement .trust-sep,
.topbar.premium-announcement .sep {
  color: rgba(224, 185, 108, .56) !important;
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 14px;
  transform: translateY(-1px);
}

.site-header {
  top: var(--announcement-height) !important;
}

.site-header + main {
  padding-top: var(--fixed-top-stack-height) !important;
}

.mobile-panel {
  top: var(--fixed-top-stack-height) !important;
}

@keyframes premiumTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes announcementShine {
  0%, 48% { transform: translateX(70%); opacity: 0; }
  58% { opacity: .65; }
  78%, 100% { transform: translateX(-70%); opacity: 0; }
}

@media (max-width: 920px) {
  :root { --announcement-height: 34px; }
  .topbar.premium-announcement .topbar-track {
    gap: 15px !important;
    font-size: 10.8px !important;
    animation-duration: 27s !important;
  }
  .topbar-icon {
    width: 19px;
    height: 19px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  :root { --announcement-height: 32px; }
  .topbar.premium-announcement::before,
  .topbar.premium-announcement::after { width: 42px; }
  .topbar.premium-announcement .topbar-track {
    gap: 12px !important;
    font-size: 10px !important;
    animation-duration: 23s !important;
  }
  .topbar-item { gap: 5px; }
  .topbar-icon {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .topbar.premium-announcement .trust-sep,
  .topbar.premium-announcement .sep { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .topbar.premium-announcement .topbar-track,
  .topbar-glow { animation: none !important; }
}

/* === Hero reading comfort spacing === */
.hero-copy h1 {
  margin-bottom: 18px !important;
  line-height: 1.22 !important;
}

.hero-desc {
  line-height: 1.95 !important;
  margin-bottom: 22px !important;
}

.hero-price-row,
.hero-price-row-v2 {
  margin-bottom: 20px !important;
}

.hero-actions {
  margin-bottom: 18px !important;
}

.hero-note,
.hero-note-v2,
.trust-list,
.trust-list-v2 {
  line-height: 1.8 !important;
}

@media (max-width: 640px) {
  .hero-copy h1 {
    margin-bottom: 14px !important;
    line-height: 1.18 !important;
  }

  .hero-desc {
    line-height: 1.88 !important;
    margin-bottom: 18px !important;
  }

  .hero-price-row,
  .hero-price-row-v2 {
    margin-bottom: 16px !important;
  }

  .hero-actions {
    margin-bottom: 14px !important;
  }
}


/* === Final offer split redesign + FAQ polish === */
.final-cta-section {
  padding: 28px 0 24px;
}

.final-cta-section .container {
  max-width: 1240px;
}

.final-offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,244,237,.98));
  border: 1px solid rgba(206, 185, 144, .34);
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(22, 32, 58, .10);
}

.final-offer-gallery,
.final-offer-shell .final-cta-card {
  min-width: 0;
}

.final-offer-gallery {
  position: relative;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 38%, rgba(227, 204, 216, .34), transparent 46%),
    linear-gradient(180deg, #f6f2f4 0%, #f4eeef 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-gallery-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(246,240,242,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.final-gallery-viewport {
  position: absolute;
  inset: 0;
}

.final-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  transform: scale(1.015);
}

.final-gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.final-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-gallery-chip {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(187, 145, 163, .24);
  color: #8c6177;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.final-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.88);
  color: #8f687d;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(50, 43, 52, .12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.final-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 16px 34px rgba(50, 43, 52, .16);
  background: #fff;
}

.final-gallery-arrow.prev { inset-inline-start: 18px; }
.final-gallery-arrow.next { inset-inline-end: 18px; }

.final-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.final-gallery-thumb {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  box-shadow: 0 8px 18px rgba(28, 35, 57, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.final-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-gallery-thumb:hover,
.final-gallery-thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(170, 111, 138, .56);
  box-shadow: 0 12px 24px rgba(28, 35, 57, .12);
}

.final-offer-shell .final-cta-card {
  text-align: right;
  padding: 32px 30px 30px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(250,247,242,.98));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-offer-shell .final-cta-card::before {
  display: none;
}

.final-offer-shell .final-cta-badge {
  align-self: flex-start;
  min-height: 40px;
  padding: 8px 16px;
  background: linear-gradient(180deg, #f2e5c8 0%, #ead8b5 100%);
}

.final-offer-shell .final-cta-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
}

.final-offer-shell .final-cta-subtitle {
  margin: 0 0 16px;
  color: #63584c;
  font-size: 17px;
  line-height: 1.95;
}

.final-offer-shell .final-cta-offer-strip {
  margin: 0 0 18px;
  max-width: none;
  font-size: 14px;
  line-height: 1.85;
}

.final-offer-shell .final-cta-price-row {
  justify-content: flex-start;
  gap: 14px 18px;
  margin-bottom: 18px;
}

.final-offer-shell .final-cta-save-badge {
  order: 3;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.final-offer-shell .final-cta-price-wrap {
  order: 1;
}

.final-offer-shell .final-cta-price-old {
  order: 2;
  font-size: 20px;
}

.final-offer-shell .final-cta-price-main {
  font-size: clamp(50px, 5vw, 72px);
}

.final-offer-shell .final-cta-price-currency {
  font-size: 20px;
}

.final-cta-highlights {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.final-cta-highlights li {
  position: relative;
  padding-inline-start: 30px;
  color: #4d443a;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 700;
}

.final-cta-highlights li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 40%, #f5e7cf 0 28%, #c89c4b 29% 100%);
  box-shadow: 0 0 0 6px rgba(200,156,75,.12);
}

.final-offer-shell .final-cta-button {
  width: 100%;
  min-height: 62px;
  margin: 0 0 16px;
  padding: 14px 18px;
  border-radius: 22px;
  font-size: 21px;
}

.final-offer-shell .final-cta-installments,
.final-offer-shell .final-cta-payments {
  justify-content: flex-start;
}

.final-offer-shell .final-cta-pill,
.final-offer-shell .final-cta-payment {
  min-height: 40px;
}

.final-offer-shell .final-cta-security {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.9;
}

.faq-shell-refined {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,244,239,.98));
}

.faq-shell-refined .faq-list {
  gap: 14px;
  max-width: 940px;
}

.faq-shell-refined .faq-item {
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 30px rgba(5,22,47,.05);
}

.faq-shell-refined .faq-item summary {
  min-height: 74px;
  padding: 20px 24px;
  font-size: clamp(16px, 1.5vw, 19px);
}

.faq-shell-refined .faq-item summary::after {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  font-size: 18px;
  background: linear-gradient(180deg, #ecd8ab, #d2b06b);
}

.faq-shell-refined .faq-item p {
  padding: 0 24px 22px;
  color: #5f665f;
  font-size: 16px;
  line-height: 2.05;
}

@media (max-width: 980px) {
  .final-offer-shell {
    grid-template-columns: 1fr;
  }

  .final-offer-gallery {
    padding: 18px 18px 12px;
  }

  .final-gallery-stage {
    min-height: auto;
    aspect-ratio: 4 / 4.4;
    border-radius: 26px 26px 22px 22px;
  }

  .final-offer-shell .final-cta-card {
    padding: 24px 20px 24px;
  }
}

@media (max-width: 640px) {
  .final-cta-section {
    padding: 18px 0 20px;
  }

  .final-offer-shell {
    border-radius: 26px;
  }

  .final-offer-gallery {
    padding: 14px 14px 10px;
  }

  .final-gallery-stage {
    aspect-ratio: 1 / 1.04;
    border-radius: 22px;
  }

  .final-gallery-arrow {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .final-gallery-arrow.prev { inset-inline-start: 12px; }
  .final-gallery-arrow.next { inset-inline-end: 12px; }

  .final-gallery-chip {
    top: 12px;
    inset-inline-start: 12px;
    min-height: 32px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .final-gallery-thumbs {
    gap: 8px;
    margin-top: 10px;
  }

  .final-gallery-thumb {
    border-radius: 14px;
  }

  .final-offer-shell .final-cta-card {
    padding: 18px 16px 18px;
  }

  .final-offer-shell .final-cta-badge {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .final-offer-shell .final-cta-card h2 {
    font-size: 33px;
    margin: 12px 0 10px;
  }

  .final-offer-shell .final-cta-subtitle {
    font-size: 15px;
    line-height: 1.9;
  }

  .final-offer-shell .final-cta-offer-strip {
    margin-bottom: 14px;
    padding: 11px 12px;
    border-radius: 16px;
    font-size: 13px;
  }

  .final-offer-shell .final-cta-price-row {
    gap: 10px 14px;
    margin-bottom: 14px;
  }

  .final-offer-shell .final-cta-price-main {
    font-size: 48px;
  }

  .final-offer-shell .final-cta-price-currency {
    font-size: 18px;
  }

  .final-offer-shell .final-cta-price-old {
    font-size: 17px;
  }

  .final-cta-highlights {
    gap: 10px;
    margin-bottom: 14px;
  }

  .final-cta-highlights li {
    font-size: 14px;
    line-height: 1.9;
    padding-inline-start: 26px;
  }

  .final-cta-highlights li::before {
    top: 8px;
    width: 14px;
    height: 14px;
  }

  .final-offer-shell .final-cta-button {
    min-height: 56px;
    margin-bottom: 14px;
    font-size: 17px;
    border-radius: 18px;
  }

  .final-offer-shell .final-cta-installments,
  .final-offer-shell .final-cta-payments {
    gap: 8px;
  }

  .final-offer-shell .final-cta-pill,
  .final-offer-shell .final-cta-payment,
  .final-offer-shell .final-cta-security {
    font-size: 12px;
  }

  .faq-shell-refined .faq-item summary {
    min-height: 66px;
    padding: 18px 18px;
    font-size: 16px;
  }

  .faq-shell-refined .faq-item p {
    padding: 0 18px 18px;
    font-size: 14px;
    line-height: 2;
  }
}

/* === CTA density + section rhythm refinement === */
:root {
  --section-separation: clamp(18px, 2.2vw, 30px);
}

/* Main CTA buttons: stronger text presence, less visual emptiness */
.hero-cta-split {
  width: min(100%, 486px) !important;
  min-height: 82px !important;
  padding: 7px 9px !important;
  gap: 10px !important;
  border-radius: 24px !important;
}

.hero-cta-split .hero-cta-text {
  flex: 1 1 auto;
  padding-inline: 14px;
  font-size: 24px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.01em;
}

.hero-cta-split .hero-cta-price {
  min-width: 144px !important;
  min-height: 62px !important;
  padding: 0 22px !important;
  font-size: 24px !important;
  line-height: 1.05 !important;
  border-radius: 18px !important;
}

.final-offer-shell .final-cta-button,
.final-cta-button {
  min-height: 66px;
  padding-inline: 22px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.sticky-order-cta {
  gap: 12px;
}

.sticky-cta-price {
  min-width: clamp(100px, 8.4vw, 146px);
}

.sticky-cta-price strong {
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.05;
}

.sticky-cta-button {
  min-height: 56px;
  padding-inline: 18px;
  font-size: clamp(16px, 1.28vw, 21px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Section rhythm: clean separation between blocks without overdoing it */
main > section + section {
  margin-top: var(--section-separation);
}

.hero + .hero-proof {
  margin-top: 12px;
}

@media (max-width: 900px) {
  :root {
    --section-separation: clamp(16px, 3vw, 22px);
  }

  .hero-cta-split {
    width: min(100%, 468px) !important;
    min-height: 74px !important;
  }

  .hero-cta-split .hero-cta-text {
    font-size: 21px !important;
    padding-inline: 12px;
  }

  .hero-cta-split .hero-cta-price {
    min-width: 128px !important;
    min-height: 56px !important;
    font-size: 21px !important;
  }
}

@media (max-width: 640px) {
  :root {
    --section-separation: 14px;
  }

  .hero-cta-split {
    width: 100% !important;
    min-height: 64px !important;
    padding: 6px 7px !important;
    gap: 8px !important;
    border-radius: 20px !important;
  }

  .hero-cta-split .hero-cta-text {
    font-size: 18px !important;
    padding-inline: 10px;
  }

  .hero-cta-split .hero-cta-price {
    min-width: 112px !important;
    min-height: 50px !important;
    padding: 0 16px !important;
    font-size: 18px !important;
    border-radius: 14px !important;
  }

  .final-offer-shell .final-cta-button,
  .final-cta-button {
    min-height: 58px;
    padding-inline: 16px;
    font-size: 18px;
  }

  .sticky-cta-button {
    min-height: 50px;
    padding-inline: 14px;
    font-size: 16px;
  }

  .sticky-cta-price strong {
    font-size: 18px;
  }

  .sticky-cta-price small {
    font-size: 10px;
  }

  main > section + section {
    margin-top: var(--section-separation);
  }

  .hero + .hero-proof {
    margin-top: 10px;
  }
}

/* === Final gallery after image removal === */
.final-gallery-thumbs {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* === SERVER SAFE TOPBAR + GALLERY FIX === */
:root {
  --announcement-height: 38px;
  --fixed-header-height: 75px;
  --fixed-top-stack-height: calc(var(--announcement-height) + var(--fixed-header-height));
  --section-gap-clear: clamp(24px, 2.8vw, 38px);
}

html {
  scroll-padding-top: calc(var(--fixed-top-stack-height) + 16px) !important;
}

body > .topbar.premium-announcement {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--announcement-height) !important;
  min-height: var(--announcement-height) !important;
  max-height: var(--announcement-height) !important;
  z-index: 2147483000 !important;
  overflow: hidden !important;
  transform: none !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(241, 212, 159, .20), transparent 38%),
    radial-gradient(circle at 82% 100%, rgba(224, 185, 108, .14), transparent 34%),
    linear-gradient(90deg, #031124 0%, #0a2245 44%, #05162f 100%) !important;
  color: #fff7e8 !important;
  border-bottom: 1px solid rgba(241, 212, 159, .22) !important;
}

body > .topbar.premium-announcement .topbar-shell {
  height: 100% !important;
  overflow: hidden !important;
}

body > .topbar.premium-announcement .topbar-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  width: max-content !important;
  height: 100% !important;
  white-space: nowrap !important;
  gap: 18px !important;
  padding: 0 !important;
  margin: 0 !important;
  animation: premiumTicker 31s linear infinite !important;
}

body > .topbar.premium-announcement .topbar-item,
body > .topbar.premium-announcement .trust-sep {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}

body > .site-header {
  position: fixed !important;
  top: var(--announcement-height) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 2147482000 !important;
}

body > .site-header + main {
  padding-top: var(--fixed-top-stack-height) !important;
}

.mobile-panel {
  top: var(--fixed-top-stack-height) !important;
  z-index: 2147481999 !important;
}

main > section + section {
  margin-top: var(--section-gap-clear) !important;
}

.hero + .hero-proof {
  margin-top: 14px !important;
}

/* Keep final product images locked inside one slider frame on live servers. */
.final-offer-shell {
  overflow: hidden !important;
}

.final-offer-gallery {
  overflow: hidden !important;
}

.final-gallery-stage {
  position: relative !important;
  overflow: hidden !important;
  height: clamp(430px, 48vw, 620px) !important;
  min-height: 0 !important;
  max-height: 680px !important;
  aspect-ratio: auto !important;
}

#finalGalleryViewport.final-gallery-viewport,
.final-gallery-viewport {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
}

#finalGalleryViewport > figure,
#finalGalleryViewport > .final-gallery-slide,
.final-gallery-viewport > figure.final-gallery-slide {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  overflow: hidden !important;
  transform: scale(1.01) !important;
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease !important;
}

#finalGalleryViewport > figure.is-active,
#finalGalleryViewport > .final-gallery-slide.is-active,
.final-gallery-viewport > figure.final-gallery-slide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: scale(1) !important;
}

.final-gallery-slide img,
#finalGalleryViewport img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
}

.final-gallery-thumbs {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 900px) {
  :root {
    --announcement-height: 34px;
    --section-gap-clear: clamp(20px, 4vw, 28px);
  }

  .final-gallery-stage {
    height: clamp(360px, 82vw, 560px) !important;
  }
}

@media (max-width: 640px) {
  :root {
    --announcement-height: 32px;
    --section-gap-clear: 18px;
  }

  .final-gallery-stage {
    height: min(76vh, 520px) !important;
  }

  main > section + section {
    margin-top: var(--section-gap-clear) !important;
  }

  .hero + .hero-proof {
    margin-top: 12px !important;
  }
}

/* === Hero support alignment refinement === */
.hero-actions {
  align-items: center;
  gap: 10px;
}

.hero-cta-split,
.hero-service-line,
.hero-note-v2,
.trust-list-v2 {
  width: min(100%, 640px);
  margin-inline: auto;
}

.hero-service-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 26px;
  color: #9d7c47;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  opacity: .96;
}

.hero-note-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #173b78;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  margin-top: 2px;
}

.trust-list-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 14px;
  padding-top: 0;
  color: #173b78;
  text-align: center;
}

.trust-list-v2 > div {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  white-space: nowrap;
}

.trust-list-v2 > div::before {
  content: "✓";
  position: static;
  width: auto;
  height: auto;
  color: #3a9a5d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transform: none;
  margin: 0;
  box-shadow: none;
  background: none;
}

@media (max-width: 768px) {
  .hero-actions {
    gap: 8px;
  }

  .hero-cta-split,
  .hero-service-line,
  .hero-note-v2,
  .trust-list-v2 {
    width: 100%;
  }

  .hero-service-line {
    font-size: 12px;
    min-height: 24px;
  }

  .hero-note-v2 {
    font-size: 14px;
  }

  .trust-list-v2 {
    gap: 8px 14px;
    margin-top: 12px;
  }

  .trust-list-v2 > div {
    font-size: 13px;
    white-space: normal;
  }
}

/* === Hero first fold copy and alignment refinement === */
.hero-copy {
  text-align: center !important;
  max-width: 760px;
  margin-inline: auto;
  justify-self: center;
}

.hero-bestseller-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 22px;
  margin: 0 auto 24px;
  border-radius: 999px;
  color: #b68426;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(200,156,75,.25);
  box-shadow: 0 10px 24px rgba(5,22,47,.08), inset 0 1px 0 rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

.hero-bestseller-badge::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #74b98a, #3f9b63);
  box-shadow: 0 0 0 5px rgba(63,155,99,.12);
}

.hero-copy h1 {
  max-width: 760px;
  margin-inline: auto !important;
  margin-bottom: 26px !important;
  text-align: center !important;
  line-height: 1.18 !important;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.hero-copy h1 .gold-word,
.hero-copy h1 .gold-shine {
  white-space: nowrap;
}

.hero-desc {
  max-width: 680px !important;
  margin-inline: auto !important;
  margin-bottom: 34px !important;
  text-align: center !important;
  line-height: 2 !important;
  color: #4e5e76;
}

.hero-price-row-v2,
.hero-price-row {
  justify-content: center !important;
  margin-bottom: 30px !important;
}

.hero-actions {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.hero-cta-split,
.hero-service-line,
.hero-note-v2,
.trust-list-v2 {
  margin-inline: auto !important;
}

.trust-list-v2 {
  justify-content: center !important;
  text-align: center !important;
}

html[lang="en"] .hero-copy,
html[dir="ltr"] .hero-copy {
  text-align: center !important;
}

@media (min-width: 921px) {
  .hero-grid-v2 {
    align-items: center;
  }

  .hero-copy {
    padding-top: 10px;
  }
}

@media (max-width: 920px) {
  .hero-copy {
    max-width: 720px;
  }

  .hero-bestseller-badge {
    margin-bottom: 20px;
    min-height: 38px;
    padding: 7px 18px;
    font-size: 13px;
  }

  .hero-copy h1 {
    margin-bottom: 22px !important;
  }

  .hero-desc {
    margin-bottom: 26px !important;
  }

  .hero-price-row-v2,
  .hero-price-row {
    margin-bottom: 24px !important;
  }
}

@media (max-width: 640px) {
  .hero-bestseller-badge {
    max-width: 100%;
    min-height: 36px;
    padding: 7px 14px;
    margin-bottom: 18px;
    font-size: 12px;
  }

  .hero-copy h1 {
    line-height: 1.16 !important;
    margin-bottom: 18px !important;
  }

  .hero-desc {
    line-height: 1.9 !important;
    margin-bottom: 22px !important;
  }

  .hero-price-row-v2,
  .hero-price-row {
    margin-bottom: 20px !important;
  }
}

/* === Hero assurance content update: premium service + benefits === */
.hero-assurance-panel {
  width: min(100%, 660px);
  margin: 16px auto 0;
  padding: 14px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.58));
  border: 1px solid rgba(200,156,75,.18);
  box-shadow: 0 14px 34px rgba(5,22,47,.055), inset 0 1px 0 rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-assurance-panel .hero-service-line {
  width: 100% !important;
  min-height: auto;
  margin: 0 auto !important;
  color: #143761;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 850;
  line-height: 1.8;
  letter-spacing: .005em;
}

.hero-assurance-panel .trust-list-v2,
.hero-assurance-panel .trust-list-premium {
  width: 100% !important;
  margin: 12px auto 0 !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center !important;
  gap: 10px clamp(16px, 2.3vw, 34px);
  color: #143761;
}

.hero-assurance-panel .trust-list-premium > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #143761;
  font-size: clamp(13px, .98vw, 15px);
  font-weight: 850;
  line-height: 1.7;
  white-space: nowrap;
}

.hero-assurance-panel .trust-list-premium > div::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #20a35a;
  background: rgba(32,163,90,.10);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  box-shadow: none;
  transform: none;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-assurance-panel {
    width: 100%;
    margin-top: 14px;
    padding: 12px 12px 14px;
    border-radius: 20px;
  }

  .hero-assurance-panel .hero-service-line {
    font-size: 12px;
    line-height: 1.75;
  }

  .hero-assurance-panel .trust-list-v2,
  .hero-assurance-panel .trust-list-premium {
    margin-top: 10px !important;
    gap: 8px 12px;
  }

  .hero-assurance-panel .trust-list-premium > div {
    font-size: 12.5px;
    line-height: 1.55;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .hero-assurance-panel .trust-list-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }
}