@import url('https://fonts.googleapis.com/css2?family=K2D:wght@300;400;500;600;700&family=League+Spartan:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-body: 'K2D', sans-serif;
  --font-head: 'League Spartan', sans-serif;
  --blue: #1a56db;
  --blue-dark: #1241a8;
  --blue-light: #ebf4ff;
  --purple: #7c3aed;
  --purple-dark: #6d28d9;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --green: #16a34a;
  --green-dark: #15803d;
  --red: #dc2626;
  --timer-red: #d90429;
  --timer-dark: #2b2d42;
  --ink: #0f172a;
  --ink-muted: #64748b;
  --bg: #ffffff;
  --bg-alt: #f1f5f9;
  --bg-hero: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #eef2ff 100%);
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 8px 30px rgba(26, 86, 219, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 86, 219, 0.18);
  --radius: 12px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  min-width: 0;
}

h1, h2, h3, h4, h5, h6,
.btn-buy, .btn-hero, .btn-features, .timer-header, .promo-title {
  font-family: var(--font-head);
}

a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--purple); }

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--blue); color: #fff; padding: 8px 16px; z-index: 10000;
  font-family: var(--font-head); font-weight: 700;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hidden SEO keyword blocks — crawlable, not displayed */
.seo-index-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

/* Homepage — center alignment */
body.page-home #main {
  text-align: center;
  overflow-x: clip;
  max-width: 100%;
}

body.page-home .review-section {
  overflow-x: clip;
  max-width: 100%;
}

body.page-home .review-section {
  margin-left: auto;
  margin-right: auto;
}

body.page-home .guarantees img {
  margin-left: auto;
  margin-right: auto;
}

body.page-home .comparison-section img {
  margin-left: auto;
  margin-right: auto;
}

body.page-home .kw-cloud {
  display: none !important;
}

#progress { display: none; }

/* ── Header ── */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.logo img {
  height: 54px;
  width: auto;
  transition: transform 0.25s;
}
.logo:hover img { transform: scale(1.02); }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: var(--blue-light);
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-buy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.45);
  color: #fff !important;
}

