/* ============================================================
   PR1 · PRICING HERO
   ============================================================ */

.pricing-hero {
  position: relative;
  padding: 150px 0 90px;
  text-align: center;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
}

/* ── Waveform ───────────────────────────────────────────────── */
.pricing-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  pointer-events: none;
  animation: waveMove 14s linear infinite;
}

.pricing-hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── Data Nodes ─────────────────────────────────────────────── */
.pricing-hero__node {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatUp 4s ease-in-out infinite;
}

.pricing-hero__node.node--1 {
  width: 10px;
  height: 10px;
  background: var(--color-teal);
  top: 22%;
  left: 7%;
  opacity: 0.45;
  animation-delay: 0s;
}

.pricing-hero__node.node--2 {
  width: 7px;
  height: 7px;
  background: var(--color-blue);
  top: 38%;
  right: 10%;
  opacity: 0.35;
  animation-delay: 1.4s;
}

.pricing-hero__node.node--3 {
  width: 12px;
  height: 12px;
  background: var(--color-teal);
  bottom: 28%;
  left: 14%;
  opacity: 0.28;
  animation-delay: 0.7s;
}

.pricing-hero__node.node--4 {
  width: 6px;
  height: 6px;
  background: var(--color-blue);
  top: 55%;
  right: 22%;
  opacity: 0.3;
  animation-delay: 2.1s;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  margin-bottom: 28px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.breadcrumb ol li a {
  color: var(--color-teal);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.breadcrumb ol li a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.breadcrumb__sep {
  color: var(--color-muted);
  user-select: none;
}

.breadcrumb ol li:last-child {
  color: var(--color-muted);
}

/* ── Hero Content ───────────────────────────────────────────── */
.pricing-hero__content {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-hero__content .tag-pill {
  display: inline-block;
  margin-bottom: 22px;
}

.pricing-hero__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.pricing-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 580px;
  margin: 0 auto 40px;
}

/* ── Reassurance Strip ──────────────────────────────────────── */
.pricing-hero__reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
  margin-top: 4px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  padding: 0 20px;
}

.reassurance-item i {
  color: var(--color-teal);
  font-size: 16px;
  flex-shrink: 0;
}

.reassurance-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── fade-in-up (add only if not already in global.css) ──────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-hero {
    padding: 130px 0 80px;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 110px 0 65px;
    min-height: auto;
  }

  .pricing-hero__reassurance {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .reassurance-divider {
    display: none;
  }

  .reassurance-item {
    padding: 0;
    font-size: 14px;
  }

  .breadcrumb ol {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding: 100px 0 55px;
  }

  .pricing-hero__heading {
    letter-spacing: -0.02em;
  }

  .pricing-hero__sub {
    font-size: 15px;
  }

  .pricing-hero__reassurance {
    align-items: flex-start;
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ============================================================
   PR2 · PRICING TIERS
   ============================================================ */

/* ── Section Intro ──────────────────────────────────────────── */
.pricing-tiers__intro {
  margin-bottom: 40px;
}

.pricing-tiers__intro .tag-pill {
  display: inline-block;
  margin-bottom: 16px;
}

.pricing-tiers__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--color-dark-text);
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
}

.pricing-tiers__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-teal);
  border-radius: 2px;
  margin: 14px auto 0;
}

.pricing-tiers__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-muted-light);
  max-width: 520px;
  margin: 18px auto 0;
  line-height: 1.65;
}

/* ── Toggle ─────────────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 56px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  gap: 0;
}

.pricing-toggle__btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted-light);
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 11px 30px;
  cursor: pointer;
  transition: all 0.28s ease;
  white-space: nowrap;
  min-height: 44px;
  line-height: 1;
}

.pricing-toggle__btn.active {
  background: var(--color-teal);
  color: var(--color-navy);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 201, 167, 0.32);
}

.pricing-toggle__btn:hover:not(.active) {
  color: var(--color-dark-text);
  background: rgba(0, 201, 167, 0.07);
}

.pricing-toggle__btn:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

/* ── Cards Grid ─────────────────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}

/* ── Base Card ──────────────────────────────────────────────── */
.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: var(--color-teal);
}

/* ── Featured Card ──────────────────────────────────────────── */
.pricing-card--featured {
  background: var(--color-navy);
  border: 2px solid var(--color-teal);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.18);
  transform: translateY(-10px);
}

.pricing-card--featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 64px rgba(0, 201, 167, 0.26);
  border-color: var(--color-teal);
}

/* ── Badge ──────────────────────────────────────────────────── */
.pricing-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-teal);
  color: var(--color-navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 201, 167, 0.35);
}

