@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1923;
  --navy2: #0f2030;
  --navy3: #0d1f2d;
  --gold: #c8a028;
  --gold-lt: #e8c84a;
  --cream: #ede8dc;
  --steel: #7a9aa8;
  --sep: #1e3040;
  --text: #9eadb5;

  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-heading: "Playfair Display", serif;
  --font-mono: "Fira Code", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  visibility: hidden;
}

/* ── TOP BAR ────────────────────────────────────────────── */
.topbar {
  height: 4px;
  background: var(--gold);
  width: 100%;
}

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  /* top: 4px; */
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: rgba(11, 25, 35, 0.97);
  border-bottom: 1px solid var(--sep);
}

.nav-brand {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 53px;
  left: 0;
  right: 0;
  background: rgba(11, 25, 35, 0.98);
  border-bottom: 1px solid var(--sep);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  color: var(--steel);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--sep);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu.open {
  display: flex;
}

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px 40px;
  border-bottom: 1px solid var(--sep);
  position: relative;
}

.hero-headline {
  font-family: var(--font-primary);
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 400;
  color: var(--steel);
  letter-spacing: 1px;
  margin-bottom: 16px;
  max-width: 720px;
}

.hero-headline em {
  color: var(--cream);
  font-style: normal;
}

.hero-headline h1 {
  font-size: 25px;
  line-height: 40px;
  font-weight: 300;
  margin-top: 30px;
}

.hero-headline h2 {
  font-size: 29px;
  line-height: 58px;
  font-weight: 300;
  color: #fffac0;
}

.chain-mark {
  margin-bottom: 12px;
}

.chain-mark img {
  width: 740px;
  margin-top: 20px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 12px;
}

.hero-rule {
  width: min(600px, 75vw);
  height: 1px;
  background: var(--gold);
  margin: 0 auto 12px;
}

.hero-tagline {
  font-family: var(--font-primary);
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-sub {
  font-size: 18px;
  color: var(--steel);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 400;
  margin-top: 10px;
}

/* ── GUT CHECK ───────────────────────────────────────────── */
.gutcheck-wrap {
  width: min(880px, 92vw);
  border: 1px solid var(--sep);
  border-top: 3px solid var(--gold);
  padding: 42px 46px 38px;
  background: var(--navy2);
  text-align: left;
  margin: auto;
}

.gutcheck-eyebrow {
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.gutcheck-bridge {
  font-family: var(--font-primary);
  font-size: 23px;
  color: var(--steel);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.progress-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 26px;
}

.prog-seg {
  height: 2px;
  flex: 1;
  background: var(--sep);
  transition: background 0.4s;
}

.prog-seg.done {
  background: var(--gold);
}

.q-text {
  font-family: var(--font-primary);
  font-size: clamp(20px, 3vw, 27px);
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 26px;
  min-height: 40px;
}

.q-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.q-opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 18px;
  border: 1px solid var(--sep);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  font-size: 16.5px;
  color: var(--text);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

.q-opt:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.q-opt.sel {
  border-color: var(--gold);
  background: rgba(200, 160, 40, 0.07);
  color: var(--cream);
}

.opt-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--steel);
  flex-shrink: 0;
  margin-top: 3px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.q-opt.sel .opt-dot {
  background: var(--gold);
  border-color: var(--gold);
}

.q-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.q-btn:hover {
  background: var(--gold-lt);
}

.q-btn:disabled {
  background: var(--sep);
  color: var(--steel);
  cursor: default;
}

/* ── RESULT ──────────────────────────────────────────────── */
#quiz-panel {
  display: block;
}

.result-panel {
  display: none;
  text-align: center;
  padding: 10px 0;
}

.result-glyph {
  font-family: var(--font-primary);
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.result-title {
  font-family: var(--font-primary);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}

.result-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.result-cta {
  display: inline-block;
  padding: 14px 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.result-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── SCROLL HINT ─────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--sep);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

/* ── ABOUT + SERVICES ────────────────────────────────────── */
#about-services {
  padding: 100px 0px 20px 0px;
  border-bottom: 1px solid var(--sep);
}

#about-col {
  max-width: 100%;
  margin: 0 0 36px;
  padding: 0 60px;
}

#services-col {
  max-width: 95%;
  padding: 0 60px;
}

#contact > .content-wrap {
  padding: 0 60px;
}

.eyebrow {
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  margin-top: 50px;
}

.sec-title {
  font-family: var(--font-primary);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 22px;
}

.about-body {
  font-size: 16.5px;
  color: var(--text);
  line-height: 25px;
  margin-bottom: 10px;
}

.about-body + .about-body {
  margin-top: 16px;
}

.pull-quote {
  font-family: var(--font-primary);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.5;
}

