/* =============================================
   ÜBER RYSZKA DIGITAL — Page-Specific Styles
   Loaded after styles.css + global-polish.css
   ============================================= */


/* ─── 1. HERO ─── */

.about-hero {
  position: relative;
  padding: 108px 0 84px;
  text-align: center;
  overflow: hidden;
}

/* soft radial glow — parallax layer */
.about-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-55%) translateY(var(--parallax-y, 0px));
  will-change: transform;
  width: 1100px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(11, 88, 118, 0.06) 0%, transparent 68%);
  pointer-events: none;
}

/* faint structural grid — parallax layer (slower) */
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateY(calc(var(--parallax-y, 0px) * 0.5));
  will-change: transform;
  background-image:
    linear-gradient(to right, rgba(21, 39, 52, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(21, 39, 52, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 35%, rgba(0,0,0,0.45), transparent 70%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(21, 39, 52, 0.48);
  font-family: "Manrope", sans-serif;
}

.about-hero-kicker::before {
  content: '';
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-gold), rgba(27, 109, 132, 0.3));
}

.about-hero h1 {
  font-size: clamp(42px, 5.2vw, 66px);
  letter-spacing: -0.05em;
  line-height: 0.94;
  margin: 0 0 26px;
}

.about-hero-accent {
  display: block;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600) 55%, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero h1 .about-hero-sub {
  display: block;
  margin-top: 10px;
  font-size: 0.5em;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--muted);
  font-weight: 500;
}

.about-hero-lead {
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 30px;
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.about-hero-meta {
  font-size: 13.5px;
  color: rgba(21, 39, 52, 0.50);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

/* decorative gradient bar between hero and next section */
.about-hero-bar {
  display: block;
  width: 100px;
  height: 3px;
  border-radius: 999px;
  margin: 0 auto;
  background: linear-gradient(90deg,
    transparent,
    rgba(184, 138, 76, 0.55) 25%,
    rgba(136, 206, 217, 0.45) 75%,
    transparent);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


/* ─── 2. VALUES ─── */

.about-values {
  padding: 84px 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}

.about-value-card {
  padding: 36px 30px;
  border-radius: 24px;
  border: 1px solid rgba(21, 39, 52, 0.07);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

@media (hover: hover) {
  .about-value-card:hover {
    transform: translateY(-3px);
  }
}

.about-value-card--light {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(249, 243, 233, 0.90));
  box-shadow: 0 12px 32px rgba(11, 28, 39, 0.06);
}

@media (hover: hover) {
  .about-value-card--light:hover {
    box-shadow: 0 20px 48px rgba(11, 28, 39, 0.10);
  }
}

.about-value-card--dark {
  background: linear-gradient(160deg, rgba(10, 36, 49, 0.97), rgba(13, 60, 82, 0.94));
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(4, 20, 30, 0.22);
  border-color: rgba(255, 255, 255, 0.06);
}

@media (hover: hover) {
  .about-value-card--dark:hover {
    box-shadow: 0 24px 60px rgba(4, 20, 30, 0.30);
  }
}

.about-value-card--dark h2 {
  color: rgba(255, 255, 255, 0.96);
}

.about-value-card--dark p,
.about-value-card--dark .bullets {
  color: rgba(255, 255, 255, 0.82);
}

.about-value-card--dark .bullets li::marker {
  color: var(--accent-cyan);
}

.about-value-card h2 {
  font-size: 24px;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  font-family: "Newsreader", Georgia, serif;
}

.about-value-card p {
  margin: 0;
  line-height: 1.65;
  font-size: 15.5px;
}

.about-value-card .bullets {
  margin: 0;
  padding-left: 18px;
}

.about-value-card .bullets li {
  margin: 7px 0;
  line-height: 1.55;
  font-size: 15.5px;
}


/* ─── 3. PROCESS TIMELINE ─── */

.about-process {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(184, 138, 76, 0.04), transparent 70%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(249, 243, 233, 0.42));
  border-top: 1px solid rgba(21, 39, 52, 0.06);
  border-bottom: 1px solid rgba(21, 39, 52, 0.06);
}

.about-process .section-head {
  max-width: 700px;
}

.about-process-lead {
  margin-top: 10px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  max-width: 600px;
}

.about-timeline {
  position: relative;
  margin-top: 52px;
  padding-left: 72px;
  max-width: 800px;
}

/* vertical connecting thread — the signature element (faded track) */
.about-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg,
    rgba(184, 138, 76, 0.18),
    rgba(136, 206, 217, 0.15) 35%,
    rgba(27, 109, 132, 0.12) 65%,
    rgba(184, 138, 76, 0.10));
}

