/*
 * KOSMIS DA FUNNEL SITE - Premium CSS Stylesheet
 * Design System: Deep Dark Teal, Bright Coral, Mint Green
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
  /* Colors */
  --color-bg: #033333;
  --color-bg-light: #044444;
  --color-cta: #FF8170;
  --color-cta-hover: #ff988a;
  --color-accent1: #19BC9B;
  --color-accent2: #FAF9F0;
  --color-text-muted: #c2d6d6;
  
  --color-glass: rgba(250, 249, 240, 0.05);
  --color-glass-border: rgba(250, 249, 240, 0.1);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Onest', sans-serif;

  /* Shadows & Glows */
  --glow-cta: 0 0 20px rgba(255, 129, 112, 0.4);
  --glow-cta-hover: 0 0 30px rgba(255, 129, 112, 0.6);
  --glow-accent: 0 0 15px rgba(25, 188, 155, 0.5);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.26, 1.55);
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-accent2);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  /* Subtle Noise Texture */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
  color: var(--color-accent1);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-cta);
}

img {
  max-width: 100%;
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-bg-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent1);
}

/* ==========================================================================
   Anti-Gravity Floating Animations
   ========================================================================== */
@keyframes float-weightless {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-weightless-reverse {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-gentle {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  33% { transform: translateY(-8px) rotate(1deg) scale(1.02); }
  66% { transform: translateY(-14px) rotate(-0.5deg) scale(1.01); }
  100% { transform: translateY(0px) rotate(0deg) scale(1); }
}

.anti-gravity-slow, .anti-gravity-medium, .anti-gravity-fast, .anti-gravity, .float-reverse {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0); /* Force GPU acceleration */
}

.anti-gravity-slow { animation: float-weightless 6s ease-in-out infinite; }
.anti-gravity-medium { animation: float-weightless 4s ease-in-out infinite 1s; }
.anti-gravity-fast { animation: float-weightless 3s ease-in-out infinite 2s; }
.anti-gravity { animation: float-gentle 5s ease-in-out infinite; }
.float-reverse { animation: float-weightless-reverse 5s ease-in-out infinite 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .anti-gravity-slow, .anti-gravity-medium, .anti-gravity-fast, .anti-gravity, .float-reverse {
    animation: none;
  }
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-glass-border), transparent);
  margin: 0 auto;
  width: 80%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  padding: 0.85rem 0 !important;
  background: rgba(3, 51, 51, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(25, 188, 155, 0.25) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  z-index: 999999 !important;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: scale(1.04);
}

.nav-links {
  display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1rem 4rem;
  position: relative;
  overflow: hidden;
  /* No CSS background — canvas handles it */
}

/* Kinetic Grid Canvas */
#kinetic-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-accent2);
  max-width: 920px;
  margin: 0.75rem auto 1.5rem;
  text-align: center;
}

.hero h1.hero-headline .hero-price-tag {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: #FF6B57;
  margin-top: 0.85rem;
  text-shadow: 0 0 40px rgba(255, 107, 87, 0.5);
  letter-spacing: -0.5px;
}

.hero .sub-headline {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.hero .trust-line {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
  max-width: 520px;
  width: 100%;
}

.hero-stat-card {
  padding: 1rem 1.25rem !important;
  text-align: center;
  border: 1px solid rgba(25, 188, 155, 0.25) !important;
  background: rgba(250, 249, 240, 0.03) !important;
  backdrop-filter: blur(10px);
  border-radius: 14px !important;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 188, 155, 0.45) !important;
}

.hero-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.2rem;
}

.hero-stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ==========================================================================
   Marquee Banner
   ========================================================================== */
