/* ===========================================================
   KCAPITAL — styles
   =========================================================== */

:root {
  --navy: #0b1f33;
  --navy-900: #081625;
  --navy-800: #0e2840;
  --navy-700: #14324f;
  --gold: #c9a24b;
  --gold-soft: #d8b86a;
  --cream: #f7f5f0;
  --paper: #ffffff;
  --ink: #14202b;
  --muted: #5c6b78;
  --line: rgba(11, 31, 51, 0.10);
  --line-dark: rgba(255, 255, 255, 0.12);

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(11, 31, 51, 0.12);
  --shadow-lg: 0 30px 80px rgba(11, 31, 51, 0.18);

  --font: "Heebo", "Assistant", system-ui, -apple-system, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: 1px solid transparent; transition: all 0.35s var(--ease);
  white-space: nowrap; letter-spacing: 0.2px;
}
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--full { width: 100%; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-900); box-shadow: 0 10px 30px rgba(201, 162, 75, 0.35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201, 162, 75, 0.5); }
.btn--ghost { background: transparent; border-color: var(--line-dark); color: var(--cream); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); color: #fff; }
.section .btn--ghost { border-color: var(--line); color: var(--ink); }
.section .btn--ghost:hover { border-color: var(--gold); color: var(--navy); }

/* ===== Eyebrow / headings ===== */
.eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  padding-bottom: 14px; position: relative;
}
.eyebrow::after { content: ""; position: absolute; bottom: 4px; inset-inline-start: 0; width: 32px; height: 2px; background: var(--gold); }

.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; line-height: 1.15;
  margin: 14px 0 0; color: var(--navy);
}
.section--dark .section__title, .section--contact .section__title { color: #fff; }
.section__lead { font-size: 1.12rem; color: var(--muted); margin-top: 18px; max-width: 620px; }
.section--dark .section__lead { color: rgba(255,255,255,0.7); }
.section__head { margin-bottom: 56px; max-width: 760px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: all 0.4s var(--ease); padding: 18px 0;
}
.nav.scrolled {
  background: rgba(11, 31, 51, 0.92); backdrop-filter: blur(14px);
  padding: 12px 0; box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-900); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.4rem; flex: none;
}
.brand__name { color: #fff; font-weight: 400; letter-spacing: 2px; font-size: 1.15rem; }
.brand__name strong { font-weight: 800; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a { color: rgba(255,255,255,0.82); font-size: 0.96rem; font-weight: 500; transition: color 0.25s; }
.nav__links > a:hover { color: var(--gold); }

.nav__tools { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-dark); border-radius: 999px; padding: 7px 14px; color: #fff;
  font-size: 0.85rem; font-weight: 600; transition: all 0.25s;
}
.lang-toggle:hover { border-color: var(--gold); }
.lang-toggle__opt { opacity: 0.5; transition: opacity 0.2s, color 0.2s; }
.lang-toggle__opt.is-active { opacity: 1; color: var(--gold); }
.lang-toggle__sep { opacity: 0.3; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; transition: all 0.3s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); color: #fff; overflow: hidden; padding: 120px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.hero__glow--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(201,162,75,0.55), transparent 70%); top: -120px; inset-inline-end: -60px; animation: float1 14s ease-in-out infinite; }
.hero__glow--2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(20,50,79,0.9), transparent 70%); bottom: -140px; inset-inline-start: -80px; animation: float2 18s ease-in-out infinite; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}
@keyframes float1 { 50% { transform: translate(-30px, 40px) scale(1.1); } }
@keyframes float2 { 50% { transform: translate(40px, -30px) scale(1.08); } }

.hero__inner { position: relative; z-index: 2; max-width: 860px; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.08; margin: 22px 0;
  letter-spacing: -0.5px;
}
.hero__title em { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--gold); }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,0.78); max-width: 640px; }
.hero__cta { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

.hero__stats { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--gold); font-family: var(--serif); }
.stat__label { font-size: 0.92rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

.hero__scroll { position: absolute; bottom: 30px; inset-inline-start: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3); border-radius: 14px; position: relative; }
.hero__scroll span::after { content: ""; position: absolute; top: 7px; inset-inline-start: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 20px; } }

