/* ============================================
   Maximum Settlement Co. — Main Stylesheet
   Colorado Personal Injury Law
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0A1628;
  --navy-mid: #0f1e38;
  --navy-light: #162544;
  --gold: #F5A623;
  --gold-dark: #d4891a;
  --gold-light: #ffc055;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-light: #e8ecf2;
  --gray: #8a97aa;
  --gray-dark: #4a5568;
  --text: #1a2535;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul { list-style: none; }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { line-height: 1.7; }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray-dark);
  font-size: 1.1rem;
  max-width: 600px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font);
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: 10px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.05em;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.logo-text span {
  color: var(--gold);
}

.nav-tagline {
  font-size: 0.65rem;
  color: var(--gray);
  font-weight: 400;
  display: block;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.nav-phone:hover { color: var(--gold); }

.nav-phone .phone-icon {
  font-size: 0.9rem;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Mountain silhouette SVG background */
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  opacity: 0.06;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,166,35,0.08) 0%, transparent 70%),
              radial-gradient(ellipse at 10% 80%, rgba(22,37,68,0.8) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.trust-item .check {
  width: 20px;
  height: 20px;
  background: rgba(245,166,35,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */

#calculator {
  background: var(--off-white);
  padding: 100px 0;
}

.calc-header {
  text-align: center;
  margin-bottom: 48px;
}

.calc-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

.calc-header-bar {
  background: var(--navy);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.calc-header-bar h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.calc-header-bar .calc-icon {
  font-size: 1.8rem;
}

.calc-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 0;
  overflow: hidden;
}

.calc-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-body {
  padding: 40px 36px;
}

.calc-step {
  display: none;
  animation: fadeSlideIn 0.35s ease;
}

.calc-step.active {
  display: block;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-indicator {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.step-question {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  text-align: center;
}

.option-btn:hover {
  border-color: var(--gold);
  background: rgba(245,166,35,0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245,166,35,0.15);
}

.option-btn.selected {
  border-color: var(--gold);
  background: rgba(245,166,35,0.1);
  box-shadow: 0 4px 16px rgba(245,166,35,0.2);
}

.option-btn .option-icon {
  font-size: 2rem;
  line-height: 1;
}

.option-btn .option-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

/* Result Step */
.calc-result {
  display: none;
}

.calc-result.active {
  display: block;
  animation: fadeSlideIn 0.4s ease;
}

.estimate-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
  text-align: center;
}

.estimate-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.estimate-range {
  color: var(--gold);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.estimate-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.lead-form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.lead-form-sub {
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ============================================
   FORMS
   ============================================ */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

.form-group .error-msg {
  font-size: 0.78rem;
  color: #e53e3e;
  display: none;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
}

/* Thank you state */
.calc-thankyou {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.calc-thankyou.active {
  display: block;
  animation: fadeSlideIn 0.4s ease;
}

.thankyou-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

.thankyou-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.thankyou-msg {
  color: var(--gray-dark);
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto 24px;
}

.thankyou-phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

/* ============================================
   WHY US SECTION
   ============================================ */

#why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.why-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,166,35,0.3);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-desc {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CASE TYPES
   ============================================ */

#case-types {
  padding: 100px 0;
  background: var(--navy);
}

.cases-header {
  text-align: center;
  margin-bottom: 56px;
}

.cases-header h2 {
  color: var(--white);
}

.cases-header .section-subtitle {
  color: rgba(255,255,255,0.6);
}

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

.case-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  cursor: pointer;
}

.case-card:hover {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.case-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.case-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.case-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.6;
}

.case-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.case-card:hover .case-link {
  gap: 10px;
}

/* ============================================
   STATS BAR
   ============================================ */

#stats {
  background: var(--navy-mid);
  border-top: 1px solid rgba(245,166,35,0.15);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

#how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}

.hiw-header {
  text-align: center;
  margin-bottom: 64px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.5;
}

.hiw-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  position: relative;
  transition: var(--transition);
}

.hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,166,35,0.3);
}

.hiw-number {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(245,166,35,0.3);
}

.hiw-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.hiw-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.hiw-desc {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

#contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray-dark);
  margin-bottom: 32px;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-point-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-point-text strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-point-text span {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.contact-form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-sub {
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.contact-below {
  margin-top: 20px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.contact-below .phone-big {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.contact-below .phone-note {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* ============================================
   FOOTER
   ============================================ */

#footer {
  background: var(--navy);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(245,166,35,0.15);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-text {
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-disclaimer {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 800px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(245,166,35,0.15);
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.mobile-menu.open {
  display: flex;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a:last-child {
  border: none;
}

.mobile-menu .btn {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
  }

  .hiw-arrow {
    padding: 0;
    transform: rotate(90deg);
    font-size: 1.2rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .calc-body {
    padding: 28px 20px;
  }

  .calc-header-bar {
    padding: 20px 24px;
  }

  .option-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  #calculator, #why-us, #case-types, #stats, #how-it-works, #contact {
    padding: 72px 0;
  }
}

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

  .option-grid {
    grid-template-columns: 1fr 1fr;
  }

  h1 { font-size: 1.8rem; }

  .hero-content {
    padding: 48px 0;
  }

  .why-card {
    padding: 28px 20px;
  }
}

/* ============================================
   SCROLL PROMPT
   ============================================ */

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-hint .chevron {
  font-size: 0.9rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Accessibility --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