.marquee-banner {
  width: 100%;
  overflow: hidden;
  background: rgba(4, 68, 68, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-glass-border);
  border-bottom: 1px solid var(--color-glass-border);
  padding: 1.2rem 0;
  position: relative;
  z-index: 10;
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  will-change: transform;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.marquee-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-accent2);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-star {
  color: var(--color-accent1);
  font-size: 1.3rem;
  text-shadow: var(--glow-accent);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .marquee-banner {
    padding: 0.9rem 0;
  }
  .marquee-content h2 {
    font-size: 1.2rem;
    gap: 1.2rem;
  }
  .marquee-content {
    gap: 1.2rem;
    padding-right: 1.2rem;
  }
  .marquee-star {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.cta-button {
  display: inline-block;
  background-color: var(--color-cta);
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--glow-cta);
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-align: center;
  width: 100%;
}

.cta-button:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: var(--glow-cta-hover);
  background-color: var(--color-cta-hover);
  color: #fff;
}

.cta-button-outline {
  background-color: transparent;
  border: 2px solid var(--color-cta);
  box-shadow: none;
  color: var(--color-cta);
}

.cta-button-outline:hover {
  background-color: rgba(255, 129, 112, 0.1);
  box-shadow: var(--glow-cta);
  color: var(--color-cta);
}

/* ==========================================================================
   Typography & Effects
   ========================================================================== */
.glow-text {
  text-shadow: var(--glow-accent);
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-cta), var(--color-accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Specific Sections
   ========================================================================== */
/* Problem Section Modern Redesign */
.problem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.problem-header h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  padding: 2.25rem 1.75rem;
  border-radius: 16px;
  background: rgba(250, 249, 240, 0.03);
  border: 1px solid rgba(255, 129, 112, 0.18);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 129, 112, 0.45);
  box-shadow: 0 12px 30px rgba(255, 129, 112, 0.15);
}

.problem-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 129, 112, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent2);
}

.problem-card p {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.highlight-coral {
  color: #FF6B57;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255, 107, 87, 0.3);
}

.highlight-mint {
  color: #19BC9B;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(25, 188, 155, 0.3);
}

.problem-bridge {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(25, 188, 155, 0.12), rgba(3, 51, 51, 0.6));
  border: 1px solid rgba(25, 188, 155, 0.35);
  text-align: center;
  position: relative;
  box-shadow: 0 0 25px rgba(25, 188, 155, 0.1);
}

.bridge-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent1);
  background: rgba(25, 188, 155, 0.15);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.bridge-text-modern {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent2);
  margin: 0;
}

@media (max-width: 991px) {
  .problem-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .problem-header h2 {
    font-size: 1.75rem;
  }
}

/* Value Stack Split Layout */
.offer-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}

.offer-left {
  padding: 2.25rem 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.offer-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent1);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-glass-border);
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
}

.offer-table th {
  padding: 0.85rem 0.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-glass-border);
}

.offer-table td {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(250, 249, 240, 0.06);
  font-size: 0.98rem;
  vertical-align: middle;
}

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

.offer-table .value-amount {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent1);
  white-space: nowrap;
  font-size: 1.05rem;
}

/* Right Side: Pricing Summary Card */
.price-summary-card {
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(4, 68, 68, 0.85), rgba(3, 51, 51, 0.95));
  border: 2px solid var(--color-cta);
  box-shadow: 0 0 35px rgba(255, 129, 112, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.price-card-badge {
  background: var(--color-cta);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 129, 112, 0.4);
}

.price-strike-block {
  margin-bottom: 1rem;
}

.price-strike-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.price-strikethrough {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(250, 249, 240, 0.45);
  text-decoration: line-through;
  text-decoration-color: var(--color-cta);
  text-decoration-thickness: 3px;
}

.price-today-block {
  margin-bottom: 1.25rem;
}

.price-today-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent1);
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.price-today-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #FF6B57;
  line-height: 1;
  text-shadow: 0 0 25px rgba(255, 107, 87, 0.35);
}

.savings-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 129, 112, 0.12);
  border: 1px solid rgba(255, 129, 112, 0.3);
  color: var(--color-cta);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.75rem;
}

.price-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  text-align: left;
  width: 100%;
}

