/* ============================================================
   Inspiring Founders — "Refined"
   Clean, professional, cutting-edge. Photography-forward.
   Shared across all pages.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette — drawn from the Inspiring Founders logo */
  --navy:       #0c1351;   /* deep indigo — dark sections, headings */
  --navy-2:     #161d63;
  --slate:      #4b5170;   /* indigo-tinted body text */
  --slate-soft: #6b7192;
  --line:       #e4e6f2;   /* indigo-tinted hairline */
  --line-dark:  rgba(255, 255, 255, .13);
  --soft:       #f5f6fc;   /* light indigo-gray section bg */
  --white:      #ffffff;

  --accent:      #2a37b0;  /* refined indigo-blue — buttons, links */
  --accent-dark: #1f2a90;
  --accent-tint: #ececfb;

  --gold:        #e3ab52;  /* warm bulb-glow gold — premium highlight */
  --gold-soft:   #f2cd8a;
  --gold-tint:   rgba(227, 171, 82, .42);

  --wrap: 1200px;
  --r: 14px;
  --r-sm: 9px;
  --shadow: 0 24px 60px -32px rgba(15, 23, 42, .30);
  --shadow-sm: 0 10px 30px -18px rgba(15, 23, 42, .35);

  --f-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(16px, 1.03vw, 17.5px);
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.3rem;
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.on-dark .eyebrow { color: var(--gold); }
.on-dark .eyebrow::before { background: var(--gold); }

.display { font-family: var(--f-display); font-weight: 800; letter-spacing: -.025em; }
.h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); line-height: 1.04; }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.08; }
.h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.2; letter-spacing: -.015em; }

.lead { font-size: clamp(1.1rem, 1.55vw, 1.3rem); line-height: 1.55; color: var(--slate); max-width: 48ch; }
.on-dark .lead { color: #b6c2d9; }

.mark { color: var(--navy); background: linear-gradient(transparent 58%, var(--gold-tint) 58%); padding: 0 .05em; }
.on-dark .mark { color: var(--gold); background: none; }

.prose { color: var(--slate); max-width: 64ch; }
.prose p + p { margin-top: 1.15rem; }
.on-dark .prose { color: #b6c2d9; }
.strong { color: var(--navy); font-weight: 600; }
.on-dark .strong { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--f-body); font-size: .95rem; font-weight: 600;
  text-decoration: none; padding: .85em 1.5em; border-radius: var(--r-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 12px 24px -14px rgba(42, 55, 176, .85); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--navy); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.on-dark .btn--ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.on-dark .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--accent-tint); color: var(--accent-dark); }
.btn__arrow { transition: transform .18s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.bg-white { background: var(--white); }
.bg-soft { background: var(--soft); }
.bg-slate { background: var(--navy); color: #fff; }
.on-dark { color: #fff; }

.sec-head { max-width: 64ch; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.sec-head .lead { margin-top: 1.3rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--navy); }
.brand__logo { height: 34px; width: auto; }
.brand__name { font-family: var(--f-display); font-weight: 800; letter-spacing: -.02em; font-size: 1.05rem; }
.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__links { display: flex; gap: clamp(1rem, 2.2vw, 2rem); list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: .95rem; font-weight: 500; text-decoration: none; color: var(--slate); transition: color .15s ease; }
.nav__links a:hover { color: var(--navy); }
.nav__links a[aria-current="page"] { color: var(--accent); font-weight: 600; }
.nav__cta { padding: .65em 1.25em; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 25px; height: 2px; background: var(--navy); display: block; border-radius: 2px; transform-origin: center; transition: transform .28s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 1.3rem; padding: 1.8rem clamp(20px, 5vw, 56px) 2.2rem;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transform: translateY(-130%); transition: transform .28s ease; visibility: hidden;
  }
  .nav__menu.open { transform: translateY(0); visibility: visible; }
  .nav__links { flex-direction: column; gap: 1.3rem; }
  .nav__links a { font-size: 1.05rem; }
  .nav__cta { align-self: stretch; justify-content: center; }
}

/* ---------- Photo treatments ---------- */
.photo { position: relative; }
.photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); display: block; }
.photo--accent::before {
  content: ""; position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%;
  background: linear-gradient(140deg, var(--accent-tint), rgba(227, 171, 82, .28)); border-radius: var(--r); z-index: -1;
}
.photo--ring::after {
  content: ""; position: absolute; inset: 14px -18px -18px 14px; border: 1.5px solid var(--accent);
  border-radius: var(--r); z-index: -1;
}

