/* ============================================================
   GymBus — landing page styles
   Brand: bold streetwear, orange + black + cream
   ============================================================ */

:root {
  --orange: #EA5B1F;
  --orange-bright: #FF6B2A;
  --orange-dark: #C44715;
  --black: #0F0F0F;
  --gray-900: #1A1A1A;
  --gray-700: #3A3A3A;
  --gray-500: #6B6863;
  --gray-300: #C9C5BD;
  --gray-200: #E8E4DC;
  --cream: #FAF7F1;
  --white: #FFFFFF;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 12px rgba(0,0,0,.10), 0 24px 60px rgba(0,0,0,.12);

  --container: 1180px;
  --container-narrow: 760px;

  --font-display: "Bebas Neue", "Impact", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }
.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) {
  .container--split { grid-template-columns: 1fr; gap: 32px; }
}

/* ============== Typography ============== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 0.5em;
}
.section__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.3em;
}
.section__lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 0 2.5rem;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin: 0 0 0.5rem;
}
.accent { color: var(--orange); }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s, color .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(234,91,31,.35);
}
.btn--primary:hover { background: var(--orange-bright); border-color: var(--orange-bright); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.section .btn--ghost { color: var(--black); border-color: var(--black); }
.section .btn--ghost:hover { background: var(--black); color: var(--white); }
.section--dark .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.7); }
.section--dark .btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--lg { padding: 18px 32px; font-size: 1.05rem; }

/* ============== Nav ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-200);
}
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}
.nav__links a:hover { color: var(--orange); }
.nav__cta { padding: 10px 18px; font-size: 0.92rem; }
.nav__burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }
  .nav.open .nav__cta {
    display: inline-flex;
    margin: 8px 24px 20px;
    position: absolute;
    top: calc(100% + 260px);
    left: 0; right: 0;
  }
}

/* ============== Hero (split: text + image) ============== */
.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(36px, 5vw, 56px) 24px clamp(36px, 5vw, 56px);
}
.hero__text {
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__text .eyebrow { margin-bottom: 0.7rem; }
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 0.96;
  margin: 0 0 0.4em;
  color: var(--black);
}
.hero__title .accent { color: var(--orange); }
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gray-700);
  max-width: 540px;
  margin: 0 0 22px;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
/* Hero feature marquee (auto-scrolling) */
.hero__marquee {
  margin: 20px 0 20px;
  overflow: hidden;
  position: relative;
}
.hero__marquee::before,
.hero__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  z-index: 2;
}
.hero__marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(250,247,241,0) 100%);
}
.hero__marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream) 0%, rgba(250,247,241,0) 100%);
}
.hero__marquee-track {
  display: flex;
  width: max-content;
  animation: hero-marquee 28s linear infinite;
}
.hero__marquee:hover .hero__marquee-track { animation-play-state: paused; }
.hero__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 0.98rem;
  color: var(--gray-700);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__features li {
  position: relative;
  padding: 0 28px;
}
.hero__features li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-weight: 700;
}
@keyframes hero-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__marquee-track { animation: none; transform: translateX(0); }
}

/* Hero trust section (100+ + testimonial preview) */
.hero__trust {
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  margin-top: 4px;
}
.hero__trust-line {
  margin: 0 0 12px;
  font-size: 0.98rem;
  color: var(--gray-700);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__trust-line strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--orange);
  letter-spacing: 0.03em;
  line-height: 1;
}
.hero__quote {
  margin: 0;
  padding: 12px 16px;
  background: rgba(0,0,0,0.03);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
}
.hero__quote blockquote {
  margin: 0 0 4px;
  font-style: italic;
  color: var(--black);
  font-size: 0.94rem;
  line-height: 1.45;
}
.hero__quote figcaption {
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--gray-500);
  font-style: normal;
}
.hero__media {
  position: relative;
  min-height: 460px;
  align-self: stretch;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: absolute;
  inset: 0;
}

@media (max-width: 880px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 20px 20px 32px;
    align-items: stretch;
  }
  .hero__media {
    aspect-ratio: 16 / 11;
    min-height: 0;
    order: -1;
  }
  .hero__media img { position: relative; }
  .hero__text { justify-content: flex-start; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero__cta .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    width: 100%;
    padding: 16px 22px;
  }
}