.btn-buy:hover::after { transform: translateX(100%); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.menu-toggle svg { width: 28px; height: 28px; }

/* ── Deal banner ── */
.deal-banner {
  text-align: center;
  background: linear-gradient(90deg, #fef3c7, #fde68a, #fef3c7);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  text-align: center;
  padding: 13px 20px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #92400e;
  border-bottom: 1px solid #fcd34d;
  letter-spacing: 0.02em;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.deal-banner u { text-decoration-thickness: 2px; }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 28px 20px 20px;
  background: var(--bg-hero);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  margin: 0 auto 18px;
  max-width: 300px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

/* Timer */
.timer-widget {
  max-width: 450px;
  margin: 16px auto 22px;
  position: relative;
  z-index: 1;
}

.timer-container {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.timer-container:hover { box-shadow: var(--shadow-lg); }

.timer-header {
  color: var(--timer-red);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timer-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.timer-segment {
  background: linear-gradient(145deg, #2b2d42, #1a1b2e);
  color: #fff;
  padding: 12px 10px;
  border-radius: 10px;
  min-width: 68px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 8px rgba(0,0,0,0.2);
}

.timer-segment span {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.timer-segment .label {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
  letter-spacing: 0.08em;
}

.promo-box {
  background: linear-gradient(135deg, #edf2f4, #e2e8f0);
  border: 2px dashed #8d99ae;
  padding: 16px;
  border-radius: 12px;
}

.promo-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--timer-dark);
  margin-bottom: 10px;
}

.copy-wrapper {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 8px 14px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  transition: border-color 0.2s;
}

.copy-wrapper:hover { border-color: var(--blue); }

.code-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  margin-right: 12px;
  color: var(--timer-red);
  letter-spacing: 0.1em;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--timer-dark);
  padding: 4px;
  display: flex;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.copy-btn:hover { color: var(--timer-red); background: #fee2e2; }

/* CTA buttons */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 22px auto 18px;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.btn-hero {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: clamp(15px, 2.8vw, 18px);
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  text-align: center;
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.4);
  color: #fff !important;
}

.btn-hero-accent {
  background: linear-gradient(135deg, #ef4444 0%, var(--amber) 100%);
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.35);
  animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(239, 68, 68, 0.35); }
  50% { box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(15px, 2.6vw, 22px);
  font-weight: 800;
  color: var(--ink);
  max-width: 720px;
  margin: 10px auto 8px;
  padding: 0 16px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.hero-headline a { color: inherit; }
.hero-headline a:hover { color: var(--blue); }

.hero-headline .highlight {
  color: var(--blue);
  background: linear-gradient(120deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-style: wavy;
  text-underline-offset: 5px;
  text-decoration-color: var(--amber);
  -webkit-text-fill-color: var(--blue);
}

/* Video — full-width responsive embed */
.video-section {
  width: 100%;
  max-width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(12px, 2.5vw, 24px) clamp(10px, 3vw, 20px);
  background: #fff;
  box-sizing: border-box;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: #0f172a;
  border-radius: clamp(10px, 2vw, var(--radius));
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Lifetime CTA */
.lifetime-cta {
  text-align: center;
  padding: 36px 20px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.lifetime-cta a { color: inherit; }

.lifetime-cta h2 {
  font-size: clamp(24px, 4.5vw, 36px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.lifetime-cta h4 {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-muted);
  margin-bottom: 22px;
  font-weight: 500;
}

.btn-features {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  opacity: 0;
  transform: scale(0.85);
}

.btn-features.is-visible {
  opacity: 1;
  transform: scale(1);
  animation: btnFeaturesBounceIn 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.btn-features.is-shuffle {
  animation: btnFeaturesShuffle 0.8s ease-in-out;
}

@keyframes btnFeaturesBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes btnFeaturesShuffle {
  0%, 100% { transform: translateX(0) rotate(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-6px) rotate(-2deg); }
  20%, 40%, 60%, 80% { transform: translateX(6px) rotate(2deg); }
}

.btn-features:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.5);
  color: #fff !important;
}

/* Guarantees */
.guarantees {
  text-align: center;
  padding: 24px 20px 32px;
  background: #fff;
}

.guarantees img { margin: 12px auto; opacity: 0.95; }

.guarantees p {
  font-family: var(--font-body);
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0;
}

.meta-disclaimer {
  font-size: 13px;
  color: var(--ink-muted);
  max-width: 720px;
  margin: 18px auto 0;
  line-height: 1.55;
}

/* Comparison */
.comparison-section {
  padding: 24px 20px 8px;
  text-align: center;
  background: var(--bg-alt);
}

.comparison-section h2 {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.comparison-section img {
  margin: 0 auto 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.review-section {
  background: var(--bg-alt);
}

/* Inner pages */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.page-content h1,
.page-content h2.page-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.page-content p {
  margin-bottom: 16px;
  color: #334155;
  line-height: 1.75;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  padding: 20px 0 40px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

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

.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}
.blog-card a { color: inherit; }
.blog-card a:hover h3 { color: var(--blue); }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: #cbd5e1;
  padding: 36px 20px;
  text-align: center;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 18px;
}

.footer-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  color: #cbd5e1;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }

.footer-meta {
  font-size: 12px;
  color: #94a3b8;
  max-width: 640px;
  margin: 14px auto 0;
  line-height: 1.55;
}

.site-footer a { color: #93c5fd; }

/* About Us page */
.about-page {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.about-heading {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  margin: 28px 0 10px;
}

.about-list {
  padding-left: 22px;
  margin-bottom: 16px;
}

.about-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.about-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.about-link-card {
  display: block;
  padding: 18px 20px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: var(--ink) !important;
}

.about-link-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--ink) !important;
}

.about-link-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: lowercase;
  margin-bottom: 4px;
}

.about-link-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.about-link-url {
  display: block;
  font-size: 11px;
  color: var(--ink-muted);
  word-break: break-all;
}

/* Ad slots */
.ad-slot {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
  padding: 0 12px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.ad-slot ins.adsbygoogle {
  display: block;
  min-height: 90px;
}

.ad-slot--inline {
  max-width: 720px;
  margin: 28px auto;
}

.ad-slot--wide {
  max-width: 960px;
}

.ad-slot--page {
  max-width: 728px;
  margin: 28px auto 20px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.ad-slot--page ins.adsbygoogle {
  min-height: 100px;
  border-radius: 6px;
  overflow: hidden;
}

.ad-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  opacity: 0.7;
}

/* Mobile sticky CTA — matches site blue + amber deal style */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  width: 100%;
  max-width: 100%;
  padding: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.msc-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "badge text btn";
  align-items: center;
  gap: 6px 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 8px max(10px, env(safe-area-inset-left, 0px)) calc(8px + env(safe-area-inset-bottom, 0px)) max(10px, env(safe-area-inset-right, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -4px 24px rgba(26, 86, 219, 0.15);
  border-top: 3px solid var(--blue);
}

.msc-badge {
  grid-area: badge;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: clamp(8px, 2.2vw, 10px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ef4444 0%, var(--amber) 100%);
  padding: clamp(4px, 1.2vw, 6px) clamp(5px, 1.5vw, 8px);
  border-radius: 6px;
  line-height: 1.1;
  white-space: nowrap;
  align-self: center;
}

.msc-text {
  grid-area: text;
  min-width: 0;
  color: var(--ink);
  line-height: 1.25;
  text-align: left;
  overflow: hidden;
}

.msc-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(10px, 2.8vw, 13px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.01em;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.msc-text span {
  display: block;
  font-size: clamp(9px, 2.4vw, 11px);
  font-weight: 500;
  color: var(--ink-muted);
  margin-top: 1px;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.msc-text em {
  font-style: normal;
  font-weight: 800;
  color: var(--timer-red);
  letter-spacing: 0.05em;
}

.msc-btn {
  grid-area: btn;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: clamp(7px, 2vw, 10px) clamp(8px, 2.5vw, 12px);
  font-family: var(--font-head);
  font-size: clamp(9px, 2.5vw, 12px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
  white-space: nowrap;
  text-align: center;
  max-width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: msc-pulse 2.5s ease-in-out infinite;
}

@keyframes msc-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35); }
  50% { box-shadow: 0 4px 20px rgba(124, 58, 237, 0.55); }
}

.msc-btn:hover {
  transform: scale(1.03);
  color: #fff !important;
}

body.has-mobile-cta {
  padding-bottom: var(--mobile-cta-height, 64px);
}

body.has-mobile-cta .site-footer {
  scroll-margin-bottom: var(--mobile-cta-height, 64px);
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .header-inner {
    padding: 10px 12px;
    gap: 10px;
  }
  .logo img {
    height: 42px;
    max-width: min(200px, 52vw);
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .deal-banner {
    font-size: clamp(11px, 3.2vw, 14px);
    padding: 10px 12px;
    line-height: 1.35;
  }
  .hero {
    padding: 18px 12px 16px;
  }
  .hero-logo {
    max-width: min(240px, 72vw);
    margin-bottom: 12px;
  }
  .timer-widget {
    max-width: 100%;
    margin: 12px auto 16px;
    padding: 0 4px;
  }
  .timer-container {
    padding: 16px 12px;
    border-radius: 12px;
  }
  .timer-header {
    font-size: clamp(12px, 3.4vw, 15px);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .timer-grid {
    gap: 6px;
    margin-bottom: 14px;
  }
  .timer-segment {
    min-width: 0;
    flex: 1 1 calc(25% - 6px);
    max-width: calc(25% - 4px);
    padding: 10px 6px;
  }
  .timer-segment span {
    font-size: clamp(18px, 5.5vw, 22px);
  }
  .timer-segment .label {
    font-size: 9px;
  }
  .promo-box {
    padding: 12px;
  }
  .promo-title {
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.35;
  }
  .copy-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    max-width: 100%;
  }
  .code-text {
    font-size: clamp(16px, 4.5vw, 20px);
    margin-right: 0;
  }
  .hero-cta {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    margin: 16px auto 14px;
    gap: 10px;
  }
  .btn-hero {
    padding: 14px 16px;
    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 1.35;
    border-radius: 12px;
  }
  .hero-headline {
    font-size: clamp(14px, 4vw, 18px);
    padding: 0 12px;
    line-height: 1.4;
    max-width: 100%;
  }
  .video-section {
    padding: 10px 8px;
    width: 100%;
  }
  .video-wrapper {
    min-height: 0;
    border-radius: 10px;
    border-width: 1px;
  }
  .lifetime-cta {
    padding: 24px 12px;
  }
  .lifetime-cta h2 {
    font-size: clamp(20px, 5.5vw, 28px);
    padding: 0 8px;
  }
  .lifetime-cta h4 {
    font-size: clamp(14px, 3.8vw, 17px);
    padding: 0 8px;
    margin-bottom: 16px;
  }
  .btn-features {
    font-size: clamp(13px, 3.5vw, 15px);
    padding: 14px 20px;
    max-width: calc(100% - 24px);
    word-break: break-word;
  }
  .guarantees {
    padding: 18px 12px 24px;
  }
  .guarantees img {
    max-width: 100%;
    height: auto;
  }
  .comparison-section {
    padding: 18px 12px 8px;
  }
  .comparison-section h2 {
    font-size: clamp(18px, 4.8vw, 24px);
    padding: 0 4px;
  }
  .comparison-section img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .meta-disclaimer {
    font-size: 12px;
    padding: 0 8px;
  }
  .ad-slot {
    padding-left: 8px;
    padding-right: 8px;
    margin-left: auto;
    margin-right: auto;
  }
  .ad-slot--wide,
  .ad-slot--page {
    max-width: 100%;
  }
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a { display: block; padding: 12px 16px; }
  .header-buy { display: none; }
  .mobile-sticky-cta.is-visible {
    display: block;
    pointer-events: auto;
  }

  /* Sticky CTA — always 2-row on mobile for guaranteed fit */
  .msc-inner {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "badge text"
      "btn btn";
    gap: 5px 6px;
    padding: 6px max(10px, env(safe-area-inset-left, 0px)) calc(6px + env(safe-area-inset-bottom, 0px)) max(10px, env(safe-area-inset-right, 0px));
  }

  .msc-text strong {
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }

  .msc-btn {
    width: 100%;
    min-height: 40px;
    font-size: clamp(11px, 3.2vw, 13px);
    padding: 10px 12px;
    border-radius: 10px;
    white-space: normal;
    line-height: 1.2;
  }
}

/* Extra-small devices (iPhone SE, 320px) */
@media (max-width: 360px) {
  .msc-inner {
    gap: 4px 5px;
    padding-left: max(8px, env(safe-area-inset-left, 0px));
    padding-right: max(8px, env(safe-area-inset-right, 0px));
  }

  .msc-badge {
    font-size: 7px;
    padding: 3px 4px;
  }

  .msc-text strong {
    font-size: 10px;
  }

  .msc-text span {
    font-size: 9px;
  }

  .msc-btn {
    min-height: 36px;
    font-size: 10px;
  }

  .deal-banner u {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .timer-grid { gap: 4px; }
  .hero-headline {
    font-size: clamp(13px, 4.2vw, 16px);
    padding: 0 10px;
  }
}