/* ---------- Hero (split with photo) ---------- */
.hero { position: relative; overflow: hidden; }
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-split .photo img { aspect-ratio: 1 / 1; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.hero__note { color: var(--slate-soft); font-size: .92rem; margin-top: 1.4rem; }
.on-dark .hero__note { color: #93a2be; }
/* Wide hero photo — for landscape/action shots that shouldn't be square-cropped */
.hero-split .photo--wide img { aspect-ratio: 16 / 9; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-split .photo { order: -1; max-width: 460px; }
  .hero-split .photo img { aspect-ratio: 4 / 3; }
  .hero-split .photo--wide { max-width: 560px; }
  .hero-split .photo--wide img { aspect-ratio: 16 / 9; }
}

/* subtle ambient wash on soft-bg heroes */
.hero--soft::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 55% at 92% -5%, rgba(227, 171, 82, .22), transparent 70%),
    radial-gradient(55% 60% at 78% 10%, var(--accent-tint), transparent 72%);
  opacity: .9;
}
.hero--soft .wrap { position: relative; z-index: 1; }

/* ---------- Fact strip ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; border-top: 1px solid var(--line); padding-top: 2.4rem; }
.fact__n { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -.02em; color: var(--accent); }
.fact__l { color: var(--slate); font-size: .92rem; margin-top: .3rem; }
.on-dark .fact__l { color: #93a2be; }
.on-dark .facts { border-color: var(--line-dark); }
@media (max-width: 640px) { .facts { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1.2rem; } }

/* ---------- Two-path / fork ---------- */
.fork { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.fork__card { border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.8rem, 3vw, 2.6rem); background: #fff; box-shadow: var(--shadow-sm); }
.fork__tag { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.fork__card h3 { margin: .8rem 0; }
@media (max-width: 760px) { .fork { grid-template-columns: 1fr; } }

/* ---------- Cards (pillars / value) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.7rem, 3vw, 2.2rem); position: relative; overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
a.card:hover::before { transform: scaleX(1); }
.card__ix { font-family: var(--f-display); font-weight: 800; font-size: .85rem; color: var(--accent); letter-spacing: .04em; }
.card h3 { margin: 1rem 0 .6rem; }
.card p { color: var(--slate); font-size: .97rem; }
.card__go { margin-top: 1.4rem; font-weight: 600; font-size: .92rem; color: var(--accent); }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--r); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* ---------- Stakes (killer section) ---------- */
.stakes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: clamp(2.6rem, 5vw, 3.6rem) 0; }
.stakes-q { border: 1px solid var(--line-dark); border-radius: var(--r); padding: 1.35rem 1.5rem; font-family: var(--f-display); font-weight: 600; font-size: clamp(1.02rem, 1.5vw, 1.18rem); letter-spacing: -.01em; color: #fff; display: flex; align-items: center; gap: .85rem; transition: border-color .15s ease, background .15s ease; }
.stakes-q::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }
.stakes-q:hover { border-color: rgba(255, 255, 255, .32); background: rgba(255, 255, 255, .04); }
.stakes-turn { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; border-top: 1px solid var(--line-dark); padding-top: clamp(2rem, 4vw, 2.6rem); }
.stakes-turn .lead { max-width: 62ch; margin: 0; }
@media (max-width: 1000px) { .stakes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .stakes-grid { grid-template-columns: 1fr; } }

/* ---------- Pull quote ---------- */
.pullquote { max-width: 66ch; margin-inline: auto; text-align: center; }
.pullquote__mark { font-family: var(--f-display); font-weight: 800; font-size: 3.4rem; line-height: .6; color: var(--gold); display: block; margin-bottom: 1.1rem; }
.pullquote blockquote { margin: 0; font-family: var(--f-display); font-weight: 700; font-size: clamp(1.45rem, 2.9vw, 2.15rem); line-height: 1.3; letter-spacing: -.02em; color: var(--navy); }
.pullquote cite { display: block; margin-top: 1.6rem; font-style: normal; font-weight: 600; color: var(--navy); }
.pullquote cite span { color: var(--slate-soft); font-weight: 400; }
.on-dark .pullquote blockquote, .on-dark .pullquote cite { color: #fff; }

/* ---------- Proof strip ---------- */
.proof-label { text-align: center; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-soft); margin-bottom: 1.5rem; }
.proof-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem 2.4rem; align-items: center; }
.proof-logos span, .proof-logos a { font-family: var(--f-display); font-weight: 700; font-size: clamp(1rem, 1.7vw, 1.3rem); color: var(--navy); opacity: .5; letter-spacing: -.01em; text-decoration: none; transition: opacity .15s ease, color .15s ease; }
.proof-logos span:hover { opacity: 1; }
.proof-logos a:hover { opacity: 1; color: var(--accent); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.7rem, 3vw, 2.3rem); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote::before { content: "\201C"; font-family: var(--f-display); font-weight: 800; font-size: 3.2rem; line-height: .7; color: var(--gold); margin-bottom: .6rem; }
.quote blockquote { margin: 0; font-size: 1.05rem; line-height: 1.55; color: var(--navy); flex: 1; }
.quote figcaption { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .15rem; }
.quote__name { font-weight: 600; color: var(--navy); }
.quote__role { font-size: .9rem; color: var(--slate-soft); }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- Fit lists ---------- */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.fit__col { border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.6rem, 3vw, 2.2rem); background: #fff; }
.fit__col--yes { box-shadow: var(--shadow-sm); border-color: transparent; }
.fit__col h3 { margin-bottom: 1.3rem; font-size: 1.2rem; }
.fit ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .95rem; }
.fit li { position: relative; padding-left: 1.9rem; font-size: .98rem; line-height: 1.45; color: var(--slate); }
.fit li .strong { color: var(--navy); }
.fit li::before { position: absolute; left: 0; top: 0; font-weight: 700; font-size: 1rem; line-height: 1.45; }
.fit--yes li::before { content: "✓"; color: var(--accent); }
.fit--no li::before { content: "–"; color: var(--slate-soft); }
@media (max-width: 760px) { .fit { grid-template-columns: 1fr; } }