/* scroll-filled overlay — grows as user scrolls through the section */
.about-timeline::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 8px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg,
    var(--accent-gold),
    var(--accent-cyan) 50%,
    var(--brand-600));
  height: calc(var(--timeline-fill, 0) * 1%);
  max-height: calc(100% - 16px);
  transition: height 0.12s ease-out;
  pointer-events: none;
  z-index: 1;
}

.about-step {
  position: relative;
  padding: 28px 32px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(21, 39, 52, 0.08);
  box-shadow: 0 8px 24px rgba(11, 28, 39, 0.05);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}

.about-step:last-child {
  margin-bottom: 0;
}

@media (hover: hover) {
  .about-step:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 40px rgba(11, 28, 39, 0.09);
    border-color: rgba(27, 109, 132, 0.18);
  }
}

/* numbered node on the timeline line */
.about-step-node {
  position: absolute;
  left: -45px;
  top: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d3445, #1b6d84);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  box-shadow:
    0 6px 18px rgba(11, 28, 39, 0.22),
    0 0 0 4px var(--bg);
  z-index: 2;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

/* node entrance: scale-up with glow pulse on reveal */
.about-step[data-reveal] .about-step-node {
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-step[data-reveal].is-visible .about-step-node {
  transform: scale(1);
  animation: node-glow 0.8s 0.35s ease-out both;
}

@keyframes node-glow {
  0%   { box-shadow: 0 6px 18px rgba(11, 28, 39, 0.22), 0 0 0 4px var(--bg); }
  50%  { box-shadow: 0 6px 18px rgba(11, 28, 39, 0.22), 0 0 0 4px var(--bg), 0 0 20px 4px rgba(136, 206, 217, 0.25); }
  100% { box-shadow: 0 6px 18px rgba(11, 28, 39, 0.22), 0 0 0 4px var(--bg); }
}

.about-step--measure[data-reveal].is-visible .about-step-node {
  animation-name: node-glow-gold;
}

@keyframes node-glow-gold {
  0%   { box-shadow: 0 6px 18px rgba(184, 138, 76, 0.28), 0 0 0 4px var(--bg); }
  50%  { box-shadow: 0 6px 18px rgba(184, 138, 76, 0.28), 0 0 0 4px var(--bg), 0 0 22px 5px rgba(184, 138, 76, 0.22); }
  100% { box-shadow: 0 6px 18px rgba(184, 138, 76, 0.28), 0 0 0 4px var(--bg); }
}

@media (hover: hover) {
  .about-step:hover .about-step-node {
    transform: scale(1.08);
    box-shadow:
      0 8px 24px rgba(11, 28, 39, 0.28),
      0 0 0 4px var(--bg);
  }

  .about-step--measure:hover .about-step-node {
    box-shadow:
      0 8px 24px rgba(184, 138, 76, 0.35),
      0 0 0 4px var(--bg);
  }
}

/* highlight the measurement step with a gold node */
.about-step--measure .about-step-node {
  background: linear-gradient(135deg, var(--accent-gold), #c9984f);
  box-shadow:
    0 6px 18px rgba(184, 138, 76, 0.28),
    0 0 0 4px var(--bg);
}

.about-step h3 {
  font-size: 21px;
  margin: 0 0 8px;
  letter-spacing: -0.025em;
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.2;
}

.about-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 15px;
}

.about-step-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(21, 39, 52, 0.03);
  border: 1px solid rgba(21, 39, 52, 0.06);
  font-size: 13.5px;
  color: rgba(21, 39, 52, 0.62);
  line-height: 1.55;
}


/* ─── 4. WHY MAPS ─── */

.about-focus {
  padding: 84px 0;
}

.about-focus-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
  margin-top: 44px;
}

.about-focus-text {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(21, 39, 52, 0.84);
}

.about-focus-text p {
  margin: 0;
}

.about-focus-text p + p {
  margin-top: 18px;
}

.about-focus-sidebar {
  padding: 30px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.97), rgba(249, 243, 233, 0.90));
  border: 1px solid rgba(21, 39, 52, 0.08);
  box-shadow: 0 10px 28px rgba(11, 28, 39, 0.06);
  position: sticky;
  top: calc(var(--header-offset, 90px) + 24px);
}

.about-focus-sidebar h3 {
  font-size: 20px;
  margin: 0 0 14px;
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: -0.02em;
}

.about-focus-sidebar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 15px;
}


/* ─── 5. TRUST / REGION ─── */

.about-trust {
  padding: 80px 0;
  text-align: center;
  background:
    radial-gradient(700px 350px at 50% 100%, rgba(184, 138, 76, 0.04), transparent 70%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(249, 243, 233, 0.42));
  border-top: 1px solid rgba(21, 39, 52, 0.06);
  border-bottom: 1px solid rgba(21, 39, 52, 0.06);
}

.about-trust-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-trust-text {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 16px auto 0;
  max-width: 640px;
}

.about-trust-text + .about-trust-text {
  margin-top: 12px;
}

