/* ============================================================
   HEZA COORDINATION — SHARED STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Michroma&display=swap');

:root {
  --navy:        #002147;
  --navy-deep:   #001530;
  --navy-mid:    #0a3160;
  --blue:        #3a7bd5;
  --blue-light:  #5b96f7;
  --blue-pale:   #e8f0fe;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --text:        #1e2433;
  --text-muted:  #64748b;
  --border:      #e2e8f0;

  --ff-display: 'Michroma', Georgia, serif;
  --ff-body:    'Michroma', system-ui, sans-serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:           all 0.28s var(--ease);
  --t-slow:      all 0.55s var(--ease);

  --shadow-xs: 0 1px 3px rgba(0,33,71,0.07);
  --shadow-sm: 0 4px 12px rgba(0,33,71,0.09);
  --shadow:    0 8px 24px rgba(0,33,71,0.12);
  --shadow-lg: 0 20px 40px rgba(0,33,71,0.16);
  --shadow-xl: 0 30px 60px rgba(0,33,71,0.22);

  --r:    10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --container: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
}
h1,h2,h3,h4,h5 { font-family: 'Nunito', system-ui, sans-serif; line-height: 1.2; font-weight: 400; letter-spacing: -0.01em; }
a { color: var(--blue); text-decoration: none; transition: var(--t); }
img { max-width: 100%; display: block; }

/* ===== CONTAINER ===== */
.container { width: 90%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ===== SHARED BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: 6px; font-family: var(--ff-body);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.2px;
  cursor: pointer; border: none; transition: var(--t);
  text-decoration: none; white-space: nowrap; line-height: 1.4;
}
.btn-navy  { background: var(--navy); color: var(--white); box-shadow: 0 4px 14px rgba(0,33,71,0.25); }
.btn-navy:hover  { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,123,213,0.35); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.14); border-color: var(--white); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: var(--t); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
/* When mobile nav is open, kill backdrop-filter so fixed children can escape stacking context */
body.nav-open #header {
  backdrop-filter: none; -webkit-backdrop-filter: none;
  background: transparent;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,33,71,0.08);
}
.header-container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; transition: var(--t);
}
#header.scrolled .header-container { padding: 12px 0; }
.logo-img { height: 3.6rem; width: auto; transition: var(--t); }
#header.scrolled .logo-img { height: 3rem; }
.header-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.header-nav li a {
  font-size: 0.88rem; font-weight: 500; color: var(--white);
  padding: 7px 13px; border-radius: 6px; letter-spacing: 0.15px; transition: var(--t);
}
#header.scrolled .header-nav li a { color: var(--navy); }
.header-nav li a:hover { background: rgba(255,255,255,0.14); }
#header.scrolled .header-nav li a:hover { background: var(--blue-pale); color: var(--navy); }
.header-nav .nav-cta a {
  background: var(--navy); color: var(--white) !important;
  padding: 8px 18px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,33,71,0.25);
}
#header.scrolled .header-nav .nav-cta a { background: var(--navy); color: var(--white) !important; }
.header-nav .nav-cta a:hover { background: var(--blue) !important; transform: translateY(-1px); }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.mobile-toggle span { display: block; width: 23px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }
#header.scrolled .mobile-toggle span { background: var(--navy); }
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== FOOTER ===== */
.site-footer { background: #0c1117; color: rgba(255,255,255,0.7); padding: 80px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 55px; }
.footer-brand p { font-family: 'Michroma', sans-serif; font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-family: 'Michroma', sans-serif; font-size: 0.88rem; margin-bottom: 9px; }
.footer-contact-item i { color: var(--blue); width: 15px; flex-shrink: 0; }
.footer-heading {
  font-family: var(--ff-body); font-size: 1.25rem; font-weight: 600; color: var(--white);
  margin-bottom: 22px; position: relative; padding-bottom: 11px;
}
.footer-heading::after { content:''; position:absolute; bottom:0; left:0; width:28px; height:2px; background: var(--blue); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a { font-family: 'Michroma', sans-serif; font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: var(--t); }
.footer-links li a:hover { color: var(--white); padding-left: 5px; }
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: var(--t);
}
.social-icon:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.3);
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.booking-modal.open { opacity: 1; visibility: visible; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,15,40,0.72); backdrop-filter: blur(5px); cursor: pointer;
}
.modal-box {
  position: relative; width: 100%; max-width: 520px;
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s var(--ease-spring);
}
.booking-modal.open .modal-box { transform: translateY(0) scale(1); }
.modal-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 28px 32px 20px; color: var(--white); position: relative;
}
.modal-header-text h2 {
  font-family: var(--ff-display); font-size: 1.75rem; font-weight: 600;
  color: var(--white); margin-bottom: 3px;
}
.modal-header-text p { font-family: 'Michroma', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.62); margin: 0; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none; color: rgba(255,255,255,0.8);
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--t); line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.22); color: var(--white); }
.modal-progress {
  display: flex; align-items: center; gap: 0; margin-top: 18px;
}
.progress-step {
  display: flex; align-items: center; gap: 8px;
}
.progress-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4);
  transition: var(--t);
}
.progress-dot.active { background: var(--white); border-color: var(--white); color: var(--navy); }
.progress-dot.done { background: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.5); color: var(--white); }
.progress-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); transition: var(--t); }
.progress-label.active { color: rgba(255,255,255,0.85); }
.progress-line { flex: 1; height: 1px; background: rgba(255,255,255,0.18); margin: 0 12px; max-width: 50px; }
.modal-body { padding: 28px 32px 8px; }
.form-step { display: none; animation: stepIn 0.3s var(--ease) both; }
.form-step.active { display: block; }
@keyframes stepIn { from { opacity:0; transform: translateX(12px); } to { opacity:1; transform: translateX(0); } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text); margin-bottom: 7px; letter-spacing: 0.1px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--ff-body); font-size: 0.92rem; color: var(--text);
  background: var(--white); transition: var(--t); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58,123,213,0.1);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-footer { padding: 16px 32px 26px; display: flex; gap: 10px; justify-content: flex-end; }
