/* ===== Maximum Compression Layout ===== */
:root{
  /* Compressed fluid type (mobile → desktop) */
  --fs-h1: clamp(1.4rem, 1.8vw + 1rem, 2.1rem);
  --fs-h2: clamp(1.1rem, 1vw + 0.9rem, 1.55rem);
  --fs-body: clamp(0.95rem, 0.3vw + 0.85rem, 1.02rem);

  /* Minimal spacing for maximum compression */
  --sp-1: 0.25rem;
  --sp-2: 0.4rem;
  --sp-3: 0.6rem;
  --sp-4: 0.8rem;
  --sp-5: 1rem;
  --sp-6: 1.2rem;

  /* Max readable width */
  --maxw: 1120px;
}

html { font-size: 100%; }
body {
  font-size: var(--fs-body);
  line-height: 1.45; /* reduce airy feel */
}

/* Constrain main content width site-wide */
.container, main, .section-inner {
  width: min(100%, var(--maxw));
  margin-inline: auto;
  padding-inline: var(--sp-3);
}

/* Prevent horizontal overflow */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  width: 100%;
}

/* Headings - compressed spacing */
h1 { font-size: var(--fs-h1); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
h2 { font-size: var(--fs-h2); line-height: 1.15; margin-bottom: 0.8rem; }
p { margin-bottom: 0.8rem; }

/* Section padding (maximum compression) */
section { padding-block: var(--sp-4); }
section.hero { padding-block: var(--sp-5); }

/* Eliminate gaps between adjacent sections */
section + section { margin-top: -0.5rem; }

/* ===== Hero layout "text : art" ===== */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-5);
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}
.hero .hero-img {
  max-width: min(420px, 100%);
  width: 100%;
  height: auto;
  margin-inline: auto;
}
.hero .cta-primary { margin-top: var(--sp-3); }