.about-trust-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-takeaway {
  margin-top: 40px;
  padding: 24px 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(184, 138, 76, 0.08), rgba(136, 206, 217, 0.06));
  border: 1px solid rgba(184, 138, 76, 0.15);
  display: inline-block;
  max-width: 520px;
}

.about-takeaway p {
  margin: 0;
  font-weight: 700;
  font-size: 17px;
  color: var(--brand-800);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

/* subtle gradient shimmer on the takeaway box */
@keyframes takeaway-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.about-takeaway {
  background: linear-gradient(
    135deg,
    rgba(184, 138, 76, 0.08) 0%,
    rgba(136, 206, 217, 0.06) 40%,
    rgba(184, 138, 76, 0.10) 70%,
    rgba(136, 206, 217, 0.06) 100%);
  background-size: 250% 250%;
  animation: takeaway-shimmer 7s ease-in-out infinite;
}


/* ─── 6. FAQ OVERRIDES ─── */

.about-faq {
  padding: 84px 0;
}

.about-faq .faq {
  max-width: 780px;
}

.about-faq .section-head {
  max-width: 660px;
}


/* ─── 7. CTA FINAL ─── */

.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(600px 280px at 20% 0%, rgba(184, 138, 76, 0.1), transparent 70%),
    radial-gradient(400px 200px at 80% 100%, rgba(136, 206, 217, 0.08), transparent 65%);
  pointer-events: none;
}

.about-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.about-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Manrope", sans-serif;
}

.about-cta-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 138, 76, 0.6), rgba(136, 206, 217, 0.4));
}

.about-cta h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 0 0 16px;
  letter-spacing: -0.035em;
  color: white;
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.06;
}

.about-cta p {
  font-size: 17px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

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

.about-cta .btn-primary {
  background: white;
  color: var(--brand-900);
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  padding: 16px 36px;
  font-weight: 700;
}

@media (hover: hover) {
  .about-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  }

  .about-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: white;
  }
}

.about-cta .btn-ghost {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.about-cta-fine {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.46);
}


/* ─── 8. SCROLL REVEAL ─── */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }
[data-reveal-delay="5"] { transition-delay: 400ms; }

/* timeline steps slide in from left */
.about-step[data-reveal] {
  transform: translateY(24px) translateX(-10px);
}

.about-step[data-reveal].is-visible {
  transform: translateY(0) translateX(0);
}

/* hero elements fade up gently */
.about-hero [data-reveal] {
  transform: translateY(16px);
}

.about-hero [data-reveal].is-visible {
  transform: translateY(0);
}

/* value cards: asymmetric entries — light from left, dark from right */
.about-value-card--light[data-reveal] {
  transform: translateY(20px) translateX(-24px) scale(0.97);
}

.about-value-card--dark[data-reveal] {
  transform: translateY(20px) translateX(24px) scale(0.97);
}

.about-value-card[data-reveal].is-visible {
  transform: translateY(0) translateX(0) scale(1);
}


/* ─── 9. RESPONSIVE: TABLET ─── */

@media (max-width: 981px) {
  .about-hero {
    padding: 80px 0 68px;
  }

  .about-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
  }

  .about-values {
    padding: 68px 0;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .about-process {
    padding: 72px 0;
  }

  .about-timeline {
    padding-left: 62px;
    margin-top: 40px;
  }

  .about-timeline::before {
    left: 23px;
  }

  .about-timeline::after {
    left: 23px;
  }

  .about-step-node {
    left: -39px;
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .about-focus {
    padding: 68px 0;
  }

  .about-focus-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }

  .about-focus-sidebar {
    position: static;
  }

  .about-trust {
    padding: 68px 0;
  }

  .about-faq {
    padding: 68px 0;
  }

  .about-cta {
    padding: 64px 0;
  }
}


/* ─── 10. RESPONSIVE: MOBILE (≤860px — fixed header) ─── */

@media (max-width: 860px) {
  .about-hero {
    padding-top: calc(var(--header-offset, 90px) + 48px);
  }

  /* stack hero buttons earlier to avoid awkward 2+1 wrap */
  .about-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .about-hero-actions .btn {
    width: 100%;
    max-width: 340px;
  }

  /* disable parallax will-change on touch devices */
  .about-hero::before,
  .about-hero::after {
    will-change: auto;
  }
}


/* ─── 11. RESPONSIVE: SMALL MOBILE ─── */

