@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-accent: #3b82f6;
  --color-gradient-start: #3b82f6;
  --color-gradient-end: #0ea5e9;
  
  --color-bg: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-alt: #f1f5f9;
  
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;

  --color-border: #e2e8f0;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
  --shadow-premium: 0 24px 50px -12px rgba(14, 165, 233, 0.15);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(12px);
  
  /* Typography */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --container-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  color: var(--color-text-main);
  background-color: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-image img,
.callout-image img,
.gallery-item img,
.stat-number svg {
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-main);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-bg-gray {
  background-color: var(--color-surface);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  background: transparent;
  z-index: 9999;
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-main);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 502;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.hamburger:hover,
.hamburger:focus-visible {
  background: var(--color-primary-light);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text-main);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(2px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

/* While the mobile drawer is open, hide other fixed widgets so the
   backdrop reliably sits above everything else on the page. */
body.nav-open .floating-ribbon,
body.nav-open .floating-buttons,
body.nav-open .toast {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url('../images/abstract-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-text-main) 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  animation: float 6s ease-in-out infinite;
}

/* Gradient Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
}
.blob-1 {
  top: -10%; left: -10%;
  width: 500px; height: 500px;
  background: var(--color-primary-light);
  animation: blob-float 10s infinite alternate;
}
.blob-2 {
  bottom: 0; right: 0;
  width: 600px; height: 600px;
  background: #e0f2fe;
  animation: blob-float 12s infinite alternate-reverse;
}

/* Footer */
.footer {
  background-color: var(--color-surface);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

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

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    box-shadow: var(--shadow-md);
    z-index: 501;
    clip-path: circle(0% at top right);
    transition: clip-path 0.5s ease-in-out;
  }

  .nav-links.active {
    clip-path: circle(150% at top right);
  }

  .nav-links a {
    width: 100%;
    padding: 1rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--color-border);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links a {
    padding: 0.4rem 0;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
    min-height: auto;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .blob-1, .blob-2 {
    width: 260px !important;
    height: 260px !important;
  }

  .glow-circle-1, .glow-circle-2 {
    width: 180px !important;
    height: 180px !important;
  }
}

@media (max-width: 380px) {
  h1 { font-size: clamp(2rem, 8vw, 2.5rem); }

  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-label {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  padding: 2.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-card.popular {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
  background: var(--color-surface);
}
@media (max-width: 992px) {
  .pricing-card.popular {
    transform: scale(1);
  }
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}
.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}
.pricing-title {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-left: 0.25rem;
}
.pricing-features {
  margin-bottom: 2.5rem;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}
.pricing-features li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.pricing-card .btn {
  width: 100%;
}

/* Gallery Masonry */
.gallery-masonry {
  columns: 1;
  column-gap: 1.5rem;
}
@media (min-width: 768px) {
  .gallery-masonry { columns: 2; }
}
@media (min-width: 1024px) {
  .gallery-masonry { columns: 3; }
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}
#lightbox.active {
  opacity: 1;
  pointer-events: all;
}
#lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Testimonials Carousel */
.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .carousel-slide { min-width: 50%; }
}
@media (min-width: 1024px) {
  .carousel-slide { min-width: 33.333%; }
}
.testimonial-card {
  padding: 2.5rem;
  height: 100%;
}
.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}
.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
}
.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.author-info p {
  font-size: 0.875rem;
  margin: 0;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.form-control.error {
  border-color: #ef4444;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  border-left: 4px solid var(--color-primary);
}
.toast.success {
  border-left-color: #10b981;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* FAQ Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background: white;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
}

/* Sections specifics (Stats, Features, Pricing etc.) */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* Cards common */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* -------------------------------------------------------------
   NEW PROMO & REDESIGN STYLES
------------------------------------------------------------- */

/* Hero Additions */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle 4s ease-in-out infinite;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.6; }
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.6;
}
.glow-circle-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 20%;
  animation: pulse-glow 6s infinite alternate;
}
.glow-circle-2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  right: 10%;
  background: radial-gradient(circle, #e0f2fe 0%, transparent 70%);
  animation: pulse-glow 8s infinite alternate-reverse;
}
@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.floating-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.shape-1 {
  width: 80px;
  height: 80px;
  top: 25%;
  right: 15%;
  animation: morph-shape 8s ease-in-out infinite;
}
.shape-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 10%;
  animation: morph-shape 10s ease-in-out infinite reverse;
}
@keyframes morph-shape {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: rotate(180deg); }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(360deg); }
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 60%);
  opacity: 0.2;
  filter: blur(40px);
  z-index: -1;
}