/* "Outline" variant for hero CTA on light bg */
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ============== Sections ============== */
.section {
  padding: 72px 0;
}
.section--compact { padding: 48px 0 56px; }
@media (max-width: 700px) {
  .section--compact { padding: 36px 0 40px; }
}

.section--dark {
  background: var(--black);
  color: var(--white);
}
.section--dark .section__lead { color: rgba(255,255,255,.75); }
.section--cream { background: var(--cream); }
@media (max-width: 700px) { .section { padding: 48px 0; } }

/* ============== Process (5-step methodology) ============== */
.eyebrow--center { text-align: center; }
.section__title--center { text-align: center; }
.section__lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.process {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: process;
}
.process__step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  border: 1px solid var(--gray-200);
}
.process__step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}
.process__step--last::after { display: none; }
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.process__title {
  font-size: 1.4rem;
  margin: 0 0 0.4em;
  color: var(--black);
}
.process__step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.process__tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 32px 0 0;
}
/* Process: horizontal swipe carousel below desktop (5 cards need wide screens to feel right) */
@media (max-width: 1000px) {
  .process {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 2px 24px 4px;
    margin: 0 -24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .process::-webkit-scrollbar { display: none; }
  .process__step {
    flex: 0 0 78%;
    min-width: 78%;
    scroll-snap-align: center;
  }
  .process__step::after { display: none; }
}
@media (max-width: 600px) {
  .process__step {
    flex: 0 0 84%;
    min-width: 84%;
  }
}

/* ============== Free trial banner above pricing ============== */
.free-banner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  background: linear-gradient(95deg, var(--orange) 0%, #FF7A3D 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin: 0 0 24px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(234,91,31,.25);
  transition: transform .12s ease, box-shadow .15s;
  flex-wrap: wrap;
}
.free-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(234,91,31,.32);
}
.free-banner__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: 999px;
}
.free-banner__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}
.free-banner__text {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 500;
}
.free-banner__cta {
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 22px;
  background: var(--white);
  color: var(--orange-dark);
  border-radius: 999px;
}
@media (max-width: 700px) {
  .free-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .free-banner__text { flex: none; }
}

/* ============== Tiles ============== */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.tile {
  background: var(--cream);
  padding: 26px 26px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 10px;
  align-items: center;
}
.tile__icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  grid-column: 1;
  grid-row: 1;
}
/* tile__body wraps h3 + p; collapse it so children participate directly in the grid */
.tile__body { display: contents; }
.tile h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.3rem;
  margin: 0;
  color: var(--black);
  line-height: 1.15;
}
.tile p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: var(--gray-700);
  font-size: 0.96rem;
  line-height: 1.55;
}
@media (max-width: 900px) and (min-width: 701px) { .tiles { grid-template-columns: repeat(2, 1fr); } }

/* Tiles: horizontal swipe carousel on smaller screens */
@media (max-width: 700px) {
  .tiles {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 2px 24px 4px;
    margin: 0 -24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tiles::-webkit-scrollbar { display: none; }
  .tile {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: center;
  }
}

/* ============== Schedule (cards: outdoor + Kaizen) ============== */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) {
  .schedule-grid { grid-template-columns: 1fr; }
}

.schedule-card {
  background: var(--gray-900);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
}

.schedule-card__image {
  margin: calc(-1 * clamp(24px, 3vw, 36px));
  margin-bottom: 4px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.schedule-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.schedule-card__head { display: flex; flex-direction: column; gap: 6px; }
.schedule-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
}

.time-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.time-list__row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: baseline;
  column-gap: 16px;
  row-gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.time-list__label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  grid-column: 1;
  grid-row: 1;
}
.time-list__time {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--orange-bright);
  line-height: 1;
  grid-column: 2;
  grid-row: 1 / span 2;
  white-space: nowrap;
}
.time-list__days {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
  grid-column: 1;
  grid-row: 2;
}

.schedule-card__notes {
  margin-top: auto;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 10px;
}
.schedule-card__notes-title {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--orange-bright);
  margin: 0 0 8px;
}
.schedule-card__notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.schedule-card__notes li {
  font-size: 0.95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}
