/* =====================================================
   DESIGN TOKENS
===================================================== */
:root {

  --bg-page: #0f2b1e;
  --bg-base: #0f2b1e;
  --bg-alt: #123424;
  --bg-emphasis: #0c2318;
  --bg-elevated: #173d2b;
  --bg-testimonial: #102f22;

  --ink-strong: #ffffff;
  --ink-main: #eaf5ee;
  --ink-muted: #cfe5da;

  --green-accent: #bae63e;
  --green-accent-hover: #a9d934;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --fs-h1: clamp(2.6rem, 6vw, 4.4rem);
  --fs-h2: clamp(2rem, 4vw, 2.8rem);
  --fs-h3: clamp(1.2rem, 2.5vw, 1.5rem);
  --fs-body: clamp(1.05rem, 2vw, 1.1rem);
  --fs-small: 0.9rem;

  --lh-body: 1.75;
  --lh-heading: 1.15;

  --section-pad: clamp(100px, 12vh, 150px);
  --gap-xl: clamp(80px, 8vw, 120px);
  --gap-lg: clamp(60px, 6vw, 90px);
  --gap-md: clamp(36px, 4vw, 56px);
  --gap-sm: clamp(20px, 3vw, 28px);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  background: var(--bg-page);
  color: var(--ink-main);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================================================
   ACCESSIBILITY
===================================================== */
:focus-visible {
  outline: 2px solid var(--green-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--green-accent);
  color: #0f2b1e;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 20px; }

section[id] {
  scroll-margin-top: 120px;
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.section {
  padding-block: var(--section-pad);
}

.section--hero {
  padding-top: clamp(160px, 20vh, 220px);
}

.section--base { background: var(--bg-base); }
.section--alt { background: var(--bg-alt); }
.section--emphasis { background: var(--bg-emphasis); }
.section--testimonial {
  background: linear-gradient(
    180deg,
    #07150f 0%,
    #06110c 100%
  );
  padding-top: clamp(140px, 18vh, 200px);
}

.center { text-align: center; }
.center p { margin-inline: auto; }

.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--ink-strong);
  line-height: var(--lh-heading);
}

h1 { margin-bottom: .7em; }
h2 { margin-bottom: 1em; }
h3 { margin-bottom: .7em; }

p {
  color: var(--ink-muted);
  max-width: 70ch;
}

p + p {
  margin-top: 1.6em;
}

.text-wide { max-width: 70ch; }
.text-narrow { max-width: 56ch; }

.section-subtitle {
  margin-top: 1em;
  opacity: .95;
}

.hero-lead {
  margin-top: 1.4em;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.hero-emphasis {
  color: var(--green-accent);
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: all .25s ease;
  cursor: pointer;
}

.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--green-accent);
  color: #0f2b1e;
  box-shadow: 0 14px 32px rgba(0,0,0,.3);
}

.btn-primary:hover {
  background: var(--green-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(0,0,0,.35);
}

.btn-outline {
  border: 1.5px solid var(--ink-main);
  color: var(--ink-main);
}

.btn-outline:hover {
  background: var(--ink-main);
  color: #0f2b1e;
  transform: translateY(-3px);
}

.btn-sm { padding: 10px 18px; font-size: var(--fs-small); }
.btn-lg { padding: 15px 36px; }

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--container) + clamp(40px, 8vw, 64px));
  max-width: calc(100% - 40px);
  height: 64px;
  z-index: 100;

  background: rgba(20, 48, 35, 0.9);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 14px 32px rgba(0,0,0,.2);

  transition: all .3s ease;
}

.navbar.scrolled {
  background: rgba(15, 35, 25, 0.95);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.nav-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 4vw, 32px);
}

.logo img { height: 34px; }

.nav-links {
  display: flex;
  gap: clamp(24px, 4vw, 36px);
}

.nav-links a {
  font-size: var(--fs-small);
  letter-spacing: .5px;
  color: rgba(255,255,255,.75);
  transition: color .2s ease;
}

.nav-links a:hover { color: var(--ink-main); }
.nav-links a.active { color: var(--green-accent); }

/* =====================================================
   HERO
===================================================== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: var(--gap-sm);
  margin-top: 2.6em;
  flex-wrap: wrap;
}

/* =====================================================
   CARDS
===================================================== */
.problem-grid,
.plan-grid,
.testimonial-grid {
  margin-top: var(--gap-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
}

.problem-card,
.plan-card,
.testimonial-block {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(0,0,0,.08)
  );
  backdrop-filter: blur(6px);
  padding: clamp(30px, 4vw, 42px);
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

.problem-card:hover,
.plan-card:hover,
.testimonial-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0,0,0,.3);
}

