/* ==========================================================================
   ShieldVPN - Premium High-Converting Prelander LP Design System
   Fixed Page-Wide Spinning Hologram HUD + Stable Circular Center Visual
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Theme Variables & Blue-Green Mixture Palette
   -------------------------------------------------------------------------- */
:root, [data-theme="dark"] {
  --bg-primary: #070B14;
  --bg-surface: #0E1626;
  --bg-surface-glass: rgba(14, 22, 38, 0.86);
  --bg-surface-elevated: #16243D;
  --text-primary: #F9FAFB;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  
  --color-cyan: #38BDF8;
  --color-mint: #2563EB;
  --color-teal: #0284C7;
  --blue-green-gradient: linear-gradient(135deg, #38BDF8 0%, #2563EB 50%, #1D4ED8 100%);
  --blue-green-hover: linear-gradient(135deg, #0284C7 0%, #1D4ED8 100%);
  --gold-accent: #F59E0B;
  --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  
  --cta-bg: linear-gradient(135deg, #38BDF8 0%, #2563EB 50%, #1D4ED8 100%);
  --cta-hover: linear-gradient(135deg, #0284C7 0%, #1E40AF 100%);
  --cta-shadow: 0 12px 35px -5px rgba(37, 99, 235, 0.55);
  --cta-text-color: #FFFFFF;
  
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(56, 189, 248, 0.45);
  --shadow-glow: 0 0 35px rgba(37, 99, 235, 0.35);
  --shadow-card: 0 25px 60px -10px rgba(0, 0, 0, 0.85);
  
  --announcement-bg: linear-gradient(90deg, #0F172A 0%, #1E3A8A 50%, #0F172A 100%);
  --announcement-text: #E0F2FE;
  
  --header-bg: rgba(7, 11, 20, 0.94);
  --hero-overlay: linear-gradient(180deg, rgba(7, 11, 20, 0.55) 0%, rgba(7, 11, 20, 0.85) 100%);
  --hero-bg-gradient: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(56, 189, 248, 0.25) 0%, rgba(37, 99, 235, 0.12) 50%, rgba(7, 11, 20, 0.95) 100%);
  --vpn-card-box-bg: rgba(0, 0, 0, 0.35);
  --footer-bg: #04070D;
}

[data-theme="light"] {
  --bg-primary: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-glass: rgba(255, 255, 255, 0.94);
  --bg-surface-elevated: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  
  --color-cyan: #0284C7;
  --color-mint: #2563EB;
  --color-teal: #1D4ED8;
  --blue-green-gradient: linear-gradient(135deg, #0284C7 0%, #2563EB 50%, #1D4ED8 100%);
  --blue-green-hover: linear-gradient(135deg, #0369A1 0%, #1E40AF 100%);
  --gold-accent: #D97706;
  --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  
  --cta-bg: linear-gradient(135deg, #0284C7 0%, #2563EB 50%, #1D4ED8 100%);
  --cta-hover: linear-gradient(135deg, #0369A1 0%, #1E40AF 100%);
  --cta-shadow: 0 12px 30px -5px rgba(37, 99, 235, 0.45);
  --cta-text-color: #FFFFFF;
  
  --border-glass: #E2E8F0;
  --border-glow: rgba(37, 99, 235, 0.4);
  --shadow-glow: 0 10px 30px rgba(37, 99, 235, 0.22);
  --shadow-card: 0 20px 45px -10px rgba(15, 23, 42, 0.08), 0 0 1px rgba(15, 23, 42, 0.12);
  
  --announcement-bg: #0F172A;
  --announcement-text: #F8FAFC;
  
  --header-bg: rgba(255, 255, 255, 0.94);
  --hero-overlay: linear-gradient(180deg, rgba(248, 250, 252, 0.78) 0%, rgba(248, 250, 252, 0.92) 100%);
  --hero-bg-gradient: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(56, 189, 248, 0.22) 0%, rgba(37, 99, 235, 0.1) 50%, rgba(248, 250, 252, 0.96) 100%);
  --vpn-card-box-bg: rgba(241, 245, 249, 0.85);
  --footer-bg: #F1F5F9;
}

/* --------------------------------------------------------------------------
   2. Reset & Typography Setup
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* FIXED ROTATING HOLOGRAM HUD DIALER BACKGROUND (Stays Visible When Scrolling) */
.hologram-hud-bg {
  display: none;
}

@keyframes slowSpinHUDFixed {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

[data-theme="light"] .hologram-hud-bg {
  opacity: 0.16;
  filter: contrast(1.1) opacity(0.85);
  mix-blend-mode: multiply;
}

/* --------------------------------------------------------------------------
   2.1 Page Preloader Screen Overlay
   -------------------------------------------------------------------------- */
.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader-img {
  width: 220px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(37, 99, 235, 0.45);
  animation: preloaderPulse 1.8s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 35px rgba(37, 99, 235, 0.35);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 55px rgba(56, 189, 248, 0.6);
  }
}

/* --------------------------------------------------------------------------
   3. Top Announcement Bar
   -------------------------------------------------------------------------- */
.top-announcement-bar {
  position: relative;
  z-index: 2;
  background: var(--announcement-bg);
  color: var(--announcement-text);
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: 0.01em;
}

.announcement-badge {
  background: var(--blue-green-gradient);
  color: #080C14;
  font-family: 'Outfit', sans-serif;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(0, 230, 118, 0.4);
}

/* --------------------------------------------------------------------------
   4. Glass Header & Navigation
   -------------------------------------------------------------------------- */
.glass-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.7rem 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s ease;
}

.site-logo-icon:hover {
  transform: scale(1.05);
}

.footer-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-icon-box {
  width: 40px;
  height: 40px;
  background: var(--blue-green-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080C14;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
}

.logo-icon-box.small {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 1rem;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

.logo-accent {
  background: var(--blue-green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-cyan);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme Switcher Toggle */
.theme-toggle-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle-btn:hover {
  transform: scale(1.08);
}

.theme-toggle-btn i {
  font-size: 1.1rem;
}

[data-theme="dark"] .fa-sun { display: block; color: #F59E0B; }
[data-theme="dark"] .fa-moon { display: none; }

[data-theme="light"] .fa-sun { display: none; }
[data-theme="light"] .fa-moon { display: block; color: #475569; }

.btn-header-cta {
  background: var(--blue-green-gradient);
  color: var(--cta-text-color) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  box-shadow: var(--cta-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 230, 118, 0.45);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-image: var(--hero-bg-gradient), url('assets/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0 4rem;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-section .container {
  max-width: 1320px;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
  width: 100%;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Verified Security Badge */
.verified-deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1.2rem;
  border-radius: 9999px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid var(--border-glow);
  margin-bottom: 1.25rem;
  color: var(--color-cyan);
}

.verified-deal-badge i {
  font-size: 0.92rem;
  color: var(--color-mint);
}

.hero-text-col h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero-text-col h1 span, .hero-text-col .logo-accent {
  background: var(--blue-green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text-col .hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.85rem;
  max-width: 620px;
  line-height: 1.58;
  text-align: left;
}

/* Prominent Hero Price Callout Box */
.hero-price-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-glow);
  padding: 0.65rem 1.15rem;
  border-radius: 16px;
  margin-bottom: 1.25rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}

.price-discount-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--color-mint);
  background: rgba(0, 230, 118, 0.14);
  border: 1px solid rgba(0, 230, 118, 0.35);
  padding: 0.28rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: 'Outfit', sans-serif;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-cyan);
}

.price-main {
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-original {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

.price-billing-note {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: auto;
}

/* CTA Wrapper */
.hero-text-col .cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  margin-bottom: 1.65rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: var(--blue-green-gradient);
  color: var(--cta-text-color) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  padding: 1.1rem 2.2rem;
  border-radius: 16px;
  box-shadow: var(--cta-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 230, 118, 0.55);
}

.cta-subtext-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.65rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.cta-subtext-info i {
  color: var(--color-mint);
}

/* Micro Feature Badges */
.hero-text-col .hero-features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0;
}

.feature-pill {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  padding: 0.48rem 1.05rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-pill i {
  color: var(--color-cyan);
}

/* Right Column Standalone 3D Glass Card */
.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Authentic Live VPN App Dashboard Visual Card */
.hero-vpn-app-card {
  width: 100%;
  max-width: 720px;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-glow);
  border-radius: 28px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-vpn-app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-green-gradient);
}

.vpn-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--vpn-card-box-bg);
  border-bottom: 1px solid var(--border-glass);
}

.vpn-app-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.vpn-app-title i {
  color: var(--color-cyan);
}

.vpn-app-status {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-mint);
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 0.22rem 0.65rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.05em;
}

.vpn-pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--color-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-mint);
  animation: pulse-dot 2s infinite;
}

/* Hero Video Showcase Styling */
.vpn-video-wrapper {
  position: relative;
  width: 100%;
  padding: 0.85rem;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-vpn-video {
  width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glow);
  display: block;
}

.vpn-metrics-box {
  padding: 0.9rem 1.25rem;
  background: var(--vpn-card-box-bg);
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.metric-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.metric-label {
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.metric-label i {
  color: var(--color-cyan);
  font-size: 0.75rem;
}

.metric-val {
  color: var(--text-primary);
  font-weight: 700;
}

.metric-val.highlight {
  color: var(--color-mint);
  font-family: monospace;
  font-size: 0.85rem;
}

.vpn-app-footer {
  padding: 0.75rem 1.25rem;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-glass);
  text-align: center;
}

.vpn-active-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-cyan);
}

.vpn-active-switch i {
  color: var(--color-mint);
}

/* Live VPN Protection Shield Hub Visual */
.vpn-shield-hub-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 1.8rem;
  overflow: hidden;
}

