/* =========================================================
   JMAK LIFE – CLEAN FINAL CSS (REGEN)
   - Strict alternation: WHITE ↔ DARK GRAY (no pure black)
   - Hero redesign (hero-shell)
   - Social icon alignment (no circles)
   - Plans: FLEX scroll-snap slider + SMALL, content-height cards
   - Why: traveler + burst
   - Testimonials: fade-ready classes (JS)
   - Contact: two-column elegant layout
========================================================= */

/* ================= ROOT ================= */
:root{
  --white: #ffffff;
  --dark-gray: #3a3a3a;        /* charcoal, not black */
  --panel-dark: #444444;       /* inner panels on dark sections */

  --text-dark: #1f1f1f;        /* very dark gray (not pure black) */
  --text-light: #f5f5f5;

  --muted-dark: #6b6b6b;
  --muted-light: #d1d1d1;

  --border-light: #e0e0e0;

  --radius: 14px;
}

/* ================= RESET ================= */
*,
*::before,
*::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{ scroll-behavior: smooth; }

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
}

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

a:hover{ opacity: 0.88; }

/* ================= GLOBAL ================= */
/* Screen reader only — hidden visually, accessible to crawlers */
.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ================= SCROLL REVEAL — PREMIUM ENTRANCE ================= */
.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > *{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.is-visible > *{ opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay: 0.40s; }

/* Fade only (no vertical movement) */
.reveal-fade{
  opacity: 0;
  transition: opacity 1s ease;
}
.reveal-fade.is-visible{ opacity: 1; }

/* Scale-up for images */
.reveal-scale{
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.is-visible{
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal-stagger > *,
  .reveal-fade,
  .reveal-scale{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.container{
  width: min(1200px, 90%);
  margin-inline: auto;
}

section{
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Cinema vignette — radial gradient overlay on every section */
section::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
section > *{
  position: relative;
  z-index: 1;
}

/* Light sections: soft dark vignette at edges */
section:nth-of-type(odd)::after{
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    transparent 40%,
    rgba(0, 0, 0, 0.05) 58%,
    rgba(0, 0, 0, 0.12) 72%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* Dark sections: deeper vignette for more drama */
section:nth-of-type(even)::after{
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    transparent 35%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0.28) 74%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

/* Strict alternation: section order matters */
section:nth-of-type(odd){
  background: var(--white);
  color: var(--text-dark);
}

section:nth-of-type(even){
  background: var(--dark-gray);
  color: var(--text-light);
}

section:nth-of-type(even) p,
section:nth-of-type(even) .section-intro{
  color: var(--muted-light);
}

h2{
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3{
  text-wrap: balance;
}

p,
.section-intro,
.faq-a,
.contact-reassurance{
  text-wrap: pretty;
  hyphens: auto;
}

.section-intro{
  max-width: 70ch;
}

.text-gold{
  color: #dcb35a;
}

/* Skip link (optional if you added it) */
.skip-link{
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 0.75rem 1rem;
  background: #f0f0f0;
  color: #3a3a3a;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{
  left: 10px;
}

/* ================= HEADER — COLLAPSIBLE PREMIUM ================= */
header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo{
  display: inline-flex;
  text-decoration: none;
}
.logo img{
  height: 34px;
  width: auto;
  object-fit: contain;
}

/* Toggle button */
.header-toggle{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.header-toggle:hover{
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.14);
}

.header-toggle-label{
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Animated hamburger lines */
.header-toggle-lines{
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.header-toggle-lines span{
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.header-toggle-lines span:nth-child(2){
  width: 12px;
}

/* Open state lines → X */
.header-toggle.is-open .header-toggle-lines span:nth-child(1){
  transform: translateY(5.5px) rotate(45deg);
}
.header-toggle.is-open .header-toggle-lines span:nth-child(2){
  opacity: 0;
  width: 0;
}
.header-toggle.is-open .header-toggle-lines span:nth-child(3){
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Panel — hidden by default */
.header-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
  border-top: 1px solid transparent;
}
.header-panel.is-open{
  max-height: 400px;
  opacity: 1;
  border-top-color: rgba(0,0,0,0.06);
}

.header-panel-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0 1.6rem;
  gap: 2rem;
}

/* Nav links inside panel */
.header-panel nav{
  display: flex;
  gap: 0.3rem;
}
.header-panel nav a{
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted-dark);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.header-panel nav a:hover{
  color: var(--text-dark);
  background: rgba(0,0,0,0.04);
}

/* Actions: CTA + phone + socials */
.header-panel-actions{
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-panel-cta{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.header-panel-cta:hover{
  opacity: 0.9;
  transform: translateY(-1px);
}
.header-panel-cta svg{
  width: 14px;
  height: 14px;
  stroke: var(--white);
}

.header-panel-call{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header-panel-call:hover{
  opacity: 0.7;
}
.header-panel-call svg{
  width: 14px;
  height: 14px;
  stroke: var(--text-dark);
}

/* Social icons in panel */
.header-panel-socials{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(0,0,0,0.08);
}
.header-panel-socials a{
  display: inline-flex;
}
.header-panel-socials img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.38);
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.header-panel-socials a:hover img{
  opacity: 1;
  transform: translateY(-1px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .header-panel{ transition: none; }
  .header-toggle-lines span{ transition: none; }
}

/* Mobile adjustments */
@media (max-width: 768px){
  .header-panel-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .header-panel nav{
    flex-direction: column;
    gap: 0.15rem;
    width: 100%;
  }
  .header-panel nav a{
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
  }
  .header-panel-actions{
    flex-wrap: wrap;
    gap: 0.85rem;
    width: 100%;
  }
  .header-panel-socials{
    border-left: none;
    padding-left: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    width: 100%;
  }
  .logo img{
    height: 42px;
  }
}

/* ================= HERO ================= */
#hero{
  position: relative;
  isolation: isolate;
  padding: 6.5rem 0 5rem;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.88) 50%,
      rgba(255,255,255,0.80) 100%
    ),
    url("/images/hero-image-banner.png");
  background-size: cover;
  background-position: center;
}

#hero::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at 50% 42%,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.06) 52%,
    rgba(0,0,0,0.16) 100%
  );
}

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

/* Center block */
.hero-center{
  text-align: center;
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.hero-kicker{
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-dark);
  margin-bottom: 1rem;
}

.hero-title{
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-lede{
  color: #5a5a5a;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 58ch;
  margin: 0 auto 2.2rem;
}

/* Two equal CTAs */
.hero-ctas{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 2rem;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.hero-btn:hover{
  transform: translateY(-2px);
}
.hero-btn:active{
  transform: translateY(0);
}
.hero-btn svg{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-btn--call{
  background: var(--text-dark);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.hero-btn--call:hover{
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.hero-btn--call svg{ stroke: var(--white); }

.hero-btn--find{
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid rgba(0,0,0,0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.hero-btn--find:hover{
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.18);
}
.hero-btn--find svg{ stroke: var(--text-dark); }

.hero-socials{
  position: relative;
  margin-top: 1.2rem;
  padding-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.hero-socials::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(480px, 78vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

.hero-socials a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
}

.hero-socials img{
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-socials a:hover img{
  transform: translateY(-1px);
  opacity: 1;
}

/* Hero quote slider */
.hero-quotes{
  position: relative;
  width: min(920px, 100%);
  min-height: 122px;
  margin: 0.8rem auto 0;
}

.hero-quote{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  text-align: center;
}

.hero-quote.is-active{
  opacity: 1;
  pointer-events: auto;
}

.hero-quote-doubt{
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.25;
  font-style: italic;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 0.45rem;
}

.hero-quote-truth{
  font-size: clamp(0.92rem, 1.45vw, 1.03rem);
  line-height: 1.72;
  color: #4f4f4f;
  max-width: 72ch;
  margin-inline: auto;
}

/* ================= ABOUT ================= */
#about{
  background: var(--dark-gray) url("../images/beach-test.jpg") center / cover no-repeat fixed;
}

#about::after{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.16) 0%,
    rgba(0,0,0,0.24) 100%
  );
}

#about::before{
  content: none;
}

.about-grid{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content{
  position: relative;
  overflow: visible;
  background: rgba(34,34,34,0.34);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 0;
  padding: clamp(1rem, 2.1vw, 1.6rem);
  padding-bottom: clamp(1.4rem, 2.4vw, 2rem);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 10px 24px rgba(0,0,0,0.16);
}

.about-image{
  position: relative;
  width: 186px;
  height: 186px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
}

.about-image::after{
  content: none;
}

.about-image img{
  position: relative;
  z-index: 1;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  filter: none !important;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.35);
}

.about-paragraph{
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #5f5f5f;
  margin-bottom: 1.4rem;
}

section:nth-of-type(even) .about-paragraph{
  color: rgba(230,230,230,0.9);
}

.about-contact-row{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  position: relative;
}

.about-phone{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.about-icon{
  color: rgba(140,140,140,0.95);
}

.about-phone a{
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.95;
}

/* About socials: bright white */
.about-socials{
  position: absolute;
  right: 16px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 6;
}

.about-socials a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 999px;
  padding: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-socials img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0;
  vertical-align: middle;

  filter: none;
  opacity: 1;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.about-socials a:hover{
  transform: translateY(-2px);
  border-color: rgba(224,182,92,0.72);
  box-shadow:
    0 0 0 1px rgba(224,182,92,0.45),
    0 0 14px rgba(224,182,92,0.52),
    0 8px 18px rgba(0,0,0,0.22);
}

.about-socials a:hover img{
  transform: translateY(-1px);
  filter: drop-shadow(0 0 6px rgba(224,182,92,0.65));
}


/* =========================================================
   PLANS — FADE SLIDER
   Image left, text right. Detail panel below on Learn More.
========================================================= */

/* Slider container */
.plans-slider{
  margin-top: 2.5rem;
}

/* Slide: image left, text right */
.plans-slide{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Image side */
.plans-slide-img{
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--border-light);
}
.plans-slide-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fade transition on image and text */
.plans-slide.is-fading .plans-slide-img,
.plans-slide.is-fading .plans-slide-text{
  opacity: 0;
  transition: opacity 0.35s ease;
}
.plans-slide .plans-slide-img,
.plans-slide .plans-slide-text{
  opacity: 1;
  transition: opacity 0.4s ease 0.05s;
}

/* Text side */
.plans-slide-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plans-slide-name{
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.plans-slide-tag{
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding: 0.22rem 0.6rem;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.plans-slide-hook{
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 42ch;
}

/* Learn more button */
.plans-slide-learn{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 0;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.plans-slide-learn:hover{ opacity: 0.7; }
.plans-slide-learn svg{
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}
.plans-slider.detail-open .plans-slide-learn svg{
  transform: rotate(180deg);
}

/* Nav: arrows + pips */
.plans-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.plans-arrow{
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.plans-arrow:hover{
  background: #f5f5f5;
  border-color: #ccc;
}
.plans-arrow svg{
  width: 18px; height: 18px;
  stroke: var(--text-dark);
}

.plans-pips{
  display: flex;
  gap: 8px;
}
.plans-pip{
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--border-light);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.plans-pip.is-active{
  background: var(--text-dark);
  transform: scale(1.3);
}

/* ===== DETAIL PANEL — opens below slider ===== */
.plans-detail{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1),
              opacity 0.4s ease 0.05s,
              margin 0.4s ease;
  margin-top: 0;
}
.plans-detail.is-open{
  max-height: 1000px;
  opacity: 1;
  margin-top: 2rem;
}

.plans-detail-inner{
  background: #f8f8f8;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
}

.plans-detail-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.plans-detail-title{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.plans-detail-close{
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  padding: 0.45rem 0.9rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted-dark);
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.plans-detail-close:hover{
  background: rgba(0,0,0,0.04);
  color: var(--text-dark);
  border-color: #ccc;
}
.plans-detail-close svg{
  width: 14px; height: 14px;
}
.plans-detail-badge{
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.plans-detail-desc{
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-dark);
  max-width: 72ch;
  margin-bottom: 1.5rem;
}

/* Feature columns */
.plans-detail-features{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem 2rem;
  margin-bottom: 1.5rem;
}
.plans-detail-feat{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.plans-detail-feat:nth-last-child(-n+2){ border-bottom: none; }

.plans-detail-check{
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--text-dark);
  display: grid; place-items: center;
}
.plans-detail-check svg{
  width: 11px; height: 11px;
  stroke: var(--white);
  stroke-width: 2.5; fill: none;
}

/* Best for */
.plans-detail-best{
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}
.plans-detail-best-label{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.plans-detail-best-label svg{
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
}
.plans-detail-best-text{
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-dark);
}

/* Detail CTA */
.plans-detail-cta{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  background: var(--dark-gray);
  color: var(--text-light);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.plans-detail-cta:hover{
  opacity: 0.92;
  transform: translateY(-1px);
}
.plans-detail-cta svg{
  width: 16px; height: 16px;
}

/* ===== EVEN (dark) section overrides ===== */
section:nth-of-type(even) .plans-slide-img{ background: var(--panel-dark); }
section:nth-of-type(even) .plans-slide-name{ color: var(--text-light); }
section:nth-of-type(even) .plans-slide-tag{
  color: var(--muted-light); border-color: rgba(255,255,255,0.12);
}
section:nth-of-type(even) .plans-slide-hook{ color: var(--muted-light); }
section:nth-of-type(even) .plans-slide-learn{ color: var(--text-light); }
section:nth-of-type(even) .plans-arrow{
  background: transparent; border-color: rgba(255,255,255,0.15);
}
section:nth-of-type(even) .plans-arrow:hover{
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25);
}
section:nth-of-type(even) .plans-arrow svg{ stroke: var(--text-light); }
section:nth-of-type(even) .plans-pip{ background: rgba(255,255,255,0.18); }
section:nth-of-type(even) .plans-pip.is-active{ background: rgba(255,255,255,0.75); }
section:nth-of-type(even) .plans-detail-inner{
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08);
}
section:nth-of-type(even) .plans-detail-title{ color: var(--text-light); }
section:nth-of-type(even) .plans-detail-close{
  color: var(--muted-light); border-color: rgba(255,255,255,0.12);
}
section:nth-of-type(even) .plans-detail-close:hover{
  background: rgba(255,255,255,0.06); color: var(--text-light); border-color: rgba(255,255,255,0.25);
}
section:nth-of-type(even) .plans-detail-badge{
  color: var(--muted-light); border-color: rgba(255,255,255,0.12);
}
section:nth-of-type(even) .plans-detail-desc{ color: var(--muted-light); }
section:nth-of-type(even) .plans-detail-feat{
  color: rgba(235,235,235,0.92); border-bottom-color: rgba(255,255,255,0.06);
}
section:nth-of-type(even) .plans-detail-check{ background: rgba(255,255,255,0.85); }
section:nth-of-type(even) .plans-detail-check svg{ stroke: var(--dark-gray); }
section:nth-of-type(even) .plans-detail-best{ border-top-color: rgba(255,255,255,0.08); }
section:nth-of-type(even) .plans-detail-best-label{ color: var(--muted-light); }
section:nth-of-type(even) .plans-detail-best-text{ color: rgba(235,235,235,0.9); }
section:nth-of-type(even) .plans-detail-cta{
  background: var(--text-light); color: var(--dark-gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px){
  .plans-slide{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .plans-slide-img{ max-width: 480px; }
  .plans-detail-features{ grid-template-columns: 1fr; }
  .plans-detail-feat:last-child{ border-bottom: none; }
  .plans-detail-best{ flex-direction: column; gap: 0.3rem; }
  .plans-detail-inner{ padding: 1.5rem 1.3rem; }
}
@media (prefers-reduced-motion: reduce){
  .plans-slide .plans-slide-img,
  .plans-slide .plans-slide-text,
  .plans-slide.is-fading .plans-slide-img,
  .plans-slide.is-fading .plans-slide-text{
    transition: none;
    opacity: 1;
  }
  .plans-detail{ transition: none; }
  .plans-slide-learn svg{ transition: none; }
}



/* ================= WHY JMAK – PROCESS TRACK (PREMIUM) ================= */
.process-header{
  text-align: center;
  max-width: 600px;
  margin: 0 auto 0;
}
.process-header .section-intro{
  margin-inline: auto;
}

.process-track{
  position: relative;
  margin-top: 3.5rem;
  cursor: default;
}

/* Connecting line */
.track-line{
  position: absolute;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  top: 22px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.track-line::after{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.35) 0 4px,
    transparent 4px 12px
  );
}

/* JMAK traveler orb */
.track-traveler{
  position: absolute;
  top: 0;
  left: 10%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--white);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.2),
    0 8px 24px rgba(0,0,0,0.15),
    0 0 40px rgba(255,255,255,0.08);
  color: var(--dark-gray);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  will-change: transform, opacity;
  transition: opacity 0.35s ease;
}
.track-traveler::before{
  content: "JMAK";
}

/* Stepper grid */
#why .stepper{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.stepper-item{
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

/* Step number */
.stepper-num{
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}

/* Icon circle */
.stepper-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  margin-bottom: 1rem;
  position: relative;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.stepper-icon svg{
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.5);
  transition: stroke 0.4s ease;
}

/* Active/hover glow */
.stepper-item.is-active .stepper-icon{
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.12);
  transform: scale(1.1);
}
.stepper-item.is-active .stepper-icon svg{
  stroke: rgba(255,255,255,0.85);
}

/* Burst ring on activation */
.stepper-icon.burst::after{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  animation: burstRing 600ms cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes burstRing{
  0%{ transform: scale(0.7); opacity: 0; }
  25%{ opacity: 0.7; }
  100%{ transform: scale(1.4); opacity: 0; }
}

/* Step title */
.stepper-item h3{
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

/* Step description */
.stepper-item p{
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 22ch;
  transition: color 0.4s ease;
}
.stepper-item.is-active p{
  color: rgba(255,255,255,0.92);
}

/* Process CTA */
.process-cta{
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.process-cta-lead{
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.4rem;
}
.process-cta-buttons{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.process-cta-sub{
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ---- Mobile vertical timeline ---- */
@media (max-width: 768px){
  #why{ display: block; }
  .process-track{ margin-top: 2.5rem; }
  .track-line{ display: none; }
  .track-traveler{ display: none; }

  #why .stepper{
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 2.5rem;
    position: relative;
  }
  /* Vertical line */
  #why .stepper::before{
    content: "";
    position: absolute;
    left: 21px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.12);
  }
  .stepper-item{
    text-align: left;
    align-items: flex-start;
    padding-bottom: 2rem;
    position: relative;
  }
  .stepper-item:last-child{ padding-bottom: 0; }
  .stepper-icon{
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 42px;
    height: 42px;
    z-index: 2;
    background: var(--dark-gray);
  }
  .stepper-num{ display: none; }
  .stepper-item p{ max-width: none; }
  .process-cta-buttons{ flex-direction: column; align-items: center; }
}

/* ================= RISK CALCULATOR ================= */
.calc-wrapper{ margin-top: 2.5rem; }

.calc-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

/* Input fields */
.calc-inputs{ display: flex; flex-direction: column; gap: 1.4rem; }

.calc-field{}

.calc-label{
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-light);
  margin-bottom: 0.55rem;
}

/* Slider row */
.calc-slider-row{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calc-range{
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
}
.calc-range::-webkit-slider-thumb{
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.calc-range::-webkit-slider-thumb:hover{ transform: scale(1.15); }
.calc-range::-moz-range-thumb{
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
}
.calc-range::-webkit-slider-runnable-track{
  height: 6px; border-radius: 3px;
}
.calc-range::-moz-range-track{
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.1);
}

.calc-value{
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  min-width: 90px;
  text-align: right;
  white-space: nowrap;
}

/* Radio buttons */
.calc-radio-row{
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.calc-radio{
  cursor: pointer;
}
.calc-radio input{ position: absolute; opacity: 0; pointer-events: none; }
.calc-radio span{
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-light);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.calc-radio:hover span{
  border-color: rgba(255,255,255,0.25);
}
.calc-radio input:checked + span{
  background: var(--white);
  color: var(--dark-gray);
  border-color: var(--white);
}

/* Result panel */
.calc-result{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}

.calc-result-label{
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  margin-bottom: 0.5rem;
}

.calc-result-number{
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease;
}

.calc-result-desc{
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted-light);
  margin-bottom: 1.5rem;
}

/* Breakdown */
.calc-result-breakdown{
  margin-bottom: 1.5rem;
}
.calc-breakdown-row{
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.calc-breakdown-row span:last-child{
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.calc-breakdown-sub span:last-child{
  color: rgba(120,220,120,0.8);
}
.calc-breakdown-total{
  border-bottom: none;
  padding-top: 0.65rem;
  margin-top: 0.3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.calc-breakdown-total span{
  font-weight: 700 !important;
  color: var(--white) !important;
  font-size: 0.95rem;
}

/* CTA buttons */
.calc-result-ctas{
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.calc-result-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1;
  padding: 0.85rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 10px;
  background: var(--white);
  color: var(--dark-gray);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.calc-result-btn:hover{
  opacity: 0.92;
  transform: translateY(-1px);
}
.calc-result-btn svg{
  width: 16px; height: 16px;
}
.calc-result-btn--outline{
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.15);
}
.calc-result-btn--outline:hover{
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

.calc-result-fine{
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ===== CASE STUDY STORY (left panel) ===== */
.case-wrapper{ margin-top: 2.5rem; }
.case-wrapper .section-label{ margin-bottom: 0.3rem; }
.case-wrapper .section-intro{ margin-bottom: 0; }

#risk-calculator{
  padding: 4rem 0;
  background:
    linear-gradient(rgba(58,58,58,0.58), rgba(58,58,58,0.58)),
    url("../images/smoke-signal.png") center / cover no-repeat;
}
#risk-calculator h2{ margin-bottom: 0.3rem; }
#risk-calculator .section-intro{ margin-bottom: 0; padding-bottom: 0; }

/* ---- Reality Check header redesign ---- */
.rc-header{
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.rc-header .section-label{
  margin-bottom: 0.75rem;
}
.rc-title{
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.rc-title em{
  font-style: italic;
  color: var(--accent, #7bb8f5);
}
.rc-br{ display: none; }
.rc-subtitle{
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted-light);
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.85;
}

.case-wrapper .calc-grid{ margin-top: 1.1rem; }

.case-story{}

.case-persona{
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  margin-bottom: 0.3rem;
  opacity: 0.6;
}

.case-name{
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.case-situation{
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted-light);
  margin-bottom: 1rem;
}

.case-details{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.case-detail-tag{
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}

/* ---- Case snapshot (at-a-glance financials) ---- */
.case-snapshot{
  margin-top: 1.25rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.case-snapshot-label{
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.65rem;
}
.case-snapshot-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}
.case-snap-item{
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.case-snap-key{
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.case-snap-val{
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
}

/* ---- Case stake (emotional bottom line) ---- */
.case-stake{
  margin-top: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  background: rgba(220, 120, 80, 0.08);
  border-left: 3px solid rgba(220, 120, 80, 0.5);
  border-radius: 0 8px 8px 0;
}
.case-stake svg{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: rgba(220, 120, 80, 0.7);
  margin-top: 2px;
}
.case-stake span{
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

/* Fade transition on story */
.case-story.is-fading{
  opacity: 0;
  transition: opacity 0.3s ease;
}
.case-story{
  opacity: 1;
  transition: opacity 0.35s ease 0.05s;
}

/* Case nav */
.case-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* "Input Your Info" / "Back to Case Studies" toggle */
.case-toggle-wrap{
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.case-toggle-btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-light);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.case-toggle-btn:hover{
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.case-toggle-btn svg{
  width: 16px; height: 16px;
}
.case-toggle-chev{
  transition: transform 0.3s ease;
}
.case-wrapper.calc-open .case-toggle-chev{
  transform: rotate(180deg);
}

/* Personal calculator panel — expandable */
.calc-personal{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.16,1,0.3,1),
              opacity 0.45s ease 0.05s,
              margin 0.4s ease;
  margin-top: 0;
}
.calc-personal.is-open{
  max-height: 2000px;
  opacity: 1;
  margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 768px){
  .calc-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .calc-result{
    position: static;
    padding: 1.5rem 1.3rem;
  }
  .calc-result-ctas{
    flex-direction: column;
  }
  .calc-result-btn{
    width: 100%;
    padding: 1rem;
  }
  .calc-value{ min-width: 75px; font-size: 0.88rem; }
  .case-name{ font-size: 1.3rem; }
  .rc-title{ font-size: 1.6rem; }
  .rc-br{ display: inline; }
  .rc-subtitle{ font-size: 0.95rem; }
  .rc-header{ margin-bottom: 1.8rem; }
  .case-toggle-btn{ font-size: 0.82rem; padding: 0.65rem 1.1rem; }
  .case-snapshot-grid{ grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
  .case-snap-val{ font-size: 0.82rem; }
}


/* ================= CONTACT ================= */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-content{
  position: relative;
  isolation: isolate;
  padding: 1.3rem 2.4rem 1.6rem 1.35rem;
}

.contact-content::before{
  content: "";
  position: absolute;
  inset: -0.25rem 0.75rem -0.25rem -0.35rem;
  z-index: -1;
  border: 0.5px solid rgba(255,255,255,0.26);
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 100%
  );
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 12px 24px rgba(0,0,0,0.14);
  transform-origin: left center;
  transform: perspective(1200px) rotateY(6deg);
}

.contact-content::after{
  content: "";
  position: absolute;
  inset: 0.2rem 1.2rem 0.2rem 0.3rem;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0.24) 0%,
    rgba(255,255,255,0.08) 34%,
    rgba(255,255,255,0) 62%
  );
  transform-origin: left center;
  transform: perspective(1200px) rotateY(6deg);
}

.contact-content h2{ margin-bottom: 1rem; }

#contact .contact-content{
  text-align: left;
}

#contact .contact-content h2,
#contact .contact-content p,
#contact .contact-content .contact-points,
#contact .contact-content .contact-reassurance{
  transform: perspective(900px) rotateY(4deg) translateX(2px);
  transform-origin: left center;
  text-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.contact-lede{
  font-weight: 500;
}

.contact-content p,
.contact-lede,
.contact-reassurance{
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
  max-width: 48ch;
}

.contact-points{
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  max-width: 50ch;
  display: grid;
  gap: 0.72rem;
}

.contact-point{
  display: grid;
  grid-template-columns: 1.55rem 1fr;
  align-items: start;
  gap: 0.62rem;
  line-height: 1.62;
}

.contact-point-icon{
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.08);
  border: 1px solid rgba(18, 18, 18, 0.18);
  margin-top: 0.15rem;
}

.contact-point-icon svg{
  width: 0.88rem;
  height: 0.88rem;
}

.contact-point-icon path{
  fill: none;
  stroke: var(--text-dark);
  stroke-width: 2.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-reassurance{
  margin-top: 1.4rem;
  color: var(--muted-dark);
}

section:nth-of-type(even) .contact-content p,
section:nth-of-type(even) .contact-points,
section:nth-of-type(even) .contact-reassurance{
  color: var(--muted-light);
}

section:nth-of-type(even) .contact-point-icon{
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

section:nth-of-type(even) .contact-point-icon path{
  stroke: var(--text-light);
}

section:nth-of-type(even) .contact-content::before{
  border-color: rgba(255,255,255,0.2);
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.14) 0%,
    rgba(255,255,255,0.05) 100%
  );
}

.contact-form{
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem;
}

section:nth-of-type(even) .contact-form{
  background: var(--panel-dark);
}

@media (max-width: 768px){
  .contact-content{
    padding: 1rem 0.6rem 1.2rem;
  }

  .contact-content::before{
    inset: 0;
    transform: none;
  }

  .contact-content::after{
    content: none;
  }

  #contact .contact-content h2,
  #contact .contact-content p,
  #contact .contact-content .contact-points,
  #contact .contact-content .contact-reassurance{
    transform: none;
    text-shadow: none;
  }
}

.field{ margin-bottom: 1rem; }

.field label{
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--muted-dark);
}

section:nth-of-type(even) .field label{
  color: var(--muted-light);
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 0.9rem;
  border-radius: 12px;
  border: none;
  background: #f4f4f4;
  color: var(--text-dark);
}

.field textarea{ resize: vertical; }

.btn{
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: #e7e7e7;
  color: #3a3a3a;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover{
  opacity: 0.92;
  transform: translateY(-1px);
}
.btn:active{ transform: translateY(0); }

/* ================= FOOTER ================= */
footer{
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 2rem 0;
}

.footer-inner{
  font-size: 0.82rem;
  color: var(--muted-dark);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .hero-objections{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .hero-objections{
    grid-template-columns: 1fr;
  }
  .hero-ctas{
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btn{
    justify-content: center;
  }
  #hero{
    padding: 5rem 0 3.5rem;
  }
  .hero-center{
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 900px){
  .about-grid,
  #why .stepper,
  .testimonials-grid,
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .track-line{ display: none; }
}

/* Mobile fixes */
@media (max-width: 768px){
  .socials img,
  .about-socials img{
    width: 22px;
    height: 22px;
  }
}

/* Hide the process section on mobile */
@media (max-width: 768px){
/* Hide the process section on mobile - REMOVED, now has vertical layout */
}
/* ================= HERO CTA BUTTON ================= */
.hero-cta-btn{
  display: inline-block;
  width: auto;
  padding: 0.95rem 2.2rem;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 12px;
  background: var(--dark-gray);
  color: var(--text-light);
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hero-cta-btn:hover{
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ================= SECTION LABELS ================= */
.section-label{
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-dark);
  margin-bottom: 0.4rem;
}
.section-label--light{
  color: var(--muted-light);
}

/* ================= PLANS CTA ================= */
.plans-cta{
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.plans-cta-text{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}
section:nth-of-type(even) .plans-cta{
  border-top-color: rgba(255,255,255,0.1);
}
section:nth-of-type(even) .plans-cta-text{
  color: var(--text-light);
}

/* ================= WHY LIFE INSURANCE — STATS ================= */
#whyinsurance{
  background: var(--dark-gray) url("../images/beach-shot.jpg") center / cover no-repeat fixed;
}

#whyinsurance::after{
  background: none;
}

.whyins-center{
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(28,28,28,0.34);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 10px 28px rgba(0,0,0,0.22);
}
.whyins-center .section-intro{
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.75;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.stat-card{
  padding: 2rem 1.5rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  text-align: center;
  transform-origin: center;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover{
  background: rgba(255,255,255,0.16);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 26px rgba(0,0,0,0.26);
}
.stat-icon{
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.85rem;
}
.stat-icon svg{
  width: 15px;
  height: 15px;
  stroke: rgba(255,255,255,0.55);
}
.stat-number{
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.stat-desc{
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.65rem;
}
.stat-source{
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* Urgency CTA */
.urgency-cta{
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.urgency-cta p{
  font-size: 1.24rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.urgency-cta-buttons{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-light{
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 12px;
  background: var(--white);
  color: var(--dark-gray);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-light:hover{
  opacity: 0.92;
  transform: translateY(-1px);
}
.btn-light-outline{
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 12px;
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-light-outline:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* ================= FAQ ================= */
.faq-list{
  margin-top: 2rem;
  max-width: 720px;
}
.faq-item{
  border-bottom: 1px solid var(--border-light);
}
.faq-item[open]{
  padding-bottom: 0.5rem;
}
.faq-q{
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 1.1rem 2rem 1.1rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.45;
}
.faq-q::-webkit-details-marker{
  display: none;
}
.faq-q::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--muted-dark);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-q::after{
  content: "−";
}
.faq-a{
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-dark);
  padding-bottom: 0.75rem;
  max-width: 62ch;
}
section:nth-of-type(even) .faq-item{
  border-bottom-color: rgba(255,255,255,0.08);
}
section:nth-of-type(even) .faq-q{
  color: var(--text-light);
}
section:nth-of-type(even) .faq-q::after{
  color: var(--muted-light);
}
section:nth-of-type(even) .faq-a{
  color: var(--muted-light);
}

.faq-cta{
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}
.faq-cta p{
  font-size: 1.05rem;
  color: var(--muted-dark);
  margin-bottom: 1.25rem;
}
.faq-cta-buttons{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Outline variant for hero CTA */
.hero-cta-btn--outline{
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
}
.hero-cta-btn--outline:hover{
  background: rgba(0,0,0,0.03);
}
section:nth-of-type(even) .hero-cta-btn--outline{
  color: var(--text-light);
  border-color: rgba(255,255,255,0.25);
}
section:nth-of-type(even) .hero-cta-btn--outline:hover{
  background: rgba(255,255,255,0.06);
}

/* ================= RESPONSIVE — NEW SECTIONS ================= */
@media (max-width: 700px){
  .stats-grid{
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .stat-number{ font-size: 1.8rem; }
  .stat-card{ padding: 1.5rem 1.2rem; }
  .plans-cta{ margin-top: 2.5rem; padding-top: 2rem; }
  .process-cta{ margin-top: 2.5rem; padding-top: 2rem; }
  .urgency-cta{ margin-top: 2.5rem; padding-top: 2rem; }
  .faq-cta{ margin-top: 2.5rem; padding-top: 2rem; }
  .faq-cta-buttons{ flex-direction: column; }
  .urgency-cta-buttons{ flex-direction: column; align-items: center; }
}
@media (max-width: 480px){
  .stats-grid{ grid-template-columns: 1fr; }
}
/* Force Process section to be dark so the existing white stepper styles are readable */
#why{
  background: var(--dark-gray);
  color: var(--text-light);
}
#why .section-label{ color: var(--muted-light); }
#why .section-intro{ color: var(--muted-light); }

/* =========================================================
   FIX: Process section readable on LIGHT background
   (Keep section light, switch stepper text to dark)
========================================================= */

#why{
  background: var(--white);
  color: var(--text-dark);
}

/* Section label + intro */
#why .section-label{
  color: var(--muted-dark);
}
#why .section-intro{
  color: var(--muted-dark);
}

/* Step numbers (01–05) */
#why .stepper-num{
  color: rgba(0,0,0,0.55);
}

/* Step titles (Discovery, Options, etc.) */
#why .stepper-item h3{
  color: var(--text-dark);
}

/* Step descriptions */
#why .stepper-item p{
  color: rgba(0,0,0,0.75);
}
#why .stepper-item.is-active p{
  color: rgba(0,0,0,0.92);
}

/* Icons adapt to light background */
#why .stepper-icon{
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.04);
}
#why .stepper-icon svg{
  stroke: rgba(0,0,0,0.6);
}

/* Active state */
#why .stepper-item.is-active .stepper-icon{
  border-color: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.08);
}
#why .stepper-item.is-active .stepper-icon svg{
  stroke: rgba(0,0,0,0.9);
}

/* Track line for light background */
#why .track-line{
  background: rgba(0,0,0,0.12);
}
#why .track-line::after{
  background: repeating-linear-gradient(
    to right,
    rgba(0,0,0,0.35) 0 4px,
    transparent 4px 12px
  );
}
/* #why is light — make the CTA text dark */
#why .process-cta-lead{
  color: var(--text-dark);
}

#why .process-cta-sub{
  color: var(--muted-dark);
}

/* optional: the divider line above the CTA is currently white-ish */
#why .process-cta{
  border-top-color: rgba(0,0,0,0.10);
}

/* =========================================================
   MOBILE-FIRST OPTIMIZATION
   Focus: get user to contact Jessica
   Sticky CTA bar, tighter spacing, readable typography,
   streamlined layout for thumb-friendly interaction
========================================================= */

/* ===== STICKY MOBILE CTA BAR ===== */
.mobile-cta-bar{
  display: none; /* shown via media query */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0.65rem 0.75rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  gap: 0.5rem;
}
.mobile-cta-call{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1.2;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  background: var(--text-dark);
  color: var(--white);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cta-call svg{
  width: 17px; height: 17px;
  stroke: var(--white); flex-shrink: 0;
}
.mobile-cta-find{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0.8;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(0,0,0,0.12);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* ===== MOBILE BREAKPOINT ===== */
@media (max-width: 768px){

  /* Show sticky CTA bar */
  .mobile-cta-bar{ display: flex; }

  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body{ padding-bottom: 5rem; }

  /* --- GLOBAL --- */
  section{ padding: 3.5rem 0; }
  .container{ width: 92%; }
  h2{ font-size: 1.5rem; margin-bottom: 0.6rem; }
  .section-intro{ font-size: 0.95rem; }

  /* --- HEADER --- */
  .logo img{ height: 38px; }

  /* --- HERO --- */
  #hero{ padding: 4.5rem 0 3rem; }
  .hero-title{ font-size: 1.6rem; line-height: 1.25; }
  .hero-lede{ font-size: 0.95rem; }
  .hero-center{ margin-bottom: 2rem; }

  .hero-ctas{ flex-direction: column; gap: 0.65rem; }
  .hero-btn{
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  /* Make Call button more prominent on mobile */
  .hero-btn--call{
    font-size: 1.05rem;
    padding: 1.1rem 1.5rem;
  }

  .hero-quotes{
    min-height: 136px;
    margin-top: 0.75rem;
  }
  .hero-quote-doubt{ font-size: 1rem; }
  .hero-quote-truth{ font-size: 0.9rem; line-height: 1.68; }

  /* --- ABOUT --- */
  .about-grid{
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 1.5rem;
  }
  .about-image{ display: flex; justify-content: center; }
  .about-image{
    width: 142px;
    height: 142px;
  }
  .about-image::after{ inset: 6px; }
  .about-image img{ width: 120px; height: 120px; }
  .about-paragraph{ margin-inline: auto; }
  .about-contact-row{ justify-content: center; }
  .about-content{ padding-bottom: clamp(1rem, 2.1vw, 1.6rem); }
  .about-socials{
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 0.45rem;
    justify-content: center;
    width: 100%;
  }
  #about{
    background-attachment: scroll;
  }
  #whyinsurance{
    background-attachment: scroll;
  }

  /* --- PLANS SLIDER --- */
  .plans-slide{
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
  }
  .plans-slide-img{
    max-width: 100%;
    border-radius: 12px;
  }
  .plans-slide-name{ font-size: 1.35rem; }
  .plans-slide-hook{ font-size: 0.92rem; }
  .plans-nav{ margin-top: 1.5rem; }
  .plans-arrow{ width: 36px; height: 36px; }
  .plans-arrow svg{ width: 16px; height: 16px; }

  /* Detail panel mobile */
  .plans-detail-inner{ padding: 1.3rem 1.1rem; }
  .plans-detail-title{ font-size: 1.15rem; }
  .plans-detail-features{ grid-template-columns: 1fr; }
  .plans-detail-feat:last-child{ border-bottom: none; }
  .plans-detail-best{ flex-direction: column; gap: 0.3rem; }
  .plans-detail-header{ flex-direction: column; gap: 0.5rem; }
  .plans-detail-close{ align-self: flex-end; }
  .plans-detail-cta{
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  /* --- WHY INSURANCE STATS --- */
  .stats-grid{
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem;
  }
  .stat-card{ padding: 1.2rem 1rem; }
  .stat-number{ font-size: 1.6rem; }
  .stat-desc{ font-size: 0.82rem; }

  /* --- PROCESS / WHY JMAK --- */
  .process-header{ max-width: 100%; }
  .process-track{ margin-top: 2rem; }

  /* --- RISK CALCULATOR --- */
  .calc-grid{ grid-template-columns: 1fr; }

  /* --- FAQ --- */
  .faq-q{ font-size: 1rem; padding: 1rem 0; }
  .faq-a{ font-size: 0.92rem; }
  .faq-cta-buttons{
    flex-direction: column;
    gap: 0.65rem;
  }
  .faq-cta-buttons .hero-cta-btn{
    width: 100%;
    text-align: center;
  }

  /* --- CONTACT --- */
  .contact-grid{
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .contact-form{ padding: 1.5rem; }
  .contact-content h2{ font-size: 1.4rem; }

  /* --- CTA SECTIONS --- */
  .plans-cta,
  .process-cta,
  .urgency-cta,
  .faq-cta{
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  .urgency-cta-buttons{
    flex-direction: column;
    align-items: stretch;
  }
  .urgency-cta-buttons a{
    text-align: center;
  }

  /* Make all CTA buttons full-width and tap-friendly on mobile */
  .hero-cta-btn{
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  /* --- FOOTER --- */
  .footer-inner{
    text-align: center;
    font-size: 0.85rem;
  }

  /* Vignette: lighten slightly on mobile for readability */
  section:nth-of-type(odd)::after{
    background: radial-gradient(
      ellipse 90% 80% at 50% 50%,
      transparent 50%,
      rgba(0, 0, 0, 0.03) 65%,
      rgba(0, 0, 0, 0.08) 80%,
      rgba(0, 0, 0, 0.14) 100%
    );
  }
  section:nth-of-type(even)::after{
    background: radial-gradient(
      ellipse 90% 80% at 50% 50%,
      transparent 45%,
      rgba(0, 0, 0, 0.08) 60%,
      rgba(0, 0, 0, 0.2) 78%,
      rgba(0, 0, 0, 0.35) 100%
    );
  }
}

/* ===== SMALL PHONE ===== */
@media (max-width: 400px){
  h2{ font-size: 1.35rem; }
  .hero-title{ font-size: 1.4rem; }
  .hero-lede{ font-size: 0.9rem; }
  .stats-grid{ grid-template-columns: 1fr !important; }
  .plans-slide-name{ font-size: 1.2rem; }
  .mobile-cta-bar{ padding: 0.55rem 0.6rem; }
  .mobile-cta-call,
  .mobile-cta-find{ padding: 0.75rem 0.8rem; font-size: 0.88rem; }
}

/* =========================================================
   CONSISTENCY PASS
   - Unified spacing rhythm and type sizing
   - Button heights and corner radii normalized
   - Shared panel/card spacing made more symmetrical
========================================================= */
:root{
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 2.5rem;
  --section-space: clamp(3.5rem, 7vw, 5rem);
  --radius-md: 12px;
  --radius-lg: 14px;
  --text-base: 1rem;
  --text-sm: 0.92rem;
}

body{
  font-size: var(--text-base);
}

section{
  padding-block: var(--section-space);
}

h2{
  font-size: clamp(1.75rem, 2.6vw, 2.15rem);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.section-label{
  margin-bottom: var(--space-2);
}

.section-intro{
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: var(--space-5);
  max-width: 65ch;
}

.hero-center .hero-lede,
.process-header .section-intro,
.whyins-center .section-intro,
.rc-subtitle,
.faq-list,
.faq-cta,
.plans-cta,
.urgency-cta,
.process-cta{
  margin-inline: auto;
}

.hero-btn,
.hero-cta-btn,
.btn-light,
.btn-light-outline,
.calc-result-btn,
.case-toggle-btn,
.btn,
.mobile-cta-call,
.mobile-cta-find{
  min-height: 48px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  line-height: 1.2;
}

.hero-btn,
.hero-cta-btn,
.btn-light,
.btn-light-outline,
.calc-result-btn,
.case-toggle-btn{
  padding: 0.9rem 1.5rem;
}

.hero-obj,
.stat-card,
.plans-detail-inner,
.calc-result,
.case-snapshot,
.contact-form,
.faq-item{
  border-radius: var(--radius-lg);
}

.plans-slider,
.stats-grid,
.process-track,
.faq-list,
.contact-grid,
.calc-grid{
  margin-top: var(--space-6);
}

.plans-cta,
.urgency-cta,
.process-cta,
.faq-cta{
  margin-top: var(--space-6);
  padding-top: var(--space-5);
}

.faq-cta,
.plans-cta,
.urgency-cta,
.process-cta,
.contact-content{
  text-align: center;
}

.faq-cta-buttons,
.urgency-cta-buttons,
.process-cta-buttons{
  justify-content: center;
}

.footer-inner{
  display: grid;
  gap: var(--space-1);
  text-align: center;
}

.contact-coverage-link{
  display: flex;
  width: fit-content;
  margin-top: var(--space-4);
  margin-inline: auto;
  background: #ff2a2a;
  color: #fff;
  border: 1px solid rgba(255,120,120,0.8);
  box-shadow:
    0 0 0 1px rgba(255,82,82,0.72),
    0 0 18px rgba(255,42,42,0.72),
    0 10px 22px rgba(130,18,18,0.36);
  animation: contactNeonPulse 1.8s ease-in-out infinite;
}

.contact-coverage-link:hover{
  background: #ff3636;
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,120,120,0.95),
    0 0 28px rgba(255,54,54,0.9),
    0 14px 28px rgba(130,18,18,0.45);
}

@keyframes contactNeonPulse{
  0%, 100%{
    box-shadow:
      0 0 0 1px rgba(255,82,82,0.68),
      0 0 15px rgba(255,42,42,0.66),
      0 9px 20px rgba(130,18,18,0.34);
  }
  50%{
    box-shadow:
      0 0 0 1px rgba(255,126,126,0.98),
      0 0 34px rgba(255,42,42,0.98),
      0 12px 26px rgba(130,18,18,0.5);
  }
}

@media (prefers-reduced-motion: reduce){
  .contact-coverage-link{
    animation: none;
  }
}

#formStatus{
  margin-top: var(--space-3);
  margin-bottom: 0;
}

@media (max-width: 768px){
  .section-intro{
    margin-bottom: var(--space-4);
  }

  .plans-slider,
  .stats-grid,
  .process-track,
  .faq-list,
  .contact-grid,
  .calc-grid{
    margin-top: var(--space-5);
  }

  .hero-btn,
  .hero-cta-btn,
  .btn-light,
  .btn-light-outline,
  .calc-result-btn,
  .case-toggle-btn,
  .btn{
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   COVERAGE TYPES REDESIGN
   - Cleaner hierarchy and card framing
   - Better visual balance between image and copy
   - Smoother, less clunky slider controls
========================================================= */
#plans .container{
  max-width: 1120px;
}

#plans .section-intro{
  max-width: 62ch;
}

#plans .plans-slider{
  position: relative;
  margin-top: 2.6rem;
  padding-top: 0.35rem;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#plans .plans-slide{
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
}

#plans .plans-slide-img{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0;
  aspect-ratio: auto;
  min-height: 0;
  background: transparent;
  box-shadow: none;
  padding-top: 0.25rem;
}

#plans .plans-shape{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#plans .plans-shape--circle{
  width: 68px;
  height: 68px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.2);
  background: linear-gradient(160deg, rgba(255,255,255,0.95) 0%, rgba(238,238,238,0.9) 100%);
  color: #3f3f3f;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

#plans .plans-shape-stack{
  display: grid;
  gap: 0.35rem;
}

#plans .plans-shape--square{
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.18);
  background: #f2f2f2;
}

#plans .plans-shape--ghost{
  background: transparent;
  opacity: 0.7;
}

#plans .plans-slide-text{
  display: grid;
  gap: 0.9rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-height: 0;
  width: 100%;
}

#plans .plans-slide-name{
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

#plans .plans-slide-tag{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #6a6a6a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0;
  margin: 0;
}

#plans .plans-slide-tag::before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(70,70,70,0.55);
}

#plans .plans-slide-hook{
  font-size: 1.05rem;
  line-height: 1.72;
  color: #2f2f2f;
  max-width: none;
  margin: 0;
}

#plans .plans-slide-desc{
  font-size: 0.95rem;
  line-height: 1.78;
  color: #5d5d5d;
  margin: 0;
}

#plans .plans-slide-features{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.48rem;
  margin: 0.35rem 0 0.55rem;
  padding-left: 0.95rem;
  border-left: 1px solid rgba(0,0,0,0.14);
}

#plans .plans-slide-feature{
  position: relative;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #474747;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 0 0.85rem;
}