/* =====================================================
   VISUAL BOX
===================================================== */
.visual-box {
  width: 100%;
  height: clamp(320px, 42vh, 480px);
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.03),
    rgba(0,0,0,.15)
  );
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.05),
    0 24px 48px rgba(0,0,0,.25);
  transition: transform .3s ease, box-shadow .3s ease;
}

.visual-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

/* =====================================================
   CHECK LIST
===================================================== */
.check-list {
  margin-top: 2.4em;
  display: grid;
  gap: 12px;
}

.check-list li {
  color: var(--green-accent);
  font-weight: 500;
}

/* =====================================================
   CTA – STRONG EMPHASIS REDESIGN
===================================================== */

.cta {
  position: relative;
  padding-block: clamp(140px, 18vh, 200px);
  background: linear-gradient(
    180deg,
    #0c2318 0%,
    #07150f 100%
  );
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  margin-bottom: 2.2rem;
  max-width: 16ch;
  margin-inline: auto;
}

.cta .btn {
  padding: 18px 46px;
  font-size: 1.05rem;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

/* =====================================================
   FAQ
===================================================== */
.faq details {
  background: var(--bg-elevated);
  padding: clamp(22px, 4vw, 28px);
  border-radius: var(--radius-sm);
  transition: box-shadow .2s ease;
}

.faq details + details {
  margin-top: 20px;
}

.faq details[open] {
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
}

.faq summary {
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.faq summary:hover {
  color: var(--green-accent);
}

.faq summary::after {
  content: "›";
  position: absolute;
  right: 0;
  transition: transform .2s ease;
}

.faq details[open] summary::after {
  transform: rotate(90deg);
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
  background: linear-gradient(
    180deg,
    #0d2318,
    #08150f
  );
  padding-top: 100px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--ink-strong);
}

.footer-brand p {
  color: var(--ink-muted);
  max-width: 420px;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--green-accent);
}

.footer-column ul {
  display: grid;
  gap: 12px;
}

.footer-column a {
  color: rgba(255,255,255,.7);
  transition: color .25s ease;
}

.footer-column a:hover {
  color: var(--ink-strong);
}

/* Bottom Strip */

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.05);
}

/* Mobile */

@media (max-width: 900px) {

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-brand p {
    max-width: 100%;
  }

}
/* =====================================================
   FOUNDER SECTION (ICH BIN AMIR)
===================================================== */

.section--founder {
  background: linear-gradient(
    180deg,
    var(--bg-base),
    #0d261a
  );
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.founder-image {
  display: flex;
  justify-content: center;
}

.founder-portrait {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

/* All images stacked */
.founder-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Visible image */
.founder-portrait img.active {
  opacity: 1;
}

.founder-content {
  max-width: 680px;
}

.founder-label {
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
  opacity: .9;
}

.founder-text {
  margin-top: 2em;
}

.founder-text p {
  max-width: 68ch;
}

.founder-footer {
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid rgba(255,255,255,.08);
}

.founder-signature {
  font-weight: 500;
  color: var(--ink-strong);
  margin-bottom: 1.8em;
}

.founder-pillars {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.founder-pillars span {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: var(--fs-small);
  color: var(--green-accent);
  letter-spacing: .5px;
}

/* =====================================================
   PROBLEM SECTION – REDESIGN
===================================================== */

.section--problem {
  background: linear-gradient(
    180deg,
    var(--bg-alt),
    #0f2b1e
  );
  position: relative;
}


.problem-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--gap-xl);
  align-items: start;
}

.problem-intro {
  position: sticky;
  top: 140px;
}

.problem-label {
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
  opacity: .9;
}

.problem-subline {
  margin-top: 1.5em;
  font-size: 1.1rem;
  color: var(--ink-main);
  opacity: .95;
}

.problem-content {
  border-left: 1px solid rgba(255,255,255,.08);
  padding-left: var(--gap-lg);
  display: grid;
  gap: var(--gap-lg);
}

.problem-block h3 {
  margin-bottom: 1em;
}

.problem-block p {
  max-width: 64ch;
  line-height: 1.8;
  color: var(--ink-muted);
}

.problem-block {
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.problem-block:last-child {
  border-bottom: none;
}


/* =====================================================
   TABLET + MOBILE (≤ 900px)
===================================================== */

@media (max-width: 900px) {

  /* Founder */
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    aspect-ratio: 4 / 6;
  }

  .founder-content {
    margin-top: var(--gap-md);
  }

  /* Problem – Mobile Enhancement */

.problem-layout {
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}

.problem-intro {
  position: relative;
  top: 0;
  text-align: left;
}

.problem-subline {
  font-size: 1rem;
  opacity: .9;
}

/* Remove desktop divider */
.problem-content {
  border-left: none;
  padding-left: 0;
  margin-top: var(--gap-md);
  position: relative;
}

/* Add subtle vertical guide line */
.problem-content::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.06);
}