/* ---------- Numbered steps ---------- */
.steps { display: grid; gap: 0; counter-reset: step; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem; padding: 1.7rem 0; border-top: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { counter-increment: step; width: 48px; height: 48px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-family: var(--f-display); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.step__n::before { content: counter(step); }
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--slate); font-size: .98rem; }

/* ---------- Info rows ---------- */
.rows { display: grid; gap: 0; }
.row { display: grid; grid-template-columns: 210px 1fr; gap: 1.4rem; padding: 1.35rem 0; border-top: 1px solid var(--line); align-items: baseline; }
.row:last-child { border-bottom: 1px solid var(--line); }
.row__k { font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.row__v { color: var(--slate); }
.row__v .strong { color: var(--navy); }
@media (max-width: 620px) { .row { grid-template-columns: 1fr; gap: .4rem; } }

/* ---------- Price card ---------- */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.8rem, 3.5vw, 2.6rem); box-shadow: var(--shadow); }
.price { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.price__n { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.8rem, 7vw, 4.2rem); letter-spacing: -.03em; line-height: 1; color: var(--navy); }
.price__u { color: var(--slate-soft); font-size: 1rem; }

/* ---------- Episodes ---------- */
.eps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.ep { display: grid; grid-template-columns: 58px 1fr auto; gap: 1.2rem; align-items: start; padding: 1.5rem .2rem; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; transition: background .16s ease, padding .16s ease; border-radius: var(--r-sm); }
.ep:hover { background: var(--accent-tint); padding-inline: 1.1rem; }
.ep__n { font-family: var(--f-display); font-weight: 800; color: var(--accent); font-size: 1rem; padding-top: .1rem; }
.ep__body { display: flex; flex-direction: column; gap: .5rem; min-width: 0; }
.ep__t { font-weight: 600; font-size: clamp(1rem, 1.7vw, 1.15rem); letter-spacing: -.01em; }
.ep__blurb { margin: 0; color: var(--slate); font-size: .95rem; line-height: 1.5; }
.ep__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .15rem; }
.ep__tags span { font-size: .72rem; font-weight: 600; letter-spacing: .02em; color: var(--slate-soft); background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: .22em .7em; }
.ep__go { font-size: .9rem; font-weight: 600; color: var(--accent); padding-top: .15rem; white-space: nowrap; }
@media (max-width: 620px) { .ep { grid-template-columns: 40px 1fr; } .ep__go { display: none; } }

