:root {
  --purple-950: #241A3A;
  --purple-900: #352753;
  --purple-800: #463565;
  --purple-700: #594676;
  --purple-600: #6A5685;
  --purple-100: #EAE6F0;
  --purple-050: #F6F3F8;
  --blue-main: #356C8E;
  --blue-dark: #28546F;
  --blue-light: #EAF2F6;
  --gold: #D67B19;
  --gold-dark: #B7600B;
  --orange-light: #F8EBDD;
  --ink: #241F2D;
  --muted: #665F6F;
  --line: #E5E0E8;
  --soft: #F8F7F9;
  --white: #ffffff;
  --green: #356C8E;
  --shadow-lg: 0 26px 60px rgba(53, 39, 83, .18);
  --shadow-md: 0 14px 34px rgba(53, 39, 83, .10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

/* Self-hosted fonts. Previously loaded from Google Fonts
   (fonts.googleapis.com + fonts.gstatic.com); moved local to remove that
   third-party dependency flagged by PageSpeed Insights (2026-07-24). Same
   files Google was already serving us, just hosted from our own domain.
   Montserrat's static weights (400/600/700/800 - all used in this site)
   are all backed by one shared variable-font file, so one @font-face
   with a weight range covers every weight we use. */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/font/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/font/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVIUwaEQbjA.woff2") format("woff2");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: var(--purple-900);
  border-radius: 8px;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(53, 39, 83, .10);
}
.header-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 190px; height: auto; }
.header-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple-900);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}
.header-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214, 123, 25, .16);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(214, 123, 25, .38); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 11px 18px; font-size: 14px; }
.button-outline { border-color: var(--purple-900); color: var(--purple-900); background: transparent; }
.button-outline:hover { background: var(--purple-050); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #E18A2C 0%, var(--gold) 60%, #BE6710 100%);
  box-shadow: 0 13px 26px rgba(214, 123, 25, .28);
}
.button-primary svg { width: 20px; height: 20px; }
.button-full { width: 100%; }
.button-gold {
  color: #fff;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(214, 123, 25, .24);
}
.button-gold:hover { background: var(--gold-dark); }
.button-outline-dark { border-color: var(--purple-800); color: var(--purple-800); }
.button-outline-dark:hover { background: var(--purple-050); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(36, 26, 58, .99) 0%, rgba(53, 39, 83, .99) 48%, rgba(53, 108, 142, .97) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent, #000 35%, #000);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -280px;
  top: -180px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.02);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 250px; height: 250px; left: -140px; bottom: -120px; background: rgba(214,123,25,.14); }
.hero-orb-two { width: 180px; height: 180px; left: 46%; top: -90px; background: rgba(53,108,142,.24); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  gap: 72px;
  align-items: center;
  padding-block: 30px 60px;
}
.hero-copy { max-width: 660px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  font-weight: 600;
}
.eyebrow span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--purple-950);
  background: var(--gold);
  font-weight: 800;
}
.hero h1, .success-copy h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
}
.hero h1 em, .success-copy h1 em { color: var(--gold); font-style: normal; }
.hero-lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 19px;
  line-height: 1.65;
}

.hero h2, .success-copy h1 {
  margin: 0;
  font-size: clamp(31px, 4vw, 30px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
  color: #d67b19;
}
.offer-panel {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.offer-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--gold);
  background: rgba(214,123,25,.15);
}
.offer-icon svg { width: 36px; height: 36px; }
.offer-panel span { display: block; color: rgba(255,255,255,.65); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.offer-panel strong { display: block; margin-top: 2px; font-size: 19px; }
.benefits-label {
  margin: 28px 0 12px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 0;
}
.benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 600;
}
.benefit-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  background: rgba(255,255,255,.075);
}
.benefit-icon svg { width: 20px; height: 20px; }

