/* ═══════════════════════════════════════════════════════════════
   CLOUDDEALS — MAIN STYLESHEET
   Design: TTBusiness.io inspired — Dark theme, teal accents, coral CTAs
═══════════════════════════════════════════════════════════════ */

:root {
  /* ── CORE PALETTE ── */
  --bg:            #0b0b0f;
  --bg-2:          #111118;
  --bg-3:          #16161f;
  --bg-card:       #13131c;
  --bg-card-2:     #1a1a27;
  --border:        rgba(255,255,255,0.08);
  --border-light:  rgba(255,255,255,0.12);

  /* ── ACCENT COLORS ── */
  --teal:          #00d4a8;
  --teal-dark:     #00a884;
  --teal-glow:     rgba(0,212,168,0.15);
  --coral:         #ff4757;
  --coral-dark:    #e0394a;
  --coral-glow:    rgba(255,71,87,0.2);
  --yellow:        #ffd60a;
  --purple:        #7c3aed;
  --purple-light:  #a855f7;

  /* ── TEXT ── */
  --white:         #ffffff;
  --text-primary:  #f0f0f8;
  --text-secondary:#a0a0b8;
  --text-muted:    #606078;

  /* ── LIGHT SURFACE (Navbar) ── */
  --nav-bg:        #ffffff;
  --nav-text:      #1a1a2e;
  --nav-link:      #444455;
  --nav-link-hover:#111;

  /* ── GRADIENTS ── */
  --grad-hero:     radial-gradient(ellipse at 30% 50%, rgba(120,0,40,0.35) 0%, transparent 60%),
                   radial-gradient(ellipse at 80% 20%, rgba(0,212,168,0.08) 0%, transparent 50%),
                   linear-gradient(180deg, #0b0b0f 0%, #0e0b18 100%);
  --grad-teal:     linear-gradient(135deg, #00d4a8 0%, #00a884 100%);
  --grad-coral:    linear-gradient(135deg, #ff4757 0%, #ff6b35 100%);
  --grad-card:     linear-gradient(145deg, #16161f 0%, #1e1e30 100%);
  --grad-purple:   linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);

  /* ── SHADOWS ── */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg:     0 10px 50px rgba(0,0,0,0.5);
  --shadow-teal:   0 8px 32px rgba(0,212,168,0.25);
  --shadow-coral:  0 8px 32px rgba(255,71,87,0.3);

  /* ── RADIUS ── */
  --r-sm:    6px;
  --r-md:    10px;
  --r-lg:    16px;
  --r-xl:    22px;
  --r-2xl:   32px;
  --r-full:  9999px;

  /* ── TYPOGRAPHY ── */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head: 'Poppins', 'Inter', sans-serif;

  /* ── TRANSITIONS ── */
  --t: 0.22s ease;
  --t-slow: 0.4s ease;

  /* ── LAYOUT ── */
  --topbar-h: 44px;
  --nav-h:    68px;
}

/* ═══════════ RESET ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
}
body.no-topbar { padding-top: var(--nav-h); }

/* Top-bar close: hide the bar + shift navbar to top */
.gift-topbar.hidden {
  display: none !important;
}
.navbar.topbar-hidden {
  top: 0 !important;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════ SCROLLBAR ═══════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--bg-card-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-dark); }

/* ═══════════ CONTAINER ═══════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════ */
.gift-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: linear-gradient(90deg, #ff4757 0%, #ff6b35 50%, #ff4757 100%);
  background-size: 200% 100%;
  animation: topbarShimmer 4s ease infinite;
  z-index: 1100;
  display: flex;
  align-items: center;
}
@keyframes topbarShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gift-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 48px;   /* leave room for the close btn on both sides */
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.gift-topbar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}
/* keep old left/right selectors inert so JS still works */
.gift-topbar-left  { display: contents; }
.gift-topbar-right { display: contents; }
.gift-icon { display: flex; align-items: center; flex-shrink: 0; }
.gift-text { text-align: center; white-space: normal; }
.coupon-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.2);
  border: 1.5px dashed rgba(255,255,255,0.5);
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t);
  letter-spacing: 1px;
}
.coupon-badge-inline:hover { background: rgba(255,255,255,0.3); }
.gift-cta-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--r-full);
  transition: all var(--t);
  white-space: nowrap;
}
.gift-cta-btn:hover { background: rgba(255,255,255,0.35); }
.gift-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 4px 6px;
  font-size: 14px;
  transition: color var(--t);
  line-height: 1;
  z-index: 1;
}
.gift-close:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════
   NAVBAR  — White light bar (TTBusiness style)
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 1px solid #e8e8f0;
  z-index: 1000;
  transition: box-shadow var(--t-slow);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--teal);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--nav-text);
  letter-spacing: -0.3px;
}
.logo-text strong { color: var(--coral); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-link);
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--nav-text);
  background: #f3f3f8;
}

