/* ==========================================================================
   SM Law Group — Landing Pages (unified stylesheet)
   ========================================================================== */

@font-face {
  font-family: "Inter Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/InterDisplay-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/InterDisplay-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/InterDisplay-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/InterDisplay-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-var.woff2") format("woff2");
}

:root {
  --navy-900: #0a0f1a;
  --navy-800: #0d1524;
  --navy-700: #121d30;
  --card-dark: #141f33;
  --line-dark: rgba(255, 255, 255, 0.09);
  --gold-300: #e3c98e;
  --gold-500: #c9a664;
  --gold-600: #ab8a4d;
  --cream-25: #fdfcf9;
  --cream-50: #faf8f3;
  --cream-100: #f2ede2;
  --ink-900: #14181f;
  --ink-700: #333a48;
  --ink-500: #5c6373;
  --line-light: rgba(20, 24, 31, 0.1);
  --shadow-soft: 0 20px 50px -20px rgba(10, 15, 26, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(10, 15, 26, 0.18);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--ink-900);
  font-family: "Inter Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap--narrow {
  max-width: 860px;
}

.wrap--mid {
  max-width: 980px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  -webkit-text-stroke: 1px currentColor;
  text-stroke: 1px currentColor;
  margin: 0;
  color: inherit;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  text-align: center;
  margin-bottom: 14px;
}

.gold {
  color: var(--gold-500);
}

.section {
  padding: 104px 0;
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }
}

.section--light {
  background: var(--cream-50);
  color: var(--ink-900);
}

.section--tint {
  background: var(--cream-100);
  color: var(--ink-900);
}

.section--lightest {
  background: var(--cream-25);
  color: var(--ink-900);
}

.section--dark {
  background: var(--navy-900);
  color: #fff;
}

.section--dark-alt {
  background: var(--navy-800);
  color: #fff;
}

.center {
  text-align: center;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-700);
  max-width: 720px;
  margin: 20px auto 0;
}

.section--dark .lead,
.section--dark-alt .lead {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 17px 34px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 14px 30px -12px rgba(201, 166, 100, 0.55);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(201, 166, 100, 0.65);
}

.btn-gold svg {
  transition: transform 0.25s ease;
}

.btn-gold:hover svg {
  transform: translateX(3px);
}

.btn-row {
  margin-top: 44px;
  text-align: center;
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
  padding-top: 108px;
  padding-bottom: 80px;
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 56px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-justice.jpg");
  background-size: cover;
  background-position: center 20%;
  opacity: 0.38;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.55) 0%, rgba(10, 15, 26, 0.82) 55%, var(--navy-900) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero h1,
.hero h2 {
  font-size: clamp(2.35rem, 4.4vw, 3.9rem);
  line-height: 1.14;
  color: #fff;
}

@media (max-width: 480px) {
  .hero h1,
  .hero h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.35rem);
  }
}

.hero h1 span,
.hero h2 span {
  display: block;
  color: var(--gold-500);
  margin-top: 6px;
}

.hero__sub {
  margin-top: 30px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  line-height: 1.65;
}

.form-iframe-main {
  width: 100%;
  min-height: 812px;
  border: none;
  border-radius: 10px;
  background: transparent;
}

.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
  animation: bob 2.2s ease-in-out infinite;
}

@media (max-width: 720px) {
  .scroll-hint {
    display: none;
  }
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Problem section ---------- */

.problem h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.22;
  color: var(--ink-900);
}

.problem h2 span {
  display: block;
  color: var(--gold-600);
  margin-top: 6px;
}

.problem p {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  color: var(--ink-700);
  max-width: 700px;
  margin: 22px auto 0;
}

/* ---------- Process ---------- */

.process-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

@media (max-width: 720px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 34px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.process-card:hover {
  border-color: rgba(201, 166, 100, 0.5);
  transform: translateY(-3px);
}

.process-card__num {
  position: absolute;
  top: 28px;
  right: 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  color: rgba(20, 24, 31, 0.08);
  font-weight: 700;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 166, 100, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  margin-bottom: 22px;
}

.process-card p {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink-900);
  max-width: 82%;
}