/* ===== TRUST BAR ===== */
.trustbar { background: var(--navy-900); color: #fff; padding: 26px 0; border-top: 1px solid var(--line-dark); }
.trustbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trustbar__inner > p { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-soft); font-style: italic; }
.trustbar__items { display: flex; gap: 28px; flex-wrap: wrap; }
.trustbar__items span { font-size: 0.92rem; color: rgba(255,255,255,0.7); position: relative; padding-inline-start: 18px; }
.trustbar__items span::before { content: "◆"; position: absolute; inset-inline-start: 0; color: var(--gold); font-size: 0.6rem; top: 4px; }

/* ===== SECTIONS ===== */
.section { padding: 110px 0; }
.section--dark { background: var(--navy); color: #fff; }
.section--about { background: var(--paper); }
.section--contact { background: linear-gradient(160deg, var(--navy), var(--navy-900)); color: #fff; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transform: scaleX(0); transform-origin: inline-start; transition: transform 0.4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 52px; height: 52px; border-radius: 13px; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 20px; }
.card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ===== Criteria ===== */
.criteria { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.criteria__metric {
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 44px 28px; text-align: center; transition: all 0.4s var(--ease);
}
.criteria__metric:hover { border-color: var(--gold); background: rgba(201,162,75,0.07); transform: translateY(-6px); }
.criteria__range { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; color: var(--gold); line-height: 1; }
.criteria__unit { display: block; font-size: 1rem; color: rgba(255,255,255,0.55); margin-top: 8px; }
.criteria__label { display: block; font-size: 1.05rem; color: #fff; font-weight: 600; margin-top: 14px; }

.criteria__lists { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.critlist { background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 32px; }
.critlist__title { font-size: 1.15rem; margin-bottom: 18px; padding-inline-start: 28px; position: relative; }
.critlist__title::before { position: absolute; inset-inline-start: 0; top: -2px; font-size: 1.3rem; }
.critlist__title--yes::before { content: "✓"; color: var(--gold); }
.critlist__title--flex::before { content: "◈"; color: var(--gold-soft); }
.critlist ul { list-style: none; }
.critlist li { padding: 11px 0; color: rgba(255,255,255,0.78); border-bottom: 1px solid rgba(255,255,255,0.06); padding-inline-start: 24px; position: relative; }
.critlist li:last-child { border-bottom: 0; }
.critlist li::before { content: "—"; position: absolute; inset-inline-start: 0; color: var(--gold); }

/* ===== Steps (value) ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); transition: all 0.4s var(--ease); }
.step:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.step__num { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 16px; opacity: 0.85; }
.step h3 { font-size: 1.18rem; color: var(--navy); margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__photo {
  aspect-ratio: 4/5; border-radius: var(--radius); background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about__photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(201,162,75,0.25), transparent 60%); }
.about__photo span { font-family: var(--serif); font-size: 6rem; font-weight: 700; color: rgba(201,162,75,0.5); }
.about__photo img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about__badge {
  position: absolute; bottom: -26px; inset-inline-end: -16px; background: var(--gold);
  color: var(--navy-900); border-radius: var(--radius-sm); padding: 18px 22px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; max-width: 180px;
}
.about__badge-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.about__badge-txt { font-size: 0.85rem; font-weight: 600; margin-top: 4px; }
.about__body p { color: var(--muted); margin-top: 16px; font-size: 1.04rem; }
.about__sign { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.about__sign-name { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.about__sign-role { display: block; font-size: 0.92rem; color: var(--muted); margin-top: 2px; }

/* ===== Team ===== */
.team { display: grid; grid-template-columns: repeat(2, minmax(0, 280px)); gap: 40px; justify-content: center; margin-top: 48px; }
.member { text-align: center; }
.member__photo {
  aspect-ratio: 1/1; border-radius: var(--radius); background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; margin: 0 auto;
}
.member__photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(201,162,75,0.22), transparent 60%); }
.member__photo span { font-family: var(--serif); font-size: 4rem; font-weight: 700; color: rgba(201,162,75,0.5); }
.member__photo img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-top: 20px; }
.member__role { display: block; font-size: 0.92rem; color: var(--muted); margin-top: 4px; }

/* ===== Timeline ===== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.timeline::before { content: ""; position: absolute; top: 7px; inset-inline: 6%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.tl { position: relative; padding: 40px 18px 0; text-align: center; }
.tl__dot { position: absolute; top: 0; inset-inline-start: 50%; transform: translateX(-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(201,162,75,0.18); }
.tl__step { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.tl h3 { font-size: 1.1rem; color: #fff; margin: 6px 0 8px; }
.tl p { font-size: 0.92rem; color: rgba(255,255,255,0.65); }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.contact__points { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.contact__points li { color: rgba(255,255,255,0.85); font-size: 1.02rem; }
.contact__form { background: var(--paper); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.98rem; color: var(--ink); background: #fbfaf7; transition: all 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(201,162,75,0.12); }
.field textarea { resize: vertical; }
.form__note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form__success[hidden] { display: none; }
.form__success {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 40px 28px; background: rgba(201,162,75,0.10); border: 1px solid var(--gold);
  border-radius: var(--radius-sm); color: var(--navy); text-align: center; font-weight: 600; font-size: 1.05rem;
}
.form__success-icon {
  width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--navy-900);
  display: grid; place-items: center; font-size: 1.8rem; font-weight: 700;
}

/* ===== Wizard (multi-step lead form) ===== */
.wizard {
  background: var(--paper); border-radius: var(--radius); padding: 34px 38px 30px;
  box-shadow: var(--shadow-lg); position: relative;
}
.wizard__head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.wizard__bar { flex: 1; height: 6px; border-radius: 999px; background: rgba(11,31,51,0.10); overflow: hidden; }
.wizard__bar span { display: block; height: 100%; width: 25%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), #e0c074); transition: width 0.45s var(--ease); }
.wizard__count { font-size: 0.82rem; color: var(--muted); font-weight: 600; white-space: nowrap; }
.wizard__count strong { color: var(--gold); font-size: 1rem; }

.wstep { display: none; animation: wstepIn 0.4s var(--ease); }
.wstep.is-active { display: block; }
@keyframes wstepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.wstep__q { font-size: 1.4rem; color: var(--navy); font-weight: 700; line-height: 1.3; }
.wstep__hint { color: var(--muted); font-size: 0.95rem; margin: 8px 0 22px; }

.wopts { display: flex; flex-direction: column; gap: 12px; }
.wopts--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wopt {
  display: flex; align-items: center; gap: 13px; width: 100%; text-align: start;
  padding: 16px 18px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfaf7; color: var(--ink); font-family: inherit; font-size: 1.02rem; font-weight: 500;
  cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.wopt:hover { border-color: var(--gold); background: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(11,31,51,0.08); }
.wopt__check { width: 22px; height: 22px; flex: none; border-radius: 50%; border: 2px solid var(--line); position: relative; transition: all 0.2s; }
.wopt.is-selected { border-color: var(--gold); background: rgba(201,162,75,0.10); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); }
.wopt.is-selected .wopt__check { border-color: var(--gold); background: var(--gold); }
.wopt.is-selected .wopt__check::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--navy-900); }