/* Nav Dropdown hint */
.nav-link .fa-chevron-down { font-size: 10px; margin-left: 4px; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-outline-nav {
  font-size: 13px;
  font-weight: 600;
  color: var(--nav-text);
  border: 1.5px solid #d0d0e0;
  padding: 8px 18px;
  border-radius: var(--r-full);
  transition: all var(--t);
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-nav:hover {
  border-color: var(--nav-text);
  background: #f6f6fb;
}
.btn-primary-nav {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--grad-coral);
  padding: 9px 20px;
  border-radius: var(--r-full);
  transition: all var(--t);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-coral);
  white-space: nowrap;
}
.btn-primary-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255,71,87,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: all var(--t);
}
/* Animate hamburger → X when menu is open */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1200;
}
.mobile-menu-overlay.active { display: block; }
.mobile-menu {
  position: fixed;
  top: 0; right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--nav-bg);
  z-index: 1300;
  padding: 24px 20px;
  transition: right var(--t-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.active { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu li a {
  display: block;
  padding: 11px 14px;
  font-size: 15px;
  color: var(--nav-link);
  font-weight: 500;
  border-radius: var(--r-md);
  transition: all var(--t);
}
.mobile-menu li a:hover { background: #f3f3f8; color: var(--nav-text); }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--nav-link);
  cursor: pointer;
  margin-bottom: 12px;
}
.btn-primary-full {
  display: block;
  text-align: center;
  background: var(--grad-coral);
  color: #fff !important;
  font-weight: 700;
  padding: 13px;
  border-radius: var(--r-full);
  margin-top: 8px;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-outline-full {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  color: var(--nav-text) !important;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--r-full);
  margin-top: 8px;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid #d0d0e0;
  transition: all var(--t);
}
.btn-outline-full:hover { background: #f3f3f8; border-color: var(--nav-text); }

/* ═══════════════════════════════════════════════════════
   HERO SECTION  — TTBusiness split layout
═══════════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
  background: var(--grad-hero);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Ambient glow blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(160,0,50,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,168,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── LEFT COLUMN ── */
.hero-left { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-title .accent-teal { color: var(--teal); }
.hero-title .accent-coral { color: var(--coral); }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-desc strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.trust-item i { font-size: 13px; color: rgba(255,255,255,0.4); }
.trust-item.gold i { color: var(--yellow); }
.trust-item.teal i { color: var(--teal); }
.trust-sep {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

/* ── RIGHT COLUMN — Offer Card ── */
.hero-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-2xl);
  padding: 28px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-2xl) + 1px);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), transparent 50%, rgba(0,212,168,0.05));
  pointer-events: none;
}

.hero-card-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--grad-coral);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-coral);
}