/* ── Card Header ────────────────────────────────────────────── */
.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__tier {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-dark-text);
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-card__tier {
  color: #ffffff;
}

.pricing-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-muted-light);
  line-height: 1.55;
  margin: 0;
}

.pricing-card--featured .pricing-card__desc {
  color: var(--color-muted);
}

/* ── Price Block ────────────────────────────────────────────── */
.pricing-card__price-block {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 24px;
  min-height: 72px;
  display: flex;
  align-items: center;
}

.pricing-card--featured .pricing-card__price-block {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pricing-card__price.is-swapping {
  opacity: 0;
  transform: translateY(8px);
}

.price-prefix {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-muted-light);
  font-weight: 400;
}

.pricing-card--featured .price-prefix {
  color: var(--color-muted);
}

.price-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--color-teal);
  line-height: 1;
}

.price-suffix {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-muted-light);
  font-weight: 400;
  align-self: flex-end;
  padding-bottom: 3px;
}

.pricing-card--featured .price-suffix {
  color: var(--color-muted);
}

/* ── Features List ──────────────────────────────────────────── */
.pricing-card__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-dark-text);
  line-height: 1.55;
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-card__features li i {
  color: var(--color-teal);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── CTA ────────────────────────────────────────────────────── */
.pricing-card__cta {
  margin-top: auto;
}

.pricing-card__btn {
  display: block;
  text-align: center;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
}

/* ── VAT Note ───────────────────────────────────────────────── */
.pricing-tiers__note {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--color-muted-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 0;
  text-align: center;
}

.pricing-tiers__note i {
  color: var(--color-teal);
  font-size: 13px;
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-card--featured {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .pricing-toggle {
    margin-bottom: 40px;
  }

  .pricing-toggle__btn {
    padding: 11px 22px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card--featured {
    grid-column: auto;
    max-width: 100%;
  }

  .pricing-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .pricing-toggle {
    width: 100%;
    max-width: 300px;
  }

  .pricing-toggle__btn {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-tiers__note {
    flex-direction: column;
    gap: 6px;
  }
}

/* ============================================================
   PR3 · PRICING BESPOKE
   ============================================================ */

/* ── Layout ─────────────────────────────────────────────────── */
.pricing-bespoke__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Left · Content ─────────────────────────────────────────── */
.pricing-bespoke__content .tag-pill {
  display: inline-block;
  margin-bottom: 20px;
}

.pricing-bespoke__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.pricing-bespoke__para {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-muted);
  margin: 0 0 16px;
}

/* ── Steps List ─────────────────────────────────────────────── */
.pricing-bespoke__steps {
  list-style: none;
  margin: 32px 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-bespoke__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bespoke-step__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 16px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.pricing-bespoke__step:hover .bespoke-step__icon {
  background: rgba(0, 201, 167, 0.18);
  border-color: var(--color-teal);
}

.bespoke-step__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.bespoke-step__text strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  display: block;
}

.bespoke-step__text span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ── CTA Row ────────────────────────────────────────────────── */
.pricing-bespoke__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-bespoke__cta .btn-primary i {
  margin-right: 8px;
}

/* ── Right · Document Visual ────────────────────────────────── */
.pricing-bespoke__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* Outer glow */
.bespoke-doc__glow {
  position: absolute;
  width: 320px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(0, 201, 167, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Document card */
.bespoke-doc {
  background: var(--color-slate);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(0, 201, 167, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Doc Header */
.bespoke-doc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bespoke-doc__logo-mark {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.bespoke-doc__logo-vox {
  color: #ffffff;
}

.bespoke-doc__logo-ily {
  color: var(--color-teal);
}

.bespoke-doc__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: 4px;
  padding: 4px 8px;
  text-transform: uppercase;
}

/* Meta rows */
.bespoke-doc__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.bespoke-doc__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bespoke-doc__meta-key {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--color-muted);
}

.bespoke-doc__meta-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

/* Divider */
.bespoke-doc__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 16px 0;
}

/* Line items */
.bespoke-doc__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bespoke-doc__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bespoke-doc__item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bespoke-doc__item-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  opacity: 0.7;
}

.bespoke-doc__item-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.bespoke-doc__item-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-teal);
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.15);
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* Total row */
.bespoke-doc__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: 10px;
  margin-top: 4px;
}

.bespoke-doc__total-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.bespoke-doc__total-amount {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-teal);
}

/* Footer stamp */
.bespoke-doc__footer {
  margin-top: 18px;
}

.bespoke-doc__stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--color-muted);
}

.bespoke-doc__stamp i {
  color: var(--color-teal);
  font-size: 13px;
}