.btn-modal-back {
  background: var(--off-white); color: var(--text-muted);
  border: none; padding: 11px 22px; border-radius: 6px;
  font-family: var(--ff-body); font-size: 0.88rem; cursor: pointer; transition: var(--t);
}
.btn-modal-back:hover { background: var(--border); color: var(--text); }
.btn-modal-next {
  background: var(--navy); color: var(--white); border: none;
  padding: 11px 26px; border-radius: 6px; font-family: var(--ff-body);
  font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: var(--t);
  display: flex; align-items: center; gap: 8px;
}
.btn-modal-next:hover { background: var(--blue); transform: translateY(-1px); }
.success-step { text-align: center; padding: 16px 0 8px; }
.success-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.9rem; color: var(--white);
}
.success-step h3 { font-family: var(--ff-display); font-size: 1.7rem; color: var(--navy); margin-bottom: 10px; }
.success-step p { font-family: 'Michroma', sans-serif; color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 5px; }

/* ===== SERVICE HERO ===== */
.service-hero {
  min-height: 72vh; display: flex; align-items: center; position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy-deep) 0%, var(--navy-mid) 55%, var(--blue) 100%);
}
.service-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 70% 70% at 10% 60%, rgba(58,123,213,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(0,21,48,0.4) 0%, transparent 55%);
}
.service-hero::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 55px 55px;
}
.service-hero .container { position:relative; z-index:2; padding-top: 130px; padding-bottom: 80px; }
.hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-bottom: 28px;
  transition: var(--t); letter-spacing: 0.2px;
}
.hero-breadcrumb:hover { color: rgba(255,255,255,0.9); }
.hero-service-icon {
  font-size: 3.8rem; display: block; margin-bottom: 18px; color: #fff;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.service-hero h1 {
  font-family: var(--ff-display); font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700; color: var(--white); margin-bottom: 18px; line-height: 1.1;
}
.service-hero .hero-subtitle {
  font-family: 'Michroma', sans-serif; font-size: 1.1rem; color: rgba(255,255,255,0.72);
  max-width: 580px; margin-bottom: 32px; line-height: 1.75;
  font-weight: 300;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== SERVICE BODY ===== */
.service-intro { padding: 72px 0 40px; }
.lead-text {
  font-family: 'Michroma', sans-serif; font-size: 1.1rem; color: var(--text-muted); line-height: 1.9;
  max-width: 820px; border-left: 3px solid var(--blue); padding-left: 22px;
}

/* Process section */
.process-section { padding: 60px 0 80px; background: var(--off-white); }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px; display: block;
}
.section-heading {
  font-family: var(--ff-body); font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--navy); margin-bottom: 50px;
}
.timeline { position: relative; max-width: 800px; }
.timeline::before {
  content:''; position:absolute; left:25px; top:25px; bottom:25px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--navy-mid));
  border-radius: 2px;
}
.timeline-item { display: flex; gap: 26px; margin-bottom: 36px; position: relative; }
.timeline-num {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,33,71,0.28); position: relative; z-index: 1;
  flex-direction: column; line-height: 1;
}
.timeline-card {
  background: var(--white); border-radius: var(--r); padding: 24px 26px;
  flex: 1; box-shadow: var(--shadow-xs); border: 1px solid var(--border);
  transition: var(--t);
}
.timeline-card:hover { box-shadow: var(--shadow-sm); transform: translateX(5px); border-color: rgba(58,123,213,0.2); }
.timeline-card h3 {
  font-family: 'Nunito'; font-size: 1.28rem; color: var(--navy); margin-bottom: 13px;
}
.timeline-card ul { list-style: none; padding: 0; margin-bottom: 14px; }
.timeline-card ul li {
  padding: 4px 0 4px 22px; position: relative;
  font-family: 'Michroma', sans-serif; font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
}
.timeline-card ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--blue); font-size: 0.8rem; top: 5px;
}
.goal-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-pale); color: var(--navy);
  padding: 5px 13px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; margin-top: 2px;
}