.credentials {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(200, 160, 40, 0.04);
  display: flex;
}

.cred-inline {
  font-family: var(--font-primary);
  font-size: clamp(15px, 1.8vw, 19px);
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 2;
  font-weight: 400;
}

.cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  color: var(--steel);
}

.cred::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}

/* ── SERVICE CARDS ───────────────────────────────────────── */
.services-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.service-card {
  border: 1px solid var(--sep);
  /* border-top: 2px solid var(--gold); */
  padding: 30px 26px;
  transition: border-color 0.25s;
  max-width: 640px;
}

.service-card.hero-card {
  border-color: rgba(200, 160, 40, 0.3);
  /* background: rgba(200, 160, 40, 0.03); */
}

.service-card:hover {
  border-color: var(--gold);
}

.s-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.s-name {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.s-desc {
  font-size: 14.5px;
  color: var(--text);
  line-height: 20px;
  margin-bottom: 6px;
}

.s-note {
  font-size: 13px;
  color: var(--steel);
  font-style: italic;
  margin-bottom: 18px;
}

.s-details {
  font-size: 13px;
  color: var(--steel);
  letter-spacing: 1px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.s-details span::before {
  content: "·";
  color: var(--gold);
  margin-right: 6px;
}

.pricing-tiers {
  border-top: 1px solid var(--sep);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tier {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tier-label {
  font-size: 17px;
  color: #ffffff;
  letter-spacing: 1px;
  font-weight: 500;
}

.tier-micro {
  font-size: 12px;
  color: #94afc8;
  font-style: italic;
  margin-top: 3px;
  max-width: 240px;
  line-height: 1.5;
}

.tier-price {
  font-family: var(--font-primary);
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.tier-save {
  font-size: 10px;
  color: var(--gold);
  text-align: right;
  margin-top: 2px;
  border: 1px solid var(--gold);
  padding: 2px 7px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact {
  padding: 100px 0;
  display: flex;
  max-width: 880px;
  margin: auto;
  gap: 80px;
  border-bottom: 1px solid var(--sep);
}

#contact .contact-left {
  order: 2;
}

#contact .contact-right {
  order: 1;
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(37, 211, 102, 0.07);
  border: 1px solid rgba(37, 211, 102, 0.25);
  text-decoration: none;
  color: var(--cream);
  margin-bottom: 14px;
  transition: background 0.2s;
}

.wa-btn:hover {
  background: rgba(37, 211, 102, 0.14);
}

.wa-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #25d366;
  margin-bottom: 2px;
}

.wa-text {
  font-size: 13px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.soc-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--sep);
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.soc-link:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.soc-name {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 2px;
}

/* ── FORM ────────────────────────────────────────────────── */
.form-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 8px;
}

.form-sub {
  font-size: 16px;
  color: var(--steel);
  margin-bottom: 32px;
  line-height: 1.7;
}

.fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel);
}

.field input,
.field textarea {
  background: var(--navy2);
  border: 1px solid var(--sep);
  color: var(--cream);
  padding: 12px 14px;
  font-family: var(--font-primary);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--sep);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.s-tier-opt .opt-dot {
  margin-top: 4px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}

.submit-btn:hover {
  background: var(--gold-lt);
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--sep);
  text-align: center;
}

.footer-closing {
  font-family: var(--font-primary);
  font-size: clamp(22px, 2.5vw, 30px);
  /* font-style: italic; */
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-brand {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 16px;
  color: var(--steel);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-handles {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-handles a {
  font-size: 16px;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-handles a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 13px;
  color: #606162;
}

/* ── TESTIMONIAL FILM STRIP ──────────────────────────────── */
.film-strip {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 70vh;
  overflow: hidden;
  z-index: 90;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.film-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  z-index: 2;
  pointer-events: none;
}

.film-strip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--navy), transparent);
  z-index: 2;
  pointer-events: none;
}

.film-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: filmScroll 32s linear infinite;
  padding: 20px 0;
}

.film-strip-inner:hover {
  animation-play-state: paused;
}

@keyframes filmScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.film-card {
  background: var(--navy2);
  border: 1px solid var(--sep);
  border-left: 2px solid var(--gold);
  padding: 16px 16px 14px;
  pointer-events: all;
  cursor: default;
  transition: border-color 0.2s;
}

.film-card:hover {
  border-color: var(--gold);
  border-left-color: var(--gold-lt);
}

.film-quote {
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 10px;
}

.film-quote::before {
  content: '"';
  color: var(--gold);
  font-size: 18px;
  line-height: 0;
  vertical-align: -4px;
  margin-right: 2px;
}

