/* ==========================================================================
   Components — reusable UI building blocks shared across all pages
   --------------------------------------------------------------------------
   Buttons · Pills/Tags · Link-arrow · App cards · Feature cards · Stat cards
   Hero trust row · Step list · Testimonials · Download cards · Download band
   QR + Google Play badge · City pills · Earnings card · Plan card ·
   Requirements list · FAQ accordion
   ========================================================================== */

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.375rem;            /* 54px */
  padding: 0 1.75rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.btn:hover  { opacity: 0.9; }
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
  opacity: 1;
}

.btn--full { width: 100%; }

/* Square icon-only button (e.g. "how it works" play) */
.btn--icon {
  width: 3.375rem;
  height: 3.375rem;
  padding: 0;
  flex-shrink: 0;
}

.btn--icon img { width: 1.25rem; height: 1.25rem; }

@media (min-width: 1200px) {
  .btn { font-size: var(--text-lg); }
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .btn-group {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

/* ==========================================================================
   Pills, tags & eyebrow badges
   ========================================================================== */

/* Brand pill — "Now live across 15 Indian cities" / "Verified drivers across India" */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-badge);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  white-space: nowrap;
}

.pill--brand {
  background: var(--color-badge-bg);
  border: 1px solid var(--color-badge-border);
  color: var(--color-navy);
}

.pill--brand .pill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-green);
}

/* Green trust pill — "✓ Always free for riders" */
.pill--green {
  background: var(--color-green-bg);
  border: 1px solid var(--color-green-border);
  color: var(--color-green);
  font-weight: 600;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

/* Small category tag overlaid on app-card media */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-badge);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-white);
  color: var(--color-navy);
}

/* ==========================================================================
   Link with trailing arrow ("Learn more →", "Read all reviews →")
   ========================================================================== */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  transition: gap 0.15s ease;
}

.link-arrow::after {
  content: '→';
  transition: transform 0.15s ease;
}

.link-arrow:hover { gap: 0.625rem; }

/* ==========================================================================
   Page hero — text + media, shared by Home / Riders / Drivers / About
   Page-specific accents & floating-stat positions live in each page's CSS.
   ========================================================================== */
.hero { padding-top: var(--space-4xl); }

@media (min-width: 768px)  { .hero { padding-top: var(--space-5xl); } }
@media (min-width: 1200px) { .hero { padding-top: var(--space-6xl); } }

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .hero__layout { flex-direction: row; align-items: center; gap: var(--space-3xl); }
}

@media (min-width: 1200px) { .hero__layout { gap: var(--space-5xl); } }

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  flex: 1;
  min-width: 0;
}

/* A pill is inline, but a flex-column parent would stretch it */
.hero__content .pill { align-self: flex-start; }

.hero__heading-accent { color: var(--color-navy); }

.hero__body { max-width: 34rem; }

.hero__visual {
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 768px)  { .hero__visual { width: 20rem; } }
@media (min-width: 1200px) { .hero__visual { width: 27.5rem; } }

.hero__img {
  width: 100%;
  height: 17.5rem;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: block;
}

@media (min-width: 768px) { .hero__img { height: 25rem; } }

.hero__stat { position: absolute; z-index: 1; }

/* ==========================================================================
   App cards — Home "Two apps, one platform"
   ========================================================================== */
.app-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.app-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-card__media {
  position: relative;
  width: 100%;
  height: 10rem;
}

@media (min-width: 768px) { .app-card__media { height: 11.25rem; } }

.app-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-card__tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
}

.app-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
}

@media (min-width: 768px) { .app-card__content { padding: var(--space-2xl); } }

.app-card__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-heading);
}

.app-card__body {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-body);
}

.app-card__cta { margin-top: var(--space-xs); align-self: flex-start; }

/* ==========================================================================
   Feature / value cards (Home, For Riders, For Drivers, About)
   ========================================================================== */
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1200px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-feature);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) { .feature-card { padding: var(--space-2xl); } }

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-icon);
  background: var(--color-icon-bg);
  flex-shrink: 0;
}

.feature-card__icon img { width: 1.5rem; height: 1.5rem; object-fit: contain; }

.feature-card__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-heading);
}

.feature-card__body {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-body);
}

@media (min-width: 1200px) { .feature-card__body { font-size: var(--text-base); } }

/* ==========================================================================
   Stat cards — floating hero figures (Home hero, For Riders / Drivers hero)
   ========================================================================== */
.stat-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-white);
  border-radius: var(--radius-icon);
  box-shadow: var(--shadow-card);
  padding: var(--space-md) var(--space-lg);
}

.stat-card__icon {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: var(--radius-icon);
  background: var(--color-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card__icon img { width: 1.0625rem; height: 1.0625rem; }

.stat-card__value {
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text-heading);
}

.stat-card__label {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-body);
}

.stat-card--dark { background: var(--color-navy); }
.stat-card--dark .stat-card__value { color: var(--color-white); }
.stat-card--dark .stat-card__label { color: rgba(255, 255, 255, 0.7); }

/* Compact white "live status" pill (237 drivers online) */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border-radius: var(--radius-badge);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  padding: 0.5rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-heading);
}

.live-pill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 3px var(--color-green-bg);
}

/* Hero trust row — "4.8 ★ · Loved by 5k+ riders · Verified Drivers" */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-lg);
}

.hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-body);
}

.hero-trust__value { font-weight: 800; color: var(--color-text-heading); }
.hero-trust__star  { color: var(--color-orange); }
.hero-trust__icon  { width: 1rem; height: 1rem; }

