/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --canvas:        #ffffff;
  --surface-soft:  #fbfbf9;
  --surface-card:  #f6f6f3;
  --secondary-bg:  #e5e5e0;
  --surface-dark:  #262622;
  --hairline:      #dadad3;
  --primary:       #e60023;
  --primary-hover: #cc001f;
  --ink:           #000000;
  --body:          #33332e;
  --mute:          #62625b;
  --ash:           #91918c;

  --r-md: 16px;
  --r-lg: 32px;

  --font-body:    'Inter', -apple-system, system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Manrope', system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background-color: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.wrap {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-pad { padding-top: 64px; padding-bottom: 64px; }
@media (max-width: 767px) { .section-pad { padding-top: 48px; padding-bottom: 48px; } }

/* ── Typography ────────────────────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--ink);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--ink);
}

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.2px;
}

.heading-md {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.text-base  { font-size: 16px; }
.text-sm    { font-size: 14px; }
.text-xs    { font-size: 12px; }
.text-ink   { color: var(--ink); }
.text-body  { color: var(--body); }
.text-mute  { color: var(--mute); }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.leading-relaxed { line-height: 1.65; }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* ── Button ────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.12s ease;
  min-height: 48px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover  { background-color: var(--primary-hover); color: #fff; }
.btn-primary:active { background-color: var(--primary-hover); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary--sm   { font-size: 13px; padding: 10px 20px; min-height: 40px; }
.btn-primary--lg   { font-size: 16px; padding: 16px 32px; }
.btn-primary--full { width: 100%; }

/* ── Form ──────────────────────────────────────────────────────────────────── */
.field-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.field {
  width: 100%;
  background-color: #fff;
  color: var(--ink);
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid var(--ash);
  border-radius: var(--r-md);
  padding: 11px 15px;
  min-height: 44px;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.field::placeholder { color: var(--ash); }
.field:focus {
  border-color: var(--ink);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(67, 94, 229, 0.18);
  padding: 10px 14px;
}
textarea.field { resize: none; }

.form-group { display: flex; flex-direction: column; }

/* ── Animations ────────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
              transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.fade-in.from-left  { transform: translateX(-24px); }
.fade-in.from-right { transform: translateX(24px); }
.fade-in.in-view    { opacity: 1; transform: translate(0, 0); }

/* ── Check Circle ──────────────────────────────────────────────────────────── */
.check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* HEADER                                                                       */
/* ─────────────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: var(--canvas);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header--scrolled {
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 1px 0 var(--hairline);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.site-header__brand {
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* FOOTER                                                                       */
/* ─────────────────────────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--canvas);
  border-top: 1px solid var(--hairline);
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.site-footer__brand {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
  font-size: 14px;
  color: var(--mute);
}
.site-footer__links a:hover { color: var(--ink); transition: color 0.15s; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* HERO SECTION                                                                 */
/* ─────────────────────────────────────────────────────────────────────────── */
.hero-section {
  background-color: var(--surface-soft);
  padding-top: 128px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
  }
}
.hero-eyebrow { margin-bottom: 24px; }
.hero-headline { margin-bottom: 24px; }
.hero-body-1 {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 16px;
}
.hero-body-2 {
  font-size: 16px;
  color: var(--mute);
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 640px) {
  .hero-cta-row {
    flex-direction: row;
    align-items: center;
  }
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--mute);
}
.trust-badge svg { color: var(--primary); flex-shrink: 0; }

