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

:root {
  --blue: #1d4ed8;
  --blue-dark: #1e3a8a;
  --blue-mid: #1e40af;
  --blue-light: #eff6ff;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; }

/* ── NAV ── */
nav { background: var(--blue-dark); padding: 0 20px; position: sticky; top: 0; z-index: 200; }
.nav-inner { max-width: 1060px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 58px; gap: 16px; }
.logo { font-weight: 900; font-size: 1.2rem; color: var(--white); text-decoration: none; letter-spacing: -0.02em; flex-shrink: 0; }
.logo span { color: #fbbf24; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { color: rgba(255,255,255,0.82); font-size: 0.86rem; font-weight: 600; padding: 7px 11px; border-radius: 7px; cursor: pointer; transition: background 0.15s, color 0.15s; text-decoration: none; white-space: nowrap; user-select: none; }
.nav-link:hover, .nav-dropdown:hover > .nav-link { background: rgba(255,255,255,0.12); color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 6px; min-width: 210px; box-shadow: 0 12px 32px rgba(0,0,0,0.14); z-index: 500; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 8px; padding: 9px 12px; font-size: 0.87rem; font-weight: 500; color: var(--gray-700); text-decoration: none; border-radius: 7px; transition: background 0.1s, color 0.1s; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--blue); }
.nav-cta-btn { background: var(--orange); color: var(--white); font-weight: 700; font-size: 0.88rem; padding: 9px 18px; border-radius: 7px; text-decoration: none; transition: background 0.15s; white-space: nowrap; flex-shrink: 0; }
.nav-cta-btn:hover { background: var(--orange-dark); }

/* ── BUTTONS ── */
.btn-cta { background: var(--orange); color: var(--white); font-weight: 800; font-size: 1.1rem; padding: 16px 32px; border-radius: 10px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.15s, transform 0.1s, box-shadow 0.15s; box-shadow: 0 4px 14px rgba(234,88,12,0.35); }
.btn-cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234,88,12,0.4); }
.btn-cta-lg { font-size: 1.2rem; padding: 20px 40px; border-radius: 12px; }
.btn-next { width: 100%; background: var(--blue); color: var(--white); font-weight: 800; font-size: 1rem; padding: 13px; border-radius: 9px; border: none; cursor: pointer; transition: background 0.15s, transform 0.1s; margin-top: 4px; }
.btn-next:hover { background: var(--blue-mid); transform: translateY(-1px); }
.btn-submit { width: 100%; background: var(--orange); color: var(--white); font-weight: 800; font-size: 1.05rem; padding: 15px; border-radius: 9px; border: none; cursor: pointer; transition: background 0.15s, transform 0.1s; box-shadow: 0 4px 14px rgba(234,88,12,.3); margin-top: 4px; }
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-back { background: none; border: none; color: var(--gray-400); font-size: 0.82rem; font-weight: 600; cursor: pointer; padding: 8px 0 0; display: block; width: 100%; text-align: center; }
.btn-back:hover { color: var(--gray-600); }
.btn-big-cta { background: var(--orange); color: var(--white); font-weight: 800; font-size: 1.1rem; padding: 18px 40px; border-radius: 12px; border: none; cursor: pointer; text-decoration: none; display: inline-block; box-shadow: 0 6px 20px rgba(234,88,12,.4); transition: background 0.15s, transform 0.1s; }
.btn-big-cta:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ── HERO ── */
.hero { background: linear-gradient(140deg, #0b1637 0%, #1e3a8a 50%, #1d4ed8 100%); padding: 52px 20px 72px; }
.hero-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 440px; gap: 52px; align-items: center; }
.hero-text { color: var(--white); }
.live-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 5px 14px; font-size: 0.8rem; font-weight: 600; color: #93c5fd; margin-bottom: 20px; }
.live-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: blink 2s infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: #fbbf24; }
.hero-sub { font-size: 1.05rem; color: #bfdbfe; line-height: 1.65; margin-bottom: 28px; max-width: 460px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 600; color: #e2e8f0; }
.pill-tick { color: #22c55e; font-size: 0.9rem; }

/* ── FORM CARD ── */
.form-card { background: var(--white); border-radius: 20px; padding: 32px 28px 28px; box-shadow: 0 24px 64px rgba(0,0,0,.35); }
.progress-wrap { margin-bottom: 22px; }
.progress-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.progress-label { font-size: 0.78rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }
.progress-step-count { font-size: 0.78rem; font-weight: 600; color: var(--gray-400); }
.progress-bar-track { height: 5px; background: var(--gray-200); border-radius: 999px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue), #3b82f6); border-radius: 999px; transition: width 0.4s ease; }
.form-step { display: none; }
.form-step.active { display: block; }
.step-heading { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); margin-bottom: 5px; }
.step-sub { font-size: 0.83rem; color: var(--gray-500); margin-bottom: 18px; }
.job-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 4px; }
.job-card { border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 12px 10px; cursor: pointer; text-align: center; transition: border-color 0.15s, background 0.15s, transform 0.1s; user-select: none; }
.job-card:hover { border-color: var(--blue); background: var(--blue-light); transform: translateY(-1px); }
.job-card.selected { border-color: var(--blue); background: var(--blue-light); }
.job-card-icon { font-size: 1.5rem; display: block; margin-bottom: 5px; }
.job-card-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); line-height: 1.3; }
.urgency-options { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.urgency-option { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 12px 14px; cursor: pointer; transition: border-color 0.15s, background 0.15s; user-select: none; }
.urgency-option:hover { border-color: var(--blue); background: var(--blue-light); }
.urgency-option.selected { border-color: var(--blue); background: var(--blue-light); }
.urgency-option input[type="radio"] { display: none; }
.urgency-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--gray-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.15s; }
.urgency-option.selected .urgency-dot { border-color: var(--blue); background: var(--blue); }
.urgency-option.selected .urgency-dot::after { content: ''; width: 6px; height: 6px; background: var(--white); border-radius: 50%; }
.urgency-text { flex: 1; }
.urgency-label { font-size: 0.9rem; font-weight: 600; color: var(--gray-900); display: block; }
.urgency-note { font-size: 0.76rem; color: var(--gray-500); }
.urgency-badge { font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.badge-red { background: #fee2e2; color: #dc2626; }
.badge-amber { background: #fef3c7; color: #d97706; }
.field-group { margin-bottom: 13px; }
.field-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.field-input { width: 100%; padding: 11px 13px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-size: 0.97rem; font-family: inherit; color: var(--gray-900); background: var(--white); transition: border-color 0.15s, box-shadow 0.15s; appearance: none; }
.field-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,.1); }
.field-input::placeholder { color: var(--gray-400); }
.form-privacy { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 10px; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.success-icon { width: 64px; height: 64px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.8rem; }
.form-success h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gray-900); padding: 18px 20px; }
.trust-bar-inner { max-width: 1060px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: #d1d5db; }
.trust-item .t-icon { font-size: 1rem; }

/* ── SECTIONS ── */
section { padding: 68px 20px; }
.container { max-width: 1060px; margin: 0 auto; }
.section-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 8px; }
h2.sh { font-size: clamp(1.5rem, 3.5vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.s-sub { font-size: 1rem; color: var(--gray-600); margin-top: 10px; max-width: 520px; }

/* ── HOW IT WORKS ── */
.hiw { background: var(--gray-50); }
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; position: relative; }
.hiw-grid::before { content: ''; position: absolute; top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 2px; background: var(--gray-200); z-index: 0; }
.hiw-step { text-align: center; position: relative; z-index: 1; }
.hiw-num { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 2px solid var(--gray-200); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.6rem; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.hiw-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
.hiw-step p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ── WHY US ── */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 44px; }
.why-card { border: 1px solid var(--gray-200); border-radius: 14px; padding: 24px; transition: box-shadow 0.15s, transform 0.15s; }
.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.why-card .wc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.why-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.55; }