.callout {
  margin-top: 40px;
  border: 1px solid rgba(201, 166, 100, 0.3);
  background: rgba(201, 166, 100, 0.06);
  border-radius: 16px;
  padding: 38px;
  text-align: center;
}

.callout strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--gold-300);
  margin-bottom: 10px;
}

.callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto;
}

.callout--light {
  background: linear-gradient(135deg, rgba(201, 166, 100, 0.14), rgba(201, 166, 100, 0.05));
}

.callout--light strong {
  color: var(--gold-600);
}

.callout--light p {
  color: var(--ink-700);
}

.callout--wide p {
  max-width: 780px;
  margin: 0 auto;
}

/* ---------- Compensation ---------- */

.comp-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .comp-grid { grid-template-columns: 1fr; }
}

.comp-card {
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 30px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.comp-card:hover {
  border-color: rgba(201, 166, 100, 0.5);
  transform: translateY(-3px);
}

.comp-card svg {
  color: var(--gold-500);
  margin-bottom: 18px;
}

.comp-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  color: #fff;
  margin-bottom: 8px;
}

.comp-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
}

/* ---------- Why choose us ---------- */

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.why-grid > * {
  min-width: 0;
}

.why-grid.why-grid--checklist {
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
}

.why-grid.why-grid--checklist > * {
  min-width: 0;
}

.guide-list,
.guide-item {
  min-width: 0;
}

@media (max-width: 980px) {
  .why-grid.why-grid--checklist {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
  }
}

.why-photo {
  position: relative;
}

.why-photo__frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 166, 100, 0.35);
  box-shadow: var(--shadow-soft);
}

.why-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 22px;
  color: #fff;
}

.why-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 16px;
  font-size: 1.02rem;
}

.why-copy p:last-of-type {
  margin-bottom: 0;
}

.why-copy .btn-row {
  text-align: left;
  margin-top: 34px;
}

/* ---------- Testimonials ---------- */

.stars {
  display: flex;
  gap: 4px;
  color: var(--gold-500);
  margin-bottom: 18px;
}

.testi-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 980px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; }
}

.testi-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-card p.quote {
  font-style: italic;
  color: var(--ink-700);
  font-size: 0.96rem;
  margin: 0 0 26px;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.testi-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-900);
}

.testi-card__author span {
  font-size: 0.76rem;
  color: var(--ink-500);
}

/* ---------- FAQ ---------- */

.faq-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line-dark);
  background: var(--card-dark);
  border-radius: 12px;
  padding: 4px 26px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.faq-item summary:hover {
  color: var(--gold-300);
}

.faq-item summary svg {
  flex-shrink: 0;
  color: var(--gold-500);
  transition: transform 0.25s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item__body {
  padding-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 90%;
}

/* ---------- Final CTA ---------- */

.final-cta h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.5;
  color: var(--ink-900);
  font-weight: 700;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--line-dark);
  padding: 52px 0;
  text-align: center;
}

.footer .wordmark {
  justify-content: center;
  font-size: 1.15rem;
}

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

.footer .contact-line {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Thank You (main) ---------- */

.ty {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  min-height: 100vh;
  min-height: 100dvh;
  padding: 120px 24px 80px;
}

.ty__glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  max-width: 200vw;
  border-radius: 50%;
  opacity: 0.22;
  background: radial-gradient(circle, rgba(201, 166, 100, 0.5), transparent 65%);
  pointer-events: none;
}

.ty__glow-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  max-width: 160vw;
  border-radius: 50%;
  opacity: 0.16;
  background: radial-gradient(circle, rgba(59, 91, 125, 0.6), transparent 70%);
  pointer-events: none;
}

.ty__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.ty__check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 166, 100, 0.15);
  box-shadow: 0 0 60px rgba(201, 166, 100, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--gold-500);
}

.ty__header {
  text-align: center;
}