/* Orbiting Security Rings */
.vpn-orbit-ring {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.vpn-orbit-outer {
  width: 290px;
  height: 290px;
  border: 2px dashed var(--color-cyan);
  animation: rotateRing 16s linear infinite;
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.35);
  opacity: 0.85;
}

.vpn-orbit-inner {
  width: 250px;
  height: 250px;
  border: 2px solid var(--color-mint);
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation: rotateRingReverse 12s linear infinite;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
  opacity: 0.9;
}

.vpn-radar-pulse {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.25) 0%, rgba(0, 210, 255, 0.08) 50%, transparent 75%);
  animation: vpnPulseGlow 3s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes vpnPulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.vpn-symbol-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vpn-shield-svg {
  width: 250px;
  height: 250px;
  filter: drop-shadow(0 20px 40px rgba(0, 210, 255, 0.45));
  animation: floatShield 4s ease-in-out infinite alternate;
}

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

@keyframes rotateRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateRingReverse {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.status-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-mint);
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 0.38rem 1rem;
  border-radius: 9999px;
  margin-top: 1.25rem;
  position: relative;
  z-index: 2;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-mint);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   6. Benefits Section (3 Cards Grid)
   -------------------------------------------------------------------------- */
.section {
  padding: 4.5rem 0;
  position: relative;
  z-index: 2;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cyan);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
}

