/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0A1628;
  --bg-secondary: #0F1F3A;
  --bg-card: rgba(15, 31, 58, 0.7);
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent-red: #E8430A;
  --accent-orange: #F5A623;
  --accent-yellow: #D4E157;
  --accent-green: #4CAF50;
  --accent-lime: #76FF03;
  --gradient-main: linear-gradient(135deg, #E8430A, #F5A623, #D4E157, #4CAF50);
  --gradient-warm: linear-gradient(135deg, #E8430A, #F5A623);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-glow: 0 0 60px rgba(245, 166, 35, 0.15);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  display: none;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.brand-name sup {
  font-size: 0.5rem;
  color: var(--accent-orange);
  font-weight: 600;
  vertical-align: super;
  margin-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-warm) !important;
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(232, 67, 10, 0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

/* Background Effects */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-red);
  top: -200px;
  left: -200px;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-orange);
  bottom: -150px;
  right: -150px;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-green);
  top: 40%;
  left: 50%;
  opacity: 0.15;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero Layout */
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  align-content: center;
}

/* Left Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  width: fit-content;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
}

/* Search Bar */
.hero-search {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 0.35rem;
  max-width: 540px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-search:focus-within {
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.08);
}

.search-icon {
  padding: 0 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-shrink: 0;
}

.hero-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 0.75rem 0;
  font-family: inherit;
  min-width: 0;
}

.hero-search input::placeholder {
  color: var(--text-muted);
}

.search-btn {
  background: var(--gradient-warm);
  border: none;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.search-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(232, 67, 10, 0.3);
}

/* CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-warm);
  padding: 1rem 1.8rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 67, 10, 0.35);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-price {
  background: rgba(255,255,255,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.btn-arrow {
  display: flex;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── CTA Urgency Strip ── */
.cta-urgency {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.urgency-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(232, 67, 10, 0.1);
  border: 1px solid rgba(232, 67, 10, 0.2);
  color: var(--accent-red);
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.urgency-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(76, 175, 80, 0.08);
  padding: 0.15rem 0.55rem;
  border-radius: 5px;
}

.urgency-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.urgency-price-row svg {
  color: var(--text-muted);
  opacity: 0.5;
  flex-shrink: 0;
}

.urgency-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
  opacity: 0.7;
}

.urgency-now {
  font-weight: 800;
  color: var(--accent-orange);
  font-size: 0.88rem;
}

.urgency-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
  flex-shrink: 0;
}

.urgency-validity {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Remove old cta-meta styles — replace with urgency */
.cta-meta {
  display: none;
}

/* ===== RIGHT — SCORE CARD ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.score-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  width: 100%;
  max-width: 380px;
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.score-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: var(--gradient-main);
  opacity: 0.12;
  z-index: -1;
  filter: blur(1px);
}

.score-gauge {
  text-align: center;
  margin-bottom: 1.5rem;
}

.gauge-svg {
  width: 200px;
  height: 130px;
}

.gauge-fill {
  stroke-dasharray: 252;
  stroke-dashoffset: 252;
  animation: gaugeDraw 2s ease-out 0.5s forwards;
}

@keyframes gaugeDraw {
  to { stroke-dashoffset: 60; }
}

.gauge-needle {
  transform-origin: 100px 120px;
  animation: needleSwing 2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

@keyframes needleSwing {
  0% { transform: rotate(-90deg); }
  100% { transform: rotate(15deg); }
}

.score-value {
  margin-top: -0.3rem;
}

.score-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-max {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.score-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Breakdown bars */
.score-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.breakdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.breakdown-item span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.breakdown-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  border-radius: 10px;
  animation: barGrow 1.5s ease-out 1s backwards;
}

@keyframes barGrow {
  from { width: 0% !important; }
}

.score-card-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
}