.glass-btn {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
}
.mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--color-text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.wheel {
  width: 4px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 2px;
  animation: scroll-wheel 1.5s infinite;
}
.arrow-down {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: rotate(45deg);
  animation: arrow-bounce 1.5s infinite;
}
@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(5px) rotate(45deg); }
}

/* Promo Banner Section */
.promo-banner-section {
  position: relative;
  margin-top: -3rem;
  z-index: 10;
  padding: 0 1rem;
}
.promo-banner-content {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  padding: 3rem;
  border: 1px solid var(--color-primary-light);
  /* overflow: hidden; */
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(241,245,249,0.95));
  box-shadow: var(--shadow-xl);
}
.promo-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(to right, var(--color-primary-light), transparent); */
  opacity: 0.5;
  z-index: -1;
}

.promo-sticker {
  position: absolute;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.sticker-1 {
  width: 48px; height: 48px; top: -10px; right: 20%;
}
.sticker-2 {
  width: 60px; height: 60px; bottom: 20px; left: -15px; font-size: 1.5rem;
  animation-delay: 1s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  background: rgba(220, 38, 38, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.pulse-dot {
  width: 8px; height: 8px; background: #ef4444; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.promo-left h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.promo-left h2 span {
  color: #dc2626;
}
.trust-bullets {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.trust-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.promo-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.timer-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-surface);
  padding: 0.5rem;
  border-radius: 8px;
  min-width: 50px;
}
.countdown-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.countdown-separator {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-light);
  margin-top: -10px;
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  width: 100%;
}

@media (max-width: 768px) {
  .promo-banner-content {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

/* Trust Row */
.trust-row-section {
  padding: 2rem 0 4rem;
}
.trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-main);
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
}
.spec-icon{
  text-align: center;
}
.spec-icon svg{
  margin: 0 auto;
}
@media (max-width: 768px) {
  .trust-row {
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Wave Dividers */
.section-why-choose {
  background: linear-gradient(to bottom, var(--color-surface), white);
  padding: 8rem 0;
}
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-top { top: 0; transform: rotate(180deg); }
.wave-bottom { bottom: 0; }
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  transform: rotateX(180deg);
}
.wave-divider .shape-fill { fill: var(--color-bg); }

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  text-align: center;
  padding: 3rem 2rem;
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--color-primary-light), white);
  color: var(--color-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.tilt-hover {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tilt-hover:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-10px);
}

/* Special Callout */
.special-callout {
  padding: 4rem 0 8rem;
}
.callout-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-lg);
  padding: 4rem;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}
.callout-bg {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: rotate-bg 20s linear infinite;
  z-index: 1;
}
@keyframes rotate-bg { 100% { transform: rotate(360deg); } }