/* ---------- Platform chips ---------- */
.platforms { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.platform { font-size: .92rem; font-weight: 600; text-decoration: none; padding: .65em 1.15em; border: 1px solid var(--line); border-radius: 100px; color: var(--navy); background: #fff; transition: border-color .15s ease, color .15s ease, transform .12s ease; }
.on-dark .platform { border-color: rgba(255,255,255,.2); color: #fff; background: rgba(255,255,255,.05); }
.platform:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Video embed ---------- */
.video-feature { max-width: 940px; margin: 2.6rem auto 0; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--r); overflow: hidden; background: #000; box-shadow: var(--shadow); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed--glow { box-shadow: 0 30px 70px -22px rgba(0, 0, 0, .65), 0 0 110px -30px rgba(227, 171, 82, .55); }
.video-caption { text-align: center; margin-top: 1.3rem; font-size: .92rem; color: #a7aed0; }
.video-caption a { color: var(--gold); text-decoration: none; font-weight: 600; }
.video-caption a:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.8rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-sm); }
.mailto-big { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.25rem, 2.6vw, 1.7rem); text-decoration: none; color: var(--navy); letter-spacing: -.02em; word-break: break-word; }
.mailto-big:hover { color: var(--accent); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; border-radius: 0; }
.cta-band__row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band .h2 { max-width: 22ch; }
.cta-band .lead { color: rgba(255, 255, 255, .84); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #fff; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer__brand p { color: #a7aed0; max-width: 34ch; font-size: .95rem; }
.footer h4 { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer a { text-decoration: none; color: #c2c7e0; font-size: .95rem; transition: color .15s ease; }
.footer a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: .85rem; color: #8087a8; }
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* ---------- Embedded form ---------- */
.section[id] { scroll-margin-top: 5rem; }
.form-embed { max-width: 760px; margin: 0 auto; }
.form-embed__frame { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.form-embed iframe { display: block; width: 100%; height: 1400px; border: 0; }
.form-embed__fallback { text-align: center; margin-top: 1.3rem; font-size: .92rem; color: var(--slate-soft); }
.form-embed__fallback a { color: var(--accent); font-weight: 600; text-decoration: none; }
.form-embed__fallback a:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 2.6rem auto 0; display: grid; gap: .85rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .2s ease; }
.faq__item[open] { border-color: var(--accent-tint); }
.faq__q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.2rem clamp(1.2rem, 3vw, 1.7rem); font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--navy); transition: color .15s ease; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; flex: none; font-weight: 400; font-size: 1.55rem; line-height: 1; color: var(--accent); transition: transform .2s ease; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__q:hover { color: var(--accent); }
.faq__a { padding: 0 clamp(1.2rem, 3vw, 1.7rem) 1.4rem; color: var(--slate); line-height: 1.7; }
.faq__a p { margin: 0; }
.faq__a a { color: var(--accent); font-weight: 600; text-decoration: none; }
.faq__a a:hover { text-decoration: underline; }

/* ---------- Access ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