.price-highlights-list li {
  font-size: 0.95rem;
  color: var(--color-accent2);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-highlights-list .check-icon {
  color: var(--color-accent1);
  font-weight: bold;
}

.price-card-cta {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.05rem;
}

.price-guarantee-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .offer-split-grid {
    grid-template-columns: 1fr;
  }
  .price-today-amount {
    font-size: 2.8rem;
  }
  .price-strikethrough {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Portfolio Section & Interactive Cards
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.portfolio-card {
  padding: 1.25rem;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(25, 188, 155, 0.45);
  box-shadow: 0 15px 35px rgba(25, 188, 155, 0.2);
}

.portfolio-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  margin-bottom: 1.25rem;
}

.browser-bar {
  background: rgba(3, 51, 51, 0.9);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--color-glass-border);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.browser-url {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-left: auto;
  background: rgba(250, 249, 240, 0.06);
  padding: 2px 10px;
  border-radius: 10px;
}

.portfolio-image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #080c0e;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.06);
}

.graphic-badge {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: rgba(250, 249, 240, 0.15);
  color: var(--color-accent2);
  padding: 3px 10px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.graphic-title {
  font-size: 1.2rem;
  color: var(--color-accent2);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.portfolio-btn {
  background: rgba(25, 188, 155, 0.12);
  border: 1px solid var(--color-accent1);
  color: var(--color-accent1);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.portfolio-card:hover .portfolio-btn {
  background: var(--color-accent1);
  color: #033333;
  box-shadow: var(--glow-accent);
}

/* ==========================================================================
   Section 4: Trust Builder (Fine-Tuned Design & Background Alignment)
   ========================================================================== */
.trust-builder-bg {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  padding: 6rem 0;
}

.trust-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 51, 51, 0.94), rgba(4, 68, 68, 0.90)),
              radial-gradient(circle at 50% 50%, rgba(25, 188, 155, 0.18), transparent 70%);
  z-index: 1;
}

.trust-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-header {
  text-align: center !important;
  max-width: 750px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-accent1);
  background: rgba(25, 188, 155, 0.12);
  border: 1px solid rgba(25, 188, 155, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin: 0 auto 0.75rem;
}

.trust-glass-card {
  background: rgba(250, 249, 240, 0.04) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(25, 188, 155, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  max-width: 820px;
  width: 100%;
  margin: 0 auto !important;
  padding: 3rem 2.5rem !important;
  position: relative;
  border-radius: 24px !important;
  text-align: center;
}

.quote-mark-icon {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(25, 188, 155, 0.25);
  position: absolute;
  top: 15px;
  left: 25px;
  user-select: none;
}

.trust-builder blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  font-style: normal;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  position: relative;
  z-index: 2;
  text-align: center;
}

.trust-builder blockquote p {
  text-align: center;
}

.trust-builder .author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-accent1);
  margin-top: 1.5rem;
  display: block;
  font-style: normal;
  text-align: center;
}

/* ==========================================================================
   Section 8: Scarcity & Urgency (Fine-Tuned Centered Design & CTA Button)
   ========================================================================== */
.scarcity-section {
  padding: 5rem 0;
}

.scarcity-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.scarcity-header {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scarcity-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  line-height: 1.6;
  text-align: center;
}

.scarcity-card {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: rgba(255, 129, 112, 0.05);
  border: 1px solid rgba(255, 129, 112, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scarcity-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent2);
}

.scarcity-cta-wrapper {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.scarcity-cta-btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  width: auto !important;
  max-width: 320px;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
}

/* ==========================================================================
   Portfolio Live Preview Modal (Single Scrollable Container Frame)
   ========================================================================== */