#plans .plans-slide-feature::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #777777;
  font-size: 0.95rem;
  line-height: 1.55;
}

#plans .plans-slide-best{
  display: grid;
  gap: 0.34rem;
  margin: 0.25rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(0,0,0,0.12);
}

#plans .plans-slide-best-label{
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
  color: #747474;
}

#plans .plans-slide-best-text{
  font-size: 0.92rem;
  line-height: 1.62;
  color: #3f3f3f;
}

#plans .plans-slide-cta{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  width: fit-content;
  border-radius: 0;
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-top: 0.3rem;
  padding: 0.15rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.45);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

#plans .plans-slide-cta:hover{
  opacity: 1;
  transform: translateX(2px);
  border-bottom-color: rgba(0,0,0,0.75);
}

#plans .plans-slide-learn{
  margin-top: 1rem;
  padding: 0.2rem 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #494949;
}
#plans .plans-slide-learn:hover{
  opacity: 1;
  color: #1f1f1f;
}

#plans .plans-nav{
  margin-top: 1.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

#plans .plans-arrow{
  width: 38px;
  height: 38px;
  background: transparent;
  border-color: rgba(0,0,0,0.16);
  box-shadow: none;
}

#plans .plans-arrow:hover{
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.24);
}

#plans .plans-pips{
  gap: 9px;
}

