/* IMPORTS - Pure Modern Sans-Serif (Inter) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* --- BRAND PALETTE (Updated to Dataclyr Electric Blue) --- */
  --primary: #2563eb;       /* Electric Blue */
  --primary-dark: #1e40af;
  --primary-light: #eff6ff;
  --accent: #38bdf8;        /* Sky Blue for Accents */
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  /* --- TYPOGRAPHY & COLORS --- */
  --text-main: #0f172a;     /* Dark Navy Text */
  --text-sub: #475569;      /* Slate Gray */
  --bg-page: #f8fafc;       
  --bg-card: #ffffff;
  --bg-footer: #0f172a;     /* New Deep Navy Footer */
  
  --border: #e2e8f0;
  
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 8px;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-soft: 0 20px 40px rgba(0,0,0,0.06);
  
  /* Unified Font Stack (No more Serif) */
  --font-body: 'Inter', sans-serif;
  --font-head: 'Inter', sans-serif; 
  
  --max-width: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: #0f172a;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
.capitalize { text-transform: capitalize; }

/* --- Layout --- */
.page { display: flex; flex-direction: column; min-height: 100vh; }
.section { max-width: var(--max-width); margin: 0 auto; padding: 5rem 1.5rem; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 0.75rem; }
.section-header p { font-size: 1.125rem; color: var(--text-sub); line-height: 1.7; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: white;
  padding: 0.85rem 1.75rem; border-radius: 8px; /* Slightly squarer modern look */
  font-weight: 600; border: none; cursor: pointer;
  transition: all 0.2s ease; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  font-size: 0.95rem; font-family: var(--font-body);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-dark); box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: white; color: var(--text-main);
  border: 1px solid var(--border); padding: 0.8rem 1.5rem;
  border-radius: 8px; font-weight: 500; cursor: pointer;
  transition: all 0.2s; font-size: 0.95rem; font-family: var(--font-body);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-page); }