.portfolio-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 51, 51, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.portfolio-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-modal-container {
  width: 100%;
  max-width: 920px;
  background: #080c0e;
  border: 1px solid rgba(25, 188, 155, 0.4);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(25, 188, 155, 0.2);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-modal-overlay.active .portfolio-modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(250, 249, 240, 0.15);
  border: 1px solid var(--color-glass-border);
  color: var(--color-accent2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  z-index: 100;
}

.modal-close-btn:hover {
  background: var(--color-cta);
  color: #fff;
  transform: scale(1.1) rotate(90deg);
}

.live-browser-frame {
  display: flex;
  flex-direction: column;
  height: 80vh;
  max-height: 680px;
}

.live-browser-header {
  background: #11171b;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-url-bar {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-accent1) !important;
  text-decoration: none;
  background: rgba(250, 249, 240, 0.06);
  padding: 4px 14px;
  border-radius: 12px;
  border: 1px solid rgba(25, 188, 155, 0.25);
  transition: border-color 0.3s ease;
}

.modal-url-bar:hover {
  border-color: var(--color-accent1);
}

.modal-open-live-btn {
  background: var(--color-cta) !important;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 14px !important;
  border-radius: 12px;
  margin-right: 45px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  display: inline-block;
}

.modal-open-live-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

.live-iframe-wrapper {
  flex-grow: 1;
  width: 100%;
  background: #000;
  position: relative;
}

#live-preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.live-browser-footer {
  background: #11171b;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-accent2);
}

.footer-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.modal-footer-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
  width: auto;
}

@media (max-width: 767px) {
  .live-browser-frame {
    height: 85vh;
  }
  .live-status-pill {
    display: none;
  }
  .live-browser-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .modal-footer-cta {
    width: 100%;
  }
}

/* Guarantee */
.guarantee {
  text-align: center;
  position: relative;
}

.guarantee-badge {
  display: inline-block;
  background: rgba(25, 188, 155, 0.1);
  border: 1px solid var(--color-accent1);
  padding: 2rem;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--glow-accent);
  margin: 0 auto 2rem;
}

/* Timeline */
.timeline {
  position: relative;
  margin: 3rem 0;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--color-glass-border);
}

.timeline-step {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: -2rem;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--color-bg);
  border: 2px solid var(--color-accent1);
  color: var(--color-accent1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  transform: translateX(-50%);
  z-index: 1;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-card p {
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Scarcity */
.scarcity {
  background: rgba(255, 129, 112, 0.05);
  border: 1px solid rgba(255, 129, 112, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.progress-bar-container {
  width: 100%;
  height: 12px;
  background: var(--color-glass-border);
  border-radius: 6px;
  margin: 1rem 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--color-cta);
  width: 85%;
  box-shadow: var(--glow-cta);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--color-glass-border);
  padding: 1.5rem 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: 1rem;
  color: var(--color-text-muted);
  display: none;
}

/* Lead Form */
.lead-form-container {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  background: rgba(250, 249, 240, 0.03);
  border: 1px solid var(--color-glass-border);
  border-radius: 8px;
  padding: 1rem;
  color: var(--color-accent2);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent1);
  box-shadow: var(--glow-accent);
  background: rgba(25, 188, 155, 0.05);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-1.8rem) scale(0.85);
  left: 0.5rem;
  color: var(--color-accent1);
}

/* Footer */
.footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--color-glass-border);
  margin-top: 4rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 99999 !important;
  transition: var(--transition-bounce);
  color: white;
  font-size: 30px;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

/* ==========================================================================
   Media Queries (Responsive)
   ========================================================================== */
@media (min-width: 768px) {
  .hero h1 { font-size: 3.5rem; }
  .hero .sub-headline { font-size: 1.3rem; }
  
  .cta-button {
    width: auto;
  }
  
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline {
    padding-left: 0;
  }
  
  .timeline::before {
    left: 50%;
  }
  
  .timeline-step {
    width: 50%;
    padding-right: 3rem;
    margin-left: 0;
  }
  
  .timeline-step:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 3rem;
  }
  
  .timeline-step::before {
    left: 100%;
    transform: translateX(50%);
  }
  
  .timeline-step:nth-child(even)::before {
    left: 0;
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
  .section { padding: 6rem 0; }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Background Floating Shapes
   ========================================================================== */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  opacity: 0.6;
}

.bg-shape--1 { top: 8%; left: 5%; }
.bg-shape--2 { top: 25%; right: 8%; }
.bg-shape--3 { top: 55%; left: 3%; }
.bg-shape--4 { top: 70%; right: 5%; }
.bg-shape--5 { top: 40%; right: 15%; }
.bg-shape--6 { top: 85%; left: 12%; }