/* Outcome */
.outcome-section { padding: 80px 0; }
.outcome-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-lg); padding: 48px 50px; color: var(--white); position: relative; overflow: hidden;
}
.outcome-card::before {
  content: '✓'; position: absolute; right: 40px; top: -20px;
  font-size: 14rem; color: rgba(255,255,255,0.03); font-family: serif; line-height: 1; pointer-events: none;
}
.outcome-card h2 { font-family: var(--ff-display); font-size: 2rem; color: var(--white); margin-bottom: 14px; }
.outcome-card p { font-family: 'Michroma', sans-serif; font-size: 1.02rem; color: rgba(255,255,255,0.78); line-height: 1.85; max-width: 720px; }

/* Other services */
.other-services { padding: 80px 0; background: var(--off-white); }
.mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 16px; }
.mini-card {
  background: var(--white); border-radius: var(--r); padding: 22px 18px;
  text-align: center; border: 1.5px solid var(--border); transition: var(--t);
  text-decoration: none; color: var(--text); display: block;
}
.mini-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-4px); color: var(--navy); }
.mini-card .mini-icon { font-size: 2rem; margin-bottom: 9px; }
.mini-card h4 { font-family: var(--ff-display); font-size: 0.95rem; color: var(--navy); line-height: 1.3; }

