/* ════════════════════════════════════════
   KALON — Luxury Fragrance Landing Page
   style.css
════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img, svg { display: block; max-width: 100%; }

/* ── Tokens ── */
:root {
  --cream:       #FAF7F2;
  --cream-dark:  #F2EBE0;
  --beige:       #E4D9CC;
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #A8892E;
  --black:       #1A1A1A;
  --charcoal:    #2E2E2E;
  --muted:       #8A8A8A;
  --white:       #FFFFFF;
  --wa-green:    #25D366;
  --wa-hover:    #1EBD5A;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
}

/* ── Typography helpers ── */
.eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow { margin-bottom: 14px; }

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  font-size: 16px;
  padding: 16px 36px;
  line-height: 1;
}

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

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(201,168,76,0.36);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 12px 36px rgba(201,168,76,0.48); }

.btn-outline {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 14px;
  text-align: center;
  font-size: 15px;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  font-size: 20px;
  padding: 20px 48px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: var(--wa-hover); box-shadow: 0 12px 40px rgba(37,211,102,0.42); }

.btn-xl { font-size: 20px; padding: 22px 56px; }

.btn-sm { font-size: 14px; padding: 10px 20px; white-space: nowrap; }

/* ════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════ */
.announce-bar {
  background: var(--black);
  color: var(--gold-light);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 28px;
  transition: box-shadow 0.25s;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--black);
  text-decoration: none;
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dark); }

/* ── Product & offer images ── */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #f8f8f8;
  display: block;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  min-height: 92svh;
}

.hero-text { display: flex; flex-direction: column; }

.hero-text .eyebrow { margin-bottom: 22px; }

.hero-ar {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 10px;
}

.hero-en {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 40px;
}

.hero-visual {
  display: block;
}

/* ════════════════════════════════════════
   OFFER SECTION
════════════════════════════════════════ */
.offer {
  background: var(--black);
  color: var(--white);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.offer-inner { position: relative; z-index: 1; }

.offer-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  border-radius: 2px;
}

.offer-headline {
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--white);
}

.offer-tagline {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.62);
  margin-bottom: 52px;
  font-weight: 300;
}

/* Offer items row */
.offer-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.offer-item {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 4px;
  padding: 28px 20px 22px;
  width: 190px;
  text-align: center;
}

.offer-item--gift {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
  position: relative;
  padding-top: 36px;
}