#plans .plans-pip{
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,0.22);
}

#plans .plans-pip.is-active{
  background: rgba(0,0,0,0.78);
}

#plans .plans-detail{
  margin-top: 0;
}

#plans .plans-detail.is-open{
  margin-top: 1.25rem;
}

#plans .plans-detail-inner{
  border-radius: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 1.5rem 0.25rem;
}

#plans .plans-detail-title{
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

#plans .plans-detail-close{
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.4);
  border-radius: 0;
  padding: 0.2rem 0;
}

#plans .plans-detail-badge{
  border: none;
  padding: 0;
}

#plans .plans-detail-features{
  gap: 0.18rem 1.8rem;
}

#plans .plans-detail-feat{
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.92rem;
}

#plans .plans-detail-best{
  border-top: 1px solid rgba(0,0,0,0.12);
}

#plans .plans-detail-cta{
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.55);
  padding: 0.65rem 0;
}

#plans .plans-cta{
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

@media (max-width: 900px){
  #plans .plans-slide{
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  #plans .plans-slide-img{
    max-width: none;
    margin-inline: 0;
  }

  #plans .plans-slide-hook{
    max-width: none;
  }

  #plans .plans-slide-features{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  #plans .plans-slider{
    padding-top: 0;
  }

  #plans .plans-detail-inner{
    border-radius: 14px;
  }

  #plans .plans-shape--circle{
    width: 58px;
    height: 58px;
    font-size: 0.82rem;
  }

  #plans .plans-shape--square{
    width: 20px;
    height: 20px;
  }

  #plans .plans-detail-inner{
    border-radius: 0;
    padding-inline: 0;
  }
}

