/* ==========================================================================
   About Bite Insight — Page-Specific Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   About Hero — overrides on base .hero layout from styles.css
   -------------------------------------------------------------------------- */
.about-hero-tag {
  display: block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
  color: var(--secondary);
  margin-bottom: 16px;
}
.about-hero-subtitle {
  font-family: var(--font);
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.5px;
  color: var(--secondary);
  max-width: 542px;
  margin-top: 24px;
}
.about-hero {
  padding-bottom: var(--why-card-offset, 200px);
  overflow: hidden;
}
.about-hero .hero-inner {
  min-height: 500px;
}
.about-hero .hero-content {
  flex: 5;
}
.about-hero .about-hero-visual {
  flex: 4;
}

/* — About Hero Visual — */
.about-hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  z-index: 1;
}
.about-hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}
.about-hero-composite {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top;
  display: block;
}

/* — Panel overlay images — */
/* Hidden by default — JS adds .panel-visible sequentially after preloader dismisses */
.about-panel {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity  0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Impact — clean image, full CSS control */
.about-panel--impact {
  width: 21%;
  max-width: 120px;
  left: 8%;
  top: 14%;
  transform: translateY(16px) rotate(-12.05deg);
}
.about-panel--impact.panel-visible {
  opacity: 1;
  transform: translateY(0) rotate(-12.05deg);
}
/* Daily Insight — clean image, full CSS control */
.about-panel--insight {
  width: 47%;
  max-width: 265px;
  left: 40%;
  top: 3%;
  transform: translateY(16px) rotate(3.37deg);
}
.about-panel--insight.panel-visible {
  opacity: 1;
  transform: translateY(0) rotate(3.37deg);
}
/* Flagged — clean image, full CSS control */
.about-panel--flagged {
  width: 29%;
  max-width: 165px;
  left: 54%;
  top: 48%;
  transform: translateY(16px) rotate(12.45deg);
}
.about-panel--flagged.panel-visible {
  opacity: 1;
  transform: translateY(0) rotate(12.45deg);
}

/* — Hero floating cards — */
.hero-float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-float-card--impact {
  left: 62px;
  top: 83px;
  transform: rotate(-12.05deg);
  width: 113px;
  padding: 13px;
  gap: 6.5px;
  border-radius: 6.5px;
  background: #e4f1ef;
  box-shadow:
    0px 78px 22px rgba(63,105,98,0),
    0px 49px 19px rgba(63,105,98,0.01),
    0px 28px 17px rgba(63,105,98,0.05),
    0px 12px 12px rgba(63,105,98,0.09),
    0px 3px 6.5px rgba(63,105,98,0.1);
}
.hero-float-card--flagged {
  left: 336px;
  top: 280px;
  transform: rotate(12.45deg);
  width: 116px;
  padding: 11px 17px;
  gap: 11px;
  border-radius: 5.7px;
  background: #e4f1ef;
  border: 0.714px solid white;
  box-shadow:
    0px 257px 72px rgba(86,138,130,0),
    0px 165px 66px rgba(86,138,130,0.01),
    0px 93px 56px rgba(86,138,130,0.05),
    0px 41px 41px rgba(86,138,130,0.09),
    0px 10px 23px rgba(86,138,130,0.1);
}
.hero-float-card--insight {
  left: 273px;
  top: 38px;
  transform: rotate(3.37deg);
  width: 265.5px;
  padding: 18px;
  border-radius: 12px;
  background: white;
  border: 0.75px solid white;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0px 9px 9px rgba(68,71,112,0.1);
}

/* — Corner badges — */
.hero-float-corner {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-float-corner-icon { display: block; }
.hero-float-corner--info { top: 8px; right: 8px; width: 13px; height: 13px; }
.hero-float-corner--info .hero-float-corner-icon { width: 13px; height: 13px; }
.hero-float-corner--plus { top: 5px; right: 5px; }
.hero-float-plus-badge {
  display: flex;
  align-items: center;
  gap: 1px;
  background: var(--primary);
  color: white;
  font-family: var(--font);
  font-weight: 700;
  font-size: 11.42px;
  line-height: 1.1;
  letter-spacing: -0.23px;
  padding: 2.86px 4.28px;
  border-radius: 4px;
}
.hero-float-star-icon { width: 5.7px; height: 5.7px; display: block; }
.hero-float-corner--close { top: 17.25px; right: 17.25px; width: 24px; height: 24px; }
.hero-float-corner--close .hero-float-corner-icon { width: 18px; height: 18px; }

/* — Floating card icon images — */
.hero-float-icon-img { display: block; object-fit: contain; }
.hero-float-icon-img--glycemic { width: 25px; height: 36px; }
.hero-float-icon-img--flag { width: 44px; height: 44px; }
.hero-float-icon-img--bulb { width: 22px; height: 36px; object-fit: cover; object-position: center center; }

/* — Floating card text — */
.hero-float-label { font-family: var(--font); font-weight: 700; color: var(--primary); }
.hero-float-card--impact .hero-float-label { font-size: 11.35px; line-height: 1.2; letter-spacing: -0.227px; }
.hero-float-card--flagged .hero-float-label { font-size: 10px; line-height: 1.2; letter-spacing: -0.2px; color: var(--secondary); }
.hero-float-number {
  font-family: var(--font);
  font-weight: 700;
  font-size: 17.13px;
  line-height: 21.4px;
  letter-spacing: -0.34px;
  color: var(--primary);
}
.hero-float-badge { font-family: var(--font); font-weight: 700; font-size: 11.35px; line-height: 1.2; letter-spacing: -0.227px; }
.hero-float-badge--low {
  background: #009a1f;
  color: white;
  padding: 3.24px 6.49px;
  border-radius: 810px;
  text-shadow: 0px 1.62px 3.24px rgba(0,0,0,0.29);
}

/* — Daily Insight inner layout — */
.hero-float-insight-inner { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.hero-float-insight-text-wrap { display: flex; flex-direction: column; gap: 6px; }
.hero-float-insight-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 18px;
  letter-spacing: -0.27px;
  color: var(--primary);
}
.hero-float-insight-body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: var(--secondary);
}
.hero-float-insight-suitable { display: flex; gap: 6px; align-items: flex-start; width: 100%; }
.hero-float-suitable-label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 10.5px;
  line-height: 1.2;
  letter-spacing: -0.21px;
  color: var(--primary);
  padding-top: 3px;
  white-space: nowrap;
}
.hero-float-insight-tags { display: flex; flex-wrap: wrap; gap: 3px; }
.hero-float-insight-tags .diet-tag { font-size: 9.75px; padding: 3px 6px; letter-spacing: -0.195px; }
.hero-float-insight-tags .diet-tag--vegan { background: #69b4ff; }

/* --------------------------------------------------------------------------
   Why Section — Rounded card layout
   -------------------------------------------------------------------------- */
.about-why {
  padding: 0 80px;
  position: relative;
  z-index: 3;
  margin-top: calc(var(--why-card-offset, 200px) * -1);
  margin-bottom: calc(var(--why-card-offset, 0px) * -1);
}
.about-why-card {
  max-width: 1560px;
  margin: 0 auto;
  background: #e4f1ef;
  border: 1px solid white;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  box-shadow:
    0px 144px 40px rgba(107,142,137,0),
    0px 92px 37px rgba(107,142,137,0.01),
    0px 52px 31px rgba(107,142,137,0.05),
    0px 23px 23px rgba(107,142,137,0.09),
    0px 6px 13px rgba(107,142,137,0.1);
}
.about-why-icon {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 32px;
  background: linear-gradient(180deg, white 0%, #e2f1ee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0px 313px 88px rgba(91,143,135,0),
    0px 200px 80px rgba(91,143,135,0.01),
    0px 113px 68px rgba(91,143,135,0.05),
    0px 50px 50px rgba(91,143,135,0.09),
    0px 13px 28px rgba(91,143,135,0.1);
}
.about-why-icon-img {
  width: 58px;
  height: 59px;
}
.about-why-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.about-why-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-why-heading h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: -2px;
  color: var(--primary);
}
.about-why-tagline {
  font-family: var(--font);
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.5px;
  color: var(--secondary);
}
.about-why-body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Story Section — 2-column layout
   -------------------------------------------------------------------------- */
.about-story {
  padding: 100px 0;
  padding-top: calc(100px + var(--why-card-offset, 0px));
  background: var(--surface);
}
.about-story-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  gap: 52px;
  align-items: flex-start;
}
.about-story-left {
  flex: 1;
  min-width: 0;
}
.about-story-right {
  width: 389px;
  flex-shrink: 0;
  position: relative;
  align-self: flex-start;
}
.about-story-photo-wrap {
  width: 389px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0px 84px 24px 0px rgba(133, 153, 151, 0),
    0px 54px 22px 0px rgba(133, 153, 151, 0.01),
    0px 30px 18px 0px rgba(133, 153, 151, 0.05),
    0px 13px 13px 0px rgba(133, 153, 151, 0.09),
    0px 3px 7px 0px rgba(133, 153, 151, 0.1);
}
.about-story-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-story-annotation {
  position: absolute;
  top: -8px;
  left: -5px;
  z-index: 1;
}
.about-story-photo-label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.36px;
  color: var(--secondary);
  transform: rotate(0deg);
  transform-origin: left center;
  white-space: nowrap;
  display: block;
}
.about-story-arrow {
  width: 15px;
  height: 52px;
  transform: rotate(-3deg);
  margin-top: 4px;
  display: block;
}
.about-story-header {
  margin-bottom: 48px;
}
.about-story-header h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: -2px;
  color: var(--primary);
  margin-bottom: 8px;
}
.nowrap { white-space: nowrap; }
.about-story-subtitle {
  font-family: var(--font);
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.5px;
  color: var(--secondary);
}
.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-story-body p {
  font-family: var(--font);
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary);
}
.about-quote {
  padding: 32px 48px;
  background: #e4f1ef;
  border: 1px solid white;
  border-radius: 16px;
  box-shadow:
    0px 84px 24px 0px rgba(133,153,151,0),
    0px 54px 22px 0px rgba(133,153,151,0.01),
    0px 30px 18px 0px rgba(133,153,151,0.05),
    0px 13px 13px 0px rgba(133,153,151,0.09),
    0px 3px 7px 0px rgba(133,153,151,0.1);
}
.about-quote p {
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.36px;
  color: var(--secondary);
  text-indent: -8.1px;
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.about-stats {
  padding: 80px 0;
  background: var(--bg);
}
.about-stats-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.about-stats-heading {
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  letter-spacing: var(--h2-ls);
  color: var(--primary);
  text-align: center;
  width: 100%;
}
.about-stats-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  padding-top: 48px;
}
.about-stat-card {
  flex: 1;
  background: white;
  border: 1px solid white;
  border-radius: 16px;
  padding: 100px 16px 24px;
  box-shadow: 0px 24px 24px 0px rgba(68,71,112,0.05);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1),
              box-shadow 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* — Plate image — */