/* Each block gets spacing + visual anchor */
.problem-block {
  padding-left: 28px;
  border-bottom: none;
  position: relative;
}

/* Small accent dot per block */
.problem-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(186,230,62,.08);
}
}
/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .hero-grid,
  .grid-2-cols,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .nav-links { display: none; }

  .visual-box {
    height: 260px;
  }

  .navbar[data-state="hidden"] {
    transform: translate(-50%, -140%);
    transition: transform 220ms ease;
  }

  .navbar[data-state="visible"] {
    transform: translate(-50%, 0);
    transition: transform 260ms ease;
  }
}

/* =====================================================
   METHOD SECTION – REDESIGN
===================================================== */

.section--method {
  background: var(--bg-base);
}

.method-header {
  margin-bottom: var(--gap-xl);
}

.method-label {
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
  opacity: .9;
}

.method-layout {
  max-width: 900px;
  margin: 0 auto;
}

.method-steps {
  position: relative;
  display: grid;
  gap: var(--gap-xl);
}

/* Vertical Line */
.method-steps::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(255,255,255,.08);
}

/* Step Structure */
.method-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--gap-md);
  position: relative;
}

.step-marker {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green-accent);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.step-content h3 {
  margin-bottom: 1em;
}

.step-content p {
  max-width: 64ch;
  line-height: 1.8;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .method-step {
    grid-template-columns: 1fr;
  }

  .method-steps::before {
    display: none;
  }

  .step-marker {
    margin-bottom: 10px;
  }

}

/* =====================================================
   DECISION SECTION – FULL BLEED REDESIGN
===================================================== */

.section--decision {
  width: 100%;
  padding-block: clamp(120px, 14vh, 180px);
}

.decision-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* Each side */
.decision-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 8vw, 120px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Background images */
.decision-negative {
  background: url("../Assets/negative.webp") center/cover no-repeat;
}

.decision-positive {
  background: url("../Assets/positive.webp") center/cover no-repeat;
}

/* Overlay for readability */
.decision-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.65),
    rgba(0,0,0,.75)
  );
}

.decision-positive .decision-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,40,25,.6),
    rgba(0,60,35,.75)
  );
}

/* Content */
.decision-content {
  position: relative;
  max-width: 520px;
  text-align: center;
  z-index: 2;
}

.decision-content h2 {
  margin-bottom: 1.5em;
}

.decision-content p {
  line-height: 1.9;
}

.decision-content .btn {
  margin-top: 3em;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

  .decision-split {
    grid-template-columns: 1fr;
  }

  .decision-side {
    min-height: 520px;
    padding: 80px 24px;
  }

}
@media (min-width: 901px) {
  .nav-about,
  .nav-plans {
    display: none;
  }
}

/* =====================================================
   TESTIMONIALS – REDESIGN
===================================================== */

.section--testimonials {
  background: #0b1f16;
}

.testimonial-header {
  margin-bottom: var(--gap-xl);
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
}

/* Card */
.testimonial-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(0,0,0,.18)
  );
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 40px);
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,.35);
}

.testimonial-info h3 {
  margin-bottom: .5em;
}

.testimonial-info p {
  margin-bottom: 2em;
  color: var(--ink-muted);
}

/* Images */
.testimonial-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.image-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,.7);
  padding: 6px 14px;
  font-size: var(--fs-small);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

/* =====================================================
   MOBILE – HORIZONTAL SCROLL
===================================================== */

@media (max-width: 900px) {

  .testimonial-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .testimonial-card {
    min-width: 85%;
    scroll-snap-align: start;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

}
/* Placeholder image box */

.image-box.placeholder {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.04),
    rgba(0,0,0,.2)
  );
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  position: relative;
}

.image-box.placeholder span {
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--green-accent);
  opacity: .7;
}
/* =====================================================
   TESTIMONIAL SECTION – CAROUSEL STYLE
===================================================== */

.section--testimonial {
  background: linear-gradient(
    180deg,
    #07150f 0%,
    #06110c 100%
  );
  padding-top: clamp(140px, 18vh, 200px);
}

/* =====================================================
   TESTIMONIAL HEADER FIX
===================================================== */