/* =========================================================
   PLANS REFORMAT (FINAL)
========================================================= */
#plans::after{
  background: none;
}

#plans::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at 50% 45%,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.02) 30%,
    rgba(0,0,0,0.10) 62%,
    rgba(0,0,0,0.24) 100%
  );
}

#plans .container{
  --plans-index-col: 300px;
  --plans-col-gap: clamp(1.3rem, 2.8vw, 2.8rem);
}

#plans > .container > .section-label,
#plans > .container > h2,
#plans > .container > .section-intro{
  margin-left: calc(var(--plans-index-col) + var(--plans-col-gap));
  max-width: 70ch;
}

#plans .plans-reformat{
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(1.3rem, 2.8vw, 2.8rem);
  align-items: start;
}

#plans .plans-index{
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

#plans .plans-index-item{
  text-align: left;
  border: none;
  border-left: 2px solid rgba(0,0,0,0.1);
  background: transparent;
  color: #6a6a6a;
  padding: 0.5rem 0 0.5rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#plans .plans-index-item:hover{
  color: #2c2c2c;
  border-left-color: rgba(0,0,0,0.28);
  transform: translateX(2px);
}

#plans .plans-index-item.is-active{
  color: #171717;
  border-left-color: rgba(0,0,0,0.62);
  font-weight: 600;
}

