/* ═══════════════════════════════════════════════════════════════
   REANO — Design System Tokens
═══════════════════════════════════════════════════════════════ */
:root {
  /* Colors */
  --main-100:    #cc5d28;
  --main-0:      #f7e7df;
  --neutral-0:   #ffffff;
  --neutral-50:  #bcbcbc;
  --neutral-70:  #7e7e7e;
  --neutral-100: #262626;
  --white-100:   #f8f8f7;
  --black:       #000000;

  /* Typography */
  --font-family: 'Rethink Sans', sans-serif;
  --lh-16: 16px;
  --lh-24: 24px;
  --letter-spacing: 0.1px;

  /* Spacing */
  --s32: 32px;

  /* Derived */
  --dark-bg:     #1a1a1a;
  --section-pad: 100px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: 18px;
  color: var(--neutral-100);
  background: var(--neutral-0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 80px;
}

.text-center { text-align: center; }
.br-desktop  { display: block; }
.br-mobile   { display: none; }

/* ═══════════════════════════════════════════════════════════════
   SHARED TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
/* Desktop: 36px / Mobile: 20px */
.section-heading {
  font-size: clamp(20px, 2.81vw, 36px);
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: var(--letter-spacing);
  color: var(--neutral-100);
}

/* Desktop: 24px medium / Mobile: 16px regular */
.section-body {
  font-size: clamp(16px, 1.875vw, 24px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--neutral-100);
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   Desktop: h 70px (padding 23px 35px + lh 24px = 70px)
   Mobile:  h 56px (padding 16px 35px + lh 24px = 56px)
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 23px 35px;
  border-radius: 46px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--letter-spacing);
  line-height: var(--lh-16);
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  overflow: hidden;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--primary {
  background: var(--main-100);
  color: var(--neutral-0);
  border-color: var(--main-100);
}
.btn--ghost {
  background: var(--main-0);
  color: var(--neutral-100);
  border-color: transparent;
}
.btn--inverse {
  background: var(--main-0);
  color: var(--black);
  border-color: var(--main-0);
}
.btn--white {
  background: var(--neutral-0);
  color: var(--neutral-100);
  border-color: var(--neutral-0);
  padding-block: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 20px;
  background: transparent;
  transition: background 0.3s;
}
.nav.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(41, 41, 41, 0.92);
  backdrop-filter: blur(8px);
  z-index: -1;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo img {
  height: 47px;
  width: 207px;
}

.nav__links {
  display: flex;
  gap: 50px;
  margin-left: auto;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-0);
  letter-spacing: var(--letter-spacing);
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 0.7; }

.nav__cta {
  padding: 14px 28px;
  font-size: 16px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-0);
  border-radius: 2px;
  transition: transform 0.3s;
}

.nav__close {
  display: none;
}
.nav__close img { filter: brightness(0) invert(1); }
.nav__menu-header { display: none; }
.nav__tab-group { display: contents; }

body.menu-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   Desktop heading: 42px bold, lh 44px
   Desktop sub:     24px medium
   Mobile heading:  28px bold
   Mobile sub:      16px medium