.ty h1 {
  font-size: clamp(2.35rem, 4.5vw, 3.75rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 22px;
}

.ty__intro {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.ty-card {
  margin-top: 60px;
  border-radius: 20px;
  border: 1px solid rgba(201, 166, 100, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 80px -20px rgba(201, 166, 100, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 40px;
}

.ty-card h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 30px;
}

.ty-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ty-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  list-style: none;
}

.ty-list .icon-circle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 166, 100, 0.12);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ty-list p {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  padding-top: 4px;
}

.ty-contact {
  margin-top: 40px;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, rgb(36, 55, 76), rgb(22, 32, 44));
  border: 1px solid rgba(201, 166, 100, 0.25);
}

.ty-contact h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.ty-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 560px) {
  .ty-contact__grid {
    grid-template-columns: 1fr;
  }
}

.ty-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 166, 100, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.ty-contact__btn:hover {
  transform: scale(1.02);
  border-color: rgba(201, 166, 100, 0.5);
}

.ty-contact__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ty-contact__number {
  font-family: "Inter Display", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: #fff;
}

.ty-contact__hours {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.ty-contact__note {
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.ty__quote {
  margin-top: 48px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--gold-500);
  padding: 0 16px;
}

.ty__disclaimer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.ty__disclaimer p:first-child {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px;
}

.ty__disclaimer p:last-child {
  font-size: 0.76rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Qualify checklist ---------- */

.qualify-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 780px) {
  .qualify-grid {
    grid-template-columns: 1fr;
  }
}

.qualify-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.qualify-card h3 {
  font-family: "Inter Display", sans-serif;
  font-weight: 700;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  font-size: 1.2rem;
  color: var(--ink-900);
  margin-bottom: 22px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-item .icon-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-dot.positive {
  background: rgba(16, 185, 129, 0.14);
  color: #0ea472;
}

.icon-dot.negative {
  background: rgba(239, 68, 68, 0.14);
  color: #dc4444;
}

.check-item span:not(.icon-dot) {
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-700);
}

/* ---------- Location / deadline grid ---------- */

.location-h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  text-align: center;
  margin-bottom: 32px;
}

.location-h3 span {
  font-weight: 400;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.location-group + .location-group {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line-light);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 980px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--line-light);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.location-card .icon-chip {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(201, 166, 100, 0.12);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-card span:not(.icon-chip) {
  flex: 1;
  min-width: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.4;
}

/* ---------- Light nav (thank-you page) ---------- */

.nav--light {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(20, 24, 31, 0.08);
}

.nav--light .wordmark {
  color: #2a3c5a;
}

.nav--light.nav--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px -18px rgba(20, 24, 31, 0.25);
}

/* ---------- Thank-you intro (Guide / Slip and Fall 2) ---------- */

.thankyou {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-align: center;
  padding: 128px 24px 64px;
}

.thankyou__inner {
  max-width: 760px;
  margin: 0 auto;
}

.thankyou__check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--gold-500);
}

.thankyou h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  color: #2a3c5a;
  line-height: 1.18;
  margin-bottom: 22px;
}

.thankyou__sub {
  font-size: 1.02rem;
  color: var(--ink-500);
  max-width: 600px;
  margin: 0 auto 26px;
  line-height: 1.6;
}

.thankyou__desc {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-700);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.thankyou__cta-text {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: #2a3c5a;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.thankyou__scroll {
  margin-top: 8px;
}

.thankyou__scroll-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: 10px;
}

.thankyou__scroll svg {
  color: var(--gold-500);
  animation: bob 2.2s ease-in-out infinite;
}

/* ---------- Hero variant (soft bg + badges) ---------- */

.hero__bg--soft {
  opacity: 0.2;
  filter: blur(1px);
  transform: scale(1.05);
}