#plans .plans-focus{
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

#plans .plans-focus-meta{
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.9rem;
}

#plans .plans-focus-shape{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.18);
  background: linear-gradient(160deg, #fafafa 0%, #ebebeb 100%);
}

#plans .plans-focus-kicker{
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

#plans .plans-slide-tag{
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: #6f6f6f;
  text-transform: uppercase;
}

#plans .plans-slide-tag::before{
  display: none;
}

#plans .plans-focus-count{
  font-size: 0.72rem;
  color: #8b8b8b;
}

#plans .plans-slide-name{
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

#plans .plans-slide-hook{
  font-size: 1.03rem;
  line-height: 1.72;
  color: #2f2f2f;
  margin-bottom: 0.8rem;
}

#plans .plans-slide-desc{
  font-size: 0.95rem;
  line-height: 1.78;
  color: #585858;
  margin-bottom: 1rem;
}

#plans .plans-slide-features{
  border-left: 1px solid rgba(0,0,0,0.14);
  padding-left: 0.95rem;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
}

#plans .plans-slide-feature{
  padding: 0 0 0 0.85rem;
  border: none;
  background: transparent;
  color: #434343;
  font-size: 0.91rem;
  line-height: 1.56;
}

#plans .plans-slide-feature::before{
  content: "•";
  left: 0;
  top: 0;
  background: transparent;
  color: #7a7a7a;
}