═══════════════════════════════════════════════════════════════ */
.hero {
  background-color: var(--main-100);
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

.hero__content {
  text-align: center;
  padding-bottom: 0;
}

.hero__heading {
  font-size: clamp(28px, 3.28vw, 42px);
  font-weight: 700;
  line-height: 44px;
  color: var(--neutral-0);
  letter-spacing: var(--letter-spacing);
  margin-bottom: 28px;
}

.hero__sub {
  font-size: clamp(16px, 1.875vw, 24px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.25;
  max-width: 886px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}

/* Phone mockups in hero */
.hero__mockups {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  margin-top: clamp(-200px, -13vw, -110px);
  padding: 0;
  height: clamp(276px, 41.4vw, 644px);
}

.hero__mockup {
  position: absolute;
  bottom: 0;
  height: 90%;
  width: auto;
  object-fit: contain;
  border-radius: 20px;
}

.hero__mockup--left  { left: 50%; transform: translateX(calc(-50% - min(17vw, 264px))) translateY(clamp(80px, min(13vw, 202px), 190px)); height: 100%; z-index: 1; }
.hero__mockup--center { left: 50%; transform: translateX(-50%) translateY(clamp(70px, min(11vw, 171px), 160px)); height: 92%; z-index: 3; }
.hero__mockup--right { left: 50%; transform: translateX(calc(-50% + min(17vw, 264px))) translateY(clamp(80px, min(13vw, 202px), 190px)); height: 100%; z-index: 1; }

.hero__mockups-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(clamp(90px, min(15vw, 211px), 210px));
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════════════ */
.problem {
  padding-top: calc(var(--section-pad) + clamp(70px, 11vw, 160px));
  padding-bottom: var(--section-pad);
  background: var(--main-0);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE CARDS
   Desktop icon: 180×180px  title: 22px bold  body: 14px medium
   Mobile  icon:  96×96px   title: 16px bold  body: 14px regular
═══════════════════════════════════════════════════════════════ */
.feature-cards {
  padding-block: 0 var(--section-pad);
  background: var(--main-0);
}

.feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.feature-card__icon {
  width: 180px;
  height: 180px;
  background: #f5f5f5;
  border: 4px solid var(--main-100);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
}

.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* feature-card uses img directly (not .feature-card__icon wrapper) */
.feature-card > img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-card__title {
  font-size: clamp(16px, 1.72vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--neutral-100);
  letter-spacing: -0.32px;
}

.feature-card__body {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-100);
  line-height: 1.6;
  margin-top: -15px;
}

/* ═══════════════════════════════════════════════════════════════
   PROMO VIDEO
═══════════════════════════════════════════════════════════════ */
.promo-video {
  padding-block: var(--section-pad);
  background: var(--neutral-0);
}

.promo-video__player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.promo-video__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  margin-left: auto;
  width: fit-content;
  cursor: pointer;
  user-select: none;
}

.promo-video__toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.promo-video__toggle-track {
  position: relative;
  width: 40px;
  height: 20px;
  border-radius: 999px;
  background: var(--neutral-30, #ccc);
  transition: background 0.25s;
  flex-shrink: 0;
}

.promo-video__toggle-thumb {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: transform 0.25s;
}

.promo-video__toggle-input:checked + .promo-video__toggle-track {
  background: var(--main-100);
}

.promo-video__toggle-input:checked + .promo-video__toggle-track .promo-video__toggle-thumb {
  transform: translateX(20px);
}

.promo-video__toggle-icon {
  color: var(--neutral-60, #888);
  flex-shrink: 0;
}

.promo-video__toggle-icon--unmuted {
  display: none;
}

.promo-video__toggle-input:checked ~ .promo-video__toggle-icon--muted {
  display: none;
}

.promo-video__toggle-input:checked ~ .promo-video__toggle-icon--unmuted {
  display: block;
  color: var(--main-100);
}

@media (min-width: 1025px) {
  .promo-video__toggle { gap: 14px; }

  .promo-video__toggle-track {
    width: 56px;
    height: 28px;
  }

  .promo-video__toggle-thumb {
    width: 24px;
    height: 24px;
    top: 2px;
    left: 2px;
  }

  .promo-video__toggle-input:checked + .promo-video__toggle-track .promo-video__toggle-thumb {
    transform: translateX(28px);
  }

  .promo-video__toggle-icon {
    width: 26px;
    height: 26px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE DETAIL INTRO
═══════════════════════════════════════════════════════════════ */
.feature-detail-intro {
  padding-block: var(--section-pad) 60px;
  background: var(--main-0);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE CAROUSEL
   Desktop slide title: 26px bold  tracking -0.26px
   Desktop bullets/body: 18px regular  tracking -0.18px  lh 1.84
   Mobile  slide title: 16px bold  tracking -0.2px
   Mobile  bullets/body: 14px regular  tracking -0.7px  lh 1.84
═══════════════════════════════════════════════════════════════ */
.feature-carousel-section {
  background: var(--main-0);
  padding-block: 0 var(--section-pad);
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  flex-direction: row;
  transition: transform 0.5s ease;
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.carousel__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding-block: 60px;
  flex: 0 0 100%;
  min-width: 0;
}

.feature-detail__media {
  overflow: hidden;
  box-shadow: 0 4px 10.8px 1px rgba(0, 0, 0, 0.14);
  width: 291px;
  height: 398px;
  flex-shrink: 0;
}

.feature-detail__text {
  max-width: 550px;
}

.feature-detail__media--placeholder {
  background: #ececec;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px
  );
}

.feature-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.feature-detail__heading {
  font-size: clamp(16px, 2.03vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--neutral-100);
  letter-spacing: -0.26px;
  margin-bottom: 24px;
}

.feature-detail__body {
  font-size: clamp(14px, 1.41vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--neutral-100);
  letter-spacing: -0.18px;
  margin-bottom: 24px;
}

.feature-detail__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: disc;
  padding-left: 42px;
}
.feature-detail__list li {
  font-size: clamp(14px, 1.41vw, 18px);
  font-weight: 400;
  line-height: 1.84;
  color: var(--neutral-100);
  letter-spacing: -0.18px;
  display: list-item;
}

.carousel__dots {
  display: flex;
  gap: 11px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.carousel__dot {
  width: 21px;
  height: 21px;
  border-radius: 9999px;
  background: var(--neutral-70);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
.carousel__dot--active {
  width: 45px;
  background: var(--main-100);
}

/* ═══════════════════════════════════════════════════════════════
   TEAM
   Desktop: photo 205×228px  name 16px semibold  role 13px  linkedin 12px  badge 13px
   Mobile:  photo 150×167px  name 16px semibold  role 13px  linkedin 12px  badge 13px
═══════════════════════════════════════════════════════════════ */
.team {
  background: var(--neutral-0);
  padding-block: var(--section-pad);
}

.team__heading {
  font-size: clamp(20px, 2.81vw, 36px);
  font-weight: 700;
  line-height: 1.21;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.team__logo {
  height: 40px;
  width: auto;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin-bottom: 30px;
}

.team__grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 75%;
  margin-inline: auto;
  margin-bottom: 0;
}

.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  position: relative;
}

.team__photo-wrap {
  position: relative;
  width: clamp(150px, 20vw, 205px);
  flex-shrink: 0;
}

.team__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 150 / 167;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team__badges {
  position: absolute;
  bottom: 11.84%; /* 27px at 228px photo height, scales proportionally */
  right: -12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  border-radius: 24px;
  background: var(--neutral-0);
  color: var(--main-100);
  border: 2px solid var(--main-100);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05px;
}

.team__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-100);
  line-height: var(--lh-16);
  letter-spacing: var(--letter-spacing);
  margin-top: 5px;
}

.team__role {
  font-size: 13px;
  font-weight: 400;
  color: var(--neutral-100);
  line-height: var(--lh-16);
  letter-spacing: var(--letter-spacing);
}

.team__card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.team__card-link:hover .team__name { color: var(--main-80, var(--main-100)); }

.team__icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.team__icon-link {
  display: inline-flex;
  align-items: center;
  color: var(--neutral-100);
  transition: color 0.2s;
}
.team__icon-link:hover { color: var(--main-100); }
.team__icon { flex-shrink: 0; width: 16px; height: auto; }

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   Desktop heading: 36px bold  body: 24px medium
   Mobile  heading: 20px bold  body: 16px regular
═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--main-100);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.cta-section__chair {
  position: absolute;
  bottom: 0;
  right: 80px;
  width: clamp(162px, 20vw, 300px);
  height: auto;
  pointer-events: none;
}

.cta-section__heading {
  font-size: clamp(20px, 2.81vw, 36px);
  font-weight: 700;
  color: var(--neutral-0);
  margin-bottom: 20px;
  line-height: 1.4;
}

.cta-section__sub {
  font-size: clamp(16px, 1.875vw, 24px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  line-height: 1.3;
}

.cta-section__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   Desktop heading: 36px bold  sub: 24px semibold
   Mobile  heading: 20px bold  sub: 16px regular
   Input label: 16px semibold
   Submit btn: 70px h / 327px w (desktop) / 56px h / full (mobile)
═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--neutral-0);
  padding-block: var(--section-pad);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.contact__brand {
  display: flex;
  align-items: center;
}

.contact__logo {
  width: clamp(40.62px, 5.7vw, 81.24px);
  height: clamp(42.5px, 5.9vw, 85px);
}

.contact__heading {
  font-size: clamp(20px, 2.81vw, 36px);
  font-weight: 700;
  color: var(--neutral-100);
  line-height: 1.21;
  max-width: 540px;
}

.contact__sub {
  font-size: clamp(16px, 1.875vw, 24px);
  font-weight: 600;
  color: var(--neutral-100);
  line-height: 1.3;
  max-width: 800px;
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.contact-form__field {
  border-bottom: 1px solid #cacaca;
}

.contact-form__field--textarea {
  min-height: 146px;
}

.contact-form__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 7px 7px 21px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-100);
  letter-spacing: var(--letter-spacing);
  resize: none;
}

.contact-form__input::placeholder {
  color: var(--neutral-100);
}

.contact-form__textarea {
  min-height: 146px;
  display: block;
}

.contact-form__submit {
  margin-top: 48px;
  width: 327px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   Desktop: 16px semibold  h 122px  radius 40px
   Mobile:  14px semibold  h  74px  radius 40px
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--main-100);
  padding-block: 48px;
  text-align: center;
  border-radius: 40px 40px 0 0;
}