.schedule-card__notes strong { color: var(--white); font-weight: 600; }

.schedule-card__caption {
  margin: auto 0 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  font-style: italic;
}

.schedule-help {
  margin: 28px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}

/* Combo note (Kaizen + outdoor combined) */
.combo-note {
  margin-top: 28px;
  padding: 26px 30px;
  background: var(--cream);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}
.combo-note__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin: 0 0 6px;
}
.combo-note__title {
  font-size: 1.6rem;
  margin: 0 0 0.3em;
  color: var(--black);
}
.combo-note__text p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.98rem;
}
.combo-note__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.combo-note__amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--black);
}
.combo-note__per {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}
.combo-note__btn { white-space: nowrap; }
@media (max-width: 800px) {
  .combo-note { grid-template-columns: 1fr; text-align: center; }
  .combo-note__price { flex-direction: row; gap: 6px; align-items: baseline; }
}

/* ============== Gallery (mosaic on desktop, swipe carousel on mobile) ============== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  margin-top: 8px;
}
.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-200);
  grid-row: span 1;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 800px) {
  .gallery {
    grid-template-columns: none;
    grid-auto-rows: auto;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 2px 24px 4px;
    margin: 0 -24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery__item,
  .gallery__item--tall,
  .gallery__item--wide {
    flex: 0 0 80%;
    min-width: 80%;
    grid-row: auto;
    grid-column: auto;
    scroll-snap-align: center;
    aspect-ratio: 4 / 3;
  }
}

/* ============== Jānis ============== */
.janis__media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.janis__text p { color: var(--gray-700); }
.janis__socials {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.janis__socials a {
  text-decoration: none;
  font-weight: 600;
  color: var(--orange);
  padding: 8px 14px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-size: 0.9rem;
}
.janis__socials a:hover { background: var(--orange); color: var(--white); }

/* ============== Testimonials (horizontal carousel) ============== */
.reviews {
  position: relative;
  margin-top: 8px;
}
.testimonials {
  display: flex;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 8px;
  margin: 0 -4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1000px) {
  .t-card {
    flex-basis: calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 700px) {
  .testimonials {
    gap: 14px;
    padding: 8px 24px 8px;
    margin: 0 -24px;
  }
  .t-card {
    flex-basis: 86%;
    min-width: 86%;
    scroll-snap-align: center;
  }
}

.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
  background: var(--white);
  color: var(--gray-700);
  font-size: 1.8rem;
  line-height: 1;
  font-family: var(--font-display);
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: background .15s ease, color .15s ease, transform .15s ease, opacity .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
}
.reviews__arrow:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.reviews__arrow:active { transform: translateY(-50%) scale(0.96); }
.reviews__arrow--prev { left: -22px; }
.reviews__arrow--next { right: -22px; }
.reviews__arrow[disabled] {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 700px) {
  .reviews__arrow { display: none; }
}

.t-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 52px 28px 24px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 28px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .15s ease, box-shadow .2s;
}
.t-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,.06), 0 18px 44px rgba(0,0,0,.10);
}
.t-card::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 700;
  pointer-events: none;
}
.t-card blockquote {
  margin: 0 0 24px;
  font-size: 1.02rem;
  color: var(--gray-900);
  line-height: 1.65;
  position: relative;
  flex: 1;
}
.t-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--gray-200);
  padding-top: 18px;
  margin-top: auto;
}
.t-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.1;
}
.t-card__detail {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ============== Pricing ============== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.pricing--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .pricing--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) { .pricing, .pricing--four { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.price-card__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin: 0 0 14px;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  color: var(--black);
  line-height: 1;
  margin: 0 0 6px;
}
.price-card__note {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-style: italic;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.price-card__sub {
  color: var(--gray-700);
  margin: 8px 0 24px;
  min-height: 3em;
}
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card { position: relative; }
.price-card .btn { margin-top: auto; }
.price-card--featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card--featured .price-card__label { color: var(--orange-bright); }
.price-card--featured .price-card__price { color: var(--white); }
.price-card--featured .price-card__sub { color: rgba(255,255,255,.7); }
.price-card--free { border-color: var(--orange); }
.price-card--free .price-card__price { color: var(--orange); }
@media (max-width: 800px) { .price-card--featured { transform: none; } }

/* ============== FAQ ============== */
.faq {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0;
  margin: 0 0 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  color: var(--orange);
  transition: transform .2s;
  font-weight: 300;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--gray-700);
}

/* ============== Form ============== */
.form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 600px) { .form { padding: 22px; } }
.form__hp { position: absolute; left: -9999px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.form input, .form select, .form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
  outline: none;
  transition: border-color .15s, background .15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--orange-bright);
  background: rgba(255,255,255,.1);
}
.form select option { background: var(--gray-900); color: var(--white); }
.form select optgroup { color: var(--orange-bright); font-weight: 700; }
.form__submit { margin-top: 8px; }
.form__or {
  text-align: center;
  color: rgba(255,255,255,.5);
  margin: 8px 0;
  font-size: 0.9rem;
}
.form__wa {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}
.form__wa:hover { background: #1FBA57; border-color: #1FBA57; }

/* ============== Footer ============== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
  font-size: 0.94rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
}
.footer__col p { margin: 0 0 8px; }
.footer__col a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer__col a:hover { color: var(--orange-bright); }
.footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.footer__logo img { height: 44px; width: auto; opacity: .9; }

/* ============== Carousel dots ============== */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, width .15s ease;
}
.carousel-dots button:hover { background: var(--gray-500); }
.carousel-dots button[aria-current="true"] {
  background: var(--orange);
  width: 22px;
  border-radius: 999px;
}
.section--dark .carousel-dots button { background: rgba(255,255,255,.25); }
.section--dark .carousel-dots button:hover { background: rgba(255,255,255,.5); }
.section--dark .carousel-dots button[aria-current="true"] { background: var(--orange); }