/* ── Floating Badges ────────────────────────────────────────── */
.bespoke-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--color-navy);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 9px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 2;
  animation: floatUp 4s ease-in-out infinite;
}

.bespoke-badge i {
  color: var(--color-teal);
  font-size: 13px;
}

.bespoke-badge--top {
  top: 12px;
  right: 0px;
  animation-delay: 0s;
}

.bespoke-badge--bottom {
  bottom: 12px;
  left: 0px;
  animation-delay: 2s;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-bespoke__inner {
    gap: 52px;
  }

  .bespoke-badge--top {
    top: 0;
    right: -10px;
  }

  .bespoke-badge--bottom {
    bottom: 0;
    left: -10px;
  }
}

@media (max-width: 768px) {
  .pricing-bespoke__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .pricing-bespoke__visual {
    order: -1;
    padding: 30px 16px;
  }

  .bespoke-doc {
    max-width: 100%;
  }

  .bespoke-badge--top {
    top: 4px;
    right: 4px;
  }

  .bespoke-badge--bottom {
    bottom: 4px;
    left: 4px;
  }
}

@media (max-width: 480px) {
  .pricing-bespoke__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-bespoke__cta .btn-primary,
  .pricing-bespoke__cta .btn-secondary {
    text-align: center;
    width: 100%;
  }

  .bespoke-badge {
    font-size: 11px;
    padding: 7px 12px;
  }

  .bespoke-doc {
    padding: 22px 18px;
  }
}

/* ============================================================
   PR4 · PRICING FAQ
   ============================================================ */

/* ── Section Intro ──────────────────────────────────────────── */
.pricing-faq__intro {
  margin-bottom: 52px;
}

.pricing-faq__intro .tag-pill {
  display: inline-block;
  margin-bottom: 16px;
}

.pricing-faq__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--color-dark-text);
  margin: 0 0 12px;
  display: inline-block;
  position: relative;
}

.pricing-faq__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-teal);
  border-radius: 2px;
  margin: 14px auto 0;
}

.pricing-faq__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-muted-light);
  max-width: 480px;
  margin: 18px auto 0;
  line-height: 1.65;
}

/* ── Accordion Wrapper ──────────────────────────────────────── */
.pricing-faq__accordion {
  max-width: 780px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── FAQ Item ───────────────────────────────────────────────── */
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 201, 167, 0.35);
  box-shadow: 0 4px 20px rgba(0, 201, 167, 0.07);
}

.faq-item.is-open {
  border-color: var(--color-teal);
  box-shadow: 0 6px 28px rgba(0, 201, 167, 0.1);
}

/* ── Trigger Button ─────────────────────────────────────────── */
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
  transition: background 0.2s ease;
}

.faq-item__trigger:hover {
  background: rgba(0, 201, 167, 0.03);
}

.faq-item__trigger:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: -2px;
  border-radius: 12px;
}

/* ── Question Text ──────────────────────────────────────────── */
.faq-item__question {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--color-dark-text);
  line-height: 1.45;
  flex: 1;
  transition: color 0.25s ease;
}

.faq-item.is-open .faq-item__question {
  color: var(--color-teal);
}

/* ── Chevron Icon ───────────────────────────────────────────── */
.faq-item__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: rgba(0, 201, 167, 0.07);
  border: 1px solid rgba(0, 201, 167, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 13px;
  transition: transform 0.35s ease, background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  background: rgba(0, 201, 167, 0.15);
  border-color: var(--color-teal);
}

/* ── Body (collapsible) ─────────────────────────────────────── */
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* ── Inner Content ──────────────────────────────────────────── */
.faq-item__content {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0 28px;
}

.faq-item__content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--color-muted-light);
  line-height: 1.75;
  margin: 18px 0 0;
}

/* ── Bottom CTA ─────────────────────────────────────────────── */
.pricing-faq__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.pricing-faq__bottom-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-muted-light);
  margin: 0;
}

.pricing-faq__bottom .btn-primary i {
  margin-right: 8px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pricing-faq__accordion {
    gap: 10px;
    margin-bottom: 48px;
  }

  .faq-item__trigger {
    padding: 18px 20px;
    gap: 14px;
  }

  .faq-item__content {
    padding: 0 20px 20px;
    margin: 0 20px;
  }

  .faq-item__icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .pricing-faq__accordion {
    gap: 8px;
  }

  .faq-item__trigger {
    padding: 16px 18px;
  }

  .faq-item__content {
    padding: 0 18px 18px;
    margin: 0 18px;
  }

  .faq-item__question {
    font-size: 15px;
  }

  .pricing-faq__bottom .btn-primary {
    width: 100%;
    text-align: center;
  }
}