.testimonial-header {
  text-align: center;
  margin-bottom: 120px;
}

.testimonial-header h2 {
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  letter-spacing: 1px;
}
/* Card Container */

.testimonial-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(0,0,0,.18)
  );
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 40px);
  margin-bottom: var(--gap-xl);
}

/* Client Info */

.testimonial-info h3 {
  margin-bottom: .5em;
}

.testimonial-info p {
  margin-bottom: 2em;
  color: var(--ink-muted);
}

/* Scrollable Media Row */

.testimonial-media {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.testimonial-media::-webkit-scrollbar {
  display: none;
}


/* =====================================================
   TESTIMONIAL CAROUSEL – PREMIUM VERSION
===================================================== */

.section--testimonial {
  background: linear-gradient(
    180deg,
    var(--bg-base) 0%,
    #0b2218 100%
  );
  padding-top: clamp(140px, 18vh, 200px);
  border-top: 1px solid rgba(255,255,255,.05);
}

.testimonial-header {
  margin-bottom: var(--gap-xl);
}

/* Card */

.testimonial-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(0,0,0,.18)
  );
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 40px);
  margin-bottom: var(--gap-xl);
}

/* Info */

.testimonial-info h3 {
  margin-bottom: .5em;
}

.testimonial-info p {
  margin-bottom: 2em;
  color: var(--ink-muted);
}

/* Scroll Wrapper */

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

/* Fade Edges */

.testimonial-carousel::before,
.testimonial-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-base), transparent);
}

.testimonial-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-base), transparent);
}

/* Media Row */

.testimonial-media {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0 20px;
}

.testimonial-media::-webkit-scrollbar {
  display: none;
}


/* Video Emphasis */

.video-box {
  min-width: 360px;
  background: linear-gradient(
    145deg,
    rgba(0,0,0,.6),
    rgba(0,0,0,.8)
  );
}

/* Mobile */

/* =====================================================
   ADVANCED TESTIMONIAL CAROUSEL
===================================================== */

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 40px;
  transition: transform .6s ease;
  will-change: transform;
}

.testimonial-card {
  min-width: 80%;
  max-width: 900px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(0,0,0,.18)
  );
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform .6s ease, opacity .6s ease;
  opacity: .6;
  transform: scale(.92);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

/* Media row inside card */

.media-row {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  overflow-x: auto;
}


.video-box {
  min-width: 300px;
  background: linear-gradient(
    145deg,
    rgba(0,0,0,.6),
    rgba(0,0,0,.8)
  );
}

/* Pagination dots */

.testimonial-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s ease;
}

.testimonial-dots button.active {
  background: var(--green-accent);
  transform: scale(1.3);
}

/* Mobile */

@media (max-width: 768px) {

  .testimonial-card {
    min-width: 95%;
    padding: 30px;
  }

}
/* =====================================================
   STACKED TESTIMONIAL CARDS
===================================================== */

.testimonial-card {
  margin-bottom: 120px;
}

.testimonial-info h3 {
  margin-bottom: .5em;
}

.testimonial-info p {
  margin-bottom: 40px;
  color: var(--ink-muted);
}

/* Carousel */

.media-carousel {
  position: relative;
  overflow: hidden;
}

.media-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 50%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.media-track::-webkit-scrollbar {
  display: none;
}



/* Parallax depth */

/* =============================
   TESTIMONIAL MEDIA – RESPONSIVE FIX
============================= */
.media-box {
  flex: 0 0 auto;
  width: clamp(200px, 70vw, 380px);
  aspect-ratio: 2 / 3;   /* balanced vertical */
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: center;
  background: #0f2b1e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-box img,
.media-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fills box cleanly */
  display: block;
  border-radius: inherit;
}






/* Progress ring */
/* =============================
   CLEAN DOTS – NO JUMP
============================= */

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .3s ease, box-shadow .3s ease;
}

.carousel-dots button.active {
  background: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(186,230,62,.15);
}

/* Center testimonial cards properly */

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


.testimonial-card {
  width: clamp(320px, 92vw, 950px);
  margin: 0 auto 120px auto;
}


/* =====================================================
   FAQ – SPLIT PANEL DESIGN
===================================================== */

.section--faq {
  background: linear-gradient(
    180deg,
    var(--bg-base),
    #0d261a
  );
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--gap-xl);
  align-items: start;
}

/* LEFT SIDE */

.faq-intro h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}

.faq-intro p {
  max-width: 420px;
  color: var(--ink-muted);
  line-height: 1.8;
}

/* RIGHT PANEL */