/* Only show dots at the breakpoint where each carousel is in scroll mode */
@media (max-width: 700px) {
  .tiles + .carousel-dots { display: flex; }
}
@media (max-width: 1000px) {
  .process + .carousel-dots { display: flex; }
}
@media (max-width: 800px) {
  .gallery + .carousel-dots { display: flex; }
}
@media (max-width: 700px) {
  .testimonials + .carousel-dots { display: flex; }
}

/* ============== Inline section CTA ============== */
.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
  text-align: center;
}
.section-cta__line {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--gray-700);
  text-transform: uppercase;
}
.section--dark .section-cta { border-top-color: rgba(255,255,255,.15); }
.section--dark .section-cta__line { color: rgba(255,255,255,.78); }
.section--cream .section-cta { border-top-color: var(--gray-300); }
@media (max-width: 540px) {
  .section-cta { gap: 14px; margin-top: 40px; padding-top: 28px; }
  .section-cta__line { font-size: 1.15rem; }
}

/* ============== Hero WhatsApp hint ============== */
.hero__wa-hint {
  margin: 16px 0 36px;
  font-size: 0.95rem;
  color: var(--gray-500);
}
.hero__wa-hint a {
  color: #1FAA52;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(31,170,82,.3);
  padding-bottom: 1px;
}
.hero__wa-hint a:hover { border-bottom-color: #1FAA52; }

/* ============== Form reassurance strip ============== */
.assurances {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.assurances li {
  position: relative;
  padding-left: 26px;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}
.assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 50%;
  background: var(--orange);
  background-image: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
}
.assurances li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 8px;
  height: 4px;
  margin-top: -3px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

/* ============== Sticky mobile CTA ============== */
.sticky-cta {
  display: none;
}
@media (max-width: 800px) {
  .sticky-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 60;
    background: var(--orange);
    background-image: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(234,91,31,.45), 0 2px 6px rgba(0,0,0,.18);
    transition: transform .2s ease, opacity .2s ease;
  }
  .sticky-cta__arrow { font-size: 1.2rem; line-height: 1; }
  .sticky-cta--hidden {
    transform: translateY(160%);
    opacity: 0;
    pointer-events: none;
  }
  /* Make sure footer / form section has breathing room above the floating button */
  body { padding-bottom: 80px; }
}

/* ============== Footer CTA column ============== */
.footer__col--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer__nudge {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin: 0;
}
@media (max-width: 700px) {
  .footer__col--cta { align-items: flex-start; }
}

/* ============== Reduce motion ============== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