.hero-card-header {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}
.hero-card-logo {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-card-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Offer tiers */
.offer-tiers { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.offer-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  transition: all var(--t);
}
.offer-tier:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.offer-tier.featured {
  background: rgba(0,212,168,0.06);
  border-color: rgba(0,212,168,0.2);
}
.offer-tier-label { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500; }
.offer-tier-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}
.offer-tier.featured .offer-tier-value { color: #fff; }

/* Card CTA */
.card-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--grad-teal);
  color: #0a1a15;
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
  box-shadow: var(--shadow-teal);
}
.card-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,212,168,0.4);
}
.card-cta-btn i { font-size: 14px; }

.card-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.card-disclaimer i { font-size: 10px; }

/* ═══════════════════════════════════════════════════════
   GLOBAL BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-full);
  padding: 11px 24px;
  transition: all var(--t);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  line-height: 1.4;
}

/* Hero primary = Coral */
.btn-hero-primary {
  background: var(--grad-coral);
  color: #fff !important;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all var(--t);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255,71,87,0.45);
}

/* Hero secondary = dark outline */
.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85) !important;
  border: 1.5px solid rgba(255,255,255,0.15);
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all var(--t);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

/* Teal filled */
.btn-teal {
  background: var(--grad-teal);
  color: #0a1a15 !important;
  font-weight: 700;
}
.btn-teal:hover { transform: translateY(-1px); box-shadow: var(--shadow-teal); }

/* Coral filled */
.btn-coral {
  background: var(--grad-coral);
  color: #fff !important;
  font-weight: 700;
  box-shadow: var(--shadow-coral);
}
.btn-coral:hover { transform: translateY(-1px); box-shadow: 0 12px 40px rgba(255,71,87,0.4); }

/* Primary (brand) */
.btn-primary {
  background: var(--grad-coral);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,71,87,0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-coral); }

/* Outline dark (on dark bg) */
.btn-outline-dark {
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8) !important;
  background: rgba(255,255,255,0.05);
}
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); }

/* Large */
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-primary-lg {
  background: var(--grad-coral);
  color: #fff !important;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: var(--shadow-coral);
  transition: all var(--t);
  white-space: normal;
  text-align: center;
  line-height: 1.4;
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(255,71,87,0.45); }

/* Small */
.btn-sm { padding: 7px 16px !important; font-size: 12px !important; border-radius: var(--r-full) !important; }

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,212,168,0.1);
  border: 1px solid rgba(0,212,168,0.2);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-label i { font-size: 11px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-title span { color: var(--teal); }

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Center variant */
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════════════════════════ */
.section { padding: 80px 0; }
.section-dark { background: var(--bg); }
.section-darker { background: var(--bg-2); }
.section-card { background: var(--bg-3); }

/* ═══════════════════════════════════════════════════════
   DEAL / COUPON CARDS — TTBusiness card style
═══════════════════════════════════════════════════════ */
.deal-strip {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.deal-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-teal);
}
.deal-strip-inner {
  display: flex;
  align-items: center;
  padding: 20px 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.deal-strip-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  background: rgba(0,212,168,0.1);
  border: 1px solid rgba(0,212,168,0.2);
  padding: 5px 12px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.deal-strip-text { flex: 1; min-width: 200px; }
.deal-strip-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.deal-strip-text span { font-size: 13px; color: var(--text-secondary); }
.deal-strip-code {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: 800;
  color: var(--yellow);
  background: rgba(255,214,10,0.08);
  border: 1.5px dashed rgba(255,214,10,0.3);
  padding: 9px 20px;
  border-radius: var(--r-md);
  cursor: pointer;
  letter-spacing: 2px;
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.deal-strip-code:hover { background: rgba(255,214,10,0.14); border-color: rgba(255,214,10,0.5); }

/* ── Coupon Cards Grid ── */
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.coupon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transition: all var(--t);
}
.coupon-card:hover {
  border-color: rgba(0,212,168,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,168,0.1);
}
.coupon-card-top {
  background: var(--bg-card-2);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.cc-discount {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}
.cc-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 2px;
}
.cc-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(0,212,168,0.1);
  color: var(--teal);
  border: 1px solid rgba(0,212,168,0.2);
}
.cc-badge.hot {
  background: rgba(255,71,87,0.1);
  color: var(--coral);
  border-color: rgba(255,71,87,0.2);
}
.coupon-card-body { padding: 18px 20px; }
.cc-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.cc-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }
.cc-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cc-code {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--yellow);
  background: rgba(255,214,10,0.06);
  border: 1.5px dashed rgba(255,214,10,0.25);
  padding: 10px 14px;
  border-radius: var(--r-md);
  text-align: center;
}
.cc-copy-btn {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t);
  font-size: 14px;
}
.cc-copy-btn:hover { border-color: var(--teal); color: var(--teal); }