.form-card {
  position: relative;
  padding: 24px 26px;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-lg);
}
.form-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 6px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--gold), var(--blue-main), var(--purple-900));
}
.form-kicker {
  color: var(--blue-main);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.form-card h2 { margin: 5px 0 4px; font-size: 22px; line-height: 1.15; letter-spacing: -.02em; }
.form-card > p { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.field-group { margin-bottom: 11px; }
.field-group label { display: block; margin-bottom: 5px; font-size: 12px; font-weight: 700; color: #3a3542; }
.field-wrap, .phone-wrap, .select-wrap { position: relative; }
.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--blue-main);
  pointer-events: none;
}
.field-icon svg { width: 20px; height: 20px; }
input, select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8d3df;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
  font-size: 16px;
}
.field-wrap input { padding: 9px 14px 9px 44px; }
.phone-wrap { display: grid; grid-template-columns: 66px 1fr; }
.country-code {
  display: grid;
  place-items: center;
  z-index: 1;
  border: 1px solid #d8d3df;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  color: var(--purple-900);
  background: var(--purple-050);
  font-size: 14px;
  font-weight: 800;
}
.phone-wrap input { padding: 11px 14px; border-radius: 0 10px 10px 0; }
select {
  appearance: none;
  padding: 11px 44px 11px 14px;
  color: #797281;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23352753' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
select:valid { color: var(--ink); }
input:focus, select:focus { border-color: var(--blue-main); box-shadow: 0 0 0 4px rgba(53,108,142,.12); }
.field-wrap.invalid input, .phone-wrap.invalid input, .phone-wrap.invalid .country-code, .select-wrap.invalid select { border-color: #c53737; }
.field-error { display: block; min-height: 15px; margin-top: 4px; color: #ba2525; font-size: 11px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 2px 0 0;
  color: #625b6c;
  font-size: 11px;
  line-height: 1.45;
}
.consent input { width: 16px; min-height: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--gold); }
.consent-error { margin-bottom: 10px; }
.form-trust {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 0px;
  color: #5e5867;
  font-size: 11px;
}
.form-trust span { display: inline-flex; align-items: center; gap: 5px; }
.form-trust i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-style: normal;
  font-size: 11px;
}

