:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #141414;
  --muted: #636363;
  --green: #1f514c;
  --green-dark: #184340;
  --border: rgba(20, 20, 20, 0.08);
  --shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  --max: 1276px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

/* =========================
   Base
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 80px), 1240px);
  margin: 0 auto;
}

/* =========================
   Header / Navigation
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.04);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; /* THIS is what aligns everything */
  gap: 18px;
}


.brand-icon-wrap {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.07), inset 0 2px 4px rgba(255, 255, 255, 0.25);
  flex: 0 0 34px;
}

.brand-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.brand-text {
  font-family: "Hedvig Letters Serif", serif;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.nav-links a {
  font-size: 17px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.top-cta {
  justify-self: end;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
}

.brand-logo-text {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* =========================
   Shared Layout / Typography
========================= */

.section-gap-first {
  padding: 20px 0 40px;
}

.section-gap {
  padding: 98px 0;
}

.section-gap-small {
  padding: 32px 0 28px;
}

.centered {
  text-align: center;
}

.compact-top h2 {
  margin-top: 0;
}

.eyebrow {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.dark-dot::before {
  content: "•";
  color: var(--green);
  font-size: 32px;
  line-height: 0;
  transform: translateY(-1px);
}

.hero-copy h1,
.section-head h2,
.about-copy h2,
.cta-box h2 {
  font-family: "Hedvig Letters Serif", serif;
  letter-spacing: -0.05em;
  line-height: 0.95;
  font-weight: 400;
}

.section-head h2 {
  font-size: clamp(42px, 3.5vw, 56px);
  max-width: 760px;
  margin: 10px auto 0;
}

/* =========================
   Buttons / Links
========================= */

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  padding: 5px 5px 5px 18px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pill-btn--light {
  background: #fff;
  color: var(--text);
}

.pill-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.pill-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 36px;
}

.pill-btn:not(.pill-btn--light) .pill-arrow {
  background: #fff;
}

.pill-arrow span {
  display: inline-block;
  transition: transform 0.28s ease;
  transform: translateX(0);
  font-size: 24px;
  line-height: 1;
}

.pill-btn:hover .pill-arrow span {
  transform: translateX(4px);
}

.text-arrow-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 19px;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.text-arrow-link span {
  transition: transform 0.25s ease;
}

.text-arrow-link:hover span {
  transform: translateX(6px);
}

/* =========================
   Hero
========================= */

.hero-card {
  background: var(--green);
  border-radius: 31px;
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  overflow: hidden;
}

.hero-copy {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 0 24px;
  min-width: 0;
}

.hero-copy h1 {
  font-size: clamp(40px, 4.8vw, 68px);
  max-width: 680px;
  margin: 0 0 24px;
}

.hero-body {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-media {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

/* =========================
   Services Carousel
========================= */

.services-carousel {
  position: relative;
  margin-top: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
}

.service-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transform-origin: center center;
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    transform 0.72s cubic-bezier(.22, .61, .36, 1),
    opacity 0.72s cubic-bezier(.22, .61, .36, 1),
    filter 0.72s cubic-bezier(.22, .61, .36, 1);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  display: block;
  transition:
    filter 0.72s cubic-bezier(.22, .61, .36, 1),
    transform 0.72s cubic-bezier(.22, .61, .36, 1);
}

.service-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0 30px 28px;
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.service-overlay h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 8px;
}

.service-overlay p {
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  max-width: 520px;
}

.service-card[data-slot="far-left"] {
  transform: translate(-132%, -50%) scale(0.82);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.service-card[data-slot="left"] {
  transform: translate(-84%, -50%) scale(0.9);
  opacity: 0.38;
  z-index: 2;
}

.service-card[data-slot="left"] img {
  filter: brightness(0.9);
}

.service-card[data-slot="center"] {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 5;
}

.service-card[data-slot="center"] img {
  filter: brightness(1);
}

.service-card[data-slot="right"] {
  transform: translate(-16%, -50%) scale(0.9);
  opacity: 0.38;
  z-index: 2;
}

.service-card[data-slot="right"] img {
  filter: brightness(0.9);
}

.service-card[data-slot="far-right"] {
  transform: translate(32%, -50%) scale(0.82);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.service-card.no-transition {
  transition: none !important;
}

.service-card[data-slot="off-left"] {
  transform: translate(-148%, -50%) scale(0.82);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.service-card[data-slot="off-right"] {
  transform: translate(48%, -50%) scale(0.82);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.service-card.is-moving {
  transition:
    transform 0.72s cubic-bezier(.22, .61, .36, 1),
    opacity 0.72s cubic-bezier(.22, .61, .36, 1),
    filter 0.72s cubic-bezier(.22, .61, .36, 1);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease;
  z-index: 10;
}

.carousel-control:hover {
  transform: translateY(-50%) scale(1.06);
}

.carousel-control.prev {
  left: 27.5%;
}

.carousel-control.next {
  right: 27.5%;
}

/* =========================
   About
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 58px;
  align-items: center;
}

.about-image-wrap img {
  border-radius: 31px;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.about-copy h2 {
  font-size: clamp(40px, 4.5vw, 72px);
  margin: 12px 0 24px;
  max-width: 700px;
}

.about-copy p:not(.eyebrow) {
  max-width: 710px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
  margin: 0 0 28px;
}

/* =========================
   Why Choose Us
========================= */

.why-card {
  max-width: 795px;
  margin: 28px auto 0;
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 34px 38px 36px;
}

.why-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.why-item:last-child {
  margin-bottom: 0;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 3px;
}

.why-item h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
}

.why-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.45;
}

/* =========================
   Process / Timeline
========================= */

.process-cta {
  margin: 28px auto 0;
}

.timeline {
  position: relative;
  margin-top: 58px;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(31, 81, 76, 0.18);
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 56px;
}

.timeline-marker {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 18px;
  font-weight: 600;
  display: grid;
  place-items: center;
  justify-self: center;
  z-index: 2;
}

.timeline-media img {
  border-radius: 30px;
  aspect-ratio: 1.25 / 0.9;
  object-fit: cover;
}

.timeline-copy h3 {
  font-size: 31px;
  font-weight: 500;
  margin: 0 0 12px;
}

.timeline-copy p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 26px;
}

/* =========================
   FAQ
========================= */

.faq-wrap {
  max-width: 820px;
}

.faq-list {
  margin-top: 42px;
}

.faq-item {
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}

.faq-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 18px;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
  flex: 0 0 30px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
  padding-bottom: 0;
}

.faq-answer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* =========================
   CTA Section
========================= */

.cta-box {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0;
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 52px 20px;
}

.cta-box h2 {
  font-size: clamp(40px, 4vw, 70px);
  margin: 0 0 18px;
}

.cta-box p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.cta-box .pill-btn {
  margin-bottom: 16px;
}

/* =========================
   Footer
========================= */

.site-footer {
  padding: 40px 0 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.4fr 0.5fr;
  gap: 90px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 26px;
}

.footer-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.site-footer h3 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 600;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 18px;
}

/* =========================
   Reveal Animations
========================= */

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.9s cubic-bezier(.22, .61, .36, 1),
    transform 0.9s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.9s cubic-bezier(.22, .61, .36, 1),
    transform 0.9s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition:
    opacity 0.9s cubic-bezier(.22, .61, .36, 1),
    transform 0.9s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.85s cubic-bezier(.22, .61, .36, 1),
    transform 0.85s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.reveal-zoom.in-view {
  opacity: 1;
  transform: scale(1);
}

/* =========================
   Pricing
========================= */

/* =========================
   Pricing
========================= */

.pricing-hero .container {
  max-width: 1250px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(420px, 520px));
  justify-content: center;
  gap: 28px;
  margin-top: 58px;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 30px;
  padding: 34px 32px 28px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border: 2px solid var(--green);
  box-shadow: 0 12px 24px rgba(31, 81, 76, 0.08);
  transform: translateY(-6px);
}

.pricing-label {
  margin: 0 0 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8a8a8a;
  font-weight: 700;
}

.pricing-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 0 0 18px;
}