#plans .plans-slide-best{
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 0.95rem;
  margin-top: 0;
}

#plans .plans-slide-best-label{
  font-size: 0.67rem;
  color: #727272;
}

#plans .plans-slide-best-text{
  font-size: 0.92rem;
  color: #3b3b3b;
  line-height: 1.6;
}

#plans .plans-focus-actions{
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#plans .plans-slide-cta{
  width: auto;
  justify-content: flex-start;
  padding: 0.1rem 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.45);
  border-radius: 0;
  background: transparent;
  color: #1f1f1f;
}

#plans .plans-slide-cta:hover{
  transform: translateX(2px);
}

#plans .plans-nav{
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

#plans .plans-arrow{
  width: 34px;
  height: 34px;
  border-color: rgba(0,0,0,0.16);
  background: transparent;
}

#plans .plans-cta{
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 920px){
  #plans > .container > .section-label,
  #plans > .container > h2,
  #plans > .container > .section-intro{
    margin-left: 0;
    max-width: none;
  }

  #plans .plans-reformat{
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  #plans .plans-index{
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.9rem;
  }
}

@media (max-width: 640px){
  #plans .plans-index{
    grid-template-columns: 1fr;
  }

  #plans .plans-focus-actions{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   WHY PROCESS RE-SKIN (FINAL)