.hero__badges {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__badges svg {
  color: var(--gold-500);
  flex-shrink: 0;
}

/* ---------- Rich footer ---------- */

.footer--rich {
  background: var(--navy-900);
  border-top: 1px solid var(--line-dark);
  padding: 64px 0 32px;
  text-align: left;
}

.footer--rich .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

@media (max-width: 720px) {
  .footer--rich .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer--rich h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.footer--rich h4 {
  color: #fff;
  font-family: "Inter Display", sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer--rich p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

.footer--rich ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer--rich li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer--rich .footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

/* ---------- Guide hero ---------- */

.hero--compact {
  position: static;
  min-height: 0;
  padding-top: 128px;
  padding-bottom: 64px;
  display: block;
  overflow: visible;
}

.hero--compact .hero__inner {
  position: static;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  padding: 0;
  align-items: center;
}

.hero--compact .form-iframe-main {
  min-height: 464px;
}

@media (max-width: 900px) {
  .hero--compact .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero--compact .eyebrow {
  text-align: left;
  margin-bottom: 16px;
}

.hero--compact h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.22;
  color: #fff;
}

.hero--compact h1 span {
  display: block;
  color: var(--gold-500);
  margin-top: 8px;
}

.hero--compact .hero__sub {
  margin-top: 22px;
  font-size: 1.08rem;
  max-width: 620px;
}

/* Curved divider */

.curve-divider {
  display: block;
  width: 100%;
  height: 44px;
  background: var(--navy-900);
}

.curve-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Guide checklist ---------- */

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--line-light);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.guide-item:hover {
  border-color: rgba(201, 166, 100, 0.5);
  transform: translateY(-2px);
}

.guide-item .icon-chip {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(201, 166, 100, 0.12);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-item span:not(.icon-chip) {
  flex: 1;
  min-width: 0;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.5;
}

.guide-cta-note {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-700);
}

.why-copy .guide-cta-note {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-700);
}

.book-cover {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(10, 15, 26, 0.35));
  transition: transform 0.4s ease;
}

.book-cover:hover {
  transform: scale(1.04);
}

.book-open {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 34px rgba(10, 15, 26, 0.25));
}

/* ---------- Value props ---------- */

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.value-prop .icon-badge {
  margin: 0 auto 18px;
}

.value-prop h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.value-prop p {
  font-size: 0.92rem;
  color: var(--ink-500);
  margin: 0;
}

@media (max-width: 720px) {
  .value-props {
    gap: 16px;
  }

  .value-prop .icon-badge {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .value-prop .icon-badge svg {
    width: 20px;
    height: 20px;
  }

  .value-prop h3 {
    font-size: 1rem;
  }

  .value-prop p {
    font-size: 0.78rem;
    line-height: 1.35;
  }
}

/* ---------- Disqualification confirmation ---------- */

.disq {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy-900);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.disq__glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: rgba(201, 166, 100, 0.12);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.disq__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.disq__check {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(201, 166, 100, 0.15);
  border: 2px solid var(--gold-500);
  box-shadow: 0 0 40px rgba(201, 166, 100, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--gold-500);
}

.disq h1 {
  font-family: "Inter Display", sans-serif;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 24px;
}

.disq p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 18px;
}

.disq p:last-of-type {
  margin-bottom: 0;
}

/* ---------- Quiz hero ---------- */

.hero--quiz {
  min-height: 75vh;
  min-height: 75dvh;
  flex-direction: column;
  padding-top: 128px;
  padding-bottom: 64px;
  text-align: center;
}

.hero--quiz .wrap {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--quiz .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.hero--quiz h1 {
  font-family: "Inter Display", sans-serif;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.25;
  color: var(--gold-500);
  margin-top: 18px;
}

.hero--quiz__sub {
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  line-height: 1.65;
}

.hero--quiz__note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero--quiz .btn-row {
  margin-top: 32px;
}

.quiz-scroll-btn {
  margin-top: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
  animation: bob 2.2s ease-in-out infinite;
}

.quiz-scroll-btn:hover {
  color: var(--gold-500);
}

/* ---------- Survey ---------- */

.survey-section {
  padding: 72px 0;
}

.survey-frame {
  max-width: 680px;
  margin: 0 auto;
}

.survey-frame iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: none;
}

/* ---------- Case obstacles (quiz result) ---------- */

.obstacle {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  padding: 80px 24px;
}

.obstacle-card {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.obstacle-card h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.32;
  color: #fff;
  margin-bottom: 28px;
}

.obstacle-card p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0 0 20px;
}

.obstacle-card p:last-child {
  margin-bottom: 0;
}