/* ── REVIEWS ── */
.reviews { background: var(--gray-50); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; margin-top: 44px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 24px; }
.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 12px; }
.review-text { font-size: 0.93rem; color: var(--gray-700); line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-loc { font-size: 0.78rem; color: var(--gray-400); }

/* ── AREAS ── */
.areas { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-top: 36px; }
.area-chip { background: var(--blue-light); border: 1px solid #bfdbfe; border-radius: 8px; padding: 10px 12px; text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--blue-dark); text-decoration: none; display: block; transition: background 0.15s; }
.area-chip:hover { background: #dbeafe; }

/* ── CONTENT SECTION (service/area pages) ── */
.content-section { background: var(--white); }
.prose { font-size: 0.97rem; color: var(--gray-600); line-height: 1.8; max-width: 820px; margin-bottom: 32px; }
.prose strong { color: var(--gray-900); }
.prose a { color: var(--blue); text-decoration: underline; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 8px; }
.feature-item { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 12px; padding: 20px; }
.feature-item .fi-icon { font-size: 1.5rem; margin-bottom: 10px; }
.feature-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; }
.feature-item p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.55; }
.nearby-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.nearby-link { background: var(--blue-light); border: 1px solid #bfdbfe; border-radius: 8px; padding: 8px 14px; font-size: 0.85rem; font-weight: 600; color: var(--blue-dark); text-decoration: none; transition: background 0.15s; }
.nearby-link:hover { background: #dbeafe; }

/* ── FAQ ── */
.faq { background: var(--gray-50); }
.faq-list { max-width: 680px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
details { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
summary { padding: 16px 20px; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; list-style: none; user-select: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.2rem; font-weight: 400; color: var(--gray-400); flex-shrink: 0; margin-left: 10px; }
details[open] summary::after { content: '−'; }
details[open] summary { color: var(--blue); }
.faq-body { padding: 0 20px 16px; font-size: 0.92rem; color: var(--gray-600); line-height: 1.65; }

/* ── BOTTOM CTA ── */
.bottom-cta { background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%); color: var(--white); text-align: center; padding: 80px 20px; }
.bottom-cta h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 900; max-width: 580px; margin: 0 auto 14px; color: var(--white); letter-spacing: -0.02em; }
.bottom-cta p { color: #bfdbfe; font-size: 1rem; max-width: 440px; margin: 0 auto 36px; }
.cta-micro { font-size: 0.82rem; color: #93c5fd; margin-top: 14px; }

/* ── FOOTER ── */
footer { background: var(--gray-900); color: var(--gray-500); padding: 52px 20px 24px; font-size: 0.85rem; }
.footer-grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-weight: 900; font-size: 1.2rem; color: var(--white); letter-spacing: -0.02em; margin-bottom: 12px; display: block; text-decoration: none; }
.footer-logo span { color: #fbbf24; }
.footer-about p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--gray-500); text-decoration: none; font-size: 0.87rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: #d1d5db; }
.footer-bottom { max-width: 1060px; margin: 0 auto; border-top: 1px solid #374151; padding-top: 20px; text-align: center; }
.footer-bottom address { font-style: normal; margin-bottom: 8px; }
.footer-bottom a { color: var(--gray-500); text-decoration: underline; }

/* ── STICKY MOBILE BAR ── */
.sticky-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-200); padding: 12px 16px; z-index: 300; box-shadow: 0 -4px 20px rgba(0,0,0,.12); }
.sticky-mobile-bar a { display: block; background: var(--orange); color: var(--white); font-weight: 800; font-size: 1rem; text-align: center; padding: 14px; border-radius: 10px; text-decoration: none; }

/* ── KEYWORD INTRO ── */
.kw-intro { background: var(--white); padding: 48px 20px 0; }
.kw-intro p { font-size: 0.97rem; color: var(--gray-600); line-height: 1.8; max-width: 860px; }
.kw-intro p strong { color: var(--gray-900); }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 44px 20px 52px; }
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-grid::before { display: none; }
  .sticky-mobile-bar { display: block; }
  footer { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: 1 / -1; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .job-cards { grid-template-columns: 1fr 1fr; }
  section { padding: 52px 16px; }
  .form-card { padding: 24px 18px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── PRICING GRID ── */
.price-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:14px;margin-top:24px;}
.price-card{background:var(--white);border:1px solid var(--gray-200);border-radius:12px;padding:20px 14px;text-align:center;}
.price-label{font-size:.75rem;font-weight:700;color:var(--gray-500);text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px;}
.price-range{font-size:1.35rem;font-weight:900;color:var(--blue-dark);line-height:1;margin-bottom:6px;}
.price-note{font-size:.78rem;color:var(--gray-500);}
