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

:root {
  --teal: #00B4B3;
  --teal-lt: #E0F7F7;
  --teal-dk: #007A7A;
  --violet: #6B2FA0;
  --violet-lt: #F0E8FA;
  --violet-dk: #4A1F72;
  --gold: #E8960C;
  --gold-lt: #FEF3DC;
  --ink: #1C1035;
  --ink2: #4A3D63;
  --ink3: #8B7FA8;
  --cream: #FDFBFF;
  --surface: #F5F0FC;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --pad-x: clamp(20px, 5vw, 80px);
  --section-py: clamp(48px, 8vw, 96px);
  --radius-card: 16px;
  --radius-pill: 50px;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.s-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: calc(11px * 1.065);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dk);
  margin-bottom: 12px;
}
.s-chip::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}
.s-chip--violet { color: var(--violet); }
.s-chip--white { color: var(--teal); }

.s-title {
  font-family: var(--font-display);
  font-size: calc(clamp(26px, 4vw, 48px) * 1.065);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
}
.s-title em { font-style: italic; color: var(--violet); }
.s-title--white { color: #fff; }
.s-title--white em { color: #9FE1CB; }

.s-body {
  font-size: calc(clamp(14px, 1.5vw, 16px) * 1.065);
  line-height: 1.75;
  color: var(--ink2);
  max-width: 560px;
}
.s-body--white { color: rgba(255,255,255,0.55); }

.btn {
  display: inline-block;
  text-align: center;
  font-family: var(--font-body);
  font-size: calc(14px * 1.065);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--teal { background: var(--teal); color: var(--ink); }
.btn--white { background: #fff; color: var(--violet); }
.btn--ghost-white { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); }
.btn--ghost-violet { background: transparent; border: 1.5px solid var(--violet); color: var(--violet); }
.btn--ghost-violet:hover { background: var(--violet); color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,47,160,0.07);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__brand img {
  height: 38px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
@media (min-width: 768px) {
  .nav__brand img { height: 75px; }
}
.nav--scrolled .nav__brand img { height: 43px; }

.nav__links {
  display: none;
  list-style: none;
  gap: 32px;
}
.nav__links a {
  font-size: calc(13px * 1.065);
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: calc(11px * 1.065 * 1.12 * 1.12);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--teal-dk); }
.nav__cta { font-size: calc(13px * 1.065); padding: 10px 20px; white-space: nowrap; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* Mobile nav drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid rgba(107,47,160,0.07);
  padding: 8px 0;
}
.nav__drawer a {
  display: block;
  padding: 12px var(--pad-x);
  font-size: calc(14px * 1.065);
  color: var(--ink2);
  text-decoration: none;
  border-bottom: 1px solid rgba(107,47,160,0.05);
}
.nav__drawer-cta {
  color: var(--teal-dk);
  font-weight: 500;
}
.nav__drawer--open { display: flex; }

/* Mobile nav - hide main CTA, show in drawer */
@media (max-width: 767px) {
  .nav__cta {
    display: none;
  }
  
  .nav__drawer-cta {
    display: block !important;
    background: var(--teal);
    color: white !important;
    font-weight: 600;
    padding: 14px 16px !important;
    margin: 12px;
    border-radius: 8px;
    text-align: center;
    border-bottom: none !important;
  }
}

@media (min-width: 768px) {
  .nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  .nav__brand { justify-self: start; }
  .nav__links { display: flex; }
  .nav__cta { justify-self: end; }
  .nav__hamburger { display: none; }
  .nav__drawer { display: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--violet-dk);
  padding: clamp(48px, 8vw, 100px) var(--pad-x) clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(0,180,179,0.15);
  bottom: -180px; left: -120px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  top: -80px; right: 10%;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Mobile: stacked */
.hero__content { max-width: 640px; }

.hero__chip {
  display: inline-flex;
  align-items: center;
  background: rgba(0,180,179,0.18);
  border: 1px solid rgba(0,180,179,0.35);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hero__chip-text {
  font-size: calc(11px * 1.065);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: calc(clamp(34px, 5.5vw, 53px) * 1.0);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
.hero__headline em { font-style: italic; color: #9FE1CB; }
@media (max-width: 767px) {
  .hero__headline { font-size: calc(clamp(34px, 5.5vw, 53px) * .92); }
}

.hero__sub {
  font-size: calc(clamp(15px, 1.5vw, 18px) * 1.065);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__sub strong { color: rgba(255,255,255,0.9); font-weight: 500; }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.hero__trust-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero__trust-item:last-child { border-right: none; }
.hero__trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: calc(clamp(22px, 3vw, 32px) * 1.065);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__trust-label {
  display: block;
  font-size: calc(11px * 1.065);
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* Desktop: side by side with photo */
.hero__visual {
  display: none;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  align-self: flex-end;
}

/* Mobile: photo below trust stats */
@media (max-width: 899px) {
  .hero__visual {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
}

@media (min-width: 900px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 48px;
    align-items: flex-end;
  }
  .hero__ctas { flex-direction: row; }
  .hero__visual { display: flex; }
}

.hero__photo-wrap {
  position: relative;
  width: 494px;
  flex-shrink: 0;
}
.hero__photo-arc {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 442px; height: 442px;
  border-radius: 50% 50% 0 0;
  background: rgba(0,180,179,0.1);
  border: 1px solid rgba(0,180,179,0.2);
  border-bottom: none;
}
.hero__photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 468px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(0,180,179,0.15));
}

.hero__photo-pill {
  position: absolute;
  z-index: 3;
  background: rgba(20,10,40,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  white-space: nowrap;
}
.hero__photo-pill--1 { top: 28%; left: -31px; }
.hero__photo-pill--2 { bottom: 28%; right: -21px; }
.hero__photo-pill strong {
  display: block;
  font-size: calc(14px * 1.065);
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  line-height: 1.2;
}
.hero__photo-pill span {
  font-size: calc(10px * 1.065);
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__photo-seal {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 4;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 1px solid rgba(232, 150, 12, 0.48);
  background: radial-gradient(circle at 35% 30%, rgba(255, 238, 206, 0.42), rgba(232, 150, 12, 0.84));
  box-shadow: 0 12px 30px rgba(20, 10, 40, 0.35);
  display: grid;
  place-content: center;
  text-align: center;
  backdrop-filter: blur(4px);
  padding: 10px 8px;
}

.hero__photo-seal strong {
  display: block;
  font-size: calc(13px * 1.065);
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}

.hero__photo-seal span {
  display: block;
  font-size: calc(11.5px * 1.065);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* Mobile hero photo overrides (placed after base rules to win cascade) */
@media (max-width: 899px) {
  .hero { padding-bottom: 0; }
  .hero__visual { margin-top: 28px; }
  .hero__photo-wrap { width: 100%; }
  .hero__photo-arc,
  .hero__photo-pill { display: none; }
  .hero__photo-seal { right: auto; left: 10px; }
  .hero__photo { max-width: 100%; margin: 0; }
}

/* VIDEO SECTION */
.video-section {
  background: var(--surface);
  padding: var(--section-py) var(--pad-x);
}
.video-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.video-section__layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}
@media (min-width: 768px) {
  .video-section__layout {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
.video-section__text { flex: 1; }
.video-section__text .s-body { max-width: 480px; margin-bottom: 24px; }

.video-wrap {
  flex: 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  border: 1px solid rgba(107,47,160,0.12);
  box-shadow: 0 24px 60px rgba(107,47,160,0.12);
}
.video-wrap video {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.video-wrap__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,16,53,0.35);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.video-wrap__overlay:hover { background: rgba(26,16,53,0.15); }
.video-wrap__overlay.hidden { display: none; }
.play-btn {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(28px * 1.065);
  color: var(--violet);
  transition: transform 0.2s;
}
.video-wrap__overlay:hover .play-btn { transform: scale(1.08); }

/* ============================================================
   EXPERIENCE BAR
   ============================================================ */
.exp-bar {
  background: var(--ink);
  padding: 28px var(--pad-x);
}
.exp-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.exp-bar__label {
  font-size: calc(10px * 1.065);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.exp-bar__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .exp-bar__items { grid-template-columns: repeat(4, 1fr); }
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  cursor: default;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.exp-item:hover {
  background: rgba(232,150,12,0.12);
  border-color: rgba(232,150,12,0.4);
  transform: translateY(-2px);
}
.exp-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,180,179,0.12);
  border: 1px solid rgba(0,180,179,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: calc(20px * 1.065);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.exp-item:hover .exp-item__icon {
  background: rgba(232,150,12,0.18);
  border-color: rgba(232,150,12,0.45);
  color: var(--gold);
}
.exp-item__text strong {
  display: block;
  font-size: calc(12px * 1.065);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  margin-bottom: 3px;
  transition: color 0.25s ease;
}
.exp-item:hover .exp-item__text strong {
  color: #fff;
}
.exp-item__text span {
  font-size: calc(11px * 1.065);
  color: rgba(255,255,255,0.35);
  transition: color 0.25s ease;
}
.exp-item:hover .exp-item__text span {
  color: rgba(232,150,12,0.75);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { padding: var(--section-py) var(--pad-x); }
.problem-section__inner { max-width: var(--max-w); margin: 0 auto; }
.problem-section__header {
  margin-bottom: clamp(28px, 4vw, 48px);
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.problem-section__header-copy {
  max-width: 600px;
}

.problem-section__header-visual {
  width: 100%;
  max-width: 680px;
}

.problem-section__header-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.problem-mind-svg .mind-zone {
  transition: filter 0.22s ease;
}

.problem-mind-svg .mind-hit {
  cursor: pointer;
}

.problem-mind-svg.is-interacting .mind-zone {
  filter: saturate(0.7) brightness(0.75);
}

.problem-mind-svg.is-interacting .mind-zone.is-active {
  filter: saturate(1.08) brightness(1.08);
}

@media (min-width: 992px) {
  .problem-section__header {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 680px);
  }

  .problem-section__header-visual {
    justify-self: end;
  }
}

@media (max-width: 767px) {
  .problem-section__header-visual {
    width: 100%;
    max-width: 680px;
  }

  .problem-section .s-chip {
    font-size: calc(11px * 1.065 * 1.03);
  }

  .problem-section .s-title {
    font-size: calc(clamp(26px, 4vw, 48px) * 1.065 * 1.03);
  }

  .problem-section .s-body {
    font-size: calc(clamp(14px, 1.5vw, 16px) * 1.065 * 1.03);
  }

  .problem-section .prob-card h3 {
    font-size: calc(clamp(14px, 1.5vw, 17px) * 1.065 * 1.03);
  }

  .problem-section .prob-card p {
    font-size: calc(clamp(12px, 1.1vw, 14px) * 1.065 * 1.03);
  }
}

.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .prob-grid { grid-template-columns: repeat(4, 1fr); }
}

.prob-card {
  background: var(--white);
  border: 1px solid rgba(107,47,160,0.1);
  border-radius: var(--radius-card);
  padding: clamp(16px, 2vw, 24px);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.prob-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(107,47,160,0.08);
}
.prob-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
}
.prob-card__icon {
  font-size: calc(22px * 1.065);
  color: var(--violet);
  margin-bottom: 14px;
  display: block;
}
.prob-card__icon--violet { color: var(--violet); }
.prob-card__icon--teal { color: var(--teal-dk); }
.prob-card__icon--gold { color: var(--gold); }
.prob-card h3 {
  font-family: var(--font-display);
  font-size: calc(clamp(14px, 1.5vw, 17px) * 1.065);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.prob-card p {
  font-size: calc(clamp(12px, 1.1vw, 14px) * 1.065);
  line-height: 1.65;
  color: var(--ink3);
}

/* ============================================================
   AWARE METHOD
   ============================================================ */
.aware-section {
  background: var(--ink);
  padding: var(--section-py) var(--pad-x);
}
.aware-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.aware-section__header {
  max-width: 600px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.aware-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .aware-steps {
    flex-direction: row;
    gap: 0;
  }
}

.aware-step {
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.aware-step:hover { background: rgba(0,180,179,0.04); }
.aware-step:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .aware-step {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.05);
    flex: 1;
  }
  .aware-step:last-child { border-right: none; }
}

.aware-step__letter {
  font-family: var(--font-display);
  font-size: calc(clamp(44px, 5vw, 64px) * 1.065);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.aware-step__word {
  font-size: calc(11px * 1.065);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  display: block;
}
.aware-step__desc {
  font-size: calc(13px * 1.065);
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}

/* Mobile: horizontal layout per step */
@media (max-width: 767px) {
  .aware-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .aware-step__letter { width: 44px; flex-shrink: 0; font-size: calc(44px * 1.065); margin-bottom: 0; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--surface);
  padding: var(--section-py) var(--pad-x);
}
.services-section__inner { max-width: var(--max-w); margin: 0 auto; }
.services-section__header { max-width: 600px; margin-bottom: clamp(28px, 4vw, 48px); }

.svc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .svc-cards { flex-direction: row; }
}

.svc-card {
  background: var(--white);
  border: 1px solid rgba(107,47,160,0.09);
  border-radius: var(--radius-card);
  padding: clamp(20px, 2.5vw, 32px);
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(107,47,160,0.09);
}

.svc-card__num {
  font-family: var(--font-display);
  font-size: calc(clamp(32px, 3vw, 48px) * 1.065);
  font-weight: 700;
  color: rgba(107,47,160,0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.svc-card__badge {
  display: inline-block;
  font-size: calc(10px * 1.065);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.badge--teal { background: var(--teal-lt); color: var(--teal-dk); }
.badge--violet { background: var(--violet-lt); color: var(--violet-dk); }
.badge--gold { background: var(--gold-lt); color: #7A4A00; }

.svc-card h3 {
  font-family: var(--font-display);
  font-size: calc(clamp(17px, 1.8vw, 22px) * 1.065);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.svc-card p {
  font-size: calc(clamp(13px, 1.2vw, 15px) * 1.065);
  line-height: 1.7;
  color: var(--ink2);
  flex: 1;
  margin-bottom: 20px;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: calc(13px * 1.065);
  font-weight: 500;
  color: var(--violet);
  text-decoration: none;
  border-bottom: 1px solid rgba(107,47,160,0.2);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.svc-card__link:hover { color: var(--teal-dk); border-color: var(--teal); }

.icon-inline {
  display: inline;
  vertical-align: -1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { padding: var(--section-py) var(--pad-x); }
.testi-section__inner { max-width: var(--max-w); margin: 0 auto; }
.testi-section__header { max-width: 600px; margin-bottom: clamp(28px, 4vw, 48px); }

.testi-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .testi-grid { flex-direction: row; }
}

.testi-card {
  background: var(--white);
  border: 1px solid rgba(107,47,160,0.08);
  border-radius: var(--radius-card);
  padding: clamp(18px, 2.5vw, 28px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testi-card__stars {
  color: var(--gold);
  font-size: calc(13px * 1.065);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.testi-card__quote {
  font-family: var(--font-display);
  font-size: calc(clamp(14px, 1.4vw, 16px) * 1.065);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink2);
  flex: 1;
  margin-bottom: 20px;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--violet-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(12px * 1.065);
  font-weight: 500;
  color: var(--violet-dk);
  flex-shrink: 0;
}
.testi-card__name {
  font-size: calc(13px * 1.065);
  font-weight: 500;
  color: var(--ink);
}
.testi-card__role {
  font-size: calc(11px * 1.065);
  color: var(--ink3);
  margin-top: 2px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: var(--violet);
  padding: clamp(56px, 8vw, 96px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  left: -100px; bottom: -100px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(0,180,179,0.15);
  right: -60px; top: -60px;
  pointer-events: none;
}
.cta-section__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: calc(11px * 1.065);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: calc(clamp(28px, 4vw, 52px) * 1.065);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
}
.cta-title em { font-style: italic; color: #9FE1CB; }
.cta-desc {
  font-size: calc(clamp(14px, 1.4vw, 17px) * 1.065);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 480px) {
  .cta-btns { flex-direction: row; justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  padding: clamp(40px, 5vw, 64px) var(--pad-x) 28px;
}
footer > div {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .footer__top { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 24px; }
}

.footer__logo {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  font-size: calc(13px * 1.065);
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 16px;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer__social-link:hover {
  background: rgba(0,180,179,0.18);
  border-color: rgba(0,180,179,0.4);
  color: var(--teal);
}
.footer__col-head {
  font-size: calc(10px * 1.065);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul a {
  font-size: calc(13px * 1.065);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer__bottom p { font-size: calc(12px * 1.065); color: rgba(255,255,255,0.25); }
.footer__built-by { margin-top: 4px; }
.footer__built-by a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
.footer__built-by a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   FLOATING FOOTER CTA
   ============================================================ */
.floating-footer-cta {
  --floating-footer-bottom: 16px;
  position: fixed;
  left: 50%;
  bottom: var(--floating-footer-bottom);
  transform: translateX(-50%);
  width: min(calc(100% - (var(--pad-x) * 2)), var(--max-w));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(12px, 1.8vw, 18px) clamp(14px, 2vw, 24px);
  border-radius: 14px;
  background: rgba(28, 16, 53, 0.88);
  border: 1px solid rgba(159, 225, 203, 0.24);
  box-shadow: 0 16px 42px rgba(28, 16, 53, 0.28);
  backdrop-filter: blur(10px);
  z-index: 90;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease, bottom 0.3s ease;
}

.floating-footer-cta__toggle {
  position: absolute;
  top: -10px;
  right: 12px;
  border: 1px solid rgba(159, 225, 203, 0.38);
  background: #140a29;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: calc(10px * 1.065);
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
}

.floating-footer-cta__toggle:hover {
  color: #fff;
  border-color: rgba(159, 225, 203, 0.62);
}

.floating-footer-cta__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: calc(clamp(12px, 1.25vw, 14px) * 1.065);
  line-height: 1.5;
  margin: 0;
  flex: 1 1 auto;
  max-width: 780px;
}

.floating-footer-cta__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: calc(12px * 1.065);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--teal);
  border: 1px solid rgba(0, 180, 179, 0.6);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.floating-footer-cta__button:hover {
  background: #1ecfce;
  color: var(--ink);
  opacity: 1;
}

body.is-scrolling .floating-footer-cta {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

.floating-footer-cta.floating-footer-cta--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

.floating-footer-cta.floating-footer-cta--minimized {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

.floating-footer-cta-restore {
  position: fixed;
  right: max(var(--pad-x), 14px);
  bottom: 14px;
  z-index: 91;
  border: 1px solid rgba(159, 225, 203, 0.38);
  background: rgba(20, 10, 41, 0.92);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: calc(11px * 1.065);
  line-height: 1;
  padding: 9px 13px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(16, 8, 33, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-footer-cta-restore.floating-footer-cta-restore--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.is-scrolling .floating-footer-cta-restore,
.floating-footer-cta-restore.floating-footer-cta-restore--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

@media (max-width: 767px) {
  .floating-footer-cta {
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
  }

  .floating-footer-cta__button {
    width: 100%;
  }

  .floating-footer-cta__toggle {
    top: -12px;
    right: 10px;
  }
}

/* ============================================================
   ANIMATIONS — fade up on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   MISC
   ============================================================ */
::selection { background: rgba(107,47,160,0.18); color: var(--violet-dk); }

/* ============================================================
   LANDSCAPE MOBILE — phones/small tablets rotated
   Targets devices with limited height (≤680px) at ≥600px wide
   ============================================================ */
@media (min-width: 600px) and (max-height: 680px) {
  /* Nav: shrink logo and tighten up */
  .nav__brand img { height: 40px !important; }
  .nav__inner { padding-top: 8px; padding-bottom: 8px; }
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 11.5px; }
  .nav__cta { padding: 7px 14px; font-size: 12px; white-space: nowrap; }

  /* Hero: reduce vertical padding so content shows above fold */
  .hero { padding-top: clamp(24px, 4vh, 40px); padding-bottom: clamp(20px, 3vh, 32px); }
  .hero__headline { font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
  .hero__sub { font-size: 14px; margin-bottom: 18px; line-height: 1.55; }
  .hero__ctas { margin-bottom: 20px; gap: 8px; }
  .hero__trust { padding-top: 16px; }
  .hero__trust-num { font-size: clamp(18px, 2.5vw, 24px); }

  /* Hero side-by-side layout: photo column too wide at ~932px */
  .hero__inner { grid-template-columns: 1fr 340px; gap: 28px; }
  .hero__photo-wrap { width: 320px; }
  .hero__photo-arc { width: 300px; height: 300px; }

  /* Hero visual: keep it from showing in landscape stacked mode */
  @media (max-width: 899px) {
    .hero__visual { margin-top: 20px; }
    .hero__photo-wrap { width: 260px; }
  }

  /* Sections: reduce vertical padding so content isn't cavernous */
  .exp-bar { padding-top: 16px; padding-bottom: 16px; }
  .exp-bar__items { grid-template-columns: repeat(4, 1fr); }

  /* Floating CTA: move up slightly so it doesn't crowd the content */
  .floating-footer-cta { --floating-footer-bottom: 10px; }
}