.callout-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.callout-content h2 { color: white; margin-bottom: 1rem; }
.callout-content p { color: var(--color-primary-light); margin-bottom: 2rem; font-size: 1.25rem; }
.callout-content .btn { background: white; color: var(--color-primary); }
.callout-content .btn:hover { background: var(--color-surface); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.callout-image {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.callout-image.floating img {
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}
@media (max-width: 768px) {
  .callout-box { grid-template-columns: 1fr; padding: 2rem; text-align: center; }
  .callout-content { align-items: center; }
  .callout-image { margin-top: 2rem; }
}

/* -------------------------------------------------------------
   PRICING REDESIGN
------------------------------------------------------------- */
.pricing-card-inner {
  display: flex; flex-direction: column; height: 100%; position: relative;
  background: white; border-radius: inherit; z-index: 1;
}
.bundle-star {
  padding: 0 !important;
}
.bundle-star .pricing-card-inner {
  padding: 3.5rem 3rem;
}
@media (max-width: 992px) {
  .bundle-star .pricing-card-inner { padding: 2.5rem 1.75rem; }
}
.pricing-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem; position: relative; margin-bottom: 1.25rem; justify-content: center;
}
.badge {
  padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.badge-primary { background: linear-gradient(135deg, #10b981, #059669); color: white; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3); }
.badge-secondary { background: var(--color-text-main); color: white; }

.pricing-sale-info {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
}
.sale-badge {
  background: #ef4444; color: white; font-weight: 800; padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.875rem;
  animation: pulse-red 2s infinite;
}
.lto-label { font-size: 0.75rem; font-weight: 600; color: #dc2626; text-transform: uppercase; }

.pricing-prices { position: relative; margin-bottom: 1.5rem; }
.price-original {
  font-size: 1.5rem; color: var(--color-text-light); text-decoration: line-through; font-weight: 600; line-height: 1; margin-bottom: 0.25rem;
}
.price-savings {
  display: inline-block; margin-top: 0.5rem; padding: 0.25rem 0.75rem; background: rgba(16, 185, 129, 0.1); color: #059669; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 700;
}

.pricing-countdown {
  background: var(--color-surface-alt); border-radius: var(--radius-sm); padding: 0.75rem; margin-bottom: 1.5rem;
  display: flex; justify-content: center; border: 1px dashed var(--color-border);
}
.pricing-countdown .countdown-item { background: transparent; padding: 0; min-width: 40px; }
.pricing-countdown .countdown-value { font-size: 1.25rem; }

.animated-gradient-border {
  position: absolute; inset: -2px; border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(90deg, #3b82f6, #10b981, #3b82f6, #8b5cf6, #3b82f6);
  background-size: 400% 400%; z-index: -1; animation: gradient-border 4s ease infinite;
}
@keyframes gradient-border {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.bundle-star {
  transform: scale(1.05); z-index: 2; border: none !important; background: white;
  /* grid-column: 1 / -1;
  max-width: 640px;
  margin: 1rem auto 0; */
  padding: 3.5rem 3rem;
}
.bundle-star:hover { transform: scale(1.05) translateY(-10px); }
.bundle-star .pricing-title { color: var(--color-text-main); font-size: 1.5rem; }
@media (max-width: 992px) {
  .bundle-star { transform: scale(1); padding: 2.5rem 1.75rem; }
  .bundle-star:hover { transform: translateY(-10px); }
}

/* Floating Ribbon */
.floating-ribbon {
  position: fixed; top: 100px; right: 1rem; z-index: 1000;
  display: flex; align-items: center; gap: 0.5rem;
  background: white; border-radius: 50px;
  padding: 0.5rem 1rem;
  box-shadow: -5px 5px 20px rgba(0,0,0,0.15);
  border: 2px solid #ef4444;
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: calc(100vw - 2rem);
  box-sizing: border-box;
}
.floating-ribbon.visible { opacity: 1; transform: translateX(0); animation: gentle-pulse 3s infinite alternate; }
.ribbon-glow {
  position: absolute; inset: 0; background: #ef4444; filter: blur(10px); opacity: 0.2; border-radius: inherit; z-index: -1;
}
.ribbon-content { display: flex; align-items: center; gap: 0.75rem; }
.ribbon-badge {
  background: #ef4444; color: white; padding: 0.25rem 0.5rem; border-radius: 4px; font-weight: 800; font-size: 0.75rem;
}
.ribbon-text { font-size: 0.875rem; color: var(--color-text-main); white-space: nowrap; }
.ribbon-close {
  display: flex; align-items: center; justify-content: center; width: 24px; height: 24px;
  border-radius: 50%; background: var(--color-surface); color: var(--color-text-muted);
  transition: all 0.2s;
}
.ribbon-close:hover { background: #fee2e2; color: #ef4444; }

@keyframes gentle-pulse {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}
@media (max-width: 768px) {
  .floating-ribbon { top: auto; bottom: 20px; left: 50%; right: auto; border-radius: 50px; transform: translateX(-50%); opacity: 0; pointer-events: none; transition: opacity 0.6s; animation: none !important; }
  .floating-ribbon.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%); }
  .ribbon-close { position: absolute; top: -10px; right: -10px; box-shadow: var(--shadow-sm); }
}

/* -------------------------------------------------------------
   LEAD CAPTURE POPUP
------------------------------------------------------------- */
body.lead-modal-locked {
  overflow: hidden;
}

.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lead-modal-overlay.visible {
  opacity: 1;
}

.lead-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium), var(--shadow-xl);
  padding: 2.75rem 2.25rem 2.25rem;
  transform: scale(0.92) translateY(10px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.35s ease;
}
.lead-modal-overlay.visible .lead-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lead-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}
.lead-modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: rotate(90deg);
}

.lead-modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-text-main) 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-modal-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lead-field {
  position: relative;
}

.lead-field-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--color-text-light);
  transition: color 0.2s ease;
  pointer-events: none;
}