/* ==========================================================================
   Hero Enhancements
   ========================================================================== */
.hero-eyebrow,
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent1);
  margin-bottom: 1rem;
}

.hero-visual {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.hero-visual svg {
  max-width: 250px;
  height: auto;
}

.bridge-text {
  margin-top: 2rem;
  font-size: 1.15rem;
  color: var(--color-accent1);
  font-weight: 500;
  border-left: 3px solid var(--color-accent1);
  padding-left: 1rem;
}

/* ==========================================================================
   Navigation Enhancements
   ========================================================================== */
.nav-scrolled {
  background: rgba(3, 51, 51, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.cta-button--nav {
  padding: 10px 24px;
  font-size: 0.85rem;
  width: auto;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent2);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: rgba(3, 51, 51, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 1px solid var(--color-glass-border);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent2);
}

.mobile-menu-link:hover {
  color: var(--color-accent1);
}

/* ==========================================================================
   Value Stack Table Enhancements
   ========================================================================== */
.table-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 0.75rem;
  vertical-align: middle;
  flex-shrink: 0;
}

.value-stack td {
  display: flex;
  align-items: center;
}

.value-stack td:last-child {
  display: table-cell;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-accent1);
  white-space: nowrap;
}

.your-price {
  background: rgba(255, 129, 112, 0.15) !important;
  border-radius: 0 0 12px 12px;
}

.your-price td {
  border-bottom: none;
}

.savings-line {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.15rem;
}

/* ==========================================================================
   Guarantee Badge Text
   ========================================================================== */
.guarantee-badge-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.3;
  color: var(--color-accent1);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Testimonial Enhancements
   ========================================================================== */