.footer p {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-100);
  letter-spacing: var(--letter-spacing);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .container { padding-inline: 40px; }

  .feature-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .feature-card > img,
  .feature-card__icon {
    width: 140px;
    height: 140px;
  }

  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid--three { max-width: 100%; grid-template-columns: repeat(3, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__heading { max-width: 100%; }
  .contact__sub { max-width: 100%; }
  .contact-form__submit { width: 100%; }

  .br-desktop { display: none; }
  .br-mobile  { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .container { padding-inline: 20px; }

  /* Buttons — h 56px */
  .btn { padding: 16px 35px; font-size: 20px; }

  /* Nav */
  .nav { padding-block: 16px; }
  .nav__logo img { height: 18.66px; width: 82px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav__links {
    display: flex;
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    z-index: 200;
    padding: 33px 30px 0 30px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s;
  }
  .nav__links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav__menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-left: 12px;
  }
  .nav__menu-logo { height: 18.66px; width: auto; }

  .nav__tab-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .nav__links a {
    font-size: 16px;
    font-weight: 700;
    color: #2e2c28;
    letter-spacing: -0.112px;
    line-height: 22px;
    padding: 12px 16px;
    border-bottom: 2px solid var(--main-100);
    display: block;
    width: 100%;
    transition: background 0.15s ease;
  }
  .nav__links a:active {
    background: #f7e7df;
  }

  .nav__close {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav__close img { filter: none; }
  .nav__close:hover { opacity: 0.7; }

  /* Hero */
  .hero { padding-top: 70px; }
  .hero__heading { font-size: 36px; line-height: normal; margin-bottom: 20px; }
  .hero__sub     { font-size: 20px; line-height: 1.4; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 0; }
  .hero__actions .btn { width: 100%; max-width: 300px; }

  /* Hero mockups — caps match desktop values at 768px to prevent jump at breakpoint */
  .hero__mockups {
    height: clamp(260px, 72vw, 318px);
    margin-top: -88px;
  }
  .hero__mockup--left   { transform: translateX(calc(-50% - min(24vw, 102px))) translateY(clamp(80px, 18vw, 100px)); height: 87%; }
  .hero__mockup--center { transform: translateX(-50%) translateY(clamp(70px, 16vw, 85px)); height: 80%; }
  .hero__mockup--right  { transform: translateX(calc(-50% + min(24vw, 102px))) translateY(clamp(80px, 18vw, 100px)); height: 87%; }

  /* Problem */
  .section-heading { font-size: 24px; line-height: 1.33; }
  .section-body    { font-size: 18px; font-weight: 400; margin-top: 16px; }

  /* Feature cards — single column, center-aligned */
  .feature-cards__grid { grid-template-columns: 1fr; gap: 25px; }
  .feature-card { align-items: center; gap: 20px; }
  .feature-card > img,
  .feature-card__icon {
    width: 96px;
    height: 96px;
    padding: 0;
    border-radius: 0;
    border-width: 4px;
  }
  .feature-card__title { font-size: 20px; letter-spacing: -0.16px; }
  .feature-card__body  { font-size: 18px; font-weight: 400; line-height: 1.33; }

  /* Feature detail — media on top, text below */
  .carousel__slide {
    flex-direction: column;
    gap: 28px;
    padding-block: 0 40px;
  }
  .feature-detail__media {
    order: 1;
    margin-inline: 60px;
    aspect-ratio: 9 / 16;
  }
  .feature-detail__text { order: 2; }
  .feature-detail__heading { font-size: 20px; letter-spacing: -0.2px; }
  .feature-detail__body    { font-size: 18px; letter-spacing: -0.7px; }
  .feature-detail__list    { padding-left: 21px; }
  .feature-detail__list li { font-size: 18px; letter-spacing: -0.7px; }

  /* Carousel dots */
  .carousel__dots { margin-top: 24px; }

  /* Team */
  .team__heading { font-size: 20px; line-height: 1.4; gap: 8px; margin-bottom: 40px; }
  .team__logo    { height: 18px; }
  .team__grid    { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .team__grid--three { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .team__grid--three .team__member:last-child { grid-column: 1 / -1; justify-self: center; }
  .team__name    { font-size: 16px; }
  .team__role    { font-size: 14px; }
  .team__icon { width: 24px; height: auto; }
  .badge         { font-size: 16px; }

  /* CTA */
  .cta-section__chair { right: 0; }
  .cta-section        { padding-block: 100px 130px; }
  .cta-section__heading { font-size: 24px; line-height: 1.4; }
  .cta-section__sub     { font-size: 18px; font-weight: 400; }
  .cta-section__actions { flex-direction: column; align-items: center; gap: 16px; }
  .cta-section .btn--white { width: 100%; max-width: 260px; }

  /* Contact */
  .contact__grid   { gap: 40px; }
  .contact__left   { align-items: stretch; text-align: center; max-width: 320px; margin-inline: auto; padding-inline: 16px; }
  .contact__right  { padding-inline: 8px; }
  .contact__brand  { justify-content: center; }
  .contact__heading { font-size: 20px; }
  .contact__sub    { font-size: 18px; font-weight: 400; }
  .contact-form__input { font-size: 18px; padding-bottom: 32px; }
  .contact-form__field--textarea { min-height: 127px; }
  .contact-form__textarea { min-height: 127px; }
  .contact-form__submit { width: 100%; margin-top: 33px; }

  /* Footer */
  .footer { padding-block: 25px; border-radius: 40px 40px 0 0; }
  .footer p { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding-inline: 2rem; }

  .hero__mockups { height: clamp(220px, 68vw, 280px); }

  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .team__grid--three { grid-template-columns: repeat(2, 1fr); }

}