/* ==========================================================================
   Step list — numbered "How it works" / "How to join"
   ========================================================================== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.step-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-item__number {
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.step-item__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-heading);
}

.step-item__body {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-body);
}

@media (min-width: 768px) {
  .step-item { gap: var(--space-lg); }
  .step-item__number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    font-size: var(--text-xl);
  }
}

/* Connected variant — vertical line linking the step numbers */
.step-list--connected { gap: 0; }

.step-list--connected .step-item {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.step-list--connected .step-item:last-child { padding-bottom: 0; }

.step-list--connected .step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 2.25rem;
  bottom: -0.25rem;
  width: 2px;
  background: var(--color-border);
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .step-list--connected .step-item:not(:last-child)::before {
    left: 1.25rem;
    top: 2.75rem;
  }
}

/* ==========================================================================
   Testimonials (Home, About)
   ========================================================================== */
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1200px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-feature);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) { .testimonial-card { padding: var(--space-2xl); } }

.testimonial-card__stars {
  display: inline-flex;
  gap: 0.125rem;
  color: var(--color-orange);
  font-size: var(--text-base);
  letter-spacing: 0.05em;
}

.testimonial-card__quote {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-heading);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--color-icon-bg);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.3;
}

.testimonial-card__role {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-body);
}

/* ==========================================================================
   Download cards — Home / About "Choose your journey, your way"
   ========================================================================== */
.download-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .download-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.download-card {
  border-radius: var(--radius-card);
  padding: var(--space-2xl);
  background: linear-gradient(155deg, var(--color-navy) 0%, #1e4080 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  color: var(--color-white);
}

@media (min-width: 1200px) { .download-card { padding: var(--space-4xl); } }

.download-card__label {
  font-size: var(--text-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.55);
}

.download-card__title {
  font-size: var(--text-4xl);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-white);
}

.download-card__title span { color: var(--color-orange); }

.download-card__body {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.download-card__actions { margin-top: var(--space-sm); }

/* ==========================================================================
   Download band — full-width navy CTA (For Riders, For Drivers)
   ========================================================================== */
.download-section { background: var(--color-navy); }

.download-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.download-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.download-heading { color: var(--color-white); }
.download-body    { color: rgba(255, 255, 255, 0.65); }

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .download-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-5xl);
  }
  .download-text { flex: 1; }
}

/* ==========================================================================
   QR + Google Play badge
   ========================================================================== */
.qr-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qr-placeholder {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 0.5rem;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--color-text-body);
  text-align: center;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.qr-label {
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
}

/* QR on a dark background */
.download-section .qr-placeholder,
.download-card .qr-placeholder {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

/* Google Play badge (hand-built HTML + inline SVG) */
.gplay-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.125rem;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
}

.gplay-badge:hover { opacity: 0.88; }
.gplay-badge__icon { flex-shrink: 0; }

.gplay-badge__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.gplay-badge__top {
  font-size: 0.625rem;
  font-weight: 400;
  color: #000;
  line-height: 1;
  letter-spacing: 0.02em;
}

.gplay-badge__bottom {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   City pills (About)
   ========================================================================== */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-badge);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-heading);
  white-space: nowrap;
}

.city-pill--ghost {
  background: transparent;
  color: var(--color-text-body);
  font-weight: 600;
}

@media (min-width: 768px) {
  .city-pill { padding: 0.5rem 1.25rem; font-size: 1rem; font-weight: 600; }
}

/* ==========================================================================
   Earnings highlight card (For Drivers)
   ========================================================================== */
.earnings-card {
  background: var(--color-navy);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.earnings-card__label {
  font-size: var(--text-eyebrow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-orange);
}

.earnings-card__amount {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-white);
}

.earnings-card__sub {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .earnings-card { flex-direction: row; align-items: center; gap: var(--space-xl); padding: var(--space-2xl); }
  .earnings-card__text { flex: 1; }
  .earnings-card__amount { font-size: 3rem; }
  .earnings-card__img {
    width: 15rem;
    height: 12.5rem;
    object-fit: cover;
    border-radius: var(--radius-img);
    flex-shrink: 0;
  }
}

/* ==========================================================================
   Subscription plan card (For Drivers)
   ========================================================================== */
.plan-card {
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  background: linear-gradient(155deg, var(--color-navy) 0%, #1e4080 100%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) { .plan-card { padding: var(--space-2xl); } }

.plan-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-card__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
}

.plan-card__locked {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-badge);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.plan-card__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-orange);
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan-card__price-period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.plan-card__note {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Requirements checklist (For Drivers)
   ========================================================================== */
.req-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-body);
}

.req-item::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color-navy);
  flex-shrink: 0;
  margin-top: 0.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ==========================================================================
   FAQ accordion (For Riders)
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.4;
}

@media (min-width: 768px) { .faq-item__trigger { font-size: var(--text-xl); } }

.faq-item__icon {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: 1.5px solid var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item__icon::before {
  content: '+';
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1;
  transition: inherit;
}

.faq-item[aria-expanded="true"] .faq-item__icon {
  background: var(--color-navy);
  transform: rotate(45deg);
}

.faq-item[aria-expanded="true"] .faq-item__icon::before { color: var(--color-white); }

.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item[aria-expanded="true"] .faq-item__body {
  max-height: 30rem;
  padding-bottom: var(--space-xl);
}

.faq-item__body p {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-body);
}

@media (min-width: 768px) { .faq-item__body p { font-size: var(--text-lg); } }
