/* ── Shared section styles for public pages ──────────────────────────────── */


/* ── Hero ───────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  padding: 56px 0 48px;
  align-items: center;
}

.eyebrow-group,
.rating-line,
.hero-bullets,
.hero-actions,
.micro-proof,
.visual-header,
.metric-row,
.logo-items {
  display: flex;
}

.eyebrow-group {
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 0 8px rgba(209, 248, 67, 0.18);
}

.eyebrow,
.sticky-label,
.overline,
.floating-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--green-700);
}

.rating-line {
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 18px;
  color: #b98d00;
  font-weight: 700;
}

.rating-line span {
  color: var(--green-700);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--ink-700);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  flex-direction: column;
  gap: 14px;
}

.hero-bullets li {
  position: relative;
  padding-left: 30px;
  font-size: 1.02rem;
  color: var(--ink-900);
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-700);
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.micro-proof {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.micro-proof div {
  min-width: 165px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(20, 59, 50, 0.08);
  border-radius: 18px;
}

.micro-proof strong,
.micro-proof span {
  display: block;
}

.micro-proof strong { font-size: 0.96rem; }
.micro-proof span { margin-top: 6px; color: var(--ink-700); font-size: 0.92rem; }

.hero-visual {
  position: relative;
  min-height: 720px;
}

.visual-main {
  position: absolute;
  inset: 32px 12px 38px 12px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(236, 240, 239, 0.95));
  border: 1px solid rgba(20, 59, 50, 0.08);
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.visual-main::before,
.visual-main::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.visual-main::before {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -30px;
  background: rgba(209, 248, 67, 0.5);
}

.visual-main::after {
  width: 260px;
  height: 260px;
  bottom: -90px;
  left: -60px;
  background: rgba(93, 144, 152, 0.28);
}

.visual-header {
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.status-pill.neutral {
  background: rgba(255,255,255,0.9);
  color: var(--green-900);
  border: 1px solid rgba(20, 59, 50, 0.08);
}

.journey-card,
.weight-card,
.floating-card,
.feature-panel,
.feature-band,
.step-card,
.trust-card,
.quote-card,
.cta-section,
.sticky-cta {
  box-shadow: var(--shadow-md);
}

.journey-card {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(20, 59, 50, 0.08);
}

.journey-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(20, 59, 50, 0.08);
}

.journey-step:last-child { border-bottom: 0; }

.journey-step span {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--mint-100);
  color: var(--green-900);
  font-weight: 800;
}

.journey-step.active span {
  background: var(--lime-400);
}

.journey-step strong {
  display: block;
  font-size: 1rem;
}

.journey-step p {
  margin: 6px 0 0;
  color: var(--ink-700);
  line-height: 1.55;
}

.weight-card {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(0,88,64,0.96), rgba(16, 101, 84, 0.96));
  color: var(--white);
}

.weight-card h3 {
  margin: 8px 0 0;
  font-size: 1.65rem;
  line-height: 1.1;
}

.weight-graph {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
}

.weight-graph span {
  width: 16px;
  border-radius: 999px 999px 6px 6px;
  background: var(--lime-400);
}

.weight-graph span:nth-child(1) { height: 34px; }
.weight-graph span:nth-child(2) { height: 48px; }
.weight-graph span:nth-child(3) { height: 68px; }
.weight-graph span:nth-child(4) { height: 82px; }

.floating-card {
  position: absolute;
  width: min(320px, 70%);
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(20, 59, 50, 0.08);
  backdrop-filter: blur(16px);
}

.floating-card strong,
.floating-card span { display: block; }
.floating-card strong { margin-top: 8px; font-size: 1.04rem; }
.floating-card span { margin-top: 8px; color: var(--ink-700); line-height: 1.5; }
.floating-card-top { top: 0; right: -10px; }
.floating-card-bottom { left: -8px; bottom: 0; }

.cta-section {
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(20,59,50,0.08);
  border-radius: 32px;
}

/* ── Marquee strip ──────────────────────────────────── */
.marquee-strip {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  margin-top: 18px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-700);
}

.marquee-content span svg {
  flex-shrink: 0;
  color: var(--green-700);
}

.marquee-dot {
  color: var(--green-500) !important;
  font-size: 1.2rem !important;
  line-height: 1;
}

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

/* ── Section grids ──────────────────────────────────── */
.section-grid,
.trust-section,
.testimonial-section,
.faq-section {
  padding: 104px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-heading p:last-child {
  margin: 18px 0 0;
  color: var(--ink-700);
  font-size: 1.08rem;
  line-height: 1.7;
}

.steps-grid,
.trust-grid,
.quote-grid {
  display: grid;
  gap: 22px;
}

.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quote-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.step-card,
.trust-card,
.quote-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(20,59,50,0.08);
}

.step-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--mint-100);
  color: var(--green-900);
  font-weight: 900;
  font-size: 1.2rem;
}