.gift-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.offer-item-visual {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.offer-plus {
  font-size: 30px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
}

.offer-item-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.offer-item-price { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Price display */
.price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.price-col { text-align: center; }

.price-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.price-old {
  font-size: 24px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  font-weight: 300;
}

.price-new {
  font-size: clamp(56px, 9vw, 80px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.price-arrow {
  font-size: 28px;
  color: rgba(201,168,76,0.35);
  align-self: center;
  padding-bottom: 8px;
}

.savings-pill {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.38);
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  margin-bottom: 40px;
}

/* Countdown */
.countdown-wrap { margin-bottom: 36px; }

.countdown-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cd-unit {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 14px 18px;
  min-width: 76px;
  text-align: center;
}

.cd-num {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  margin-top: 4px;
  letter-spacing: 1px;
}

.urgency-note {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 24px;
}

/* ════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════ */
.products {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 12px;
  padding: 0 0 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.product-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12); transform: translateY(-4px); }
.product-card:hover::after { transform: scaleX(1); }

.product-body {
  padding: 0 28px 8px;
}

.product-visual {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.prod-number {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.prod-name { font-size: 26px; font-weight: 700; margin-bottom: 6px; }

.prod-vibe { font-size: 14px; color: var(--muted); margin-bottom: 18px; }

.prod-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.prod-price {
  display: inline-block;
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  padding: 8px 24px;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════
   WHY KALON
════════════════════════════════════════ */
.why {
  background: var(--cream-dark);
  padding: 88px 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item { text-align: center; padding: 32px 20px; }

.why-icon {
  width: 66px;
  height: 66px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }

.why-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 32px 28px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.82;
  color: var(--charcoal);
  margin-bottom: 22px;
}

.reviewer { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold-light);
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 14px; }
.reviewer-loc  { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════
   WHATSAPP
════════════════════════════════════════ */
.wa-section {
  background: var(--black);
  padding: 88px 24px;
  text-align: center;
}

.wa-title {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.wa-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.58);
  margin-bottom: 38px;
}

/* ════════════════════════════════════════
   ORDER SUMMARY
════════════════════════════════════════ */
.order-summary {
  background: var(--cream);
  padding: 88px 24px;
  border-top: 1px solid var(--beige);
}

.order-summary-inner {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--beige);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 48px 44px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.os-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.os-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--beige);
  font-size: 15px;
}

.os-line:last-child { border-bottom: none; }

.os-line--gift { background: transparent; }

.os-label { color: var(--charcoal); font-weight: 600; }

.os-val { color: var(--black); font-weight: 700; }

.os-gift {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
}

.os-free {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.os-divider {
  height: 1px;
  background: var(--beige);
  margin: 4px 0 28px;
}

.os-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.os-was { text-align: right; }

.os-was-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.os-was-price {
  font-size: 20px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 300;
}

.os-now { text-align: left; }

.os-now-label {
  display: block;
  font-size: 11px;
  color: var(--gold-dark);
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 600;
}

.os-now-price {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.os-savings {
  text-align: center;
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 3px;
  padding: 10px 20px;
  margin-bottom: 32px;
}

.os-cta {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: 18px;
  text-align: center;
}

@media (max-width: 640px) {
  .order-summary-inner { padding: 32px 22px 28px; }
  .os-now-price { font-size: 38px; }
}

/* ════════════════════════════════════════
   EMAIL
════════════════════════════════════════ */
.email-section {
  background: var(--cream-dark);
  padding: 88px 24px;
  text-align: center;
}

.email-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.email-form--col { flex-direction: column; gap: 12px; }

.email-input {
  flex: 1;
  padding: 16px 18px;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  border: 2px solid var(--beige);
  border-radius: 2px 0 0 2px;
  background: var(--white);
  color: var(--black);
  outline: none;
  text-align: right;
  transition: border-color 0.2s;
}

.email-input:focus { border-color: var(--gold); }

.email-btn {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 16px 24px;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-btn:hover { background: var(--gold-dark); }

.email-form--col .email-input  { border-radius: 2px; }
.email-form--col .email-btn    { border-radius: 2px; padding: 16px; }

.email-note { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ════════════════════════════════════════
   INDIVIDUAL
════════════════════════════════════════ */
.individual { max-width: 900px; margin: 0 auto; padding: 80px 24px; }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.ind-item {
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
}

.ind-info h3 { font-size: 15px; font-weight: 700; }
.ind-info p  { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ════════════════════════════════════════
   ORDER FORM SECTION
════════════════════════════════════════ */
.order-form-section {
  background: var(--cream-dark);
  padding: 88px 24px;
  border-top: 1px solid var(--beige);
}

.order-form-inner {
  max-width: 680px;
  margin: 0 auto;
}

.order-form-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.order-form-sub {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 44px;
  line-height: 1.7;
}

.order-form {
  background: var(--white);
  border: 1px solid var(--beige);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 44px 40px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group--full { margin-bottom: 20px; }

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}

.req { color: var(--gold-dark); }

.form-optional {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  border: 1.5px solid var(--beige);
  border-radius: 3px;
  background: var(--cream);
  color: var(--black);
  outline: none;
  text-align: right;
  transition: border-color 0.2s, box-shadow 0.2s;
  direction: rtl;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Mini order recap inside form */
.form-order-summary {
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  border-radius: 3px;
  padding: 18px 20px;
  margin-bottom: 28px;
}

.fos-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 1px solid var(--beige);
}

.fos-line:last-of-type { border-bottom: none; }

.fos-gift span:last-child { color: var(--gold-dark); font-weight: 700; }

.fos-total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  padding-top: 12px;
  margin-top: 4px;
  border-top: 2px solid var(--beige);
}

.fos-total span:last-child { color: var(--gold-dark); }

.order-submit-btn {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: 18px;
  text-align: center;
  margin-bottom: 16px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Success state */
.order-success {
  background: var(--white);
  border: 1px solid var(--beige);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.order-success-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.order-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.order-success p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .order-form { padding: 28px 18px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .order-form-section { padding: 60px 18px; }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--black);
  text-align: center;
  padding: 40px 24px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 5px;
  margin-bottom: 8px;
}

.footer-sub  { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ════════════════════════════════════════
   FLOATING CTA
════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
  transform: translateX(-50%) translateY(10px);
  white-space: nowrap;
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 72px 24px 40px;
    min-height: auto;
    gap: 20px;
  }

  /* visual goes first on mobile */
  .hero-visual { order: -1; }
}

@media (max-width: 640px) {
  #main-nav { padding: 13px 18px; }
  .logo { font-size: 20px; letter-spacing: 4px; }

  .offer  { padding: 60px 18px; }
  .offer-items { gap: 10px; }
  .offer-item { width: 156px; padding: 22px 14px 18px; }
  .offer-plus { font-size: 22px; }

  .products  { padding: 60px 18px; }
  .why       { padding: 64px 18px; }
  .testimonials { padding: 64px 18px; }

  .email-form {
    flex-direction: column;
    gap: 10px;
  }
  .email-input { border-radius: 2px; }
  .email-btn   { border-radius: 2px; padding: 16px; }


  .individual { padding: 60px 18px; }

  .cd-unit { min-width: 60px; padding: 10px 14px; }
  .cd-num  { font-size: 28px; }
}

@media (max-width: 420px) {
  .offer-items { flex-direction: column; align-items: center; }
  .offer-plus  { transform: rotate(90deg); }
  .offer-item  { width: 210px; }
}
