/* CSS Variables */
:root {
  --primary-color: #0096ff;
  --primary-hover: #0077d6;
  --secondary-color: #0c1a30;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --text-light: #ffffff;
  --accent-color: #10b981; /* Green */
  --banner-bg: #e21c1c; /* Urgent red */
  --body-bg: #f9fafb;
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
  
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-title: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utility to lock scrolling when popup is active */
body.modal-open {
  overflow: hidden;
}

/* Blurring & locking the page background */
.blurred-content {
  filter: blur(8px) brightness(0.9);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease;
}

/* Announcement Top Banner */
.announcement-banner {
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10;
  border-bottom: 2px solid var(--primary-color);
}

/* Header & Trust Badges Strip */
.trust-badges-strip {
  background-color: #e6f4fe;
  border-bottom: 1px solid var(--border-color);
  padding: 6px 16px;
}

.trust-badges-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0369a1;
}

.trust-badge-item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Main Navigation */
.main-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 20px -10px rgba(12, 26, 48, 0.05);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--primary-color);
}

.main-nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.header-cta-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.1s;
}

.header-cta-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  padding: 60px 24px;
  background: radial-gradient(circle at top right, rgba(230, 244, 254, 0.4), var(--body-bg));
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.hero-content .subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-highlights {
  list-style: none;
  margin-bottom: 32px;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}

.hero-highlight-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.hero-cta-wrapper {
  margin-bottom: 24px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 150, 255, 0.3);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 350px;
}

.cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 150, 255, 0.4);
}

.hero-guarantees {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.guarantee-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

/* Image Showcase Column */
.hero-image-column {
  position: relative;
}

.hero-image-container {
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--border-color);
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.thumbnail-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.thumb-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
  background: var(--body-bg);
}

.thumb-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0,150,255,0.15);
}