.film-quote::after {
  content: '"';
  color: var(--gold);
  font-size: 18px;
  line-height: 0;
  vertical-align: -4px;
  margin-left: 2px;
}

.film-attr {
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.film-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.6;
}

/* ── TICKER STRIP ────────────────────────────────────────── */
.ticker-strip {
  width: 100%;
  background: rgba(200, 160, 40, 0.06);
  border-top: 1px solid var(--sep);
  border-bottom: 1px solid var(--sep);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.ticker-strip::before,
.ticker-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.ticker-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: tickerMove 18s linear infinite;
  width: max-content;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 52px;
  white-space: nowrap;
}

.ticker-count {
  font-family: var(--font-primary);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -1px;
}

.ticker-line {
  font-family: var(--font-primary);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.ticker-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── CONTENT WRAP ────────────────────────────────────────── */
.content-wrap {
  width: 100%;
  max-width: 1513px;
  margin: 0 auto;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  nav {
    padding: 14px 22px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-col {
    grid-template-columns: 1fr;
  }

  #about-services {
    padding: 64px 0;
  }

  #contact {
    grid-template-columns: 1fr;
    padding: 64px 26px;
    gap: 48px;
  }

  .gutcheck-wrap {
    padding: 28px 22px;
  }

  footer {
    padding: 40px 26px;
  }

  .credentials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .film-strip {
    display: none;
  }

  .content-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 26px;
  }
}

@media (min-width: 1201px) {
  body {
    padding-right: 210px;
  }

  nav {
    padding-right: 230px;
  }

  .film-strip {
    right: 0;
  }

  #hero .content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 52px !important;
    letter-spacing: -1px;
  }

  .gutcheck-wrap {
    padding: 22px 16px;
  }
}

.nav-brand img {
  width: 140px;
  margin-top: 4px;
}

.footer-brand img {
  width: 240px;
}

#session-col {
  /* margin-top: 110px; */
  padding-top: 50px;
}

/* ── FAQ SECTION ─────────────────────────────────────────── */
#faq {
  padding: 100px 0;
  border-bottom: 1px solid var(--sep);
}

.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-eyebrow {
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}

.faq-title {
  font-family: var(--font-primary);
  font-size: clamp(42px, 4vw, 22px);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 12px;
}

.faq-sub {
  font-size: 18px;
  color: var(--steel);
  text-align: center;
  margin-bottom: 52px;
  font-style: italic;
}

.faq-item {
  border-bottom: 1px solid var(--sep);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--sep);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-q-text {
  font-family: var(--font-primary);
  font-size: clamp(17px, 2.2vw, 19px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  transition: color 0.2s;
}

details[open] .faq-q-text {
  color: var(--gold);
}

.faq-icon {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  border: 1px solid var(--sep);
  border-radius: 50%;
  transition:
    border-color 0.2s,
    transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.faq-icon::before {
  width: 16px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

details[open] .faq-icon {
  border-color: var(--gold);
}

details[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 0 26px 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  max-width: 720px;
}

.faq-answer p {
  margin-bottom: 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--cream);
  font-weight: 500;
}

@media (max-width: 1201px) {
  #faq {
    padding: 100px 0;
  }

  .hero-headline {
    max-width: 100%;
  }

  .services-col {
    gap: 20px;
  }
}

@media (max-width: 1031px) {
  .chain-mark img {
    width: 70vw;
  }

  #hero {
    padding: 80px 10px 20px;
  }

  .content-wrap {
    padding: 0 6px;
  }
  .hero-headline h1 {
    font-size: 23px;
    line-height: 35px;
  }
}

@media (max-width: 500px) {
  .hero-headline h1 {
    font-size: 17px;
    line-height: 28px;
  }

  .chain-mark img {
    width: 84vw;
  }

  .hero-sub {
    font-size: 11px;
  }

  .gutcheck-bridge {
    font-size: 18px;
    line-height: 25px;
  }

  .gutcheck-eyebrow {
    font-size: 25px;
  }

  .q-text {
    font-size: clamp(16px, 3vw, 27px);
  }
  .q-opt {
    font-size: 14.5px;
  }

  #about-col {
    padding: 0 10px;
  }

  .eyebrow {
    font-size: 25px;
  }

  .sec-title {
    font-size: clamp(23px, 4vw, 42px);
    line-height: 34px;
  }

  .faq-eyebrow {
    font-size: 25px;
  }

  .faq-title {
    font-size: clamp(21px, 4vw, 22px);
  }

  .faq-sub {
    font-size: 16px;
  }

  #about-services {
    padding: 0px 0;
  }
  .about-body {
    font-size: 14.5px;
    line-height: 20px;
  }
  .sec-title {
    font-size: clamp(21px, 4vw, 42px);
    line-height: 30px;
  }
  #faq {
    padding: 30px 25px;
  }

  #services-col {
    max-width: 100%;
    padding: 0 25px;
  }
  .eyebrow {
    font-size: 25px;
    margin-top: 25px;
  }
  #session-col {
    padding-top: 0px;
  }
  #contact {
    padding: 0px 0px;
  }

  #contact > .content-wrap {
    padding: 0px 25px 30px 25px;
  }

  .form-title {
    font-family: var(--font-primary);
  }
  footer {
    padding: 5px 5px;
  }
}
.error {
  display: block;
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
}