/* ═══════════════════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-teal);
  opacity: 0;
  transition: opacity var(--t);
}
.feature-card:hover {
  border-color: rgba(0,212,168,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.feature-card:hover::before { opacity: 1; }
.fc-icon {
  width: 48px; height: 48px;
  background: rgba(0,212,168,0.1);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--teal);
  margin-bottom: 18px;
  transition: background var(--t);
}
.feature-card:hover .fc-icon { background: rgba(0,212,168,0.18); }
.fc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.fc-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════ */
.pricing-tabs {
  display: flex;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 5px;
  width: fit-content;
  margin: 0 auto 40px;
}
.pricing-tab {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t);
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-tab.active {
  background: var(--grad-teal);
  color: #0a1a15;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--t);
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(0,212,168,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.pricing-card.featured {
  border-color: rgba(0,212,168,0.3);
  background: var(--bg-card-2);
}
.pricing-card .pc-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-teal);
  color: #0a1a15;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pricing-card .pc-provider { font-size: 28px; margin-bottom: 8px; }
.pricing-card .pc-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pricing-card .pc-plan { font-size: 11px; color: var(--text-muted); margin-bottom: 16px; }
.pricing-card .pc-price {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .pc-price sub { font-size: 14px; color: var(--text-secondary); font-weight: 400; }
.pricing-card .pc-period { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.pricing-card .pc-features {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; color: var(--text-secondary);
  text-align: left; margin-bottom: 20px;
}
.pricing-card .pc-features li { display: flex; align-items: center; gap: 7px; }
.pricing-card .pc-features li i { color: var(--teal); font-size: 10px; flex-shrink: 0; }
.pricing-card .pc-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t);
  background: rgba(0,212,168,0.1);
  border: 1px solid rgba(0,212,168,0.2);
  color: var(--teal) !important;
}
.pricing-card.featured .pc-cta {
  background: var(--grad-teal);
  color: #0a1a15 !important;
  border: none;
  box-shadow: var(--shadow-teal);
}
.pricing-card .pc-cta:hover { transform: translateY(-1px); opacity: 0.9; }

/* ═══════════════════════════════════════════════════════
   REVIEW / STATS SECTION
═══════════════════════════════════════════════════════ */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 48px 0;
}
.stat-item {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-label { font-size: 13px; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS STEPS
═══════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--t);
  position: relative;
  z-index: 1;
}
.step-card:hover { border-color: rgba(0,212,168,0.2); transform: translateY(-4px); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  margin: 0 auto 16px;
}
.step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   REVIEW SECTION (personas / use-cases)
═══════════════════════════════════════════════════════ */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: all var(--t);
}
.persona-card:hover { border-color: rgba(0,212,168,0.2); transform: translateY(-3px); }
.persona-icon { font-size: 32px; margin-bottom: 12px; }
.persona-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.persona-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: all var(--t);
}
.testimonial-card:hover { border-color: rgba(0,212,168,0.15); transform: translateY(-3px); }
.tc-stars { color: var(--yellow); font-size: 14px; margin-bottom: 12px; display: flex; gap: 3px; }
.tc-text { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.tc-name { font-size: 14px; font-weight: 700; color: var(--white); }
.tc-role { font-size: 12px; color: var(--text-muted); }

/* Trustpilot bar */
.trustpilot-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.tp-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.tp-item .stars { color: var(--yellow); display: flex; gap: 2px; font-size: 14px; }
.tp-item strong { color: var(--white); font-weight: 700; }
.tp-sep { width: 1px; height: 32px; background: var(--border); }

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: rgba(0,212,168,0.25); }
.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 14px;
}
.faq-question h4 { font-size: 15px; font-weight: 600; color: var(--white); margin: 0; line-height: 1.4; }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 12px;
  flex-shrink: 0;
  transition: all var(--t);
}
.faq-item.open .faq-toggle { background: rgba(0,212,168,0.1); border-color: rgba(0,212,168,0.3); color: var(--teal); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ═══════════════════════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 80px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,168,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta h2 span { color: var(--teal); }
.final-cta p { font-size: 16px; color: var(--text-secondary); max-width: 520px; margin: 0 auto 32px; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   COMPARISON / DATA TABLES (dark styled)
═══════════════════════════════════════════════════════ */
.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table-wrap thead th {
  background: var(--bg-card-2);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.table-wrap tbody td {
  padding: 14px 18px;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.table-wrap tbody tr:last-child td { border-bottom: none; }
.table-wrap tbody tr:hover td { background: rgba(255,255,255,0.02); }
.table-wrap .td-teal { color: var(--teal); font-weight: 700; }
.table-wrap .td-coral { color: var(--coral); font-weight: 700; }
.table-wrap .td-best { background: rgba(0,212,168,0.05); font-weight: 600; }

/* Facts table (key-value) */
.facts-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.facts-table { width: 100%; border-collapse: collapse; }
.facts-table th {
  background: var(--bg-card-2);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.facts-table td {
  padding: 13px 18px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-primary);
}
.facts-table tr:last-child td { border-bottom: none; }
.facts-table td i { color: var(--teal); margin-right: 7px; width: 16px; }
.facts-table td:first-child { color: var(--text-secondary); font-weight: 500; }
.facts-table td:last-child { font-weight: 600; }

/* Data table (used in pricing page) */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table thead th {
  background: var(--bg-card-2);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-primary);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ═══════════════════════════════════════════════════════
   CASE STUDY / SAVINGS TABLE
═══════════════════════════════════════════════════════ */
.full-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.table-responsive { overflow-x: auto; }
.cs-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
.cs-table th {
  background: var(--bg-card-2);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.cs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-primary);
  vertical-align: middle;
}
.cs-table tr:last-child td { border-bottom: none; }
.cs-table .green { color: var(--teal); font-weight: 700; }
.cs-table .red { color: var(--coral); font-weight: 700; }

/* ═══════════════════════════════════════════════════════
   REVIEW SUMMARY / SCORE CARD
═══════════════════════════════════════════════════════ */
.review-score-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.review-score-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-teal);
}

/* Score bars */
.score-bars { display: flex; flex-direction: column; gap: 14px; }
.score-bar { display: flex; align-items: center; gap: 12px; }
.score-bar span { font-size: 13px; color: var(--text-secondary); width: 90px; flex-shrink: 0; }
.score-bar .bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-full);
  overflow: hidden;
}
.score-bar .fill {
  height: 100%;
  background: var(--grad-teal);
  border-radius: var(--r-full);
  transition: width 1.2s ease;
}
.score-bar strong { font-size: 13px; color: var(--white); width: 40px; text-align: right; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   PROS / CONS
═══════════════════════════════════════════════════════ */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros-card, .cons-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
}
.pros-card { border-top: 2px solid var(--teal); }
.cons-card { border-top: 2px solid var(--coral); }
.pros-card h4 { color: var(--teal); font-size: 14px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 7px; }
.cons-card h4 { color: var(--coral); font-size: 14px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 7px; }
.pros-list, .cons-list { display: flex; flex-direction: column; gap: 9px; }
.pros-list li, .cons-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-secondary); line-height: 1.45; }
.pros-list li i { color: var(--teal); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.cons-list li i { color: var(--coral); font-size: 11px; flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   ANNOUNCEMENT / HIGHLIGHT BARS
═══════════════════════════════════════════════════════ */
.highlight-bar {
  background: rgba(0,212,168,0.06);
  border: 1px solid rgba(0,212,168,0.15);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
}
.highlight-bar i { color: var(--teal); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.highlight-bar p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.highlight-bar p strong { color: var(--white); }

.warning-bar {
  background: rgba(255,214,10,0.06);
  border: 1px solid rgba(255,214,10,0.2);
  border-left: 3px solid var(--yellow);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
}
.warning-bar i { color: var(--yellow); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.warning-bar p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.warning-bar p strong { color: var(--white); }

/* ═══════════════════════════════════════════════════════
   MIGRATION CALCULATOR
═══════════════════════════════════════════════════════ */
.calc-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
}
.calc-controls { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.calc-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.calc-label span { color: var(--teal); font-weight: 700; }
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  background: var(--bg);
  border-radius: var(--r-full);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0,212,168,0.5);
}
.calc-result {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
}
.calc-result .result-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.calc-result p { font-size: 14px; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.footer-brand p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-top: 14px; max-width: 280px; }
.footer-logo .logo-text { color: var(--white); }
.footer-badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.footer-links-group h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links-group li a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--t);
  text-decoration: none;
}
.footer-links-group li a:hover { color: var(--teal); }
.footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); }
.footer-bottom p { margin-bottom: 4px; }