/* --- Header (Updated to Match Dataclyr Main Site) --- */
header { 
  background: #1e3a8a; /* Deep Royal Blue to match Home Hero */
  background: linear-gradient(90deg, #1e3a8a 0%, #172554 100%); /* Optional: Adds that premium gradient depth */
  border-bottom: 1px solid rgba(255,255,255,0.1); 
  position: sticky; 
  top: 0; 
  z-index: 50; 
}

.nav { 
  max-width: var(--max-width); 
  margin: 0 auto; 
  padding: 1rem 1.5rem; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

/* Update Text Colors for Dark Header */
.nav-links { 
  display: flex; 
  gap: 2rem; 
  align-items: center; 
  font-size: 0.9rem; 
  font-weight: 500; 
}
.nav-links a { 
  color: rgba(255,255,255,0.9); /* White text */
  transition: color 0.2s; 
}
.nav-links a:hover { 
  color: white; 
  text-shadow: 0 0 10px rgba(255,255,255,0.5); 
}

/* Update Logo Text to White */
.logo-tagline { 
  font-size: 0.75rem; 
  color: rgba(255,255,255,0.8); /* Light Gray/White */
  font-weight: 600; 
  line-height: 1.2; 
  letter-spacing: -0.01em; 
}
.logo-divider { 
  background-color: rgba(255,255,255,0.3); /* Dim white divider */ 
}

/* White Logo Filter */
/* This forces the logo image to be pure white */
.logo-img { 
  height: 32px; 
  width: auto; 
  display: block; 
  filter: brightness(0) invert(1); 
}

/* --- Header --- */
.logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }

/* Logo Styles Updated */
.logo-wrapper { display: flex; align-items: center; gap: 12px; text-decoration: none; }




.nav-cta {
  background: white;        /* White Background */
  color: var(--primary);    /* Blue Text */
  padding: 0.6rem 1.25rem; 
  border-radius: 8px;
  font-weight: 700;         /* Make it bold */
  border: none; 
  cursor: pointer;
  font-size: 0.85rem; 
  font-family: var(--font-body);
  transition: all 0.2s; 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover { 
  background: #f8fafc;      /* Light Gray on hover */
  transform: translateY(-1px); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #1f2937; margin: 5px 0; border-radius: 2px; }
.nav-mobile { display: none; flex-direction: column; padding: 1rem; background: white; border-bottom: 1px solid var(--border); position: absolute; top: 100%; left:0; width:100%; box-shadow: var(--shadow-md); z-index: 49;}
.nav-mobile a { padding: 0.75rem 0; color: var(--text-main); border-bottom: 1px solid #f1f5f9; }

/* --- Hero (Index) --- */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; padding-top: 4rem; padding-bottom: 4rem; }
.badge { background: #ecfdf5; color: #059669; padding: 0.4rem 1rem; border-radius: 99px; font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; border: 1px solid #a7f3d0; }
.hero h1 { font-size: 3rem; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero p { font-size: 1.2rem; color: var(--text-sub); margin-bottom: 2.5rem; max-width: 540px; font-family: var(--font-body); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-chart-card {
  background: white; padding: 2rem; border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); border: 1px solid var(--border);
  position: relative; overflow: hidden; transform: rotate(-1deg);
}
.hero-chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem; }
.hero-chart-title { font-weight: 700; color: #0f172a; display: flex; align-items: center; gap: 0.5rem; }
.hero-donut {
  width: 160px; height: 160px; border-radius: 50%;
  background: conic-gradient(#ef4444 0% 65%, #e2e8f0 65% 100%);
  margin: 0 auto 1.5rem; position: relative; display: grid; place-items: center;
}
.hero-donut::before { content: ""; position: absolute; width: 120px; height: 120px; background: white; border-radius: 50%; }
.hero-score-text { position: relative; z-index: 2; text-align: center; }
.hero-score-num { font-size: 2.5rem; font-weight: 800; line-height: 1; color: #0f172a; }
.hero-score-label { font-size: 0.75rem; color: var(--text-sub); font-weight: 600; text-transform: uppercase; }
.hero-list { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.hero-list li { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; padding: 0.5rem; background: #f8fafc; border-radius: 8px; }

/* --- Interactive Cards --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.hover-card {
  background: var(--bg-card); padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default; height: 100%; display: flex; flex-direction: column;
}
.hover-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.card-icon { width: 50px; height: 50px; background: var(--primary-light); border-radius: 12px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.hover-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 700; font-family: var(--font-body); }
.hover-card p { font-size: 0.95rem; color: var(--text-sub); margin: 0; flex-grow: 1; }

/* --- Process Flow --- */
.process-steps { display: flex; justify-content: space-between; position: relative; gap: 2rem; margin-top: 2rem; }
.process-steps::before { content: ""; position: absolute; top: 25px; left: 50px; right: 50px; height: 2px; background: #e2e8f0; z-index: 0; }
.process-step { position: relative; z-index: 1; text-align: center; flex: 1; background: var(--bg-page); }
.step-num {
  width: 50px; height: 50px; background: white; border: 2px solid var(--primary); color: var(--primary);
  border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 1.2rem;
  margin: 0 auto 1.5rem; box-shadow: 0 0 0 8px var(--bg-page);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-family: var(--font-body); }
.process-step p { font-size: 0.95rem; color: var(--text-sub); }

/* --- Contact & FAQ --- */
.contact-section { background: white; border-radius: var(--radius-xl); border: 1px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1.2fr; margin-top: 3rem; }
.contact-info { background: #1e293b; padding: 3rem; color: white; display: flex; flex-direction: column; justify-content: center; }
.contact-info h2 { color: white; font-size: 2rem; margin-bottom: 1rem; }
.contact-info p { color: #94a3b8; margin-bottom: 2rem; font-size: 1.05rem; }
.contact-form-wrapper { padding: 3rem; }
.contact-form { display: grid; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-input { width: 100%; padding: 0.85rem; border: 1px solid #cbd5e1; border-radius: 8px; font-family: var(--font-body); }
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
textarea.form-input { min-height: 120px; resize: vertical; }

.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 1rem; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; cursor: pointer; transition: border-color 0.2s; }
.faq-item:hover { border-color: #94a3b8; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #0f172a; font-size: 1.05rem; }
.faq-toggle { width: 24px; height: 24px; background: #f1f5f9; border-radius: 50%; display: grid; place-items: center; font-weight: bold; color: var(--text-sub); transition: transform 0.3s; }
.faq-answer { display: none; margin-top: 1rem; color: var(--text-sub); font-size: 0.95rem; line-height: 1.6; border-top: 1px solid #f1f5f9; padding-top: 1rem; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--primary); color: white; }

/* --- NEW 4-COLUMN FOOTER STYLE --- */
footer { background: var(--bg-footer); color: #94a3b8; padding: 4rem 0 0; margin-top: auto; font-size: 0.9rem; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* The Grid Layout */
.footer-top { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr .8fr .8fr .8fr; 
  gap: 2rem; 
  padding-bottom: 3rem; 
  border-bottom: 1px solid #1e293b; 
}

/* Footer Brand Column */
.footer-brand img { height: 28px; margin-bottom: 1rem; opacity: 0.9; }
.footer-brand p { color: #cbd5e1; font-size: 0.95rem; line-height: 1.6; max-width: 280px; }
.footer-brand h2 { font-size:1.5rem; color:#fff; }

/* Footer Link Columns */
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 1.25rem; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a { color: #94a3b8; transition: color 0.2s; display: inline-block; }
.footer-col a:hover { color: var(--accent); transform: translateX(2px); }

/* Copyright Bar */
/* Update this specific class */
.footer-btm { 
  background: #020617; /* Pure Black/Darkest Navy */
  width: 100%;        /* Force full width */
  padding: 1.5rem 0; 
  border-top: 1px solid #1e293b; 
  margin-top: 0;
}
.footer-btm-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; color: #64748b; font-size: 0.85rem; }

/* ------------------------
   ASSESSMENT WIZARD STYLES 
   ------------------------ */
.assessment-wizard {
  background: #fff; border-radius: var(--radius-lg); padding: 2.5rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-soft);
  width: 100%; max-width: 800px; margin: 0 auto;
  min-height: 600px; display: flex; flex-direction: column;
}
.wizard-step-indicator { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.wizard-step-indicator-main { font-weight: 700; color: #0f172a; font-size: 1.1rem; }
.wizard-step-indicator-label { font-size: 0.9rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.mandatory-note { font-size: 0.85rem; color: var(--danger); margin-bottom: 1.5rem; display: block; font-weight: 500; background: #fef2f2; padding: 0.5rem 1rem; border-radius: 6px; display: inline-block; }
.step-context-note { margin-bottom: 1.5rem; font-size: 0.9rem; color: #475569; font-style: italic; }

/* Mode Selection Cards */
.mode-selection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.mode-card {
  border: 2px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem;
  cursor: pointer; transition: all 0.2s; background: white; text-align: left;
}
.mode-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mode-card.selected { border-color: var(--primary); background: var(--primary-light); }
.mode-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.mode-title { font-weight: 700; color: #0f172a; font-size: 1.1rem; margin-bottom: 0.25rem; display: block; }
.mode-desc { font-size: 0.9rem; color: var(--text-sub); }

.wizard-step { display: none; animation: fadeIn 0.4s ease-out; flex-grow: 1; }
.wizard-step.active { display: block; }
.wizard-step-title { font-size: 1.75rem; margin-bottom: 0.75rem; color: #0f172a; }
.wizard-step-text { color: var(--text-sub); margin-bottom: 2rem; font-size: 1rem; }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.6rem; color: #334155; font-size: 0.95rem; }
.form-control { width: 100%; padding: 0.8rem; border-radius: 8px; border: 1px solid #cbd5e1; font-family: var(--font-body); font-size: 1rem; }
.option-pill {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1.2rem;
  border-radius: 8px; border: 1px solid #cbd5e1; cursor: pointer; font-size: 0.95rem;
  transition: all 0.2s; background: white; color: #475569; margin-bottom: 0.5rem;
}
.option-pill:hover { background: #f8fafc; border-color: #94a3b8; }
.option-pill.selected { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); font-weight: 600; box-shadow: 0 0 0 1px var(--primary); }
.option-pill input { display: none; }

.advanced-only { animation: fadeIn 0.3s ease-out; }

.wizard-footer { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; }
.review-card { background: #f8fafc; padding: 1.5rem; border-radius: 12px; border: 1px solid var(--border); }
.review-list li { margin-bottom: 0.75rem; font-size: 0.95rem; border-bottom: 1px dashed #e2e8f0; padding-bottom: 0.75rem; display: flex; justify-content: space-between; }
.form-error { color: var(--danger); font-size: 0.85rem; margin-top: 0.5rem; display: block; }
.form-group.error .form-control { border-color: var(--danger); }

/* Result Page */
.result-page { background: linear-gradient(to bottom, #f0f5ff, #f8fafc); padding-top: 3rem; }
.result-header { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.result-date { font-size: 0.9rem; color: var(--text-sub); margin-top: 0.5rem; margin-bottom: 2rem; text-align: center; }
.result-layout { display: grid; grid-template-columns: 380px 1fr; gap: 2.5rem; align-items: start; }
.score-card { background: white; border-radius: var(--radius-xl); padding: 2.5rem; text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--border); position: sticky; top: 6rem; }
.score-circle { width: 180px; height: 180px; border-radius: 50%; background: conic-gradient(var(--score-color, #2563eb) var(--score-pct, 0%), #e2e8f0 0deg); margin: 0 auto 1.5rem; position: relative; display: grid; place-items: center; transition: --score-pct 1s ease-out; }
.score-circle::before { content: ""; position: absolute; width: 140px; height: 140px; background: white; border-radius: 50%; }
.score-value { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.score-number { font-size: 3.5rem; font-weight: 800; color: #0f172a; letter-spacing: -2px; }
.result-metrics { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #f1f5f9; display: grid; gap: 1rem; }
.metric-card { background: #f8fafc; border-radius: 12px; padding: 1rem; border: 1px solid #e2e8f0; text-align: left; }
.metric-header { display: flex; justify-content: space-between; font-weight: 600; color: #334155; font-size: 0.9rem; margin-bottom: 0.5rem; }
.metric-icon { margin-right: 0.5rem; }
.metric-bar-bg { height: 8px; background: #e2e8f0; border-radius: 99px; overflow: hidden; }
.metric-bar-fill { height: 100%; border-radius: 99px; width: 0%; transition: width 1s ease-out; }
.metric-expl { font-size: 0.75rem; color: #64748b; margin-top: 0.5rem; }
.bar-red { background: #ef4444; }
.bar-orange { background: #f97316; }
.bar-green { background: #10b981; }
.result-card { background: white; border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }
.result-card h2 { font-size: 1.25rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem; }
.result-list li { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.list-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.snapshot-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { background: #f1f5f9; padding: 0.4rem 0.8rem; border-radius: 6px; font-size: 0.85rem; color: #475569; font-weight: 500; border: 1px solid #e2e8f0; text-transform: capitalize; }

/* Custom Modal Styles */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px);
  z-index: 100; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.custom-modal {
  background: white; width: 90%; max-width: 480px;
  border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px); transition: transform 0.2s ease;
  text-align: center;
}
.modal-overlay.active .custom-modal { transform: translateY(0); }

.modal-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.modal-title { font-size: 1.5rem; font-weight: 700; color: #0f172a; margin-bottom: 0.75rem; font-family: var(--font-body); }
.modal-text { color: #64748b; font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; }

.modal-actions { display: flex; gap: 1rem; justify-content: center; }
.modal-btn-primary { 
  background: var(--primary); color: white; padding: 0.75rem 1.5rem; 
  border-radius: 99px; font-weight: 600; border: none; cursor: pointer; 
}
.modal-btn-ghost { 
  background: white; color: #475569; padding: 0.75rem 1.5rem; 
  border-radius: 99px; font-weight: 600; border: 1px solid #cbd5e1; cursor: pointer; 
}
.modal-btn-primary:hover { background: var(--primary-dark); }
.modal-btn-ghost:hover { background: #f1f5f9; border-color: #94a3b8; }

/* Print Styles */
@media print {
  body, .page { 
    background: white !important; 
    display: block !important; 
    height: auto !important; 
    min-height: 0 !important; 
    margin: 0 !important; 
    padding: 0 !important; 
    overflow: visible !important;
  }

  header, footer, .result-actions, .hamburger, .nav-mobile { 
    display: none !important; 
  }

  .section { 
    padding: 0 !important; 
    margin: 0 !important; 
    max-width: 100% !important; 
  }

  /* Fix for Result Page Spacing */
  .result-page { 
    padding-top: 0 !important; 
  }
  
  .result-layout { 
    display: block !important; 
    gap: 0;
  }

  /* Header Compact */
  .result-header { 
    margin-bottom: 1rem !important; 
    padding-bottom: 0 !important; 
  }
  .result-header h1 {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem !important;
  }
  .result-header p {
    font-size: 1rem !important;
    margin-bottom: 0 !important;
  }

  /* Score Card Compact */
  .score-card { 
    position: static !important; 
    padding: 1.5rem !important; 
    margin-bottom: 1.5rem !important; 
    border: 1px solid #ccc !important; 
    box-shadow: none !important; 
    page-break-inside: avoid; 
  }

  /* Force Metrics 2-col Grid in Print */
  .result-metrics { 
    display: grid !important; 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 1rem !important; 
  }

  .result-content { 
    display: block !important; 
  }

  .result-card { 
    margin-bottom: 1rem !important; 
    padding: 1.5rem !important; 
    border: 1px solid #ccc !important; 
    box-shadow: none !important; 
    page-break-inside: avoid; 
  }

  /* Ensure Colors Print */
  .score-circle, .metric-bar-fill, .bar-red, .bar-orange, .bar-green { 
    -webkit-print-color-adjust: exact !important; 
    print-color-adjust: exact !important; 
  }
  
  .result-date { 
    display: block !important; 
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    color: #000;
  }
}

/* --- MOBILE SPECIFIC STYLES --- */
@media (max-width: 900px) {
  /* Reduce Padding */
  .section { padding: 3rem 1.5rem; 
  }
  
  .logo-divider, 
  .logo-tagline {
    display: none; /* Hide tagline on mobile to save space */
  }
  
  .logo-img {
    height: 36px; /* Slightly smaller logo on mobile */
  }
  
  /* GAP FIX: Reduce space between FAQ and Contact */
  section#contact { padding-top: 0; }
  .contact-section { margin-top: 1rem; }

  /* Hero */
  .hero { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero p { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; } 
  .hero-chart-card { transform: none; max-width: 400px; margin: 0 auto; }
  .hero-chart-card ul { max-width: fit-content; margin: 0 auto; text-align: left; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: block; }

  /* 2-Column Grid for "Who is this for" */
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hover-card { padding: 1.5rem; text-align: center; align-items: center; }

  /* Process Steps */
  .process-steps { flex-direction: column; gap: 1rem; }
  .process-steps::before { display: none; }
  .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .step-num { margin: 0 auto 1rem; width: 40px; height: 40px; font-size: 1rem; flex-shrink: 0; }

  /* Contact Section */
  .contact-section { grid-template-columns: 1fr; }
  .contact-info { text-align: center; align-items: center; padding: 2.5rem 1.5rem; }
  .contact-info ul { text-align: left; display: inline-block; } 
  .form-row { grid-template-columns: 1fr; } 
  
  /* Footer Mobile Stack */
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-brand { align-items: center; display: flex; flex-direction: column; }
  .footer-btm-inner { flex-direction: column; gap: 1rem; text-align: center; }
  
  /* --- RESULT PAGE MOBILE --- */
  .result-header { padding: 0 1rem; }
  .result-metrics { grid-template-columns: 1fr; } /* Stack metrics */
  
  .result-card h2 { 
    justify-content: center; 
    text-align: center; 
  }
  
  /* Stack Actions */
  .result-actions { 
    flex-direction: column; 
    width: 100%; 
  }
  .result-actions button { 
    width: 100%; 
  }

  /* --- ASSESSMENT PAGE MOBILE --- */
  .assessment-wizard { padding: 1.5rem; }
  
  .wizard-step-indicator {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  
  .wizard-step-title { text-align: center; font-size: 1.5rem; }
  .wizard-step-text { text-align: center; }
  .step-context-note { text-align: center; }
  
  /* Center Mode Selection Cards content */
  .mode-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem; 
  }

  /* Footer Buttons: Stack them */
  .wizard-footer {
    flex-direction: column-reverse; /* Next button on top of Back button */
    gap: 1rem;
  }
  .wizard-footer button { width: 100%; }
  
  /* Result Layout */
  .result-layout { grid-template-columns: 1fr; }
  .score-card { position: static; }
  .mode-selection-grid { grid-template-columns: 1fr; }
}

.micro-line { 
  font-size: 0.60rem; 
  color: rgba(255,255,255,0.4); /* Light Gray/White */
  font-weight: 300; 
  line-height: -12px; 
  letter-spacing: -0.01em; 
}