.faq-panel {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.03),
    rgba(0,0,0,.2)
  );
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  border: 1px solid rgba(255,255,255,.06);
}

/* ITEMS */

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.faq-item:last-child {
  border-bottom: none;
}

/* QUESTION */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink-strong);
  padding: 26px 0;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ARROW */

.faq-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green-accent);
  border-bottom: 2px solid var(--green-accent);
  transform: rotate(45deg);
  transition: transform .3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(-135deg);
}

/* ANSWER */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer p {
  padding-bottom: 26px;
  color: var(--ink-muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* MOBILE */

@media (max-width: 900px) {

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-panel {
    padding: 30px;
  }

}

/* =====================================================
   FAQ – PREMIUM SPLIT LAYOUT
===================================================== */

.section--faq {
  background: linear-gradient(
    180deg,
    #0e261b,
    #091812
  );
}
/* FAQ HEADER */

.faq-header {
  margin-bottom: var(--gap-xl);
}

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

.faq-header p {
  margin-inline: auto;
  opacity: .9;
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

/* =====================================================
   LEFT SIDE – CATEGORIES
===================================================== */

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-cat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  color: rgba(255,255,255,.7);
  transition: all .25s ease;
}

.faq-cat:hover {
  background: rgba(255,255,255,.06);
  color: var(--ink-strong);
}

.faq-cat.active {
  background: rgba(186,230,62,.08);
  border: 1px solid var(--green-accent);
  color: var(--green-accent);
}



/* =====================================================
   RIGHT SIDE – PANEL
===================================================== */

.faq-panel {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.04),
    rgba(0,0,0,.2)
  );
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

/* Hide inactive groups */

.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}



/* =====================================================
   ACCORDION ITEMS
===================================================== */

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  color: var(--ink-strong);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Toggle Icon */

.faq-toggle {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--green-accent);
  border-bottom: 2px solid var(--green-accent);
  transform: rotate(45deg);
  transition: transform .3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(-135deg);
}

/* Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 28px;
  color: var(--ink-muted);
  line-height: 1.8;
}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-panel {
    padding: 36px 28px;
  }

  .faq-cat {
    width: 100%;
  }

}

.media-track {
  cursor: grab;
}

.media-track:active {
  cursor: grabbing;
}
/* =====================================================
   DECISION – PREMIUM REDESIGN
===================================================== */

.section--decision-premium {
  background: linear-gradient(
    180deg,
    #0c2318,
    #08150f
  );
  padding-block: clamp(120px, 15vh, 180px);
}

/* =====================================================
   DECISION HEADER FIX
===================================================== */

.decision-header {
  text-align: center;
  margin-bottom: 80px;
}

.decision-header h2 {
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  margin-bottom: 0;
}

/* Wrapper */

.decision-premium-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  min-height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

/* Divider */

.decision-divider {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(186,230,62,.4),
    transparent
  );
  opacity: .6;
}

/* Panels */

.decision-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 6vw, 100px);
  overflow: hidden;
  transition: transform .6s ease, filter .6s ease;
}

/* Background images */

.decision-negative {
  background: url("../Assets/negative.webp") center/cover no-repeat;
}

.decision-positive {
  background: url("../Assets/positive.webp") center/cover no-repeat;
}

/* Overlay */

.decision-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  transition: background .6s ease;
}

.decision-positive .decision-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,40,25,.65),
    rgba(0,60,35,.75)
  );
}

/* Content */

.decision-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.decision-label {
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
  opacity: .9;
}

.decision-title {
  margin: 1rem 0 2rem 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

/* Lists */

.decision-list {
  display: grid;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.decision-list li {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  position: relative;
  padding-left: 22px;
}

.decision-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(186,230,62,.1);
}

/* Subtle hover bias */

.decision-panel:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.decision-panel:hover .decision-overlay {
  background: rgba(0,0,0,.65);
}

/* CTA */

.decision-cta {
  margin-top: 1.5rem;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

  .decision-premium-wrapper {
    grid-template-columns: 1fr;
  }

  .decision-divider {
    display: none;
  }

  .decision-panel {
    min-height: 520px;
  }

}

.decision-cta {
  margin-top: 100px;
  padding-bottom: 0;
}

.decision-cta .btn {
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.section--testimonial {
  background: var(--bg-base);
  padding-block: clamp(100px, 12vh, 140px);
  border-top: none;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 80px; /* was too large */
}

.testimonial-header h2 {
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  letter-spacing: 1px;
  margin-bottom: 0;
}
.section--decision::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  margin: 100px auto 0 auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(186,230,62,.5),
    transparent
  );
}