.about-stat-plate-img {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 204px;
  height: auto;
}

/* — Card content — */
.about-stat-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.about-stat-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.about-stat-label {
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--h3-size);
  line-height: var(--h3-lh);
  letter-spacing: var(--h3-ls);
  color: var(--primary);
}
.about-stat-subtitle {
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--secondary);
}
.about-stat-desc-box {
  background: #e4f1ef;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
}
.about-stat-desc {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--primary);
  text-align: center;
}

/* --------------------------------------------------------------------------
   About Testimonials
   -------------------------------------------------------------------------- */
.about-testimonials {
  padding: 100px 0 80px;
  background: var(--bg);
}
.about-testimonials-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 80px;
}
.about-testimonials-header {
  text-align: center;
  margin-bottom: 32px;
}
.about-testimonials-header h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.6px;
  color: var(--primary);
  margin-bottom: 8px;
}
.about-testimonials-subtitle {
  font-family: var(--font);
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: var(--secondary);
}
.about-testimonials {
  overflow: hidden;
}
.about-testimonial-rails {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-left: -80px;
  margin-right: -80px;
}
.about-testimonial-rail {
  overflow: visible;
}
.about-testimonial-carousel {
  display: flex;
  gap: 32px;
}
.about-testimonial-rail--left .about-testimonial-carousel {
  margin-left: 80px;
}
.about-testimonial-rail--right {
  display: flex;
  justify-content: flex-end;
}
.about-testimonial-rail--right .about-testimonial-carousel {
  margin-right: 80px;
}
.about-testimonial-card {
  background: var(--surface);
  border: 1px solid white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 24px 24px 0px rgba(68,71,112,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 511px;
  min-width: 511px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1),
              box-shadow 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.about-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.about-testimonial-quote p {
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary);
}
.about-testimonial-divider {
  display: flex;
  align-items: center;
  gap: 0;
}
.about-testimonial-stars {
  width: 57px;
  flex-shrink: 0;
}
.about-testimonial-line {
  flex: 1;
  height: 1px;
}
.about-testimonial-author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-apple);
  border: 4px solid white;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 8px -2px rgba(68, 71, 112, 0.2);
}
.about-testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.about-testimonial-name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--primary);
}
.about-testimonial-role {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.14px;
  color: var(--secondary);
}
.about-testimonial-tags {
  display: flex;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   CTA Override — Solid teal button
   -------------------------------------------------------------------------- */
.btn-cta-solid {
  display: inline-grid;
  place-items: start;
  width: 350px;
  background: #00776f;
  color: white;
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}
.btn-cta-solid:hover {
  background: #006660;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.about-faq {
  background: var(--surface);
  padding: 120px 0;
}
.about-faq-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 80px;
}
.about-faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-faq-header h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  letter-spacing: var(--h2-ls);
  color: var(--primary);
  margin-bottom: 8px;
}
.about-faq-subtitle {
  font-family: var(--font);
  font-weight: 300;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: -0.5px;
  color: var(--secondary);
}
.about-faq-accordion {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-faq-item {
  background: var(--surface);
  border: 1px solid var(--tertiary);
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-bottom: 16px;
}
.about-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
}
.about-faq-question {
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--body-lg-size);
  line-height: var(--body-lg-lh);
  letter-spacing: -0.5px;
  color: var(--primary);
}
.about-faq-toggle {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface-tint);
  transition: transform 0.3s ease;
}
/* Answer panel — animated slide */
.about-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  font-family: var(--font);
  font-weight: 300;
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: var(--primary);
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}
.about-faq-answer p {
  margin: 0 0 16px;
}
.about-faq-answer p:last-child {
  margin-bottom: 0;
}
/* Plus/minus icon — instant toggle */
.about-faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.about-faq-item--open {
  border-color: #aad4cd;
  box-shadow:
    0px 84px 24px 0px rgba(133, 153, 151, 0),
    0px 54px 22px 0px rgba(133, 153, 151, 0.01),
    0px 30px 18px 0px rgba(133, 153, 151, 0.05),
    0px 13px 13px 0px rgba(133, 153, 151, 0.09),
    0px 3px 7px 0px rgba(133, 153, 151, 0.1);
}
.about-faq-item--open .about-faq-answer {
  max-height: 800px;
  padding: 0 32px 32px;
  opacity: 1;
}
.about-faq-item--open .faq-plus-v {
  display: none;
}
/* Bullet list */
.about-faq-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-faq-list li {
  padding-left: 34px;
  position: relative;
  font-family: var(--font);
  font-weight: 300;
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: var(--primary);
  background-image: url('../images/faq-bullet-marker.svg');
  background-repeat: no-repeat;
  background-position: 0 6px;
  background-size: 18px 18px;
}
/* Callout box */
.about-faq-callout {
  background: var(--bg);
  border-radius: var(--radius-l);
  padding: 24px 32px;
  margin: 16px 0;
}
.about-faq-callout-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: var(--primary);
  margin: 0 0 8px;
}
.about-faq-callout .about-faq-list {
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive — Tablet (<=1279px)
   -------------------------------------------------------------------------- */
@media (max-width: 1279px) {
  /* — Hero — */
  .about-hero { padding-bottom: var(--why-card-offset, 200px); }
  .about-hero .hero-inner {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 24px;
  }
  .about-hero .hero-content {
    flex: none;
    width: 100%;
    text-align: center;
    align-items: center;
    gap: 16px;
  }
  .about-hero .hero-headline h1 { text-align: center; }
  .about-hero-tag { font-size: 18px; }
  .about-hero-subtitle { font-size: 18px; line-height: 30px; max-width: 620px; }
  .about-hero .about-hero-visual {
    flex: none;
    width: 100%;
    max-width: 520px;
  }
  .about-hero-image-wrap { max-width: 520px; margin: 0 auto; }
  /* Panel overlays — scale down for tablet hero image */
  .about-panel--impact { width: 22%; left: 4%; top: 12%; }
  .about-panel--insight { width: 44%; left: 42%; top: 2%; }
  .about-panel--flagged { width: 27%; left: 52%; top: 48%; }

  /* — Why Section — */
  .about-why { padding: 0 48px; }
  .about-why-card { padding: 48px; gap: 32px; }
  .about-why-heading h2 { font-size: 24px; line-height: 30px; }
  .about-why-tagline { font-size: 18px; line-height: 30px; }
  .about-why-body { font-size: 16px; line-height: 24px; }

  /* — Story Section — */
  .about-story { padding: 80px 0; padding-top: calc(80px + var(--why-card-offset, 0px)); }
  .about-story-inner { padding: 0 48px; gap: 24px; }
  .about-story-left { flex: 1; min-width: 0; }
  .about-story-right { width: clamp(180px, 28vw, 280px); flex-shrink: 0; align-self: flex-start; margin-top: 50px; }
  .about-story-photo-wrap { width: 100%; }
  .about-story-photo { width: 100%; height: 100%; }
  .about-story-annotation { top: -44px; left: -27px; }
  .about-story-header { margin-bottom: 32px; }
  .about-story-header h2 { font-size: 30px; line-height: 36px; }
  .about-story-subtitle { font-size: 18px; line-height: 30px; }
  .about-story-body p { font-size: 16px; line-height: 24px; }
  .about-quote p { font-size: 16px; line-height: 1.5; }

  /* — Stats Section — */
  .about-stats { padding: 80px 0; }
  .about-stats-inner { padding: 0 48px; }
  .about-stats-heading { font-size: var(--h2-size); line-height: var(--h2-lh); letter-spacing: var(--h2-ls); }
  .about-stats-grid { gap: 24px; }
  .about-stat-label { font-size: var(--h4-size); line-height: var(--h4-lh); letter-spacing: var(--h4-ls); }

  /* — FAQ Section — */
  .about-faq { padding: 80px 0; }
  .about-faq-inner { padding: 0 48px; }
  .about-faq-accordion { max-width: 768px; }

  /* — Testimonials (uses homepage .testimonials / .marquee-container) — */
  .testimonials .section-inner { padding: 0 48px; }

}

/* --------------------------------------------------------------------------
   Responsive — Mobile (<=959px)
   -------------------------------------------------------------------------- */
@media (max-width: 690px) {
  /* — Hero — */
  .about-hero { padding-bottom: var(--why-card-offset, 140px); }
  .about-hero .hero-inner {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 32px;
  }
  .about-hero .hero-content {
    flex: none;
    width: 100%;
    padding-bottom: 0;
    text-align: center;
    align-items: center;
    gap: 16px;
  }
  .about-hero .hero-headline h1 { text-align: center; }
  .about-hero-tag { font-size: 18px; line-height: 24px; letter-spacing: -0.36px; }
  .about-hero-subtitle { font-size: 18px; line-height: 30px; max-width: 100%; }
  .about-hero .about-hero-visual {
    width: 100%;
    max-width: 260px;
    height: 340px;
    margin: 0 auto;
  }
  .about-hero-image-wrap { max-width: 260px; }
  /* Panel overlays — scale down for mobile hero image */
  .about-panel--impact { width: 24%; left: 2%; top: 10%; }
  .about-panel--insight { width: 48%; left: 38%; top: 0%; }
  .about-panel--flagged { width: 30%; left: 50%; top: 46%; }

  /* — Why Section — */
  .about-why { padding: 0 24px; margin-top: calc(var(--why-card-offset, 140px) * -1); }
  .about-why-card { padding: 24px; gap: 24px; flex-direction: column; }
  .about-why-icon { width: 80px; height: 80px; min-width: 80px; border-radius: 22px; }
  .about-why-icon-img { width: 40px; height: 41px; }
  .about-why-heading h2 { font-size: 24px; line-height: 30px; letter-spacing: -0.48px; }
  .about-why-tagline { font-size: 18px; line-height: 30px; }
  .about-why-body { font-size: 16px; line-height: 24px; }

  /* — Story Section — */
  .about-story { padding: 32px 0; padding-top: calc(48px + var(--why-card-offset, 0px)); }
  .about-story-inner {
    padding: 0 48px;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .about-story-left { width: 100%; flex: none; }
  .about-story-right {
    width: 65vw;
    max-width: 320px;
    flex-shrink: 0;
    order: 2;
    margin: 0 auto;
    padding-top: 70px;
    position: relative;
  }
  .about-story-photo-wrap { width: 100%; }
  .about-story-photo { width: 100%; height: 100%; }
  .about-story-annotation { position: absolute; top: 10px; left: -16px; z-index: 1; }
  .about-story-header { margin-bottom: 24px; }
  .about-story-header h2 { font-size: 30px; line-height: 36px; letter-spacing: -0.6px; }
  .about-story-subtitle { font-size: 18px; line-height: 30px; }
  .about-story-body p { font-size: 16px; line-height: 24px; }
  .about-story-body { gap: 24px; }
  .about-quote { padding: 24px; }
  .about-quote p { font-size: 16px; line-height: 1.5; }

  /* — Stats Section — */
  .about-stats { padding: 80px 0; }
  .about-stats-inner { padding: 0 32px; }
  .about-stats-heading { font-size: var(--h2-size); line-height: var(--h2-lh); letter-spacing: var(--h2-ls); }
  .about-stats-grid { flex-direction: column; gap: 112px; padding-top: 80px; }
  .about-stat-card { padding: 100px 20px 20px; }
  .about-stat-label { font-size: var(--h3-size); line-height: var(--h3-lh); letter-spacing: var(--h3-ls); }

  /* — FAQ Section — */
  .about-faq { padding: 80px 0; }
  .about-faq-inner { padding: 0 24px; }
  .about-faq-header { margin-bottom: 32px; }
  .about-faq-accordion { max-width: 100%; }
  .about-faq-item { margin-bottom: 10px; }
  .about-faq-trigger { padding: 16px 20px; }
  .about-faq-answer { padding: 0 20px; }
  .about-faq-item--open .about-faq-answer { padding: 0 20px 20px; }
  .about-faq-question { font-size: 18px; line-height: 30px; letter-spacing: -0.5px; }

  /* — Testimonials (uses homepage .testimonials / .marquee-container) — */
  .testimonials .section-inner { padding: 0 24px; }

  /* — CTA — */
  .btn-cta-solid { width: 100%; max-width: 350px; }
}