.thumb-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Features Grid Section */
.features-section {
  padding: 80px 24px;
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -10px rgba(12, 26, 48, 0.08);
  border-color: var(--primary-color);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #e6f4fe;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Reviews / Testimonials Section */
.reviews-section {
  padding: 80px 24px;
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px -10px rgba(12, 26, 48, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -10px rgba(12, 26, 48, 0.1);
  border-color: var(--primary-color);
}

.review-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  position: relative;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.review-card:hover .review-image img {
  transform: scale(1.05);
}

.stars-row {
  color: #fbbf24;
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.stars-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-text {
  font-style: italic;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #cbd5e1;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.reviewer-meta h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}

.reviewer-meta span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviewer-meta span svg {
  width: 12px;
  height: 12px;
  color: var(--accent-color);
}

/* FAQ Section */
.faq-section {
  padding: 80px 24px;
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
  color: var(--text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

/* Footer & Disclaimers */
.main-footer {
  background-color: var(--secondary-color);
  color: #9ca3af;
  padding: 40px 24px 20px 24px;
  font-size: 12px;
  border-top: 3px solid var(--primary-color);
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-disclaimer {
  line-height: 1.8;
  margin-bottom: 24px;
  color: #6b7280;
  text-align: justify;
}

.footer-copyright {
  border-top: 1px solid #1f2937;
  padding-top: 16px;
}

/* ================= POPUP / MODAL COMMON ================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7); /* Dark semi-transparent background */
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 16px;
  overflow-y: auto;
  animation: fadeInOverlay 0.3s ease-out;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  background-color: var(--card-bg);
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  animation: scaleInModal 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes scaleInModal {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ================= COUNTRY PICKER SPECIFIC ================= */
.country-modal-body {
  padding: 32px 24px;
  text-align: center;
}

.country-modal-body h2 {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.country-modal-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.countries-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.country-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: var(--body-bg);
  text-decoration: none;
}

.country-item:hover {
  border-color: var(--primary-color);
  background-color: #f0f9ff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,150,255,0.08);
}

.country-flag {
  width: 48px;
  height: 36px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  object-fit: cover;
}

.country-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}

/* ================= DISCOUNT MODAL SPECIFIC ================= */
.discount-modal-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.timer-box {
  background-color: rgba(12, 26, 48, 0.4);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
}

.discount-modal-body {
  padding: 36px 30px;
  text-align: center;
}

.modal-icon-container {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #e6f4fe;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  border: 1px solid #c7d2fe;
}

.modal-icon-container svg {
  width: 28px;
  height: 28px;
}

.discount-modal-body h2 {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.discount-modal-body .modal-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.discount-tagline {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}

.discount-subtext {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.popup-bullets {
  list-style: none;
  max-width: 320px;
  margin: 0 auto 28px auto;
  text-align: left;
}

.popup-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.popup-bullet-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.modal-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 150, 255, 0.25);
  transition: all 0.2s;
  text-decoration: none;
  margin-bottom: 20px;
}

.modal-cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 150, 255, 0.35);
}

.modal-cta-button svg {
  width: 18px;
  height: 18px;
}

.modal-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.modal-badge-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

.modal-badge-item svg {
  width: 12px;
  height: 12px;
  color: var(--primary-color);
}

.modal-dismiss-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
}

.modal-dismiss-link:hover {
  color: var(--secondary-color);
}

/* ================= COMPLIANCE PAGES STYLING ================= */
.legal-page-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
}

.legal-page-container h1 {
  font-family: var(--font-title);
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--secondary-color);
}

.legal-page-container h2 {
  font-family: var(--font-title);
  font-size: 20px;
  margin: 24px 0 12px 0;
  color: var(--secondary-color);
}

.legal-page-container p, .legal-page-container ul {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.legal-page-container ul {
  padding-left: 20px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-highlights {
    display: inline-block;
    text-align: left;
  }
  
  .cta-button {
    max-width: 100%;
  }
  
  .hero-guarantees {
    justify-content: center;
  }
  
  .main-nav {
    display: none; /* Hide standard nav on mobile for simplicity, conversion-focused */
  }
  
  .trust-badges-container {
    justify-content: center;
    gap: 8px;
  }
  
  .trust-badge-item {
    font-size: 9px;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
}

/* ================= EXTRA SECTIONS (COMPARISON TABLE, STEPS, ETC) ================= */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 40px auto 0 auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: white;
  border: 1px solid var(--border-color);
  font-size: 14px;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--secondary-color);
  color: white;
  font-family: var(--font-title);
  font-weight: 700;
}

.comparison-table td:first-child {
  font-weight: 700;
  color: var(--secondary-color);
}

.comparison-table .highlight-col {
  background-color: #f0f9ff;
  font-weight: 700;
  color: var(--primary-color);
  border-left: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.steps-section {
  padding: 80px 24px;
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--body-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: transform 0.2s;
}

.step-card:hover {
  transform: translateY(-3px);
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 150, 255, 0.2);
}

.step-card h3 {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Stats Section */
.stats-section {
  padding: 60px 24px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-align: center;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stats-card {
  padding: 20px;
}

.stats-number {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1;
}

.stats-label {
  font-size: 14px;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Split Layout Info Sections */
.info-section {
  padding: 80px 24px;
  border-top: 1px solid var(--border-color);
}

.info-section.alt-bg {
  background-color: var(--body-bg);
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .info-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .info-container.reverse-mobile .info-content {
    order: 2;
  }
  .info-container.reverse-mobile .info-image {
    order: 1;
  }
}

.info-content h2 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.info-content p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.7;
}

.info-bullets {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.info-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.info-bullet-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Responsive adjustments for smaller or shorter screens to prevent vertical cutoff */
@media (max-height: 780px), (max-width: 480px) {
  .modal-overlay {
    align-items: center;
    padding: 20px 16px;
  }
  .modal-container {
    margin: auto;
  }
  .discount-modal-body {
    padding: 20px 20px;
  }
  .modal-icon-container {
    display: none; /* Hide decorative icon to save vertical space */
  }
  .discount-modal-body h2 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .discount-modal-body .modal-sub {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .discount-tagline {
    font-size: 26px;
    margin-bottom: 2px;
  }
  .discount-subtext {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .popup-bullets {
    margin-bottom: 16px;
  }
  .popup-bullet-item {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .modal-cta-button {
    padding: 12px 16px;
    font-size: 15px;
    margin-bottom: 14px;
  }
  .modal-badges {
    margin-bottom: 12px;
    padding-bottom: 12px;
    gap: 8px;
  }
  .modal-badge-item {
    font-size: 10px;
  }
}