.testimonial-stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.testimonial-author small {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Scarcity Enhancements
   ========================================================================== */
.scarcity-count {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.scarcity-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.scarcity-remaining {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: var(--color-cta);
  font-size: 1.05rem;
}

/* Progress bar animation */
.progress-bar {
  animation: progressFill 2s ease-out forwards;
  border-radius: 6px;
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 70%; }
}

/* ==========================================================================
   FAQ Enhancements & Centering
   ========================================================================== */
#faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#faq .section-header,
#faq h2,
#faq .eyebrow {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.faq-list {
  max-width: 780px;
  width: 100%;
  margin: 2rem auto 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-accent2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-accent1);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-accent1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer p {
  color: var(--color-text-muted);
  padding-bottom: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   Lead Form Enhancements & Centering
   ========================================================================== */
.lead-form-section {
  background: radial-gradient(circle at 50% 70%, rgba(255, 129, 112, 0.08), transparent 60%);
  padding: 5rem 0;
}

.lead-form-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lead-form-container {
  max-width: 580px;
  width: 100%;
  margin: 0 auto !important;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: rgba(3, 51, 51, 0.75);
  border: 1px solid rgba(25, 188, 155, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.lead-form-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.form-group {
  width: 100%;
  margin-bottom: 2rem;
  text-align: left;
}

#submit-btn {
  width: 100% !important;
  max-width: 440px;
  margin: 1.25rem auto 0 !important;
  display: inline-block !important;
  text-align: center !important;
  padding: 16px 30px;
  font-size: 1.05rem;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ==========================================================================
   Utility: All sections above bg-shapes
   ========================================================================== */
.section,
.hero,
.nav,
.footer {
  position: relative;
  z-index: 1;
}

.section-divider {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Audit Fixes
   ========================================================================== */

@media (max-width: 991px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .offer-split-grid,
  .problem-grid,
  .portfolio-grid,
  .process-grid,
  .modal-body-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .offer-left,
  .offer-right {
    width: 100%;
    padding: 1.75rem 1.25rem !important;
  }

  .price-today-amount {
    font-size: 2.75rem !important;
  }

  .price-strikethrough {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 767px) {
  /* Navbar Mobile Alignment */
  .nav .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .nav-links {
    display: flex !important;
  }

  .cta-button--nav {
    padding: 8px 14px !important;
    font-size: 0.75rem !important;
    white-space: nowrap !important;
  }

  .nav-hamburger,
  .mobile-menu {
    display: none !important;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
    margin-top: 1.25rem !important;
  }

  .hero-stat-card {
    padding: 0.85rem 0.5rem !important;
  }

  .hero-stat-card .stat-number {
    font-size: 1.1rem !important;
  }

  .hero-stat-card .stat-label {
    font-size: 0.7rem !important;
    letter-spacing: 0px !important;
  }

  h1 { font-size: 1.8rem !important; }
  h2 { font-size: 1.5rem !important; line-height: 1.35 !important; }
  h3 { font-size: 1.25rem !important; }

  .section {
    padding: 3.5rem 0 !important;
  }

  .hero {
    padding: 4.5rem 1rem 2.5rem !important;
    min-height: auto;
  }

  .hero-eyebrow {
    font-size: 0.78rem !important;
    letter-spacing: 1px !important;
    margin-bottom: 0.75rem !important;
  }

  .hero h1.hero-headline {
    font-size: 1.65rem !important;
    line-height: 1.35 !important;
    max-width: 100% !important;
    padding: 0;
    margin-bottom: 1rem !important;
  }

  .hero h1.hero-headline .hero-price-tag {
    font-size: 2.25rem !important;
    margin-top: 0.5rem !important;
  }

  .hero .sub-headline {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.75rem !important;
    padding: 0 0.25rem;
  }

  .hero #hero-cta {
    width: 100% !important;
    font-size: 0.92rem !important;
    padding: 14px 18px !important;
  }

  .hero .trust-line {
    font-size: 0.82rem !important;
    margin-top: 1.25rem !important;
  }

  .marquee-banner {
    padding: 0.75rem 0 !important;
  }

  .marquee-content h2 {
    font-size: 1.1rem !important;
  }

  .problem-card {
    padding: 1.5rem 1.25rem !important;
    text-align: center !important;
  }

  .problem-card-icon {
    margin: 0 auto 1rem !important;
  }

  .problem-bridge {
    padding: 1.5rem 1.25rem !important;
    text-align: center !important;
  }

  .bridge-text-modern {
    font-size: 1.1rem !important;
  }

  .offer-table th,
  .offer-table td {
    padding: 0.75rem 0.4rem !important;
    font-size: 0.85rem !important;
  }

  .offer-table .table-val {
    font-size: 0.85rem !important;
    white-space: nowrap;
  }

  .trust-builder-bg {
    padding: 4rem 0 !important;
  }

  .trust-glass-card {
    padding: 2rem 1.25rem !important;
    margin-top: 1.5rem !important;
  }

  .trust-builder blockquote {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }

  .quote-mark-icon {
    font-size: 3.5rem !important;
    top: 10px !important;
    left: 15px !important;
  }

  .scarcity-card {
    padding: 1.75rem 1.25rem !important;
  }

  .scarcity-number {
    font-size: 2.4rem !important;
  }

  .scarcity-remaining {
    font-size: 0.95rem !important;
  }

  .scarcity-cta-btn {
    width: 100% !important;
    font-size: 0.95rem !important;
    padding: 14px 18px !important;
  }

  .lead-form-container {
    padding: 1.75rem 1.25rem !important;
  }

  .form-group {
    margin-bottom: 1.5rem !important;
  }

  #submit-btn {
    width: 100% !important;
    font-size: 0.92rem !important;
    padding: 14px 16px !important;
  }

  .whatsapp-float {
    bottom: 18px !important;
    right: 18px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .whatsapp-icon {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (min-width: 1024px) {
  .nav-hamburger {
    display: none;
  }

  .hero-visual svg {
    max-width: 300px;
  }

  .bg-shape--1 { top: 10%; left: 8%; }
  .bg-shape--2 { top: 20%; right: 10%; }
  .bg-shape--3 { top: 50%; left: 5%; }
  .bg-shape--4 { top: 65%; right: 8%; }
  .bg-shape--5 { top: 35%; right: 20%; }
  .bg-shape--6 { top: 80%; left: 15%; }
}