.obstacle-card a {
  color: var(--gold-500);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.obstacle-card a:hover {
  color: var(--gold-300);
}

/* ---------- Strong / Possible case result ---------- */

.section--card {
  background: var(--card-dark);
  color: #fff;
}

.result-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 144px 24px 96px;
}

.result-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--navy-900), var(--navy-900), var(--card-dark));
}

.result-hero__glow {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: rgba(201, 166, 100, 0.1);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.result-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.result-hero__check {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(201, 166, 100, 0.15);
  border: 2px solid var(--gold-500);
  box-shadow: 0 0 40px rgba(201, 166, 100, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--gold-500);
}

.result-hero h1 {
  font-family: "Inter Display", sans-serif;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 22px;
}

.result-hero h1 span {
  display: block;
}

.result-hero h1 .gold {
  color: var(--gold-500);
}

.result-hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.result-hero__note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-500);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.section-title__bar {
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background: rgba(201, 166, 100, 0.4);
  margin: 0 auto;
}

.section-title p {
  margin: 22px auto 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  line-height: 1.6;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 780px) {
  .reason-grid {
    grid-template-columns: 1fr;
  }
}

.reason-card {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 26px;
  transition: border-color 0.25s ease;
}

.reason-card:hover {
  border-color: rgba(201, 166, 100, 0.4);
}

.reason-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201, 166, 100, 0.15);
  border: 1px solid rgba(201, 166, 100, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.reason-card h3 {
  font-family: "Inter Display", sans-serif;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.reason-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.reason-summary {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px;
}

.reason-summary p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin: 0;
}

.plain-card {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 40px;
}

.plain-card__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.plain-card__row .icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 166, 100, 0.15);
  border: 1px solid rgba(201, 166, 100, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.plain-card__row p {
  flex: 1;
  min-width: 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin: 0;
}

.plain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plain-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(201, 166, 100, 0.1);
  border: 1px solid rgba(201, 166, 100, 0.25);
  font-size: 0.85rem;
  color: var(--gold-500);
  font-weight: 500;
}

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--navy-900);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 14px;
  padding: 20px;
}

.warning-item .icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
}

.warning-item p {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 6px;
}

.result-cta {
  background: linear-gradient(to bottom, var(--navy-900), var(--card-dark));
  border: 1px solid rgba(201, 166, 100, 0.25);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 0 60px rgba(201, 166, 100, 0.15);
}

.result-cta__note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.result-cta__contacts {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.result-cta__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.result-cta__contact:hover {
  color: var(--gold-500);
}

.result-cta__contact .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 166, 100, 0.15);
  border: 1px solid rgba(201, 166, 100, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.result-cta__contact:hover .icon-box {
  background: rgba(201, 166, 100, 0.25);
}

.result-cta__contact-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: left;
}

.result-cta__contact-number {
  display: block;
  color: var(--gold-500);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
}

.disclaimer-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  text-align: center;
}

.disclaimer-footer p {
  font-size: 0.76rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 620px;
  margin: 0 auto;
}

.disclaimer-footer p + p {
  margin-top: 16px;
}

/* ---------- Small phones ---------- */