.hero-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
}
@media (min-width: 768px) {
  .hero-image-wrap { aspect-ratio: 4 / 3; }
}
@media (min-width: 1024px) {
  .hero-image-wrap { aspect-ratio: 1 / 1; }
}
.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hero-image-frame:hover img { transform: scale(1.05); }
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* PROBLEM SECTION                                                              */
/* ─────────────────────────────────────────────────────────────────────────── */
.problem-section {
  background-color: var(--surface-card);
  padding-top: 64px;
  padding-bottom: 64px;
}
.problem-inner { max-width: 672px; }
.problem-heading { margin-bottom: 16px; color: var(--ink); }
.problem-intro {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 32px;
}
.problem-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--body);
}
.problem-outro {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 40px;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* TESTIMONIAL SECTION                                                          */
/* ─────────────────────────────────────────────────────────────────────────── */
.testimonial-section {
  background-color: var(--canvas);
  padding-top: 64px;
  padding-bottom: 64px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .heading-xl { color: var(--ink); margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--mute); }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background-color: var(--surface-card);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.quote-icon  { color: var(--primary); margin-bottom: 20px; }
.star-row    { display: flex; gap: 4px; margin-bottom: 16px; }
.star-icon   { color: var(--primary); }
.t-headline  { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.55; margin-bottom: 8px; font-style: italic; }
.t-body      { font-size: 14px; color: var(--body); line-height: 1.65; margin-bottom: 32px; flex-grow: 1; }
.t-author    { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.t-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.t-role { font-size: 14px; color: var(--mute); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* VISION SECTION                                                               */
/* ─────────────────────────────────────────────────────────────────────────── */
.vision-section {
  background-color: var(--surface-soft);
  padding-top: 64px;
  padding-bottom: 64px;
}
.vision-inner { max-width: 672px; }
.vision-heading { color: var(--ink); margin-bottom: 32px; }
.vision-list   { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.vision-item   { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--body); }
.vision-outro  { font-size: 16px; color: var(--body); line-height: 1.65; margin-bottom: 40px; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* STEPS SECTION                                                                */
/* ─────────────────────────────────────────────────────────────────────────── */
.steps-section {
  background-color: var(--canvas);
  padding-top: 64px;
  padding-bottom: 64px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  background-color: var(--surface-card);
  border-radius: var(--r-md);
  padding: 32px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
}
.step-title { margin-bottom: 12px; color: var(--ink); }
.step-body  { font-size: 14px; color: var(--body); line-height: 1.65; }
.steps-cta  { text-align: center; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ABOUT SECTION                                                                */
/* ─────────────────────────────────────────────────────────────────────────── */
.about-section {
  background-color: var(--surface-card);
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-eyebrow { margin-bottom: 16px; }
.about-heading { color: var(--ink); margin-bottom: 24px; }
.about-body    { display: flex; flex-direction: column; gap: 16px; font-size: 16px; color: var(--body); line-height: 1.65; margin-bottom: 40px; }
.about-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
}
@media (min-width: 768px) { .about-img-wrap { aspect-ratio: 4 / 3; } }
@media (min-width: 1024px) { .about-img-wrap { aspect-ratio: 1 / 1; } }
.about-img-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
}
.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img-frame:hover img { transform: scale(1.05); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* WORK SECTION                                                                 */
/* ─────────────────────────────────────────────────────────────────────────── */
.work-section {
  background-color: var(--surface-soft);
  padding-top: 64px;
  padding-bottom: 64px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
.work-card {
  background-color: var(--canvas);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.work-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.work-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--surface-soft);
  position: relative;
}
.work-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.work-card:hover .work-card__thumb img { transform: scale(1.05); }
.work-card__body  { padding: 24px 32px 32px; display: flex; flex-direction: column; gap: 16px; flex-grow: 1; }
.work-card__top   { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.work-card__title { color: var(--ink); }
.work-card__tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
  background-color: var(--surface-card);
  border-radius: 999px;
  padding: 4px 12px;
  margin-top: 2px;
  white-space: nowrap;
}
.work-card__details { display: flex; flex-direction: column; gap: 8px; }
.work-card__detail, .work-card__result { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--body); }
.work-card__detail svg { color: var(--mute); flex-shrink: 0; margin-top: 2px; }
.work-card__result svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.work-cta { text-align: center; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* DARK CTA STRIP                                                               */
/* ─────────────────────────────────────────────────────────────────────────── */
.cta-strip {
  background-color: var(--surface-dark);
  padding-top: 80px;
  padding-bottom: 80px;
}
.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 768px) {
  .cta-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-strip__heading { color: #fff; margin-bottom: 12px; }
.cta-strip__sub     { font-size: 16px; color: var(--ash); line-height: 1.65; }
.cta-strip__btn     { flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* FAQ SECTION                                                                  */
/* ─────────────────────────────────────────────────────────────────────────── */
.faq-section {
  background-color: var(--canvas);
  padding-top: 64px;
  padding-bottom: 64px;
}
.faq-list {
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}
.faq-item {
  background-color: var(--surface-card);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s;
}
.faq-btn:hover { background-color: var(--secondary-bg); }
.faq-question { font-size: 16px; font-weight: 600; color: var(--ink); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
  color: var(--mute);
  transition: transform 0.2s ease;
}
.faq-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.28s cubic-bezier(0.16,1,0.3,1),
              opacity 0.28s cubic-bezier(0.16,1,0.3,1);
}
.faq-body-inner { padding: 0 24px 24px; }
.faq-body-inner p { font-size: 16px; color: var(--body); line-height: 1.65; }
.faq-cta { text-align: center; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* BOOKING PAGE                                                                 */
/* ─────────────────────────────────────────────────────────────────────────── */
.booking-page {
  background-color: var(--surface-soft);
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
}
.booking-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.booking-header .heading-xl { color: var(--ink); margin-bottom: 12px; }
.booking-header p { font-size: 16px; color: var(--mute); }
.booking-card {
  max-width: 768px;
  margin: 0 auto 48px;
  background-color: var(--canvas);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--hairline);
}
@media (max-width: 640px) {
  .booking-card { padding: 24px; border-radius: var(--r-md); }
}
.booking-form { display: flex; flex-direction: column; gap: 24px; }
.issues-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.checkbox-label, .radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--body);
}
input[type="checkbox"],
input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.radio-row {
  display: flex;
  gap: 32px;
  margin-top: 4px;
}
.agree-box {
  background-color: var(--surface-card);
  border-radius: var(--r-md);
  padding: 16px;
}
.agree-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
}
.agree-label input { margin-top: 3px; }
.trust-bar {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--mute);
}
.trust-bar-item svg { color: var(--primary); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* THANK YOU PAGE                                                               */
/* ─────────────────────────────────────────────────────────────────────────── */
.thankyou-page {
  background-color: var(--surface-soft);
  min-height: 100vh;
  padding-top: 128px;
  padding-bottom: 80px;
}
.thankyou-inner {
  max-width: 672px;
  margin: 0 auto;
  text-align: center;
}
.thankyou-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.thankyou-heading { margin-bottom: 16px; }
.thankyou-body1   { font-size: 16px; color: var(--body); line-height: 1.65; margin-bottom: 12px; }
.thankyou-body2   { font-size: 16px; color: var(--mute); margin-bottom: 40px; }
.video-placeholder {
  background-color: var(--surface-card);
  border-radius: var(--r-lg);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  border: 1px solid var(--hairline);
}
.video-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-color: var(--surface-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.video-placeholder p { font-size: 14px; color: var(--mute); }