.pricing-price-block {
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
  color: var(--green);
  margin: 0 0 10px;
}

.pricing-price span {
  font-size: 24px;
  color: #5f6470;
  font-weight: 600;
}

.pricing-subprice {
  font-size: 15px;
  font-weight: 500;
  color: #9a9a9a;
  margin: 0 0 6px;
}

.pricing-small {
  font-size: 15px;
  color: #b0b0b0;
  margin: 0;
}

.pricing-divider {
  height: 1px;
  background: rgba(20, 20, 20, 0.08);
  margin-bottom: 26px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  font-size: 16px;
  line-height: 1.35;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li::before {
  content: "—";
  color: var(--green);
  font-weight: 700;
}

.pricing-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border-radius: 999px;
  border: 1.5px solid rgba(31, 81, 76, 0.25);
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  transition: all 0.25s ease;
}

.pricing-btn:hover {
  background: var(--green);
  color: #fff;
}

.pricing-btn-featured {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.pricing-btn-featured:hover {
  background: var(--green-dark);
}

/* Responsive */

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Floating CTA
========================= */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 6px 6px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.floating-cta .pill-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  display: grid;
  place-items: center;
}

.floating-cta .pill-arrow span {
  transition: transform 0.28s ease;
}

.floating-cta:hover .pill-arrow span {
  transform: translateX(4px);
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
  .container {
    width: min(calc(100% - 40px), 1240px);
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 18px 0;
    justify-items: center;
  }

  .brand,
  .top-cta {
    justify-self: center;
  }

  .nav-links {
    justify-content: center;
    gap: 18px 26px;
  }

  .hero-card,
  .about-grid,
  .footer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  .services-carousel {
    margin-top: 40px;
  }

  .carousel-viewport {
    height: auto;
    display: grid;
    gap: 20px;
  }

  .service-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .service-card img {
    aspect-ratio: 1.4 / 1;
  }

  .timeline-line {
    left: 18px;
    transform: none;
  }

  .timeline-row {
    grid-template-columns: 36px 1fr;
    gap: 20px;
  }

  .timeline-media,
  .timeline-copy {
    grid-column: 2;
  }

  .timeline-marker {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .left-media .timeline-media,
  .right-media .timeline-media,
  .left-media .timeline-copy,
  .right-media .timeline-copy {
    order: initial;
  }

  .pricing-card,
  .pricing-card-featured {
    min-height: auto;
    transform: none;
  }
}

pricing-hero {
  zoom: 0.2;
}

@media (max-width: 768px) {
  .pricing-hero {
    zoom: 0.8;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 16px 0;
  }

  .nav-links {
    gap: 16px 20px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .hero-card {
    padding: 20px;
    gap: 24px;
    min-height: auto;
    border-radius: 24px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 0.98;
    margin-bottom: 20px;
  }

  .hero-body {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

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

  .hero-actions .pill-btn {
    width: 100%;
    justify-content: space-between;
  }

  .hero-media img {
    min-height: 0;
    max-height: 420px;
  }

  .section-gap {
    padding: 72px 0;
  }

  .section-gap-first {
    padding: 10px 0 30px;
  }

  .section-gap-small {
    padding: 24px 0;
  }

  .section-head h2,
  .about-copy h2,
  .cta-box h2 {
    letter-spacing: -0.04em;
  }

  .service-overlay {
    padding: 0 18px 18px;
  }

  .service-overlay h3 {
    font-size: 22px;
  }

  .service-overlay p {
    font-size: 16px;
  }

  .timeline {
    margin-top: 42px;
  }

  .timeline-row {
    margin-bottom: 38px;
  }

  .timeline-media img {
    border-radius: 22px;
  }

  .timeline-copy h3 {
    font-size: 26px;
  }

  .timeline-copy p {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .faq-question {
    font-size: 18px;
    padding: 20px 0;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .pill-btn {
    font-size: 16px;
    padding: 6px 6px 6px 16px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-copy,
  .site-footer li {
    font-size: 16px;
  }

  .pricing-card {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .pricing-card h3 {
    font-size: 30px;
  }

  .pricing-price {
    font-size: 32px;
  }

  .pricing-subprice {
    font-size: 14px;
  }

  .pricing-features li {
    font-size: 16px;
    padding: 12px 0 12px 20px;
  }

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

@media (max-width: 720px) {
  .floating-cta {
    bottom: 18px;
    right: 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 20px), 1240px);
  }

  .brand-text {
    font-size: 18px;
  }

  .nav-links {
    gap: 14px 18px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .top-cta {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .top-cta.pill-btn {
    width: 100%;
    max-width: 260px;
    justify-content: space-between;
  }

  .section-gap-first {
    padding: 20px 0 36px;
  }

  .section-gap {
    padding: 64px 0;
  }

  .section-gap-small {
    padding: 22px 0;
  }

  .section-head h2,
  .about-copy h2,
  .cta-box h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .about-copy p:not(.eyebrow),
  .cta-box p,
  .faq-answer p {
    font-size: 16px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .why-item {
    gap: 12px;
  }

  .why-item h3 {
    font-size: 21px;
  }

  .why-item p {
    font-size: 16px;
  }

  .timeline-copy h3 {
    font-size: 24px;
  }

  .timeline-copy p {
    font-size: 16px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .cta-box {
    padding: 40px 16px;
  }
}

/* =========================
   Logo Strip
========================= */

.logo-strip-section {
  padding: 40px 0;
}

.logo-strip-label {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 32px;
}

.logo-strip-wrapper {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  width: max-content;
}

.logo-track img {
  height: 50px;
  width: auto !important;
  max-width: none !important;
  flex-shrink: 0;
  opacity: 0.5;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}

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