/* =============================================================
   PRICING-DETAILS - PRODUCTION FIX + RESPONSIVE STYLES
   ============================================================= */

/* ── GLOBAL RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  width: 100%;
  
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.container--sm {
  max-width: 850px;
  margin-inline: auto;
}

/* ── PAGE HERO - fully centred ────────────────────────────── */
.page-hero {
  width: 100%;
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0.7;
  flex-wrap: wrap;
}

.page-hero__eyebrow {
  text-align: center;
}

.page-hero__h1 {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.15;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
}

.page-hero__sub {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
 font-size:clamp(var(--fs-15), 1vw, var(--fs-15));
  line-height: 1.7;
  opacity: 0.85;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── INNER SECTIONS ───────────────────────────────────────── */
.inner-section {
  width: 100%;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.inner-section--surface {
  position: relative;
}

/* ── TWO-COL LAYOUT ───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── CONTENT PROSE ────────────────────────────────────────── */
.content-prose { max-width: 100%; }

.content-prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.25;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.content-prose p {
  font-size: clamp(var(--fs-15), 1vw, var(--fs-15));
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align:justify;
}

.content-prose ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.content-prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: clamp(0.875rem, 1.6vw, 0.975rem);
  line-height: 1.6;
}

.content-prose ul li::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: 700;
  color: var(--accent, #00c896);
  margin-top: 0.1em;
}

/* ── MODERN STATS PANEL ───────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: center;
}

.stat-box {
  position: relative;
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2.5vw, 1.75rem);
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(209, 201, 201, 0.69);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
  min-height: 140px;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.stat-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,200,150,0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0,200,150,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,200,150,0.15);
}

.stat-box:hover::after { opacity: 1; }

.stat-box__num {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #00e6a8 0%, #00b8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.stat-box__label {
  font-size: clamp(0.75rem, 1.4vw, 0.875rem);
  line-height: 1.4;
  opacity: 0.72;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.stat-box:nth-child(1) .stat-box__num {
  background: linear-gradient(135deg, #10ca8c 0%, #a8f5e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box:nth-child(3) .stat-box__num {
  background: linear-gradient(135deg, #078f4b 0%, #08a75c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box:nth-child(4) .stat-box__num {
  background: linear-gradient(135deg, #0b5c2d 0%, #20d3a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-box:nth-child(5) .stat-box__num {
  background: linear-gradient(135deg, #0aaf78 0%, #20d3a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── PAGE INTRO ───────────────────────────────────────────── */
.page-intro {
  text-align: center;
  max-width: 920px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.section-body {
  font-size:clamp(var(--fs-15), 1vw, var(--fs-15));
  line-height: 1.7;
  opacity: 0.8;
  color: #181717;
}

.sec-center { text-align: center; }
.sec-body-spaced { margin-top: 0.75rem; }

/* ── PRICING GRID ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── PRICING CARDS ────────────────────────────────────────── */
.pricing-card {
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.pricing-card--featured {
  border-color: rgba(0,200,150,0.4);
  box-shadow: 0 0 0 1px rgba(0,200,150,0.2), 0 16px 48px rgba(0,0,0,0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00c896, #00b8d4);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
}

.pricing-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.75;

}

.pricing-card__price {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card__per {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: -0.5rem;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.20rem;
  flex: 1;
}

.pricing-card__features li {
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-card__features li::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: 700;
  color: var(--accent, #00c896);
}

/* ── FEATURE GRID ─────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-card {
  border-radius: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(209, 201, 201, 0.69);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.feature-card__icon { font-size: 1.75rem; text-align:center; margin-bottom: 0.75rem; display: block; }

.feature-card__title {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align:center;
}

.feature-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.75;
  text-align:center;
  margin: 0;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
  transition: opacity 0.2s;
}

.faq-btn:hover { opacity: 0.85; }

.faq-btn__ico {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.faq-btn[aria-expanded="true"] .faq-btn__ico {
  transform: rotate(45deg);
  border-color: var(--accent, #00c896);
}

.faq-body {
  display: none;
  padding-bottom: 1.25rem;
  font-size: clamp(var(--fs-15), 1vw, var(--fs-15));
  line-height: 1.75;
  opacity: 0.8;
}

.faq-btn[aria-expanded="true"] + .faq-body { display: block; }

 .custom-plan-head {
  font-size: clamp(2rem, 2vw, 2rem);
  margin-top: 20px;
  margin-bottom:15px;
}


/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  padding-block: clamp(4rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__title {
 
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 1200px;
  margin-inline: auto;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
}

.cta-section__body {
  font-size: clamp(var(--fs-15), 1vw, var(--fs-15));
  line-height: 1.7;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-section__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 100px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  border: 2px solid #3cb878;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn:active { transform: translateY(0); }

.btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
}

.btn--primary {
  background: linear-gradient(135deg, #00c896, #00b8d4);
  color: #000;
}

.btn--ghost-white {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn--ghost-white:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}

.btn-icon { width: 1em; height: 1em; flex-shrink: 0; }

/* ── EYEBROW ──────────────────────────────────────────────── */
.inner-eyebrow,
.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #00c896);
}

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible,
.reveal--right.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--right { opacity: 1; transform: none; transition: none; }
}

/* ── AI ESTIMATOR BG LAYERS (preserved) ──────────────────── */
.ai-estimator__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aie__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.aie__glow-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
}

.aie__glow-2 {
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,212,0.1) 0%, transparent 70%);
}

/* ── SECTION HEADLINE ─────────────────────────────────────── */
.section-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

/* ── MOBILE OVERRIDES ─────────────────────────────────────── */
@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn,
  .cta-section__btns .btn {
    width: 100%;
    justify-content: center;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
  }
  .stat-box {
    min-height: 110px;
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 360px) {
  .stats-row { grid-template-columns: 1fr; }
}