/* ═══════════════════════════════════════════════════════
   FLOATING COUPON WIDGET
═══════════════════════════════════════════════════════ */
.coupon-widget-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
}
.cwf-toggle {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad-coral);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  box-shadow: var(--shadow-coral);
  transition: all var(--t);
  display: flex; align-items: center; justify-content: center;
}
.cwf-toggle:hover { transform: scale(1.08); }
.cwf-panel {
  position: absolute;
  bottom: 62px; right: 0;
  width: 280px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  gap: 12px;
}
.cwf-panel.open { display: flex; }
.cwf-panel h4 { font-size: 14px; font-weight: 700; color: var(--white); }
.cwf-code {
  font-family: 'Courier New', monospace;
  font-size: 20px;
  font-weight: 800;
  color: var(--yellow);
  background: rgba(255,214,10,0.06);
  border: 1.5px dashed rgba(255,214,10,0.3);
  padding: 12px;
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  letter-spacing: 3px;
  transition: all var(--t);
}
.cwf-code:hover { background: rgba(255,214,10,0.12); }

/* ═══════════════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 90px; right: 26px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: all var(--t);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { border-color: var(--teal); color: var(--teal); }

/* ═══════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-card-2);
  border: 1px solid rgba(0,212,168,0.3);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r-full);
  display: flex; align-items: center; gap: 8px;
  z-index: 9999;
  transition: transform var(--t-slow), opacity var(--t-slow);
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════════════
   COUNTDOWN TIMER
═══════════════════════════════════════════════════════ */
.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}
.cd-item {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  min-width: 64px;
}
.cd-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.cd-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ═══════════════════════════════════════════════════════
   MISC UTILITIES
═══════════════════════════════════════════════════════ */
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.tag-teal { background: rgba(0,212,168,0.08); border-color: rgba(0,212,168,0.2); color: var(--teal); }
.tag-coral { background: rgba(255,71,87,0.08); border-color: rgba(255,71,87,0.2); color: var(--coral); }
.tag-yellow { background: rgba(255,214,10,0.08); border-color: rgba(255,214,10,0.2); color: var(--yellow); }

/* Color helpers */
.text-teal { color: var(--teal) !important; }
.text-coral { color: var(--coral) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--text-muted) !important; }

/* ── Counter animation ── */
.counter-animate { transition: none; }