@media (max-width: 600px) {
  .about-hero {
    padding: calc(var(--header-offset, 76px) + 36px) 0 44px;
  }

  .about-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    letter-spacing: -0.04em;
    margin-bottom: 20px;
  }

  .about-hero h1 .about-hero-sub {
    font-size: 0.48em;
    margin-top: 10px;
  }

  .about-hero-lead {
    font-size: 15.5px;
    margin-bottom: 24px;
  }

  .about-hero-meta {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .about-hero-actions .btn {
    max-width: none;
  }

  .about-values {
    padding: 56px 0;
  }

  .about-values-grid {
    gap: 16px;
    margin-top: 28px;
  }

  .about-value-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .about-value-card h2 {
    font-size: 21px;
  }

  .about-process {
    padding: 56px 0;
  }

  .about-timeline {
    padding-left: 50px;
    margin-top: 32px;
  }

  .about-timeline::before {
    left: 18px;
  }

  .about-timeline::after {
    left: 18px;
  }

  /* keep card entries vertical-only on small screens */
  .about-value-card--light[data-reveal],
  .about-value-card--dark[data-reveal] {
    transform: translateY(20px) scale(0.97);
  }

  .about-step {
    padding: 22px 20px;
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .about-step-node {
    left: -32px;
    top: 24px;
    width: 38px;
    height: 38px;
    font-size: 13px;
    box-shadow:
      0 4px 12px rgba(11, 28, 39, 0.2),
      0 0 0 3px var(--bg);
  }

  .about-step h3 {
    font-size: 18px;
  }

  .about-step-note {
    padding: 12px 14px;
    font-size: 13px;
  }

  .about-focus {
    padding: 56px 0;
  }

  .about-focus-text {
    font-size: 15.5px;
  }

  .about-focus-sidebar {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .about-focus-sidebar h3 {
    font-size: 18px;
  }

  .about-focus-sidebar p {
    font-size: 14.5px;
  }

  .about-trust {
    padding: 56px 0;
  }

  .about-takeaway {
    padding: 18px 20px;
  }

  .about-takeaway p {
    font-size: 15.5px;
  }

  .about-faq {
    padding: 56px 0;
  }

  .about-cta {
    padding: 56px 0;
  }

  .about-cta h2 {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.15;
  }

  .about-cta p {
    font-size: 15.5px;
    margin-bottom: 24px;
    line-height: 1.55;
  }

  .about-cta .btn-primary {
    padding: 14px 28px;
    font-size: 15px;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}


/* ─── 11b. RESPONSIVE: EXTRA-SMALL (≤420px) ─── */

@media (max-width: 420px) {
  .about-hero {
    padding: calc(var(--header-offset, 72px) + 28px) 0 36px;
  }

  .about-hero h1 {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 16px;
  }

  .about-hero-lead {
    font-size: 15px;
  }

  .about-hero-meta {
    font-size: 12px;
  }

  .about-hero-kicker {
    font-size: 10.5px;
    margin-bottom: 16px;
  }

  .about-hero-kicker::before {
    width: 24px;
  }

  .about-values {
    padding: 44px 0;
  }

  .about-value-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .about-value-card h2 {
    font-size: 19px;
  }

  .about-value-card p,
  .about-value-card .bullets li {
    font-size: 14.5px;
  }

  .about-process {
    padding: 44px 0;
  }

  .about-timeline {
    padding-left: 44px;
    margin-top: 28px;
  }

  .about-timeline::before {
    left: 14px;
  }

  .about-timeline::after {
    left: 14px;
  }

  .about-step {
    padding: 18px 16px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  .about-step-node {
    left: -30px;
    top: 20px;
    width: 34px;
    height: 34px;
    font-size: 12px;
    box-shadow:
      0 4px 10px rgba(11, 28, 39, 0.18),
      0 0 0 3px var(--bg);
  }

  .about-step h3 {
    font-size: 17px;
  }

  .about-step p {
    font-size: 14px;
  }

  .about-step-note {
    padding: 10px 12px;
    font-size: 12.5px;
    border-radius: 12px;
  }

  .about-focus {
    padding: 44px 0;
  }

  .about-focus-text {
    font-size: 15px;
  }

  .about-trust {
    padding: 44px 0;
  }

  .about-trust-text {
    font-size: 15px;
  }

  .about-takeaway {
    padding: 16px 16px;
    border-radius: 14px;
  }

  .about-takeaway p {
    font-size: 15px;
  }

  .about-faq {
    padding: 44px 0;
  }

  .about-cta {
    padding: 44px 0;
  }

  .about-cta h2 {
    font-size: clamp(22px, 5.5vw, 28px);
    line-height: 1.18;
  }

  .about-cta p {
    font-size: 15px;
  }
}


/* ─── 12. REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-step:hover,
  .about-value-card:hover {
    transform: none;
  }

  .about-step:hover .about-step-node {
    transform: none;
  }

  .about-step[data-reveal] .about-step-node {
    transform: none;
    animation: none;
  }

  .about-step[data-reveal].is-visible .about-step-node {
    animation: none;
  }

  .about-takeaway {
    animation: none;
  }

  /* show full timeline when motion is reduced */
  .about-timeline::after {
    height: calc(100% - 16px);
  }
}