.lead-field input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--color-text-main);
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lead-field input::placeholder {
  color: transparent;
}

.lead-field label {
  position: absolute;
  left: 2.75rem;
  top: 1rem;
  font-size: 1rem;
  color: var(--color-text-light);
  background: transparent;
  padding: 0 0.25rem;
  transition: all 0.2s ease;
  pointer-events: none;
}

.lead-field input:focus,
.lead-field input:not(:placeholder-shown) {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  background: white;
}

.lead-field input:focus + label,
.lead-field input:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 2.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-bg);
}

.lead-field input:focus ~ .lead-field-icon,
.lead-field input:not(:placeholder-shown) ~ .lead-field-icon {
  color: var(--color-primary);
}

.lead-field.has-error input {
  border-color: #ef4444;
}
.lead-field.has-error input:focus + label,
.lead-field.has-error input:not(:placeholder-shown) + label {
  color: #ef4444;
}

.lead-field-error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.35rem;
  margin-left: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ef4444;
}

.lead-submit-btn {
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  padding: 1.1rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  background-size: 200% 200%;
  background-position: 0% 50%;
  cursor: pointer;
  transition: background-position 0.5s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
}
.lead-submit-btn:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}
.lead-submit-btn:active {
  transform: translateY(-1px);
}
.lead-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.85;
  transform: none;
}

.lead-submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: 0.6rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  border-radius: 50%;
  vertical-align: middle;
  animation: lead-spin 0.7s linear infinite;
}
.lead-submit-btn.is-loading .lead-submit-spinner {
  display: inline-block;
}
.lead-submit-btn.is-loading .lead-submit-label {
  opacity: 0.7;
}

@keyframes lead-spin {
  to { transform: rotate(360deg); }
}

.lead-modal-success-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
}
.lead-modal-view[hidden] {
  display: none !important;
}

.lead-success-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  animation: lead-success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes lead-success-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.lead-close-btn {
  margin-top: 1.75rem;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
}
.lead-close-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

@media screen and (max-width: 767px) {
  body .carousel-slide {
    padding: 0 .31rem;
  }
  body .glass-card {
    padding: 1.1rem;
  }
  body .section-header {
    margin: 0 auto 2.5rem;
  }
  body .stat-number {
    font-size: 2rem;
  }
  body .special-callout {
    padding: 2rem 0 3rem;
  }
  .last-updated {
    margin-bottom: 2rem !important;
  }
  body{
    font-size: 14px;
  }
  p{
    font-size: 14px;
  }
  body .accordion-header {
    padding: 1rem;
    font-size: 16px;
  }
  body .legal-content{
    padding: 1.3rem !important;
  }
  body .tvbox-hero {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body .section-why-choose{
    padding-bottom: 4em;
  }
  body .promo-banner-content {
    padding: 1.2rem;
  }
  body .promo-banner-section {
    margin-top: 3rem;
    padding: 0;
  }
  body .promo-right {
    padding: 1rem;
  }
  body .countdown-display {
    gap: 3px;
  }
  body .countdown-value {
    font-size: 15px;
  }
  body .countdown-label {
    font-size: 9px;
  }
  body .countdown-item {
    min-width: unset;
    width: 100%;
  }
  body .countdown-separator {
    font-size: 16px;
  }
  body .promo-right .timer-wrapper {
    width: 100%;
  }
  body .promo-right .promo-cta {
    font-size: 14px;
    padding: 10px 15px;
  }
  body .pricing-card-inner .countdown-separator {
    margin-top: -3px;
  }
  body .pricing-price{
    font-size: 2.2rem;
  }
  body .pricing-card.popular{
    background-color: #fff;
  }
  .pricing-grid{
    grid-template-columns: 1fr !important;
  }
  .form-container{
    padding: 2rem !important;
  }
  .info-item {
    gap: 10px !important;
  }
  body .info-icon {
    width: 38px;
    height: 38px;
  }
  .info-icon svg {
    height: 15px;
  }
}
@media (max-width: 480px) {
  .lead-modal {
    padding: 2.25rem 1.5rem 1.75rem;
  }
  .lead-modal-title {
    font-size: 1.35rem;
  }
}