/* CTA banner */
.service-cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--navy), var(--blue)); text-align: center; position: relative; overflow: hidden; }
.service-cta-banner::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.service-cta-banner .container { position: relative; z-index: 1; }
.service-cta-banner h2 { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 14px; }
.service-cta-banner p { font-family: 'Michroma', sans-serif; color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 32px; font-size: 1rem; }
.cta-btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICE FINDER QUESTIONNAIRE ===== */
.quiz-wrapper {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  height: 460px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.quiz-wrapper::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image: radial-gradient(circle at 20% 80%, rgba(58,123,213,0.22) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(91,150,247,0.12) 0%, transparent 50%);
}
.quiz-inner { position:relative; z-index:1; display:flex; flex-direction:column; height:100%; padding:28px 30px 24px; }
.quiz-header { margin-bottom: 18px; }
.quiz-eyebrow { font-size:0.72rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.5); display:block; margin-bottom:6px; }
.quiz-title { font-family: var(--ff-display); font-size:1.5rem; color:var(--white); font-weight:600; line-height:1.2; }
.quiz-progress-bar { height:3px; background:rgba(255,255,255,0.12); border-radius:2px; margin-bottom:20px; overflow:hidden; }
.quiz-progress-fill { height:100%; background:linear-gradient(90deg,var(--blue),var(--blue-light)); border-radius:2px; transition:width 0.45s var(--ease); }
.quiz-step { display:none; flex-direction:column; flex:1; }
.quiz-step.active { display:flex; animation: quizIn 0.35s var(--ease) both; }
@keyframes quizIn { from { opacity:0; transform:translateX(14px); } to { opacity:1; transform:translateX(0); } }
.quiz-question { font-size:1rem; font-weight:600; color:var(--white); margin-bottom:14px; line-height:1.45; }
.quiz-options { display:flex; flex-direction:column; gap:8px; flex:1; }
.quiz-opt {
  background:rgba(255,255,255,0.07); border:1.5px solid rgba(255,255,255,0.13);
  border-radius:8px; padding:11px 15px; color:rgba(255,255,255,0.82);
  font-family: var(--ff-body); font-size:0.88rem; font-weight:500;
  cursor:pointer; text-align:left; transition:var(--t); line-height:1.35;
}
.quiz-opt:hover { background:rgba(255,255,255,0.14); border-color:rgba(255,255,255,0.35); color:var(--white); transform:translateX(3px); }
.quiz-opt.selected { background:rgba(58,123,213,0.28); border-color:var(--blue-light); color:var(--white); }
 