/* ===== Cards grid ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.card { padding: var(--sp-3); }

/* Desktop Professional Layout - 993px and above */
@media (min-width: 993px) {
  /* Show desktop-only elements, hide mobile-only */
  .desktop-only { 
    display: block !important; 
  }
  
  .mobile-only {
    display: none !important;
  }
  
  /* Proper desktop spacing and layout - reduced by 50% */
  section { 
    padding-block: 0.75rem; 
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Keep some compression between sections on desktop */
  section + section {
    margin-top: -0.5rem !important;
  }
  
  /* Add proper spacing between lower sections - reduced by 50% */
  section.final-cta {
    margin-top: 1.5rem !important;
  }
  
  section.faq-section {
    margin-top: 1.5rem !important;
  }
  
  section.privacy-notice {
    margin-top: 1.5rem !important;
  }
  
  /* Override any fixed padding values - reduce by 50% */
  .how-it-works {
    padding: 40px 0 !important;
  }
  
  .reassurance {
    padding: 30px 0 !important;
  }
  
  .social-proof {
    padding: 30px 0 !important;
  }
  
  .footer {
    padding: 20px 0 10px !important;
  }
  
  .privacy-notice {
    padding: 20px 0 !important;
  }
  
  /* Hero section - clean two-column flex layout - override the section.hero padding */
  section.hero {
    padding-block: 0 !important;
  }
  
  .hero {
    display: flex !important;
    gap: 56px !important;
    align-items: stretch !important;
    max-width: 1200px !important;
    margin: 0px auto 64px auto !important;
    padding: 0 24px !important;
    background: #d1ecf7 !important;
  }
  
  /* Left column - content */
  .hero-left {
    flex: 1 1 56% !important;
    max-width: 640px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Right column - media */
  .hero-right {
    flex: 1 1 44% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100% !important;
  }
  
  /* Media wrapper */
  .media-wrap {
    width: clamp(420px, 40vw, 520px) !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  }
  
  /* Media element */
  .hero-media {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    clip-path: inset(0 18% 0 18%) !important;
    transform: scale(1.3) !important;
  }
  
  /* Typography and spacing to match screenshot */
  .hero h1 {
    font-size: clamp(40px, 4vw, 48px) !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    text-align: left !important;
    font-weight: 700 !important;
    color: #1a237e !important;
  }
  
  .hero-sub {
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin: 8px 0 12px !important;
    text-align: left !important;
    color: #546e7a !important;
  }
  
  /* Inline trust bar */
  .trust-inline {
    display: flex !important;
    gap: 16px !important;
    align-items: center !important;
    margin: 8px 0 20px !important;
    list-style: none !important;
    padding: 0 !important;
    font-size: 14px !important;
    color: #546e7a !important;
  }
  
  .trust-inline li {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
  }
  
  /* CTA button */
  .hero .cta-primary {
    height: 56px !important;
    padding: 0 28px !important;
    font-weight: 700 !important;
    margin-top: 4px !important;
    align-self: flex-start !important;
    border-radius: 12px !important;
  }
  
  /* Micro text */
  .hero .cta-micro {
    margin-top: 8px !important;
    font-style: italic !important;
    color: #546e7a !important;
    font-size: 14px !important;
  }
  
  /* Desktop trust bar - center the bullet points */
  .hero .trust-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    margin: 1rem 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }
  
  .hero .trust-bar__item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
  }
  
  /* Desktop trust panel - grid layout with illustration */
  .trust-panel {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 2rem !important;
    align-items: center !important;
    padding: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
  }
  
  /* Swap order: image first, then text card */
  .trust__card {
    order: 2 !important;
  }
  
  .trust__illustration {
    order: 1 !important;
  }
  
  /* Desktop trust bar */
  .trust-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 1.5rem !important;
    padding: 1.5rem !important;
    text-align: center !important;
  }
  
  /* Trust panel illustration */
  .trust__illustration {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .trust__illustration img {
    max-width: 280px !important;
    width: 100% !important;
    height: auto !important;
    opacity: 0.9 !important;
  }
  
  /* Center benefit list items on desktop */
  .trust__card .benefit-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  
  .trust__card .benefit-list__item {
    justify-content: center !important;
    text-align: center !important;
    align-items: center !important;
    max-width: none !important;
    width: 100% !important;
  }
  
  .trust__card .benefit-list__item .icon {
    margin-top: 0 !important;
  }
  
  /* Desktop cards - 3 column layout */
  .cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin: 1rem 0 !important;
  }
  
  .card {
    padding: 1.5rem !important;
  }
  
  /* Desktop stats bar - horizontal */
  .stats-bar {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    max-width: none !important;
    width: 100% !important;
    justify-items: center !important;
  }
  
  /* Desktop testimonials - 3 column */
  .testimonial-wrap {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 1rem !important;
  }
  
  .testimonial {
    padding: 1.5rem !important;
    margin-bottom: 0 !important;
  }
  
  /* Desktop CTA sections - Split layout - reduced padding by 50% */
  .final-cta, .cta-section {
    padding: 1.5rem 2rem !important;
    text-align: center !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%) !important;
    color: white !important;
    border-radius: 16px !important;
  }
  
  /* Swap order: content first, then carousel */
  .final-cta__content {
    text-align: center !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  
  .final-cta__carousel {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  
  .final-cta__subtitle {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
    color: rgba(255,255,255,0.9) !important;
  }
  
  .final-cta h2 {
    color: white !important;
    font-size: 2.25rem !important;
    margin-bottom: 1rem !important;
  }
  
  /* Desktop Carousel */
  .final-cta__carousel {
    display: block !important;
    position: relative !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  
  .carousel-container {
    position: relative !important;
    min-height: 250px !important;
    height: auto !important;
  }
  
  .carousel-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.8s ease-in-out !important;
  }
  
  .carousel-slide.active {
    opacity: 1 !important;
  }
  
  .carousel-testimonial {
    background: rgba(255,255,255,0.1) !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    border-left: 4px solid #4ecdc4 !important;
    text-align: left !important;
  }
  
  .carousel-testimonial strong {
    color: #4ecdc4 !important;
    font-size: 1.1rem !important;
    display: block !important;
    margin-bottom: 0.75rem !important;
  }
  
  .carousel-testimonial p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
  }
  
  .carousel-testimonial cite {
    color: rgba(255,255,255,0.7) !important;
    font-style: italic !important;
    font-size: 0.9rem !important;
  }
  
  /* Desktop FAQ */
  .faq {
    padding: 1.5rem !important;
    max-width: 800px !important;
    margin: 0 auto !important;
  }
  
  .faq__item {
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  .faq__item h4 {
    margin-bottom: 0.5rem !important;
    font-size: 1.1rem !important;
  }
}

/* Tablet */
@media (max-width: 992px) and (min-width: 769px) {
  /* Mobile CTA - single column, no carousel */
  .final-cta {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 2rem 1.5rem !important;
  }
  
  .final-cta__carousel {
    display: none !important;
  }
  
  .final-cta h2 {
    color: white !important;
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
  }
  
  .final-cta__subtitle {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 1.5rem !important;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-inline: 1.5rem;
    max-width: 100%;
  }
  .hero .hero-img { 
    order: -1; 
    max-width: min(300px, 75vw);
    width: 100%;
    height: auto;
  }
  .cards, .reviews .review-wrap, .testimonial-wrap { 
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
  }
  
  /* Tablet cards sizing */
  .card {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  section{ padding-block: 2.5rem; }
  .cards, .reviews .review-wrap { gap: 1.5rem; }
}

/* Hide desktop-only elements on mobile */
.desktop-only {
  display: none;
}

/* Mobile Review Carousel - hidden by default */
.mobile-carousel {
  display: none;
  padding: 2rem 1rem;
  background: #d1ecf7;
  margin: 0.5rem 0;
}

.mobile-carousel-container {
  position: relative;
  min-height: 200px;
  height: auto;
}

.mobile-testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #1a237e;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-testimonial strong {
  color: #1a237e;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.mobile-testimonial p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.mobile-testimonial cite {
  color: #666;
  font-size: 0.85rem;
  font-style: normal;
}

/* Mobile + sticky CTA */
.sticky-cta { display: none; } /* hidden by default on desktop */

@media (max-width: 768px) {
  /* Show mobile-only elements on true mobile */
  .mobile-only {
    display: block !important;
  }
  
  /* Hide desktop trust stats on mobile */
  .desktop-trust-stats {
    display: none !important;
  }
  
  .mobile-carousel {
    display: block !important;
  }
  
  /* Mobile carousel slide behavior */
  .mobile-carousel .carousel-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
  }
  
  .mobile-carousel .carousel-slide.active {
    opacity: 1 !important;
  }
  /* Mobile viewport optimization */
  body {
    overflow-x: hidden;
    width: 100vw;
  }
  
  /* Default section spacing - normal and spacious */
  section { 
    padding-block: 2.5rem; 
    padding-inline: 1.2rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  /* Container adjustments */
  .container, .section-inner {
    padding-inline: 1.2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Grid layouts - single column for mobile */
  .cards, .reviews .review-wrap, .testimonial-wrap { 
    grid-template-columns: 1fr !important; 
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  .stats-bar { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
    width: 100%;
  }
  
  /* Hero Section - Match the reference screenshot exactly */
  .hero {
    padding: 0.5rem 0.5rem;
    max-width: 100%;
    text-align: center;
    background: #d1ecf7;
    margin-top: 0.5rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    letter-spacing: -0.02em;
  }
  
  .hero .hero__subtitle, .hero .sub {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #546e7a;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero .hero-img {
    max-width: min(270px, 76.5vw);
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    clip-path: inset(0 20% 0 20%);
    transform: scale(1.5);
  }
  
  /* Trust bar - clean and centered like screenshot */
  .trust-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #546e7a;
    text-align: center;
    margin: 1.8rem 0;
    flex-wrap: wrap;
  }
  
  .trust-bar__item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 0;
  }
  
  /* Hero CTA button - prominent like screenshot */
  .hero .cta-primary {
    width: 100%;
    max-width: 320px;
    margin: 1.5rem auto 1rem auto;
    display: block;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
  }
  
  /* CTA micro text */
  .hero .cta-micro {
    font-size: 0.9rem;
    color: #546e7a;
    font-style: italic;
    text-align: center;
    margin-top: 0.8rem;
  }
  
  /* How It Works - ONLY this section gets compact treatment */
  .how-it-works {
    padding-block: 1.5rem !important;
    padding-inline: 0.8rem !important;
  }
  
  .how-it-works .section-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  
  .how-it-works .cards {
    grid-template-columns: 1fr !important;
    gap: 0.8rem;
    max-width: 100%;
    width: 100%;
  }
  
  .how-it-works .card, .how-it-works .step {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .how-it-works .step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }
  
  .how-it-works .step p {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 0;
  }
  
  /* FAQ - compact spacing */
  .how-it-works .faq {
    padding: 0.8rem;
    margin-top: 0.5rem;
  }
  
  .how-it-works .faq__item {
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
  }
  
  .how-it-works .faq__item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  
  .how-it-works .faq__item p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  /* All other sections - normal spacious styling */
  .card { 
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .step { 
    margin-bottom: 1.5rem;
  }
  
  /* Trust panel - spacious and readable */
  .trust-panel {
    padding: 2.5rem 1.2rem;
  }
  
  .trust__card {
    margin: 0;
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .trust__card h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  
  .trust__subtitle {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  .benefit-list__item {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  /* Button styling - normal and prominent */
  .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
  }
  
  /* Other sections */
  .testimonial, .final-cta, .faq {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Sticky CTA */
  .sticky-cta {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 1.2rem;
    padding-bottom: calc(env(safe-area-inset-bottom) + 1.2rem);
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(120%) blur(8px);
    border-top: 1px solid rgba(0,0,0,0.08);
    z-index: 50;
    width: 100vw;
    box-sizing: border-box;
  }
  
  .sticky-cta .btn {
    width: min(300px, calc(100vw - 2.4rem));
    height: 56px;
    font-weight: 700;
    font-size: 1.1rem;
    box-sizing: border-box;
  }
}

/* Buttons — crisp, not oversized */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.1rem);
}

/* Review/testimonial band: lean */
.reviews{
  padding-block: var(--sp-6);
}
.reviews .review-wrap{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.reviews .review{
  padding: var(--sp-3);
  border-radius: 10px;
  background: #d1ecf7;
  box-shadow: var(--shadow);
}
.reviews .review p{ margin: 0.4rem 0 0; }

/* CTA band (bottom section) */
.cta-band{
  padding-block: var(--sp-6);
  background: #0A2540; /* navy */
  color: #E8F4FF;
  text-align:center;
}
.cta-band .btn{ margin-top: var(--sp-3); }

/* Kill dead space in wide containers */
.section--wide, .panel, .box{
  padding-block: var(--sp-5) !important; /* override any big defaults */
}

/* ===== AFFAIR DETECTION SERVICE STYLING ===== */

/* Professional navy/mint color scheme */
body.compact {
    background: #d1ecf7;
}

/* Update CTA buttons to mint color */
.cta-primary{
  background: linear-gradient(180deg, #4ecdc4 0%, #26a69a 100%) !important;
  color: white !important;
  box-shadow: 0 6px 18px rgba(78,205,196,0.35) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-primary:hover{ 
  transform: translateY(-2px) !important; 
  box-shadow: 0 8px 25px rgba(78,205,196,0.45) !important;
}

.cta-primary:focus-visible{ outline: 3px solid #1a237e !important; }

/* CTA Button styling to match greenish design */
.cta-button {
  background: #22c55e !important;
  color: white !important;
  box-shadow: 0 6px 18px rgba(34,197,94,0.4) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 18px 36px !important;
  font-size: 1.2rem !important;
  border-radius: 12px !important;
  text-align: center !important;
  display: inline-block !important;
}

.cta-button:hover { 
  background: #16a34a !important;
  transform: translateY(-2px) !important; 
  box-shadow: 0 8px 25px rgba(34,197,94,0.5) !important;
  color: white !important;
  text-decoration: none;
}

.cta-button:focus-visible { 
  outline: 3px solid #1a237e !important; 
}

/* Center CTA buttons on desktop */
@media (min-width: 768px) {
  .hero-left .cta-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  /* Center final CTA button on desktop */
  .final-cta__content .cta-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  /* Center cta-micro text on desktop */
  .hero-left .cta-micro {
    text-align: center;
  }
}

/* Trust panel styling */
.trust-panel {
    padding: 20px 0;
    background: #d1ecf7;
}

.trust__card {
    background: #1a237e;
    color: white;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(26,35,126,0.15);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.trust__subtitle {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    line-height: 1.4;
}

.benefit-list {
    list-style: none;
    margin-bottom: 18px;
}

.benefit-list__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.3;
}

.benefit-list__item .icon {
    color: #4ecdc4;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Truth Card - Dark Blue Rounded Box */
.truth-card {
    background: #1a237e;
    color: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(26,35,126,0.15);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.truth-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.truth-card__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.truth-card__trust {
    margin-top: 20px;
}

.truth-card__trust .trust-line {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* Final CTA section */
.final-cta{
  padding-block: 1rem;
  background: #1a237e;
  color: white;
  text-align: center;
}

.final-cta__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.final-cta .btn{ 
  margin: 0.7rem 0 0.5rem 0;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.final-cta__trust {
  font-size: 0.8rem;
  color: #4ecdc4;
  font-weight: 600;
  margin-top: 0.4rem;
}

/* Testimonials section */
.testimonials {
  padding-block: 1rem;
  background: #d1ecf7;
}

.testimonials h2 {
  text-align: center;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  max-width: 600px;
  margin: 0 auto 1rem auto;
  text-align: center;
}

.stat-item {
  padding: 0.5rem 0.4rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #546e7a;
  font-weight: 500;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.testimonial {
  background: white;
  padding: 0.8rem;
  border-radius: 10px;
  border-left: 3px solid #4ecdc4;
}

.testimonial strong {
  color: #1a237e;
  font-size: 0.93rem;
  display: block;
  margin-bottom: 0.4rem;
}

.testimonial p {
  color: #546e7a;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-size: 0.86rem;
}

.testimonial cite {
  color: #4ecdc4;
  font-size: 0.72rem;
  font-weight: 600;
  font-style: normal;
}

/* Compress FAQ section on desktop */
@media (min-width: 1200px) {
  .faq__item {
    margin-bottom: 18px;
    padding-bottom: 15px;
  }
  .faq h4 {
    margin-bottom: 8px;
  }
}

/* Mobile responsive updates */
@media (max-width: 768px) {
  .testimonial-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-bar { grid-template-columns: 1fr; gap: 1rem; }
  
  .trust__card {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }
  
  .testimonial {
    padding: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .final-cta {
    padding-block: 2.5rem;
  }
  
  .final-cta__subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .testimonial-wrap { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
}

/* Non-critical CSS loaded after initial render */

/* Utility Classes */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.icon--sm {
    width: 16px;
    height: 16px;
}

.icon--lg {
    width: 32px;
    height: 32px;
}

/* Section Spacing */
.reassurance {
    padding: 60px 0;
    background: #d1ecf7;
}

.how-it-works {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.social-proof {
    padding: 60px 0;
    background: #d1ecf7;
}

.privacy-notice {
    padding: 40px 0;
    background-color: #d1ecf7;
}

.footer {
    padding: 40px 0 8px;
    background-color: var(--navy);
    color: white;
}

/* Reassurance Panel */
.reassurance__card {
    background-color: var(--navy);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.reassurance__card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list__item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    justify-content: flex-start;
    text-align: left;
}

.feature-list__item .icon {
    color: var(--cta-green);
    flex-shrink: 0;
}

.btn--secondary {
    background: #d1ecf7;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.btn--secondary:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* How It Works */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--navy);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}

.steps.cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
}

.step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.step__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cta-green), var(--cta-green-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ */
.faq {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.faq__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq__item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.faq__item p {
    color: var(--text-light);
}

/* Social Proof */
.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    max-width: 800px;
    margin: 0 auto;
}

.stats.cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
}

.stat {
    text-align: center;
    padding: 30px;
    background: #d1ecf7;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.stat .icon {
    color: var(--cta-green);
    margin-bottom: 15px;
}

.stat__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.stat__label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Mid CTA */
.mid-cta-section {
    padding: var(--sp-6) 0;
    display: none; /* Hidden by default (desktop) */
}

.mid-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Show mid CTA on mobile only and make it smaller/discrete */
@media (max-width: 768px) {
    .mid-cta-section {
        display: block;
        padding: var(--sp-2) 0; /* Much smaller padding for tighter spacing */
    }
    
    .mid-cta .btn {
        font-size: 0.9rem; /* Smaller text */
        padding: 12px 24px; /* Smaller padding */
        max-width: 280px; /* Constrain width */
        margin: 0 auto;
        opacity: 0.9; /* Slightly more discrete */
    }
}

/* Privacy Notice */
.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.privacy-text strong {
    color: var(--navy);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d1ecf7;
    border-top: 1px solid #e5e7eb;
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
}

.sticky-cta.show {
    transform: translateY(0);
}

.btn--full {
    width: 100%;
    font-size: 1rem;
    padding: 16px;
}

/* Footer */
.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: white;
}

.footer__disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.toast.show {
    transform: translateX(0);
}

.toast__content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Device Mockup */
.device-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.mockup-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px -3px rgb(0 0 0 / 0.1));
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus States for Accessibility */
.btn:focus,
a:focus {
    outline: 2px solid var(--cta-green);
    outline-offset: 2px;
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .step {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .btn,
    .sticky-cta,
    .toast {
        transition: none;
    }
}

/* Tablet Styles - Override specific styles only */
@media (min-width: 768px) and (max-width: 992px) {
    .steps.cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats.cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-list__item {
        justify-content: center;
        text-align: center;
    }
    
    .sticky-cta {
        display: none; /* Hide on tablet and desktop */
    }
    
    .faq {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .faq__item {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Desktop Styles - Reduced from original */
@media (min-width: 1024px) {
    .section-title {
        font-size: var(--fs-h2);
    }
}

/* Icon transparency fix */
.icon-img {
  background: transparent !important;
  background-color: transparent !important;
}

.step .icon-img {
  background: none !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  filter: none !important;
}

/* CTA Toast Notification */
.toast-cta {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.toast-cta.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.toast-cta__content {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f1624 100%);
  color: #e8e9ea;
  padding: 18px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  min-width: 320px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.toast-cta__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8, #1e40af, #1d4ed8, #2563eb);
  background-size: 200% 100%;
  animation: scan 2s linear infinite;
}

.toast-cta__content::after {
  content: '🔒';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.8;
}

@keyframes scan {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Hide mobile video on desktop */
.mobile-video-wrap {
  display: none !important;
}

/* Mobile Hero Fix - Video between title and subtitle */
@media (max-width: 768px) {
  /* Super aggressive mobile hero spacing reduction - override all global rules */
  section.hero, .hero {
    padding: 0.25rem 0.5rem !important;
    padding-block: 0.25rem !important;
    margin: 0.25rem auto !important;
    margin-top: 0.25rem !important;
    display: block !important;
    max-width: 100% !important;
    text-align: center !important;
    background: #d1ecf7 !important;
  }
  
  .hero-left {
    display: block !important;
    max-width: 100% !important;
  }
  
  /* Hide desktop video on mobile */
  .hero-right {
    display: none !important;
  }
  
  /* Show mobile video between title and subtitle */
  .mobile-video-wrap {
    display: block !important;
    margin: 3rem auto !important;
    width: 100% !important;
  }
  
  .mobile-hero-media {
    width: min(270px, 76.5vw) !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    clip-path: inset(0 20% 0 20%) !important;
    transform: scale(1.5) !important;
  }
  
  .hero h1 {
    font-size: 2.25rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.2rem !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: #1a237e !important;
    letter-spacing: -0.02em !important;
  }
  
  .hero-sub {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    margin: 2rem auto !important;
    color: #546e7a !important;
    max-width: 90% !important;
    text-align: center !important;
  }
  
  .trust-inline {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.8rem !important;
    font-size: 0.85rem !important;
    color: #546e7a !important;
    text-align: center !important;
    margin: 1.8rem 0 !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    padding: 0 !important;
  }
  
  .trust-inline li {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin-bottom: 0 !important;
  }
  
  .hero .cta-primary {
    width: 100% !important;
    max-width: 320px !important;
    margin: 1.5rem auto 1rem auto !important;
    display: block !important;
    padding: 1.1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
  }
  
  .hero .cta-micro {
    font-size: 0.9rem !important;
    color: #546e7a !important;
    font-style: italic !important;
    text-align: center !important;
    margin-top: 0.8rem !important;
  }
}

/* Mobile Styles - CRITICAL: Match reference screenshot */
@media (max-width: 768px) {
  /* Mobile viewport optimization */
  body {
    overflow-x: hidden;
    width: 100vw;
  }
  
  /* Default section spacing - normal and spacious */
  section { 
    padding-block: 2.5rem; 
    padding-inline: 1.2rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  /* Container adjustments */
  .container, .section-inner {
    padding-inline: 1.2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Grid layouts - single column for mobile */
  .cards, .reviews .review-wrap, .testimonial-wrap { 
    grid-template-columns: 1fr !important; 
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  .stats-bar { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
    width: 100%;
  }
  
  /* Hero Section - Match the reference screenshot exactly */
  .hero {
    padding: 0.5rem 0.5rem;
    max-width: 100%;
    text-align: center;
    background: #d1ecf7;
    margin-top: 0.5rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    letter-spacing: -0.02em;
  }
  
  .hero .hero__subtitle, .hero .sub {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #546e7a;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero .hero-img {
    max-width: min(270px, 76.5vw);
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    clip-path: inset(0 20% 0 20%);
    transform: scale(1.5);
  }
  
  /* Trust bar - clean and centered like screenshot */
  .trust-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #546e7a;
    text-align: center;
    margin: 1.8rem 0;
    flex-wrap: wrap;
  }
  
  .trust-bar__item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 0;
  }
  
  /* Hero CTA button - prominent like screenshot */
  .hero .cta-primary {
    width: 100%;
    max-width: 320px;
    margin: 1.5rem auto 1rem auto;
    display: block;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
  }
  
  /* CTA micro text */
  .hero .cta-micro {
    font-size: 0.9rem;
    color: #546e7a;
    font-style: italic;
    text-align: center;
    margin-top: 0.8rem;
  }
  
  /* How It Works - ONLY this section gets compact treatment */
  .how-it-works {
    padding-block: 1.5rem !important;
    padding-inline: 0.8rem !important;
  }
  
  .how-it-works .section-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  
  .how-it-works .cards {
    grid-template-columns: 1fr !important;
    gap: 0.8rem;
    max-width: 100%;
    width: 100%;
  }
  
  .how-it-works .card, .how-it-works .step {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .how-it-works .step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }
  
  .how-it-works .step p {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 0;
  }
  
  /* FAQ - compact spacing */
  .how-it-works .faq {
    padding: 0.8rem;
    margin-top: 0.5rem;
  }
  
  .how-it-works .faq__item {
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
  }
  
  .how-it-works .faq__item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  
  .how-it-works .faq__item p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  /* All other sections - normal spacious styling */
  .card { 
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .step { 
    margin-bottom: 1.5rem;
  }
  
  /* Trust panel - spacious and readable */
  .trust-panel {
    padding: 2.5rem 1.2rem;
  }
  
  .trust__card {
    margin: 0;
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .trust__card h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  
  .trust__subtitle {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  .benefit-list__item {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  /* Button styling - normal and prominent */
  .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
  }
  
  /* Other sections */
  .testimonial, .final-cta, .faq {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Sticky CTA */
  .sticky-cta {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 1.2rem;
    padding-bottom: calc(env(safe-area-inset-bottom) + 1.2rem);
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(120%) blur(8px);
    border-top: 1px solid rgba(0,0,0,0.08);
    z-index: 50;
    width: 100vw;
    box-sizing: border-box;
  }
  
  .sticky-cta .btn {
    width: min(300px, calc(100vw - 2.4rem));
    height: 56px;
    font-weight: 700;
    font-size: 1.1rem;
    box-sizing: border-box;
  }
  
  /* Mobile Bottom Sections Fix - Prevent overlapping */
  .final-cta {
    padding: 2rem 1.2rem !important;
    margin-bottom: 0 !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    background: #d1ecf7;
    border-top: 1px solid #e5e7eb;
  }
  
  .final-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a237e;
  }
  
  .final-cta__subtitle {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #546e7a;
  }
  
  .final-cta__trust {
    font-size: 0.9rem;
    color: #546e7a;
    margin-top: 0.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  /* Mobile Truth Card Fixes */
  .truth-card {
    padding: 1.5rem !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 16px !important;
  }
  
  .truth-card h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    color: white !important;
    line-height: 1.3 !important;
  }
  
  .truth-card__subtitle {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1.5rem !important;
    color: rgba(255,255,255,0.9) !important;
  }
  
  .truth-card__trust {
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
    text-align: center !important;
  }
  
  .truth-card__trust .trust-line {
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.3rem !important;
  }
  
  /* Fix Mobile CTA Button in Truth Card */
  .truth-card .cta-button,
  .truth-card .ll-btn {
    width: 100% !important;
    max-width: 340px !important;
    margin: 1.2rem auto !important;
    display: block !important;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    line-height: 1.2 !important;
  }
  
  /* Fix Mobile CTA Button in Trust Panel */
  .trust__card .cta-button,
  .trust__card .ll-btn,
  .trust-panel .cta-button,
  .trust-panel .ll-btn {
    width: 100% !important;
    max-width: 340px !important;
    margin: 1.2rem auto !important;
    display: block !important;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    line-height: 1.2 !important;
  }
  
  .trust-line {
    display: block;
    line-height: 1.4;
  }
  
  .privacy-notice {
    padding: 1.5rem 1.2rem !important;
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #d1ecf7;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .privacy-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #546e7a;
    text-align: center;
    max-width: 100%;
    margin: 0;
  }
  
  .privacy-text strong {
    color: #1a237e;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .footer {
    padding: 1.5rem 1.2rem 1rem 1.2rem !important;
    margin: 0 !important;
    background: #1a237e;
    color: white;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }
  
  .footer__links {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer__links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    text-decoration: none;
  }
  
  .footer__disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
    margin: 0;
    color: rgba(255,255,255,0.7);
    padding-bottom: 0.3rem;
  }
  
  /* Ensure sticky CTA doesn't overlap footer */
  .sticky-cta {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 1rem;
    padding-bottom: calc(env(safe-area-inset-bottom) + 1rem);
    background: rgba(255,255,255,0.98);
    backdrop-filter: saturate(120%) blur(10px);
    border-top: 1px solid rgba(0,0,0,0.1);
    z-index: 999;
    width: 100vw;
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
  
  .sticky-cta .btn {
    width: min(280px, calc(100vw - 2rem));
    height: 48px;
    font-weight: 700;
    font-size: 0.95rem;
    box-sizing: border-box;
    padding: 0.8rem 1.5rem;
    background: #4ecdc4;
    color: white;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
  }
}

/* Print Styles */
@media print {
    .sticky-cta,
    .toast,
    .btn {
        display: none;
    }
    
    body {
        background: #d1ecf7;
        color: black;
    }
}

/* Desktop-only center urgency text */
@media (min-width: 768px) {
  .hero-left .desktop-center-urgency {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }
  
  .hero-left .desktop-center-urgency span {
    justify-content: center !important;
  }
}