.step-card h3,
.trust-card h3,
.quote-card p {
  margin: 18px 0 0;
}

.step-card h3,
.trust-card h3 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.step-card p,
.trust-card p,
.quote-card span {
  margin: 12px 0 0;
  color: var(--ink-700);
  line-height: 1.7;
}

/* ── Feature-band / Programme tabs ─────────────────── */
.feature-band {
  margin-top: 104px;
  padding: 0;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(209,248,67,0.35) 0%, transparent 55%),
    #0F4F44;
  border: 1px solid rgba(209,248,67,0.15);
}

.prog-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 480px;
}

.prog-left {
  padding: 48px 40px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}

.prog-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-400);
  margin: 0 0 14px;
}

.prog-heading {
  /* font-family: 'Cormorant Garamond', Georgia, serif; */
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 36px;
}

.prog-heading span {
  color: var(--lime-400);
}

.prog-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.prog-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.prog-tab:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.prog-tab.active {
  background: rgba(209,248,67,0.12);
  border-color: rgba(209,248,67,0.4);
  color: #fff;
}

.prog-tab-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prog-tab-info strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.prog-tab-info span {
  font-size: 0.78rem;
  opacity: 0.7;
}

.prog-tab-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: rgba(255,255,255,0.45);
}

.prog-tab.active .prog-tab-chevron {
  transform: rotate(90deg);
  color: var(--lime-400);
}

/* ── Image panel ─────────────────── */
.prog-image-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.prog-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.prog-img.active {
  opacity: 1;
  pointer-events: auto;
}

.prog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.prog-img-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(15,79,68,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(209,248,67,0.2);
  border-radius: 16px;
  padding: 16px 20px;
  color: #fff;
}

.prog-img-pill {
  display: inline-block;
  background: rgba(209,248,67,0.15);
  color: var(--lime-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.prog-img-label strong {
  display: block;
  font-size: 0.95rem;
}

.prog-img-label p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* ── Product-set image panel ─────────────────────── */
.prog-img--product {
  background: linear-gradient(160deg, #003d2c 0%, #005840 60%, #006b4f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prog-img--product img {
  object-fit: contain;
  object-position: center;
  max-width: 72%;
  max-height: 72%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35));
}

/* Price row inside label */
.prog-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.prog-price-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.prog-price-old {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.prog-discount-badge {
  background: #d1f843;
  color: #005840;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ── Balance app-screen panel ────────────────────────── */
.prog-img--app {
  background: linear-gradient(160deg, #003d2c 0%, #005840 55%, #007a5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 80px; /* extra bottom space for the label overlay */
}

.prog-img--app img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* Balance feature bullets inside label */
.prog-balance-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.prog-balance-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.prog-balance-features li svg {
  color: #d1f843;
  flex-shrink: 0;
}

/* old feature-band sub-components (kept for any residual refs) */
.stack-item {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.stack-item.highlighted {
  background: rgba(209,248,67,0.14);
  border-color: rgba(209,248,67,0.34);
}

.stack-item strong { font-size: 1.08rem; }

.trust-card.accent {
  background: linear-gradient(180deg, rgba(209,248,67,0.66), rgba(209,248,67,0.36));
}

.quote-card p {
  font-size: 1.25rem;
  line-height: 1.45;
}

/* ── FAQ ────────────────────────────────────────────── */
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(20,59,50,0.08);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.faq-list details:hover {
  border-color: rgba(20,59,50,0.18);
  box-shadow: 0 4px 20px rgba(20,59,50,0.06);
}

.faq-list details[open] {
  border-color: rgba(47,112,105,0.25);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47, 112, 105, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f7069' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease, background-color 0.18s;
}

.faq-list details[open] summary::after {
  transform: rotate(90deg);
  background-color: rgba(47, 112, 105, 0.18);
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--ink-700);
  line-height: 1.75;
  overflow: hidden;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes faq-close {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}

/* ── CTA Section ────────────────────────────────────── */
.cta-section {
  margin-top: 104px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.02;
}

.cta-copy p:last-child {
  margin-top: 16px;
  color: var(--ink-700);
  line-height: 1.7;
  max-width: 640px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
  width: min(calc(100% - 32px), 1000px);
  padding: 16px 18px 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 60;
  background: rgba(250, 247, 241, 0.92);
  border: 1px solid rgba(20,59,50,0.08);
  border-radius: 28px;
  backdrop-filter: blur(16px);
}

.sticky-cta--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.sticky-cta strong {
  display: block;
  margin-top: 6px;
}

/* ── Responsive: 1120px ─────────────────────────────── */
@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .prog-grid {
    grid-template-columns: 1fr;
  }

  .prog-image-panel {
    min-height: 320px;
  }

  .hero-visual {
    min-height: 640px;
  }

  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid,
  .quote-grid { grid-template-columns: 1fr; }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

/* ── Responsive: 920px (sections only) ─────────────── */
@media (max-width: 920px) {
  .hero {
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .floating-card {
    width: min(280px, 84%);
  }

  .sticky-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-cta .btn { width: 100%; }
}

/* ── Responsive: 640px (sections only) ─────────────── */
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.7rem, 16vw, 4.3rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .visual-main {
    inset: 18px 0 24px 0;
    padding: 18px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .floating-card-top {
    top: -6px;
    right: 8px;
  }

  .floating-card-bottom {
    left: 8px;
    bottom: -10px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .testimonial-section,
  .faq-section {
    padding-top: 84px;
  }

  .cta-section {
    padding: 22px;
  }

  .prog-left {
    padding: 32px 28px;
  }
}

/* ── Hero Photo Visual ────────────────────────────────── */
.hero-visual-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 580px;
}

.hero-photo {
  display: block;
  width: 100%;
  max-width: 390px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(20, 59, 50, 0.12));
}

.hero-photo-card {
  position: absolute;
  bottom: 88px;
  left: -10px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  background: var(--green-800);
  color: var(--white);
  border-radius: 20px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 20px 48px rgba(15, 79, 68, 0.35);
  max-width: 320px;
}

.hero-photo-card .overline {
  color: var(--lime-400);
  margin: 0 0 0.4rem;
}

.hero-photo-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero-photo-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  height: 42px;
}

.hero-photo-bars span {
  display: block;
  width: 8px;
  border-radius: 3px 3px 0 0;
  background: var(--lime-400);
  flex-shrink: 0;
}

@media (max-width: 1120px) {
  .hero-visual-photo {
    min-height: 460px;
    justify-content: flex-end;
  }

  .hero-photo {
    max-width: 280px;
  }

  .hero-photo-card {
    left: 0;
    bottom: 32px;
  }
}

@media (max-width: 640px) {
  .hero-visual-photo {
    min-height: 380px;
    justify-content: center;
  }

  .hero-photo {
    max-width: 240px;
  }

  .hero-photo-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    max-width: 220px;
  }
}

/* ── Why Avolya Section ─────────────────────────────── */
.why-avolya-section {
  background: var(--green-800);
  padding: 96px 40px;
  margin-top: 100px;
}

.why-avolya-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.why-avolya-head {
  max-width: 660px;
  margin: 0 auto 72px;
  text-align: center;
}

.why-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-400);
  margin: 0 0 18px;
}

.why-heading {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.why-subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Compare widget */
.why-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 40px;
  max-width: 860px;
  margin: 0 auto 72px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 40px 48px;
}

.why-compare-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.why-compare-col--left .why-compare-label {
  color: rgba(255, 255, 255, 0.28);
}

.why-compare-col--right .why-compare-label {
  color: var(--lime-400);
}

.why-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.why-compare-list li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.why-compare-col--left .why-compare-list li {
  color: rgba(255, 255, 255, 0.28);
}

.why-compare-col--left .why-compare-list li::before {
  content: '✕';
  flex-shrink: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.18);
}