.wizard__nav { margin-top: 22px; min-height: 20px; }
.wizard__back {
  background: none; border: none; color: var(--muted); font-family: inherit; font-size: 0.95rem;
  font-weight: 600; cursor: pointer; padding: 6px 2px; transition: color 0.2s;
}
.wizard__back::before { content: "→ "; }
html[dir="ltr"] .wizard__back::before { content: "← "; }
.wizard__back:hover { color: var(--gold); }

.field input.is-error { border-color: #c0392b; background: #fdf3f2; }

/* ===== Footer ===== */
.footer { background: var(--navy-900); color: #fff; padding: 64px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.footer__brand .brand__mark { display: inline-grid; margin-bottom: 14px; }
.footer__brand .brand__name { display: block; margin-bottom: 12px; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 300px; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__contact a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color 0.2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .cards, .steps { grid-template-columns: 1fr 1fr; }
  .criteria { grid-template-columns: 1fr; }
  .criteria__lists, .contact, .about { grid-template-columns: 1fr; }
  .about__media { max-width: 360px; margin: 0 auto 30px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 30px; }
  .timeline::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__links { position: fixed; top: 0; inset-inline-end: 0; height: 100vh; width: 78%; max-width: 320px;
    background: var(--navy-900); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px; padding: 40px; transform: translateX(110%); transition: transform 0.4s var(--ease); z-index: 90; }
  html[dir="rtl"] .nav__links { transform: translateX(-110%); }
  .nav__links.open { transform: translateX(0) !important; }
  .nav__links > a { font-size: 1.2rem; }
  .nav__burger { display: flex; }
  .cards, .steps, .timeline, .footer__inner { grid-template-columns: 1fr; }
  .team { grid-template-columns: minmax(0, 280px); }
  .field-row, .wopts--grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .section { padding: 72px 0; }
  .contact__form, .wizard { padding: 26px 22px; }
  .wstep__q { font-size: 1.2rem; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ===========================================================
   Landing page (landing.html) — form-first, conversion-focused
   =========================================================== */
.lp-header { position: absolute; top: 0; inset-inline: 0; z-index: 20; }
.lp-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.lp-header .brand__name { color: #fff; }
.lp-header__right { display: flex; align-items: center; gap: 20px; }
.lp-viewsite { color: rgba(255,255,255,0.78); font-size: 0.92rem; font-weight: 600; transition: color 0.2s; white-space: nowrap; }
.lp-viewsite:hover { color: var(--gold); }

.lp-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 116px 0 64px; color: #fff; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(201,162,75,0.16), transparent 60%),
    radial-gradient(700px 500px at -5% 110%, rgba(18,48,79,0.6), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
}
.lp-hero__grid { display: grid; grid-template-columns: 1fr 1.04fr; gap: 56px; align-items: center; width: 100%; }
.lp-hero__title { font-size: clamp(2rem, 4.2vw, 3.3rem); line-height: 1.14; font-weight: 700; letter-spacing: -0.01em; margin-top: 14px; }
.lp-hero__sub { color: rgba(255,255,255,0.74); font-size: 1.1rem; line-height: 1.7; margin-top: 18px; max-width: 480px; }
.lp-bullets { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 13px; }
.lp-bullets li { display: flex; align-items: center; gap: 11px; font-size: 1.04rem; color: rgba(255,255,255,0.92); }
.lp-bullets .ic { width: 24px; height: 24px; flex: none; border-radius: 50%; background: rgba(201,162,75,0.16); color: var(--gold); display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; }
.lp-trustline { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.lp-trustline span { color: var(--gold); }

/* trust strip */
.lp-strip { background: var(--navy); color: #fff; padding: 26px 0; }
.lp-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; }
.lp-strip__inner span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.82); font-size: 0.98rem; font-weight: 500; }
.lp-strip__inner span::before { content: "✓"; color: var(--gold); font-weight: 700; }

.lp-foot { background: var(--navy-900); color: rgba(255,255,255,0.55); text-align: center; padding: 22px 16px; font-size: 0.85rem; }

@media (max-width: 880px) {
  .lp-hero { min-height: 0; padding: 96px 0 48px; }
  .lp-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .lp-hero__form { order: -1; }  /* form first on mobile */
  .lp-hero__title { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .lp-viewsite { display: none; }
}