/* Result card */
.quiz-result { display:none; flex-direction:column; align-items:center; text-align:center; flex:1; justify-content:center; }
.quiz-result.active { display:flex; animation: quizIn 0.4s var(--ease) both; }
.result-icon { font-size:2.8rem; margin-bottom:10px; }
.result-label { font-size:0.72rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--blue-light); margin-bottom:6px; display:block; }
.result-title { font-family:var(--ff-display); font-size:1.55rem; font-weight:700; color:var(--white); margin-bottom:10px; line-height:1.2; }
.result-desc { font-size:0.86rem; color:rgba(255,255,255,0.65); line-height:1.65; margin-bottom:20px; max-width:280px; }
.result-btns { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.btn-result-primary {
  background:var(--white); color:var(--navy); border:none;
  padding:10px 20px; border-radius:6px; font-family:var(--ff-body);
  font-size:0.85rem; font-weight:700; cursor:pointer; transition:var(--t);
  text-decoration:none; display:inline-flex; align-items:center; gap:6px;
}
.btn-result-primary:hover { background:var(--blue-pale); transform:translateY(-2px); color:var(--navy); }
.btn-result-ghost {
  background:transparent; color:rgba(255,255,255,0.6); border:1.5px solid rgba(255,255,255,0.2);
  padding:10px 20px; border-radius:6px; font-family:var(--ff-body);
  font-size:0.85rem; cursor:pointer; transition:var(--t);
}
.btn-result-ghost:hover { border-color:rgba(255,255,255,0.5); color:var(--white); }
.quiz-nav { display:flex; align-items:center; justify-content:space-between; margin-top:14px; }
.quiz-back { background:none; border:none; color:rgba(255,255,255,0.4); font-family:var(--ff-body); font-size:0.82rem; cursor:pointer; padding:0; transition:var(--t); }
.quiz-back:hover { color:rgba(255,255,255,0.8); }
.quiz-diagnostic-link { display:inline-flex; align-items:center; gap:6px; font-size:0.82rem; font-weight:600; color:rgba(255,255,255,0.85); text-decoration:underline; text-decoration-thickness:1.5px; text-underline-offset:4px; cursor:pointer; transition:var(--t); padding:4px 8px; border-radius:4px; }
.quiz-diagnostic-link:hover { color:var(--white); background:rgba(255,255,255,0.1); text-decoration-thickness:2px; }
.quiz-diagnostic-btn { display:inline-flex; align-items:center; gap:8px; font-size:0.82rem; font-weight:600; color:var(--white); text-decoration:none; cursor:pointer; transition:var(--t); padding:10px 18px; border-radius:6px; background:rgba(255,255,255,0.15); border:1.5px solid rgba(255,255,255,0.25); }
.quiz-diagnostic-btn:hover { background:rgba(255,255,255,0.25); border-color:rgba(255,255,255,0.4); transform:translateY(-1px); }
.quiz-step-counter { font-size:0.78rem; color:rgba(255,255,255,0.35); }
@media(max-width:992px) { .quiz-wrapper { height:auto; overflow:visible; padding-bottom:4px; } }
@media(max-width:480px) { .quiz-inner { padding:22px 20px 18px; } .quiz-title { font-size:1.15rem; } }
.quiz-wrapper { height:520px; overflow:hidden; }
@media(max-width:992px) { .quiz-wrapper { height:auto; overflow:visible; padding-bottom:4px; } }

/* Mobile quiz — bigger tap targets, full result layout */
@media(max-width:600px) {
  .quiz-opt { padding: 14px 15px; font-size: 0.84rem; }
  .result-btns { flex-direction: column; width: 100%; }
  .btn-result-primary, .btn-result-ghost { width: 100%; justify-content: center; padding: 13px 20px; }
  .result-title { font-size: 1.25rem; }
  .quiz-full-assess-link { font-size: 0.72rem; margin-top: 10px; }
}
.quiz-full-assess-link {
  display:inline-flex; align-items:center; gap:6px; margin-top:14px;
  font-size:0.68rem; color:rgba(255,255,255,0.5); text-decoration:none;
  letter-spacing:0.5px; transition:color 0.22s ease;
}
.quiz-full-assess-link:hover { color:rgba(255,255,255,0.88); }
 

/* ===== UTILS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); animation: fadeInQuick 0.6s ease forwards; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  /* True fullscreen nav overlay — no scroll */
  .header-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: #002147;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 0;
    z-index: 999;
    overflow: hidden;
    list-style: none;
  }
  @keyframes navSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .header-nav.open {
    display: flex;
    animation: navSlideIn 0.25s ease both;
  }

  /* Nav links — centred, evenly spaced */
  .header-nav li {
    width: 100%;
    text-align: center;
  }
  .header-nav li a {
    display: block;
    color: rgba(255,255,255,0.75) !important;
    padding: 16px 32px;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: none !important;
    transition: color 0.2s;
  }
  .header-nav li a:hover,
  .header-nav li a:active { color: #fff !important; }

  /* Book button */
  .header-nav .nav-cta { margin-top: 24px; padding: 0 32px; width: 100%; }
  .header-nav .nav-cta a {
    display: block; text-align: center;
    background: linear-gradient(135deg, #3a7bd5, #5b96f7) !important;
    color: #fff !important;
    border-radius: 10px; padding: 16px 24px !important;
    font-size: 0.9rem; letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(58,123,213,0.35);
    text-transform: uppercase;
  }

  /* X button fixed over the overlay */
  .mobile-toggle.open {
    position: fixed; top: 20px; right: 24px; z-index: 1001;
  }
  .mobile-toggle.open span { background: #fff; }
  .mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal-body { padding: 22px; }
  .modal-header { padding: 22px 22px 16px; }
  .modal-footer { padding: 12px 22px 22px; }
  .outcome-card { padding: 32px 24px; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { display: none; }
  .timeline-item { flex-direction: column; gap: 12px; }
  .timeline-num { align-self: flex-start; }
}
@media (max-width: 480px) {
  .hero-cta-row, .cta-btn-row { flex-direction: column; align-items: flex-start; }
  .mini-grid { grid-template-columns: 1fr; }
}

/* ===== OUR STORY — preserve Cormorant Garamond ===== */
.story,
.story * { font-family: 'Cormorant Garamond', Georgia, serif; }
.story p { font-family: 'Michroma', sans-serif; font-size: 1.18rem; line-height: 1.9; }
.story .story-sig { font-weight: 700; font-style: italic; }