.why-compare-col--right .why-compare-list li {
  color: rgba(255, 255, 255, 0.75);
}

.why-compare-col--right .why-compare-list li::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime-400);
}

.why-compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.why-compare-divider span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.15);
}

/* Pillar icon */
.why-pillar-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(209, 248, 67, 0.1);
  border: 1px solid rgba(209, 248, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-400);
  flex-shrink: 0;
}

/* Pillars + image side-by-side */
.why-pillars-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-pillar {
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  transition: background 0.2s;
}

.why-pillar:hover {
  background: rgba(255, 255, 255, 0.07);
}

.why-pillar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.why-pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--lime-400);
  line-height: 1;
  opacity: 0.6;
  flex-shrink: 0;
}

.why-pillar-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 6px;
}

.why-pillar-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Paar image */
.why-paar {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.why-paar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .why-avolya-section {
    padding: 80px 32px;
    margin: 84px 0;
  }

  .why-compare {
    grid-template-columns: 1fr;
    gap: 24px 0;
    padding: 32px 28px;
    margin-bottom: 52px;
  }

  .why-compare-divider { display: none; }

  .why-compare-col--left { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .why-pillars-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-paar {
    aspect-ratio: 16 / 9;
    order: -1;
  }

  .why-pillar {
    padding: 20px 22px;
  }

  .why-avolya-head {
    margin-bottom: 52px;
  }
}

@media (max-width: 640px) {
  .why-avolya-section {
    padding: 64px 20px;
    margin: 72px 0;
  }

  .why-avolya-head {
    margin-bottom: 40px;
    text-align: left;
  }

  .why-eyebrow {
    font-size: 0.67rem;
  }

  .why-compare {
    padding: 24px 20px;
    margin-bottom: 40px;
  }

  .why-pillar {
    padding: 18px 20px;
  }
}