.field input.error-input,
.field textarea.error-input {
  border-color: #ff6b6b !important;
}

.field input.success-input,
.field textarea.success-input {
  border-color: #4caf50 !important;
}

/* =========================
   CAROUSEL
========================= */

.carousel {
  width: 100%;
  max-width: 1200px;
  height: 520px;
  position: relative;
  /* perspective: 1400px; */
  /* overflow: hidden; */
}

/* =========================
   TRACK
========================= */

.track {
  position: absolute;

  width: 100%;
  height: 100%;

  left: 0;
  top: 0;

  transform-style: preserve-3d;
}

/* =========================
   CARD
========================= */

.card {
  position: absolute;

  width: 300px;
  height: 420px;

  left: 50%;
  top: 50%;

  margin-left: -150px;
  margin-top: -210px;

  border-radius: 20px;

  overflow: hidden;

  transform-style: preserve-3d;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);

  will-change: transform, opacity;

  transition:
    transform 0.05s linear,
    opacity 0.05s linear,
    filter 0.05s linear;
}

.card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* cinematic shadow */

.card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.75));
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 700px) {
  .carousel {
    height: 450px;
    overflow: hidden;
  }

  .card {
    width: 220px;
    height: 330px;

    margin-left: -110px;
    margin-top: -165px;
  }
}

/* disclamer */

/* =========================
   FOOTER
========================= */

.site-footer {
  width: 100%;
  padding: 24px 30px;
  background: #111;
  color: #5e0303;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  /* display: flex; */
  align-items: center;
  /* justify-content: space-between; */
  /* gap: 20px; */
  color: #0d1f2d;
}

.footer-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.terms-link {
  font-size: 13px;
  color: #606162;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.terms-link:hover {
  opacity: 0.6;
}

/* =========================
   MODAL
========================= */

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* Active state */

.terms-modal.active {
  visibility: visible;
  opacity: 1;
}

/* =========================
   OVERLAY
========================= */

.terms-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =========================
   POPUP
========================= */

.terms-popup {
  position: relative;
  z-index: 2;

  width: min(800px, 100%);

  max-height: 85vh;

  background: #fff;
  color: #111;

  border-radius: 16px;

  overflow: hidden;

  transform: translateY(25px) scale(0.97);

  transition: transform 0.3s ease;
}

.terms-modal.active .terms-popup {
  transform: translateY(0) scale(1);
}

/* =========================
   CONTENT
========================= */

.terms-popup-content {
  padding: 45px 50px;

  max-height: 85vh;
  overflow-y: auto;

  scrollbar-width: thin;
}

.terms-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;

  color: #777;

  margin-bottom: 10px;
}

.terms-popup h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.terms-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 5px 0;
}

.terms-text {
  font-size: 12px;
  line-height: 18px;
  color: #555;
}

.terms-text p {
  margin: 0 0 2px;
}

.terms-text strong {
  color: #111;
}

/* =========================
   CLOSE BUTTON
========================= */

.terms-close {
  position: absolute;

  top: 18px;
  right: 20px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;

  background: #f2f2f2;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  z-index: 5;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.terms-close:hover {
  background: #e5e5e5;
  transform: rotate(90deg);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  .credentials img {
    width: 25px;
    margin-top: 3px;
    position: absolute;
    margin-left: 12px;
}
  .linkedin-link {
    margin-left: 0px !important;
  }
  .credentials {
    display: block;
  }
  .site-footer {
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .terms-popup {
    width: 100%;
    max-height: 90vh;
    border-radius: 14px;
  }

  .terms-popup-content {
    padding: 40px 25px;
    max-height: 90vh;
  }

  .terms-popup h2 {
    font-size: 26px;
  }

  .terms-text {
    font-size: 14px;
  }
}

.credentials img {
  width: 33px;
  margin-top: 3px;
  position: absolute;
  margin-left: 12px;
  cursor: pointer;
  transition: .2s ease-in-out;
}
.credentials img:hover{
  scale: 1.2;
}
.linkedin-link {
  font-family: var(--font-primary);
  font-size: clamp(15px, 1.8vw, 19px);
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 2;
  font-weight: 400;
}