========================================================= */
#why{
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,1) 0%,
      rgba(18,18,18,0.98) 40%,
      rgba(18,18,18,0.95) 58%,
      rgba(18,18,18,0.82) 70%,
      rgba(18,18,18,0.62) 84%,
      rgba(18,18,18,0.42) 100%
    ),
    url("../images/road-shot.jpg") center 56% / cover no-repeat fixed;
  color: var(--text-light);
}

#why::after{
  background: none;
}

#why > .container{
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(22,22,22,0.28);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 12px 28px rgba(0,0,0,0.24);
}

#why .section-label,
#why .section-intro,
#why .stepper-num,
#why .stepper-item h3,
#why .stepper-item p,
#why .process-cta-lead,
#why .process-cta-sub{
  color: var(--text-light);
}

#why .section-intro,
#why .process-cta-sub{
  color: rgba(240,240,240,0.88);
}

#why .stepper-icon{
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

#why .stepper-icon svg{
  stroke: rgba(255,255,255,0.7);
}

#why .stepper-item.is-active .stepper-icon{
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.1);
}

#why .stepper-item.is-active .stepper-icon svg{
  stroke: rgba(255,255,255,0.94);
}

#why .track-line{
  background: rgba(255,255,255,0.14);
}

#why .track-line::after{
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.35) 0 4px,
    transparent 4px 12px
  );
}