@media (max-width: 480px) {
  .wrap {
    padding: 0 18px;
  }

  .section {
    padding: 56px 0;
  }

  .btn {
    width: 100%;
    padding: 16px 22px;
    font-size: 0.95rem;
    line-height: 1.35;
    letter-spacing: 0;
    gap: 8px;
    white-space: normal;
    text-align: center;
  }

  .btn-gold svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .hero__sub {
    margin-top: 22px;
    font-size: 1.02rem;
  }

  .desktop-break {
    display: none;
  }

  .hero h1 span,
  .hero h2 span,
  .hero--compact h1 span,
  .result-hero h1 span,
  .problem h2 span,
  .section--lightest h2 span {
    display: inline !important;
    margin-top: 0 !important;
  }

  .problem h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .process-card,
  .comp-card,
  .testi-card {
    padding: 22px;
  }

  .process-card p {
    max-width: 100%;
  }

  .process-card__num {
    top: 18px;
    right: 20px;
    font-size: 1.6rem;
  }

  .callout {
    padding: 26px 22px;
  }

  .why-photo__frame {
    border-radius: 14px;
  }

  .faq-item {
    padding: 2px 18px;
  }

  .faq-item summary {
    gap: 14px;
    font-size: 1rem;
    padding: 18px 0;
  }

  .faq-item__body {
    max-width: 100%;
    font-size: 0.94rem;
  }

  .nav__inner {
    padding: 14px 18px;
  }

  .wordmark {
    font-size: 1.15rem;
  }

  .ty {
    padding: 96px 18px 56px;
  }

  .ty-card,
  .ty-contact {
    padding: 26px 22px;
  }

  .ty-card {
    margin-top: 44px;
  }

  .ty__disclaimer {
    margin-top: 48px;
  }

  .qualify-card {
    padding: 22px;
  }

  .location-card {
    padding: 16px 18px;
  }

  .location-group + .location-group {
    margin-top: 40px;
    padding-top: 32px;
  }

  .thankyou {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .thankyou__check {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }

  .hero__badges {
    gap: 14px;
    font-size: 0.8rem;
  }

  .footer--rich {
    padding: 48px 0 24px;
  }

  .hero--compact {
    padding-top: 100px;
    padding-bottom: 16px;
  }

  .hero--compact .hero__inner {
    gap: 28px;
  }

  .hero--compact .form-iframe-main {
    min-height: 420px;
  }

  .guide-item {
    padding: 14px 16px;
    gap: 12px;
  }

  .book-cover {
    max-width: 200px;
  }

  .value-props {
    gap: 10px;
  }

  .disq {
    padding: 56px 20px;
  }

  .disq__check {
    width: 76px;
    height: 76px;
    margin-bottom: 24px;
  }

  .hero--quiz {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero--quiz h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .quiz-scroll-btn {
    margin-top: 28px;
  }

  .survey-section {
    padding: 48px 0;
  }

  .survey-frame iframe {
    min-height: 460px;
  }

  .obstacle {
    padding: 56px 18px;
  }

  .obstacle-card {
    padding: 36px 26px;
  }

  .result-hero {
    padding: 108px 18px 64px;
  }

  .result-hero__check {
    width: 76px;
    height: 76px;
    margin-bottom: 24px;
  }

  .reason-card,
  .reason-summary,
  .plain-card,
  .warning-item {
    padding: 22px;
  }

  .result-cta {
    padding: 32px 22px;
  }

  .result-cta__contacts {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---------- Premium motion ---------- */

@media (prefers-reduced-motion: no-preference) {

  @keyframes revealUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .process-card,
  .comp-card,
  .testi-card,
  .location-card,
  .qualify-card,
  .faq-item,
  .why-photo,
  .callout,
  .section h2,
  .eyebrow,
  .ty-card,
  .ty-contact,
  .ty__quote,
  .ty__disclaimer,
  .guide-item,
  .value-prop,
  .book-cover,
  .book-open,
  .survey-frame,
  .reason-card,
  .reason-summary,
  .plain-card,
  .warning-item,
  .result-cta {
    opacity: 0;
  }

  .is-visible {
    animation: revealUp 0.8s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
  }

  .process-grid > *:nth-child(2),
  .comp-grid > *:nth-child(2),
  .testi-grid > *:nth-child(2),
  .location-grid > *:nth-child(2),
  .qualify-grid > *:nth-child(2),
  .guide-list > *:nth-child(2),
  .value-props > *:nth-child(2) {
    animation-delay: 0.08s;
  }

  .process-grid > *:nth-child(3),
  .comp-grid > *:nth-child(3),
  .testi-grid > *:nth-child(3),
  .location-grid > *:nth-child(3),
  .guide-list > *:nth-child(3),
  .value-props > *:nth-child(3) {
    animation-delay: 0.16s;
  }

  .comp-grid > *:nth-child(4),
  .location-grid > *:nth-child(4),
  .guide-list > *:nth-child(4) {
    animation-delay: 0.24s;
  }

  .comp-grid > *:nth-child(5),
  .location-grid > *:nth-child(5),
  .guide-list > *:nth-child(5) {
    animation-delay: 0.3s;
  }

  .comp-grid > *:nth-child(6),
  .location-grid > *:nth-child(6) {
    animation-delay: 0.36s;
  }

  .location-grid > *:nth-child(7) { animation-delay: 0.42s; }
  .location-grid > *:nth-child(8) { animation-delay: 0.48s; }
  .location-grid > *:nth-child(9) { animation-delay: 0.54s; }

  .hero h1,
  .hero h2,
  .hero__sub,
  #hero-form {
    opacity: 0;
    animation: heroIn 0.9s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
  }

  .hero h1,
  .hero h2 { animation-delay: 0.1s; }
  .hero__sub { animation-delay: 0.28s; }
  #hero-form { animation-delay: 0.42s; }

  @keyframes tyCheckIn {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
  }

  .ty__check {
    opacity: 0;
    animation: tyCheckIn 0.6s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
    animation-delay: 0.05s;
  }

  .ty h1,
  .ty__intro {
    opacity: 0;
    animation: heroIn 0.8s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
  }

  .ty h1 { animation-delay: 0.2s; }
  .ty__intro { animation-delay: 0.34s; }

  .thankyou__check,
  .thankyou h1,
  .thankyou__sub,
  .thankyou__desc,
  .thankyou__cta-text,
  .thankyou__scroll {
    opacity: 0;
    animation: heroIn 0.8s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
  }

  .thankyou__check { animation-delay: 0.05s; }
  .thankyou h1 { animation-delay: 0.16s; }
  .thankyou__sub { animation-delay: 0.28s; }
  .thankyou__desc { animation-delay: 0.38s; }
  .thankyou__cta-text { animation-delay: 0.48s; }
  .thankyou__scroll { animation-delay: 0.58s; }

  @keyframes disqCheckIn {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
  }

  .disq__check {
    opacity: 0;
    animation: disqCheckIn 0.6s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
    animation-delay: 0.05s;
  }

  .disq h1,
  .disq p {
    opacity: 0;
    animation: heroIn 0.8s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
  }

  .disq h1 { animation-delay: 0.22s; }
  .disq p:nth-of-type(1) { animation-delay: 0.34s; }
  .disq p:nth-of-type(2) { animation-delay: 0.44s; }

  .hero--quiz h1,
  .hero--quiz__sub,
  .hero--quiz__note,
  .hero--quiz .btn-row {
    opacity: 0;
    animation: heroIn 0.9s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
  }

  .hero--quiz h1 { animation-delay: 0.1s; }
  .hero--quiz__sub { animation-delay: 0.24s; }
  .hero--quiz__note { animation-delay: 0.34s; }
  .hero--quiz .btn-row { animation-delay: 0.44s; }

  .obstacle-card {
    opacity: 0;
    animation: heroIn 0.8s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
    animation-delay: 0.1s;
  }

  @keyframes resultCheckIn {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
  }

  .result-hero__check {
    opacity: 0;
    animation: resultCheckIn 0.6s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
    animation-delay: 0.05s;
  }

  .result-hero h1,
  .result-hero__sub,
  .result-hero .btn-row,
  .result-hero__note {
    opacity: 0;
    animation: heroIn 0.8s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
  }

  .result-hero h1 { animation-delay: 0.2s; }
  .result-hero__sub { animation-delay: 0.32s; }
  .result-hero .btn-row { animation-delay: 0.44s; }
  .result-hero__note { animation-delay: 0.54s; }

  /* Button shine sweep */
  .btn-gold {
    position: relative;
    overflow: hidden;
  }

  .btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 35%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
  }

  .btn-gold:hover::before {
    left: 130%;
  }

  /* Nav scroll shadow */
  .nav {
    transition: box-shadow 0.35s ease, background 0.35s ease;
  }

  .nav--scrolled {
    background: rgba(10, 15, 26, 0.94);
    box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-card,
  .comp-card,
  .testi-card,
  .location-card,
  .qualify-card,
  .faq-item,
  .why-photo,
  .callout,
  .section h2,
  .eyebrow,
  .hero h1,
  .hero h2,
  .hero__sub,
  #hero-form {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