/* ===== STATS RIBBON ===== */
.stats-ribbon {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 2rem 0;
  background: var(--glass);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 1rem;
  background: none;
  -webkit-text-fill-color: var(--text-muted);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Add this new rule for the title break span */
.title-break {
  display: inline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    align-content: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subtitle {
    max-width: 600px;
  }

  .hero-search {
    max-width: 100%;
  }

  .btn-primary {
    margin: 0 auto;
  }

  .cta-urgency {
    align-items: center;
  }

  .hero-visual {
    order: -1;
  }

  .score-card {
    max-width: 340px;
    animation: none;
  }
}

@media (max-width: 768px) {
  /* Nav mobile menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    border-left: 1px solid var(--glass-border);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle span {
    width: 20px;
    height: 1.5px;
  }

  /* ── Hero mobile redesign ── */
  .hero {
    min-height: 100svh;
    padding-top: 70px;
    justify-content: flex-start;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 1.25rem;
    text-align: center;
    align-content: center;
    min-height: calc(100svh - 70px - 80px);
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    align-items: center;
    padding-top: 0;
    gap: 1.2rem;
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.85rem;
  }

  /* Fix title — hide <br> but keep the space */
  .title-break {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.65rem, 7.5vw, 2.4rem);
    line-height: 1.2;
    word-spacing: 0.04em;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 400px;
    color: var(--text-muted);
    padding: 0 0.5rem;
  }

  /* Search bar — full width, prominent */
  .hero-search {
    flex-direction: column;
    padding: 0.5rem;
    gap: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    border: 1px solid rgba(245, 166, 35, 0.12);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(245, 166, 35, 0.05);
  }

  .hero-search .search-icon {
    display: none;
  }

  .hero-search input {
    padding: 0.9rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .hero-search input::placeholder {
    font-size: 0.82rem;
  }

  .search-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-top: 0.35rem;
  }

  /* CTA — full width */
  .hero-cta {
    width: 100%;
    align-items: center;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    font-size: 0.88rem;
    border-radius: 14px;
  }

  .cta-urgency {
    align-items: center;
  }

  .urgency-row {
    justify-content: center;
    gap: 0.5rem;
  }

  .urgency-price-row {
    justify-content: center;
    font-size: 0.73rem;
  }

  .urgency-badge {
    font-size: 0.68rem;
  }

  .urgency-save {
    font-size: 0.7rem;
  }

  /* Stats ribbon — compact row, short labels */
  .stats-ribbon {
    margin-top: auto;
    padding: 1.25rem 0;
  }

  .stats-container {
    flex-direction: row;
    gap: 0;
    justify-content: space-evenly;
    padding: 0 0.25rem;
  }

  .stat-item {
    flex: 1;
    gap: 0.15rem;
    padding: 0 0.3rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-suffix {
    font-size: 0.7rem !important;
  }

  .stat-label {
    font-size: 0.58rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    max-width: 90px;
  }

  .stat-divider {
    width: 1px;
    height: 32px;
    flex-shrink: 0;
  }

  /* Tone down orbs */
  .orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    opacity: 0.2;
  }

  .orb-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
    opacity: 0.15;
  }

  .orb-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .hero-container {
    padding: 0 1rem;
  }

  .hero-content {
    padding-top: 1.75rem;
    gap: 1rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.84rem;
    padding: 0;
  }

  .hero-badge {
    font-size: 0.67rem;
  }

  .hero-search input {
    padding: 0.8rem 0.75rem;
    font-size: 0.85rem;
  }

  .hero-search input::placeholder {
    font-size: 0.78rem;
  }

  .btn-primary {
    padding: 0.8rem 1.2rem;
    font-size: 0.84rem;
  }

  .btn-price {
    font-size: 0.78rem;
    padding: 0.15rem 0.45rem;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.55rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .stat-number {
    font-size: 1rem;
  }

  .stat-suffix {
    font-size: 0.6rem !important;
  }

  .brand-name {
    font-size: 1.15rem;
  }
}

/* Remove old urgency styles */
.cta-meta,
.cta-urgency {
  display: none;
}

/* ── Offer Strip — Hostinger-level conversion ── */
.offer-strip {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  width: 100%;
  max-width: 540px;
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  gap: 0.75rem;
}

.offer-percent {
  background: var(--accent-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  animation: percentPulse 2.5s ease-in-out infinite;
}

@keyframes percentPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.offer-timer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.offer-timer svg {
  color: var(--accent-orange);
  flex-shrink: 0;
}

.timer-blocks {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.timer-block {
  background: rgba(232, 67, 10, 0.12);
  color: var(--accent-red);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  min-width: 26px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.timer-sep {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Pricing row */
.offer-pricing {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
}

.offer-price-old {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-was {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.price-strike {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--accent-red);
  text-decoration-thickness: 2px;
  opacity: 0.6;
}

.offer-price-new {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.price-now-label {
  font-size: 0.62rem;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 0.3rem;
}

.price-now {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-period {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 0.25rem;
}

/* CTA Button tweaks */
.hero-cta .btn-primary {
  width: 100%;
  max-width: 540px;
  justify-content: center;
  padding: 1rem 1.8rem;
  font-size: 1rem;
}

/* Offer footer — spots + social proof */
.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 540px;
  width: 100%;
  gap: 1rem;
  margin-top: 0.6rem;
}

.offer-spots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.offer-spots strong {
  color: var(--accent-red);
  font-weight: 700;
}

.spots-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
  flex-shrink: 0;
  animation: spotsBlink 1.5s ease-in-out infinite;
}

@keyframes spotsBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.offer-claimed {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.offer-claimed svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ===== RESPONSIVE — Update CTA sections ===== */
@media (max-width: 1024px) {
  /* ...existing code... */

  .offer-strip {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-cta .btn-primary {
    max-width: 480px;
  }

  .offer-footer {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* ...existing code... */

  .offer-strip {
    max-width: 100%;
    padding: 0.85rem 1rem;
  }

  .offer-top {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .offer-percent {
    font-size: 0.68rem;
  }

  .offer-timer {
    font-size: 0.68rem;
  }

  .offer-timer > span {
    display: none;
  }

  .timer-block {
    font-size: 0.72rem;
    min-width: 22px;
    padding: 0.15rem 0.3rem;
  }

  .price-strike {
    font-size: 1.1rem;
  }

  .price-now {
    font-size: 2rem;
  }

  .hero-cta .btn-primary {
    max-width: 100%;
    padding: 0.85rem 1.4rem;
    font-size: 0.9rem;
  }

  .offer-footer {
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
    max-width: 100%;
  }

  .offer-spots,
  .offer-claimed {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  /* ...existing code... */

  .offer-strip {
    padding: 0.75rem 0.85rem;
  }

  .offer-pricing {
    gap: 1rem;
  }

  .price-strike {
    font-size: 1rem;
  }

  .price-now {
    font-size: 1.75rem;
  }

  .price-period {
    font-size: 0.65rem;
  }

  .offer-spots,
  .offer-claimed {
    font-size: 0.65rem;
  }
}