#why .process-cta{
  border-top-color: rgba(255,255,255,0.15);
}

@media (max-width: 768px){
  #why{
    background-attachment: scroll;
  }
}

@media (hover: hover) and (pointer: fine){
  #why .track-line{
    overflow: hidden;
  }

  #why .track-line::before{
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--why-progress, 0%);
    background: linear-gradient(
      90deg,
      rgba(95,196,116,0.55) 0%,
      rgba(95,196,116,0.95) 100%
    );
    box-shadow: 0 0 8px rgba(95,196,116,0.45);
    transition: width 0.08s linear;
  }

  #why .stepper-item p{
    opacity: 0;
    color: rgba(255,255,255,0);
    transition: opacity 0.24s ease, color 0.24s ease;
  }

  #why .stepper-item.is-revealed p{
    opacity: 1;
    color: rgba(255,255,255,0.98);
  }

  #why .stepper-item.is-complete .stepper-icon,
  #why .stepper-item.is-active .stepper-icon{
    border-color: rgba(95,196,116,0.95);
    background: rgba(95,196,116,0.22);
    box-shadow: 0 0 0 1px rgba(95,196,116,0.35), 0 0 14px rgba(95,196,116,0.28);
  }

  #why .stepper-item.is-complete .stepper-icon svg,
  #why .stepper-item.is-active .stepper-icon svg{
    stroke: rgba(239,255,242,0.98);
  }

  #why .stepper-icon.burst::after{
    border-color: rgba(95,196,116,0.75);
  }
}

/* ================= CALL CTA ATTENTION SHAKE ================= */
@keyframes ctaAttentionShake{
  0%, 72%, 100%{
    transform: translateX(0) rotate(0deg);
  }
  74%{ transform: translateX(-1px) rotate(-0.9deg); }
  76%{ transform: translateX(1px) rotate(0.9deg); }
  78%{ transform: translateX(-2px) rotate(-1.2deg); }
  80%{ transform: translateX(2px) rotate(1.2deg); }
  82%{ transform: translateX(-1px) rotate(-0.8deg); }
  84%{ transform: translateX(1px) rotate(0.8deg); }
}

.hero-btn--call,
.header-panel-call,
.mobile-cta-call,
.btn-light-outline[href^="tel:"],
.calc-result-btn[href^="tel:"],
.hero-cta-btn[href^="tel:"],
.process-cta-buttons .hero-btn--call{
  animation: ctaAttentionShake 3.2s ease-in-out infinite;
  transform-origin: center;
}

@media (prefers-reduced-motion: reduce){
  .hero-btn--call,
  .header-panel-call,
  .mobile-cta-call,
  .btn-light-outline[href^="tel:"],
  .calc-result-btn[href^="tel:"],
  .hero-cta-btn[href^="tel:"],
  .process-cta-buttons .hero-btn--call{
    animation: none;
  }
}