.section-title-wrap h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-top: 0.75rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.benefit-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 1.9rem 1.65rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  background: var(--bg-surface-elevated);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-cyan);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-glass);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. Why VPN Section
   -------------------------------------------------------------------------- */
.why-card {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: 26px;
  padding: 2.65rem 2.25rem;
  box-shadow: var(--shadow-card);
}

.why-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-mint);
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.why-content-wrap h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.why-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  line-height: 1.65;
}

.why-description.highlight {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.why-cta-wrap {
  max-width: 380px;
}

/* --------------------------------------------------------------------------
   8. Final CTA Section
   -------------------------------------------------------------------------- */
.final-cta-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: 26px;
  padding: 2.85rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-card h2 {
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.final-cta-card p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.transparency-note {
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  margin-top: 1.1rem !important;
  margin-bottom: 0 !important;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   9. Footer (Multi-Column Layout)
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 3.75rem 0 2.5rem;
  background: var(--footer-bg);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col.brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--color-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.55;
}

.copyright {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   10. Mobile Sticky Floating CTA Bar
   -------------------------------------------------------------------------- */
.mobile-sticky-cta {
  position: fixed;
  bottom: -90px;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--header-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-glow);
  padding: 0.7rem 1rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
  transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.mobile-sticky-cta.visible {
  bottom: 0;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 480px;
  margin: 0 auto;
}

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

.sticky-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  line-height: 1.2;
}

.sticky-text span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.btn-sticky {
  background: var(--blue-green-gradient);
  color: var(--cta-text-color) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.6rem 1.15rem;
  border-radius: 9999px;
  box-shadow: var(--cta-shadow);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   11. Media Queries (Responsive Layout)
   -------------------------------------------------------------------------- */
@media (max-width: 920px) {
  .hero-split-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.75rem;
    text-align: center;
  }

  .hero-visual-col {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-text-col {
    width: 100%;
    align-items: center;
  }

  .hero-text-col h1 {
    font-size: 2.15rem;
    text-align: center;
  }

  .hero-text-col .hero-subtitle {
    text-align: center;
  }

  .hero-text-col .cta-wrapper {
    align-items: center;
  }

  .hero-text-col .hero-features-grid {
    justify-content: center;
  }
}

@media (max-width: 868px) {
  .nav-links {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-glass-card {
    padding: 2.25rem 1.25rem;
    border-radius: 22px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .why-card {
    padding: 1.75rem 1.25rem;
  }
  
  .final-cta-card h2 {
    font-size: 1.65rem;
  }
  
  .mobile-sticky-cta {
    display: block;
  }
}

@media (max-width: 480px) {
  .top-announcement-bar {
    font-size: 0.76rem;
  }
  
  .verified-deal-badge {
    font-size: 0.74rem;
  }
  
  .btn-primary {
    font-size: 1.05rem;
    padding: 0.95rem 1.35rem;
  }
  
}

/* --------------------------------------------------------------------------
   Countdown Timer Badge
   -------------------------------------------------------------------------- */
.timer-badge {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-family: monospace;
  margin-left: 0.4rem;
}

/* --------------------------------------------------------------------------
   Supported Platforms Icon Bar
   -------------------------------------------------------------------------- */
.platforms-bar-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-glass);
  background: var(--bg-surface-glass);
}
.platforms-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.platforms-title {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}
.platforms-grid {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.platform-pill i {
  color: var(--color-cyan);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Locavexa 9-Perks Section (Compact & Space-Efficient Grid)
   -------------------------------------------------------------------------- */
.perks-section {
  padding: 2.75rem 0;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 1.75rem;
}
.perk-card {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.perk-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}
.perk-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}
.perk-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.perk-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Hybrid Comparison Table Section (Compact)
   -------------------------------------------------------------------------- */
.comparison-section {
  padding: 2.75rem 0;
  background: var(--bg-surface-elevated);
}
.comparison-table-wrapper {
  margin-top: 1.5rem;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-surface-glass);
}
.comparison-table th, .comparison-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.88rem;
}
.comparison-table th {
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
}
.comparison-table th.highlight-header {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(56, 189, 248, 0.15) 100%);
  color: var(--color-cyan);
  border-bottom: 2px solid var(--color-cyan);
}
.comparison-table td.highlight-col {
  background: rgba(37, 99, 235, 0.06);
  font-weight: 700;
  color: var(--text-primary);
}
.check-yes {
  color: #10B981;
  font-weight: 700;
}
.check-no {
  color: #EF4444;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Trustpilot Review Cards Section (Compact)
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 2.75rem 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 1.5rem;
}
.review-card {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-card);
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.user-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-glow);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-mint);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}
.user-name-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.user-name-box span {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.trustpilot-mark {
  color: #10B981;
  font-weight: 800;
  font-size: 0.82rem;
}
.review-stars {
  color: #F59E0B;
  display: flex;
  gap: 0.2rem;
  font-size: 0.85rem;
}
.review-quote {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   FAQ Accordion Section (Compact)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 2.75rem 0;
  background: var(--bg-surface-elevated);
}
.faq-accordion {
  max-width: 850px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.active {
  border-color: var(--border-glow);
}
.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-question i {
  color: var(--color-cyan);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.25rem 1rem;
}

/* Responsive queries for new sections */
@media (max-width: 991px) {
  .perks-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .perks-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .platforms-bar-wrapper {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Real Landscape Lifestyle & Platform Showcase Section (Post-Features Compact)
   -------------------------------------------------------------------------- */
.landscape-showcase-section {
  padding: 2.75rem 0;
  background: var(--bg-surface-elevated);
}
.landscape-showcase-card {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  padding: 2.25rem 2rem;
}
.landscape-showcase-grid {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.landscape-text-col {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.landscape-text-col h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}
.landscape-text-col p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.landscape-platforms-img-wrap {
  margin-top: 0.5rem;
}
.landscape-platforms-img-wrap img {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.landscape-img-col {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landscape-hero-img {
  width: 100%;
  max-width: 440px;
  border-radius: 14px;
  box-shadow: var(--shadow-glow);
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Comprehensive Mobile & Tablet Responsiveness Rules
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .landscape-showcase-grid {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1.5rem;
  }
  .landscape-text-col h2 {
    font-size: 1.5rem;
  }
  .landscape-platforms-img-wrap img {
    max-width: 100%;
  }
  .landscape-showcase-card {
    padding: 1.75rem 1.25rem;
  }
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 2.25rem 0 1.75rem;
  }
  .hero-text-col h1 {
    font-size: 1.65rem;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .perks-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .perk-card {
    padding: 0.95rem 1.1rem;
  }
  .perk-card h3 {
    font-size: 0.98rem;
  }
  .perk-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .platforms-bar-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .platforms-grid {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.4rem;
    -webkit-overflow-scrolling: touch;
  }
  .platform-pill {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }
  .section-title-wrap h2 {
    font-size: 1.45rem;
  }
  .comparison-table th, .comparison-table td {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }
  .faq-question {
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
  }
  .faq-answer {
    padding: 0 1rem 0.85rem;
    font-size: 0.85rem;
  }
}

/* --------------------------------------------------------------------------
   Limited-Time Special Offer Section
   -------------------------------------------------------------------------- */
.limited-deal-section {
  padding: 2rem 0;
}

.deal-card {
  position: relative;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(13, 148, 136, 0.1) 50%, rgba(245, 158, 11, 0.08) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25), var(--shadow-glow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-cyan);
  box-shadow: 0 16px 44px rgba(6, 182, 212, 0.2);
}

.deal-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #EF4444 0%, #F59E0B 100%);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.deal-header-badge .fire-icon {
  font-size: 1.1rem;
}

.deal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.deal-description {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 860px;
  margin-bottom: 1.5rem;
}

.deal-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

.deal-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.deal-item:hover {
  border-color: var(--border-glow);
  transform: translateX(3px);
}

.deal-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.deal-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.deal-cta-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.deal-btn {
  padding: 0.9rem 2rem;
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
}

.deal-guarantee {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.deal-guarantee i {
  color: var(--primary-cyan);
}

@media (max-width: 900px) {
  .deal-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .deal-card {
    padding: 1.5rem 1.25rem;
  }
  .deal-title {
    font-size: 1.5rem;
  }
  .deal-description {
    font-size: 0.92rem;
  }
  .deal-highlights-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .deal-cta-action {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .deal-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .deal-guarantee {
    justify-content: center;
  }
}