.section { padding-block: 92px; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.compact-heading { margin-bottom: 34px; }
.section-tag {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue-main);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-heading h2, .interview-copy h2, .final-cta h2, .access-banner h2, .next-step h2 {
  margin: 0;
  color: var(--purple-950);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.section-heading p, .interview-copy > p, .final-cta p, .access-banner p, .next-step p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.resource-section { background: linear-gradient(180deg, #fff 0%, #F7F9FA 100%); }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.resource-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 24px rgba(34, 17, 70, .055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.resource-card:hover { transform: translateY(-5px); border-color: #C9D9E2; box-shadow: var(--shadow-md); }
.resource-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #E7E1EA;
  font-size: 30px;
  font-weight: 800;
}
.resource-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
}
.resource-icon svg { width: 32px; height: 32px; }
.resource-purple { color: var(--purple-900); background: var(--purple-100); }
.resource-blue { color: var(--blue-main); background: var(--blue-light); }
.resource-gold { color: var(--gold); background: var(--orange-light); }
.resource-green { color: var(--blue-main); background: var(--blue-light); }
.resource-pink { color: var(--gold); background: var(--orange-light); }
.resource-violet { color: #fff; background: var(--gold); }
.resource-card h3 { margin: 0; color: var(--purple-900); font-size: 20px; line-height: 1.25; letter-spacing: -.02em; }
.resource-card p { margin: 11px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.resource-card-featured { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--purple-900), var(--blue-main)); }
.resource-card-featured .resource-number { color: rgba(255,255,255,.13); }
.resource-card-featured h3 { color: #fff; }
.resource-card-featured p { color: rgba(255,255,255,.72); }

.interview-section {
  color: #fff;
  background:
    radial-gradient(circle at 80% 28%, rgba(53, 108, 142, .42), transparent 30%),
    linear-gradient(135deg, var(--purple-950), var(--purple-900) 55%, var(--blue-dark));
  overflow: hidden;
}
.interview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.light-tag { color: var(--gold); }
.interview-copy h2, .final-cta h2, .access-banner h2 { color: #fff; }
.interview-copy > p, .final-cta p, .access-banner p { color: rgba(255,255,255,.72); }
.check-list { margin: 28px 0 32px; padding: 0; list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: rgba(255,255,255,.86); }
.check-list li .check-icon { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--purple-950); background: var(--gold); font-size: 13px; font-weight: 900; margin-top: 2px; }
.check-list li .check-text {
  width: auto;
  height: auto;
  display: inline;
  border-radius: 0;
  background: none;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  font-weight: 400;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.5;
}
.practice-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.practice-glow { position: absolute; width: 390px; height: 390px; border-radius: 50%; background: rgba(53,108,142,.36); filter: blur(50px); }
.phone-frame {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 520px;
  padding: 10px;
  border: 2px solid rgba(255,255,255,.24);
  border-radius: 38px;
  background: #191426;
  box-shadow: 0 32px 60px rgba(0,0,0,.38);
  transform: rotate(4deg);
}
.phone-speaker { position: absolute; z-index: 3; top: 17px; left: 50%; width: 72px; height: 7px; transform: translateX(-50%); border-radius: 99px; background: #2F273B; }
.phone-screen {
  height: 100%;
  padding: 28px 20px 22px;
  overflow: hidden;
  border-radius: 29px;
  background: linear-gradient(180deg, #352753 0%, #241A3A 100%);
}
.screen-topline { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.9); font-size: 12px; font-weight: 700; }
.screen-topline i { width: 7px; height: 7px; margin-left: auto; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(214,123,25,.14); }
.mini-mark { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 7px; color: var(--purple-950); background: var(--gold); font-weight: 900; }
.screen-label { margin: 32px 0 14px; color: rgba(255,255,255,.56); font-size: 11px; text-align: center; text-transform: uppercase; letter-spacing: .13em; }
.score-ring {
  position: relative;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 34%, var(--blue-main) 34% 65%, var(--purple-600) 65% 85%, rgba(255,255,255,.08) 85%);
}
.score-ring::before { content: ""; position: absolute; width: 122px; height: 122px; border-radius: 50%; background: #2D223F; }
.score-ring div { position: relative; z-index: 1; }
.score-ring strong { font-size: 42px; line-height: 1; }
.score-ring span { color: rgba(255,255,255,.55); font-size: 12px; }
.score-caption { margin: 10px 0 28px; text-align: center; color: #F0C79A; font-size: 12px; }
.metric-row { display: flex; justify-content: space-between; margin-top: 13px; color: rgba(255,255,255,.76); font-size: 11px; }
.metric-row b { color: #fff; }
.metric-bar { height: 5px; margin-top: 7px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.09); }
.metric-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--blue-main)); }
.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: #fff;
  background: rgba(53,39,83,.88);
  box-shadow: 0 16px 28px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}
.floating-card span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: var(--purple-950); background: var(--gold); }
.floating-card-one { left: 4%; top: 25%; }
.floating-card-two { right: 0; bottom: 0%; }

.steps-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--soft); }
.step-card > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 12px; color: #fff; background: var(--gold); font-weight: 800; }
.step-card h3 { margin: 0; color: var(--purple-900); font-size: 21px; }
.step-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }

.final-cta { padding-block: 62px; color: #fff; background: linear-gradient(120deg, var(--purple-900), var(--blue-main)); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.final-cta-inner > div { max-width: 760px; }
.final-cta h2 { font-size: clamp(32px, 3.6vw, 30px); }

.site-footer { padding-block: 32px; background: #fff; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; color: #777181; font-size: 12px; }
.footer-inner img { width: 188px; }
.footer-inner p { margin: 0; }
.footer-inner p:last-child { text-align: right; }
.mobile-sticky { display: none; }

/* Thank you page */
.thank-you-page { background: #F7F9FA; }
.thank-header { background: #fff; }
.success-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, var(--purple-950), var(--purple-900) 55%, var(--blue-main));
}
.success-pattern {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image:
    radial-gradient(circle at 10% 25%, rgba(214,123,25,.9) 0 2px, transparent 3px),
    radial-gradient(circle at 23% 15%, rgba(255,255,255,.72) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 18%, rgba(214,123,25,.8) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 28%, rgba(53,108,142,.82) 0 2px, transparent 3px),
    radial-gradient(circle at 53% 76%, rgba(255,255,255,.55) 0 2px, transparent 3px);
}
.success-grid { position: relative; z-index: 2; min-height: 410px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; padding-block: 62px; }
.success-copy { position: relative; padding-left: 92px; }
.success-check { position: absolute; top: 42px; left: 0; width: 68px; height: 68px; color: var(--gold); }
.success-copy h1 { font-size: clamp(46px, 5vw, 50px); }
.success-copy p { max-width: 640px; margin: 22px 0 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.65; }

/* Compact thank-you hero: no illustration, download CTAs sit directly
   under the intro copy so there's minimal scroll on mobile. */
.success-hero-compact { position: relative; padding: 20px; }
.success-copy-full { position: relative; z-index: 2; padding-block: 54px; max-width: 640px; }
.thankyou-actions { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

.download-section { padding-top: 78px; }
.download-layout { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px; align-items: stretch; }
.download-stack { display: grid; gap: 18px; }
.download-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 10px 28px rgba(53,39,83,.07); }
.download-card-large { grid-row: span 2; }
.download-card-head { display: flex; align-items: center; gap: 13px; padding-bottom: 18px; border-bottom: 1px solid #E9E4EC; }
.download-card-head span { display: block; margin-bottom: 2px; color: #7D7585; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.download-card-head h3 { margin: 0; color: var(--purple-900); font-size: 18px; line-height: 1.25; }
.download-title-icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; }
.download-title-icon svg { width: 27px; height: 27px; }
.purple-download { color: var(--purple-900); background: var(--purple-100); }
.blue-download { color: var(--blue-main); background: var(--blue-light); }
.green-download { color: var(--gold); background: var(--orange-light); }
.pink-download { color: var(--blue-main); background: var(--blue-light); }
.gold-download { color: var(--gold); background: var(--orange-light); }
.download-list { display: grid; margin-top: 10px; }
.download-list a { display: grid; grid-template-columns: 1fr 26px; gap: 12px; align-items: center; min-height: 44px; padding: 8px 2px; border-bottom: 1px dashed #E9E4EC; color: #3f3947; font-size: 13px; line-height: 1.4; }
.download-list a:last-child { border-bottom: 0; }
.download-list a:hover { color: var(--blue-main); }
.download-list b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; color: var(--gold); background: var(--orange-light); font-size: 17px; }
.compact-list a { min-height: 50px; }

.access-banner { padding-block: 58px; color: #fff; background: linear-gradient(125deg, var(--purple-950), var(--blue-dark)); }
.access-banner-inner { display: grid; grid-template-columns: 78px 1fr auto; gap: 24px; align-items: center; }
.access-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 20px; color: var(--gold); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.access-icon svg { width: 46px; height: 46px; }
.access-banner h2 { font-size: clamp(30px, 3.5vw, 44px); }
.access-banner p { margin-top: 10px; font-size: 15px; }
.rehearsal-banner-inner { text-align: center; max-width: 720px; margin-inline: auto; }
.rehearsal-banner-inner .section-tag { margin-bottom: 14px; }
.app-links { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.app-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.app-pill svg { width: 20px; height: 20px; flex: 0 0 auto; }
.app-pill:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.36); transform: translateY(-1px); }

.download-all-btn { margin-top: 22px; }

.next-step { background: #fff; }
.next-step-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.next-step-inner > div { max-width: 760px; }
.next-step h2 { font-size: clamp(32px, 3.4vw, 45px); }
section.download-section.section{
  padding-bottom: 10px;
}
section.next-step.section{
  padding-top: 30px;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 390px; gap: 42px; }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .interview-grid { gap: 40px; }
  .download-layout { grid-template-columns: 1fr 1fr; }
  .download-card-large { grid-row: auto; }
  .download-stack:last-child { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .header-inner { min-height: 56px; }
  .brand img { width: 150px; }
  .header-note { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; padding-block: 56px 68px; }
  .hero-copy { max-width: 720px; }
  .form-card { max-width: 640px; width: 100%; justify-self: center; }
  .interview-grid { grid-template-columns: 1fr; }
  .practice-visual { min-height: 500px; }
  .steps-grid { grid-template-columns: 1fr; }
  .final-cta-inner, .next-step-inner { align-items: flex-start; flex-direction: column; }
  .final-cta-inner .button, .next-step-inner .button { align-self: flex-start; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-inner p:last-child { text-align: center; }
  .success-grid { grid-template-columns: 1fr; gap: 90px; padding-block: 55px 110px; }
  .success-copy-full { padding-block: 40px; }
  .download-layout { grid-template-columns: 1fr; }
  .download-stack:last-child { grid-column: auto; grid-template-columns: 1fr; }
  .access-banner-inner { grid-template-columns: 70px 1fr; }
  .access-banner-inner .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 600px) {
  body { padding-bottom: 78px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { position: relative; }
  .header-inner { min-height: 52px; }
  .brand img { width: 160px; }
  .button-small { display: none; }
  .hero::after { width: 320px; height: 320px; right: -210px; top: -90px; }
  .hero-grid { gap: 32px; padding-block: 42px 54px; }
  .eyebrow { align-items: flex-start; flex-direction: column; margin-bottom: 20px; }
  .hero h1 { font-size: clamp(30px, 8vw, 40px); }
  .hero-lead { margin-top: 18px; font-size: 16px; }
  .offer-panel { align-items: flex-start; margin-top: 24px; }
  .offer-panel strong { font-size: 17px; }
  .hero-benefits { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 26px; }
  .form-card { padding: 20px 18px 18px; border-radius: 18px; }
  .form-card h2 { font-size: 20px; }
  .form-trust { gap: 6px; font-size: 10px; }
  .form-trust i { width: 16px; height: 16px; }
  .section { padding-block: 68px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .interview-copy h2, .final-cta h2, .access-banner h2, .next-step h2 { font-size: 34px; }
  .section-heading p, .interview-copy > p, .final-cta p, .access-banner p, .next-step p { font-size: 15px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 0; padding: 22px; }
  .interview-grid { gap: 24px; }
  .practice-visual { min-height: 470px; transform: scale(.92); margin-inline: -14px; }
  .floating-card-one { left: -2%; }
  .floating-card-two { right: -3%; }
  .steps-grid { gap: 12px; }
  .final-cta { padding-block: 48px; }
  .final-cta-inner { gap: 24px; }
  .site-footer { padding-block: 26px; }
  .footer-inner { gap: 11px; }
  .footer-inner img { width: 170px; }
  .mobile-sticky {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    color: #fff;
    background: rgba(53, 39, 83, .97);
    box-shadow: 0 -10px 30px rgba(53, 39, 83, .20);
    backdrop-filter: blur(10px);
  }
  .mobile-sticky strong, .mobile-sticky span { display: block; }
  .mobile-sticky strong { font-size: 12px; }
  .mobile-sticky span { margin-top: 2px; color: rgba(255,255,255,.65); font-size: 10px; }
  .button-mobile { min-height: 42px; padding: 11px 17px; border-radius: 10px; font-size: 12px; }
  .thank-you-page { padding-bottom: 0; }
  .success-grid { gap: 110px; min-height: auto; padding-block: 45px 115px; }
  .success-copy { padding-left: 0; padding-top: 74px; }
  .success-check { top: 0; }
  .success-copy h1 { font-size: clamp(22px, 5vw, 56px); }
  .thankyou-actions .app-links { flex-direction: column; width: 100%; }
  .thankyou-actions .app-pill { justify-content: center; }
  .download-section { padding-top: 64px; }
  .download-card { padding: 20px; }
  .download-card-head h3 { font-size: 17px; }
  .download-list a { font-size: 12px; }
  .access-banner-inner { grid-template-columns: 1fr; }
  .access-banner-inner .button { grid-column: auto; width: 100%; }
  .access-icon { width: 62px; height: 62px; }
  .next-step-inner .button { width: 100%; }
  .thankyou-actions{
    margin-top: 14px;
    gap: 0px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* Jaipuria brand accents */
.button-primary,
.button-gold {
  color: #fff;
  background: linear-gradient(135deg, #E18A2C 0%, #D67B19 62%, #B7600B 100%);
  box-shadow: 0 12px 28px rgba(214, 123, 25, .25);
}
.button-primary:hover,
.button-gold:hover { background: #B7600B; }
.form-kicker,
.section-tag { color: var(--blue-main); }
.light-tag { color: #F3B56F; }
.offer-icon,
.benefit-icon,
.access-icon { color: var(--gold); }

/* ============================================================
   LeadSquared form embed — brand overrides
   The embed ships its own inline styles (plain gray LeadSquared
   default look). Everything below re-skins it to match the rest
   of the site. The five actual input/select fields also carry
   inline "!important" styles that no stylesheet rule can beat —
   those are overridden in js/lsq-style-fix.js instead.
   ============================================================ */

#access-form .lsq-form-wrapper {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}
#access-form .form-block-holder {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
/* Hide LeadSquared's own "Your form headline" bar — we keep our
   existing "Unlock your free kit" heading above the embed instead. */
#access-form .lp-form-header-wrapper { display: none !important; }

#access-form #lp-form.lp-form {
  width: 100% !important;
  margin: 0 !important;
}
#access-form .field-control-group {
  margin-bottom: 11px !important;
}
#access-form .field-label {
  display: block !important;
  margin-bottom: 5px !important;
  color: #3a3542 !important;
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
}
/* All LeadSquared text inputs/selects were rendering with 0 right padding,
   so typed text and select arrows sat flush against the field's right
   edge. Give every field consistent breathing room on both sides. */
#access-form input[type="text"],
#access-form input[type="email"],
#access-form input[type="tel"],
#access-form select {
  padding-right: 16px !important;
  box-sizing: border-box !important;
}
#access-form select {
  padding-right: 32px !important; /* extra room so text clears the dropdown arrow */
}
#access-form .field-label .mandatory {
  color: var(--gold) !important;
  font-family: inherit !important;
  font-weight: 700 !important;
}
#access-form .field-control { position: relative; }
#access-form .field-validation-messages .validation-msg {
  color: #ba2525 !important;
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
}
/* Consent checkbox row */
#access-form label[for="mx_I_authorised"] {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  margin-top: 2px !important;
  color: #625b6c !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
}
#access-form label[for="mx_I_authorised"] input {
  width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  margin: 1px 0 0 !important;
  accent-color: var(--gold);
}
/* Submit button */
#access-form .form-submit-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 46px !important;
  margin-top: 4px !important;
  border: none !important;
  border-radius: 12px !important;
  color: #fff !important;
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-shadow: none !important;
  background: linear-gradient(135deg, #E18A2C 0%, #D67B19 62%, #B7600B 100%) !important;
  box-shadow: 0 13px 26px rgba(214, 123, 25, .28) !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
#access-form .form-submit-button:hover { transform: translateY(-2px); }

@media (max-width: 640px) {
  #access-form .field-control-group { margin-bottom: 13px !important; }
  #access-form .form-submit-button { font-size: 14px !important; min-height: 48px !important; }
}

/* LeadSquared phone field alignment fix.
   Positioning of #Phone padding, the +91 code and the flag/dropdown hiding
   is handled entirely by the script at the bottom of index.html (kept in
   one place so there's a single source of truth — this file previously had
   a duplicate, higher-specificity copy of these rules that fought the
   script's centering and caused the +91 label to render off-center). Only
   the separator hide stays here as a safety net. */
#access-form .jaipuria-phone-separator,
#lsq-form-wrapper .jaipuria-phone-separator {
  display: none !important;
}
