/* ══════════════════════════════════════════════
   Legal Consulting — style.css
   ══════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────── */
:root {
  --navy:    #0A0F1E;
  --navy2:   #111A30;
  --navy3:   #1A2845;
  --gold:    #C9A84C;
  --gold2:   #E8C87A;
  --green:   #06A77D;
  --green2:  #04C694;
  --bg:      #F5F7FA;
  --bg2:     #EEF1F8;
  --white:   #FFFFFF;
  --text:    #111827;
  --text2:   #4A5568;
  --text3:   #9AA5B4;
  --border:  #DDE3EF;
  --sh:      0 4px 24px rgba(10,15,30,0.09);
  --sh2:     0 20px 60px rgba(10,15,30,0.16);
  --r:       12px;
  --r2:      18px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.5px; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }

/* ── LAYOUT ──────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 84px 0; }
.section--alt { background: var(--bg); }
.section--dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text2); font-size: 16px; line-height: 1.75; }
.section-head .tag { margin-bottom: 10px; }

/* ── EYEBROW TAG ─────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── PULSE DOT ───────────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
  animation: pulse 1.8s infinite;
}
.pulse-dot--green { background: var(--green2); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.5); }
}

/* ── GRADIENT TEXT ───────────────────────────── */
.grad-text {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline--light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline--light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── FORMS ───────────────────────────────────── */
.fgroup { margin-bottom: 14px; }
.fgroup label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text2);
  margin-bottom: 5px;
}
.fgroup input,
.fgroup textarea,
.fgroup select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,15,30,0.07);
}
.fgroup textarea { resize: vertical; }
.form-note {
  font-size: 11px;
  color: var(--text3);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.form-note a { text-decoration: underline; }
.form-msg {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  display: none;
}
.form-msg--success { background: #e6f5f1; color: var(--green); }
.form-msg--error   { background: #fdecea; color: #c1121f; }

/* ── HEADER ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(10,15,30,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(10,15,30,0.4); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.logo span { color: var(--gold); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 7px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.site-nav .nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  margin-left: 6px;
  padding: 9px 18px;
  border-radius: 7px;
}
.site-nav .nav-cta:hover { background: var(--gold2); color: var(--navy); }

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

/* ── HERO ────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy2) 55%, var(--navy3) 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hstat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.hstat-val b { color: var(--gold); }
.hstat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--r2);
  padding: 36px 30px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  animation: fadeLeft 0.7s 0.15s ease both;
}
.hero-card-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.hero-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-card > p {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 22px;
}

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
}
.trust-item svg { flex-shrink: 0; }

/* ── ABOUT ───────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--text2); line-height: 1.75; margin-bottom: 16px; font-size: 15px; }
.check-list { margin: 18px 0 28px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text2);
  line-height: 1.55;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0F1E' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}
.disclaimer {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--bg);
  border-left: 3px solid var(--border);
  border-radius: 0 8px 8px 0;
  font-size: 12px;
  color: var(--text3);
  line-height: 1.6;
  font-style: italic;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ahi {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  transition: all 0.25s;
}
.ahi:hover {
  border-color: var(--gold);
  box-shadow: var(--sh);
  transform: translateY(-2px);
}
.ahi-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
}
.ahi h4 { font-size: 14px; margin-bottom: 5px; }
.ahi p  { font-size: 12px; color: var(--text3); line-height: 1.5; }

/* ── CTA STRIP ───────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: 10px; }
.cta-text p  { color: rgba(255,255,255,0.65); font-size: 15px; max-width: 520px; }

/* ── SERVICES ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--sh2);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
  transition: all 0.25s;
}
.service-card:hover .service-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.service-card h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ── STATS ───────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-card:last-child { border-right: none; }
.stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-val .prefix { font-size: 0.55em; color: var(--gold); }
.stat-val .num    { color: var(--white); }
.stat-val .suffix { font-size: 0.55em; color: var(--gold); }
.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
}
.stats-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 24px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── HOW IT WORKS ────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s;
}
.how-card:hover { box-shadow: var(--sh2); }
.how-num {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--bg2);
  position: absolute;
  top: 18px; right: 22px;
  line-height: 1;
  letter-spacing: -3px;
  pointer-events: none;
  user-select: none;
}
.how-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(10,15,30,0.2);
}
.how-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.how-card p  { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── TEAM ────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: all 0.25s;
}
.team-card:hover {
  box-shadow: var(--sh2);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.team-photo-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg2);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.04); }
.team-info { padding: 20px 18px; }
.team-info h4 { font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.team-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.team-divider {
  width: 32px;
  height: 2px;
  background: var(--border);
  margin-bottom: 12px;
}
.team-info p { font-size: 12px; color: var(--text2); line-height: 1.6; }

/* ── QUIZ ────────────────────────────────────── */
.quiz-section {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.quiz-section::before {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.quiz-wrap {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.quiz-left .tag { color: var(--gold); }
.quiz-left h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.quiz-left > p {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 26px;
}
.quiz-perks { display: flex; flex-direction: column; gap: 10px; }
.quiz-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
}
.quiz-perks li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.quiz-box {
  background: var(--white);
  border-radius: var(--r2);
  padding: 34px 30px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.quiz-progress {
  display: flex;
  gap: 5px;
  margin-bottom: 26px;
}
.qp-seg {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  transition: background 0.3s;
}
.qp-seg.active { background: var(--gold); }
.qp-seg.done   { background: var(--green); }

.qstep { display: none; }
.qstep.active { display: block; }
.q-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.q-question {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}
.q-hint { font-size: 13px; color: var(--text3); margin-bottom: 18px; }
.q-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 6px;
}
.qopt {
  padding: 14px 10px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  transition: all 0.2s;
  text-align: center;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.qopt i { font-size: 18px; opacity: 0.8; }
.qopt:hover i, .qopt.sel i { opacity: 1; }
.qopt:hover, .qopt.sel {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.result-ring {
  text-align: center;
  padding: 8px 0 16px;
}
.result-pct {
  font-family: 'Outfit', sans-serif;
  font-size: 68px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -3px;
}
.result-note {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin: 8px 0 20px;
}
.q-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.q-contact input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  background: var(--bg);
  transition: border-color 0.2s;
}
.q-contact input:focus {
  border-color: var(--navy);
  background: var(--white);
}
#quiz-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
#quiz-submit:hover {
  background: var(--navy3);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10,15,30,0.2);
}

/* ── FAQ ─────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 16px;
  line-height: 1.35;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--navy); }
.faq-icon {
  font-size: 20px;
  color: var(--text3);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.2s;
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-inner {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.72;
}

/* ── TESTIMONIALS ────────────────────────────── */
.testi-slider { position: relative; }
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.testi-arr {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.testi-arr:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.testi-arr:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.testi-dots { display: flex; gap: 6px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
  flex: 0 0 calc(50% - 10px);
  min-width: 0;
}
.testi-card:hover { box-shadow: var(--sh2); }
.testi-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text3); margin-top: 2px; }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-top: 3px; }
.testi-quote {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  font-style: italic;
}

/* ── CONTACT ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h4 { font-size: 16px; margin-bottom: 20px; }
.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
}
.contact-info-list i {
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 14px;
}
.contact-info-list a { transition: color 0.2s; }
.contact-info-list a:hover { color: var(--navy); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.done-msg {
  display: none;
  padding: 12px 16px;
  background: #e6f5f1;
  color: var(--green);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.6); }
.footer-top { padding: 56px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand p { font-size: 13px; line-height: 1.72; max-width: 280px; margin-bottom: 16px; }
.footer-contacts { font-size: 13px; line-height: 2; }
.footer-contacts a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contacts a:hover { color: var(--white); }
.footer-col h5 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.65;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 10px;
}

/* ── CHAT ────────────────────────────────────── */
.lc-chat-fab {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(10,15,30,0.35);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  animation: slideIn 0.5s 1s ease both;
}
.lc-chat-fab:hover {
  background: var(--navy3);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(10,15,30,0.45);
}
.lc-chat-fab-count {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
}
.lc-chat-window {
  position: fixed;
  bottom: 90px; right: 26px;
  z-index: 499;
  width: 360px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(10,15,30,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lc-chat-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.lc-chat-header {
  background: var(--navy);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lc-chat-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lc-chat-avatar {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  flex-shrink: 0;
}
.lc-chat-agent-name  { font-size: 14px; font-weight: 600; color: var(--white); }
.lc-chat-agent-status {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.lc-chat-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.lc-chat-close:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.lc-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  min-height: 200px;
  max-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lc-chat-msg { display: flex; justify-content: flex-start; }
.lc-chat-msg--user { justify-content: flex-end; }
.lc-chat-msg-bubble {
  max-width: 80%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.lc-chat-msg .lc-chat-msg-bubble {
  background: var(--bg2);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.lc-chat-msg--user .lc-chat-msg-bubble {
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.lc-chat-msg-time { font-size: 10px; opacity: 0.5; margin-top: 4px; }
.lc-chat-input-area {
  padding: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.lc-chat-input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.lc-chat-input:focus { border-color: var(--navy); }
.lc-chat-send {
  width: 36px; height: 36px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.lc-chat-send:hover { background: var(--gold2); }
.lc-chat-lead-form {
  padding: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lc-chat-lead-form input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  background: var(--bg);
  transition: border-color 0.2s;
}
.lc-chat-lead-form input:focus { border-color: var(--navy); background: var(--white); }
.lc-chat-lead-submit {
  width: 100%;
  padding: 11px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.lc-chat-lead-submit:hover { background: var(--navy3); }

/* ── MOBILE STICKY ───────────────────────────── */
.mob-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 18px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(10,15,30,0.1);
}
.mob-sticky a {
  flex: 1;
  padding: 13px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-btn-1 { background: var(--gold); color: var(--navy); }
.mob-btn-2 { background: var(--bg2); color: var(--navy); border: 2px solid var(--navy); }

/* ── POPUP ───────────────────────────────────── */
.lc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,16,32,0.72);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  padding: 20px;
}
.lc-popup-overlay.active { display: flex; }
.lc-popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 38px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 100px rgba(0,0,0,0.3);
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.lc-popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: var(--bg2);
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  transition: all 0.2s;
}
.lc-popup-close:hover { background: var(--border); color: var(--text); }
.lc-popup-icon { font-size: 44px; text-align: center; display: block; margin-bottom: 14px; }
.lc-popup-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}
.lc-popup-box > p {
  font-size: 14px;
  color: var(--text2);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.65;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.popup-form input {
  padding: 12px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  background: var(--bg);
  transition: border-color 0.2s;
  width: 100%;
}
.popup-form input:focus { border-color: var(--navy); background: var(--white); }
.popup-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.popup-submit:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* ── COOKIE ──────────────────────────────────── */
#cookieNotice {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 600;
  background: var(--navy2);
  color: rgba(255,255,255,0.75);
  padding: 16px 20px;
  border-radius: var(--r);
  font-size: 13px;
  max-width: 360px;
  display: none;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(10,15,30,0.3);
  border: 1px solid rgba(255,255,255,0.08);
}
#cookieNotice a { color: var(--gold); text-decoration: underline; }
#cookieAccept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
#cookieAccept:hover { background: var(--gold2); }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideIn  { from { opacity: 0; transform: translateX(80px); } to { opacity: 1; transform: translateX(0); } }
@keyframes popIn    { from { opacity: 0; transform: scale(0.85) translateY(28px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes fbPulse  { 0%, 100% { opacity: 0.3; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid        { grid-template-columns: 1fr; max-width: 640px; }
  .hero-card        { display: none; }
  .about-grid       { grid-template-columns: 1fr; gap: 40px; }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .how-grid         { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .quiz-wrap        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .quiz-left        { display: none; }
  .quiz-wrap        { max-width: 480px; }
  .faq-grid         { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section   { padding: 56px 0; }

  .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 0 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }
  .site-nav.open {
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
    padding: 16px 20px 20px;
  }
  .site-nav ul { flex-direction: column; width: 100%; gap: 0; align-items: stretch; }
  .site-nav a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.07);
    border-radius: 0;
    background: none;
    letter-spacing: .01em;
    transition: color .2s, padding-left .2s;
  }
  .site-nav a:hover { color: #fff; background: none; padding-left: 8px; }
  .site-nav .nav-cta {
    display: block;
    margin: 16px 0 0;
    padding: 14px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
    border-bottom: none;
    letter-spacing: .02em;
  }
  .site-nav .nav-cta:hover { background: var(--gold2); color: var(--navy); padding-left: 14px; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-desc { font-size: 15px; }
  .hero-stats { gap: 24px; }

  .trust-inner { gap: 16px; justify-content: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .stat-card     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }

  .team-grid  { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 100%; }
  .form-row   { grid-template-columns: 1fr; }

  .about-highlights { grid-template-columns: 1fr 1fr; }

  .q-options  { grid-template-columns: 1fr; }
  .quiz-box   { padding: 24px 20px; }

  .cta-inner  { flex-direction: column; text-align: center; }
  .cta-text p { max-width: 100%; }

  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .lc-chat-fab span:not(.pulse-dot) { display: none; }
  .lc-chat-fab { padding: 14px; border-radius: 50%; }
  .lc-chat-fab { display: none; }
  .lc-chat-window { width: calc(100vw - 32px); right: 16px; bottom: 80px; }

  .mob-sticky { display: flex; }
  body { padding-bottom: 68px; }
}
@media (max-width: 480px) {
  .team-grid       { grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
}

/* ── SIDEBAR QUIZ BUTTON ─────────────────────── */
.lc-sidebar-quiz {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  border-radius: 8px 0 0 8px;
  box-shadow: -3px 0 16px rgba(0,0,0,.18);
  transition: background .2s, transform .2s;
  writing-mode: initial;
}
.lc-sidebar-quiz i {
  font-size: 20px;
}
.lc-sidebar-quiz:hover {
  background: var(--gold2);
  transform: translateY(-50%) translateX(-3px);
}
@media (max-width: 768px) {
  .lc-sidebar-quiz { display: none; }
}

/* ── SIDEBAR QUIZ WIDGET (override) ─────────────────────── */
.lc-sidebar-quiz {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  width: 220px;
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.lc-sidebar-quiz .sq-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
}
.lc-sidebar-quiz .sq-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.lc-sidebar-quiz .sq-text {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.lc-sidebar-quiz .sq-btn {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 14px;
  border-radius: 8px;
  transition: opacity .2s;
}
.lc-sidebar-quiz:hover .sq-btn { opacity: .85; }
@media (max-width: 1280px) {
  .lc-sidebar-quiz { display: none; }
}

/* ── SIDEBAR QUIZ WIDGET (v2) ────────────────── */
.lc-sidebar-quiz {
  position: fixed;
  right: calc((100vw - 820px) / 2 - 244px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  width: 220px;
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  cursor: default;
}
.lc-sidebar-quiz .sq-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
}
.lc-sidebar-quiz .sq-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.lc-sidebar-quiz .sq-text {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.lc-sidebar-quiz .sq-btn {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s;
}
.lc-sidebar-quiz .sq-btn:hover { opacity: .82; }
@media (max-width: 1300px) {
  .lc-sidebar-quiz { display: none; }
}

/* ── LEGAL PAGE INLINE CTA ───────────────────── */
.legal-cta {
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,.25);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 28px 28px 28px 28px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-cta-text .lct-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.legal-cta-text .lct-sub {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: #5a6478;
  margin: 0;
}
.legal-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.legal-cta-btn:hover { opacity: .85; }
@media (max-width: 600px) {
  .legal-cta { flex-direction: column; align-items: flex-start; }
}

/* ── LEGAL CTA color fix ─────────────────────── */
.legal-cta-text .lct-title { color: #fff; }
.legal-cta-text .lct-sub   { color: rgba(255,255,255,.6); }
.legal-cta-btn             { color: var(--navy); }

.legal-content .legal-cta-btn,
.legal-content .legal-cta-btn:hover { color: var(--navy); text-decoration: none; }

/* ── LEGAL PAGES ─────────────────────────────── */
.legal-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 140px 0 60px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.legal-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  position: relative;
}
.legal-hero .legal-meta {
  color: var(--gold);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  position: relative;
}
.legal-body,
.legal-page-wrap {
  background: var(--bg);
  padding: 64px 0 80px;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p,
.legal-content ul,
.legal-content ol {
  font-family: 'Inter', sans-serif;
  font-size: .975rem;
  line-height: 1.75;
  color: #3a4455;
  margin: 0 0 12px;
}
.legal-content ul,
.legal-content ol { padding-left: 20px; margin-bottom: 16px; }
.legal-content li  { margin-bottom: 6px; }
.legal-content a   { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong  { color: var(--navy); }

/* ── LANG SWITCHER ───────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
  flex-shrink: 0;
}
.lang-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  padding: 3px 7px;
  border-radius: 4px;
  transition: color .2s;
  text-transform: uppercase;
  line-height: 1;
}
.lang-btn:hover,
.lang-btn.active { color: var(--gold); }
.lang-sep {
  color: rgba(255,255,255,.2);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .lang-switcher { margin-left: 8px; }
}

/* ── MOB STICKY CHAT BADGE ───────────────────── */
.mob-btn-2 { position: relative; display: flex; align-items: center; gap: 6px; }
.mob-chat-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--navy);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
