/* =============================================
   LaptopDoc Makurdi — style.css
   Faithful rebuild of original design
   ============================================= */

:root {
  --blue: #1F6AFF;
  --blue-mid: #1F6AFF;
  --blue-light: #6AB0FF;
  --blue-pale: #EFF6FF;
  --blue-glow: rgba(31,106,255,0.15);
  --cyan: #6AB0FF;
  --green: #10B981;
  --green-light: #34D399;
  --red: #EF4444;
  --bg: #F8FAFF;
  --white: #FFFFFF;
  --dark: #2D3142;
  --navy: #1E2A45;
  --gray: #64748B;
  --gray-light: #F1F5F9;
  --gray-mid: #E2E8F0;
  --border: #E2E8F0;
  --text: #2D3142;
  --shadow: 0 4px 24px rgba(31,106,255,0.12);
  --shadow-lg: 0 12px 48px rgba(31,106,255,0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); }
h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(248,250,255,0.93); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 800;
  color: var(--dark); text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #1F6AFF, #6AB0FF);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 4px 14px rgba(31,106,255,0.35);
}
.logo span { color: var(--blue-mid); }
.nav-links { display: flex; gap: 6px; }
.nav-tab {
  padding: 9px 18px; border-radius: 8px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; border: none; background: transparent; color: var(--gray);
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.nav-tab.active, .nav-tab:hover { background: var(--blue-mid); color: white; }
.nav-cta {
  background: var(--dark); color: white; padding: 10px 20px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 700; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--blue-mid); }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(150deg, #0F172A 0%, #1E3A8A 50%, #0F172A 100%);
  padding: 72px 28px 64px;
  text-align: center; position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; padding: 7px 16px; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-bottom: 26px;
  animation: fadeUp 0.5s ease both;
}
.blink { width: 7px; height: 7px; background: var(--green-light); border-radius: 50%; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.08;
  max-width: 780px; margin: 0 auto 22px; color: white;
  animation: fadeUp 0.5s 0.1s ease both; opacity: 0;
}
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 520px;
  margin: 0 auto 38px; line-height: 1.75; font-weight: 400;
  animation: fadeUp 0.5s 0.2s ease both; opacity: 0;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.5s 0.3s ease both; opacity: 0;
}
.btn-primary {
  background: var(--blue-mid); color: white; padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.97rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: white; padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 0.97rem; border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.hero-stats {
  display: flex; justify-content: center; margin-top: 54px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
  animation: fadeUp 0.5s 0.4s ease both; opacity: 0;
}
.hstat { padding: 0 36px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.hstat:last-child { border-right: none; }
.hstat-num { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; color: white; }
.hstat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 3px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ─── TABS ─── */
.tab-content { display: none; }
.tab-content.active { display: block; }
.main { max-width: 1100px; margin: 0 auto; padding: 52px 24px 80px; }

/* ─── FILTER BAR ─── */
.filter-bar {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 24px; display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end;
  margin-bottom: 26px; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.filter-field { flex: 1; min-width: 150px; }
.filter-field label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--gray); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.07em; }
.filter-field select, .filter-field input {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.9rem; font-family: 'DM Sans', sans-serif; color: var(--text);
  background: var(--gray-light); outline: none; transition: border-color 0.2s;
  cursor: pointer;
}
.filter-field select:focus, .filter-field input:focus { border-color: var(--blue-mid); background: white; }
.filter-btn {
  background: var(--blue-mid); color: white; padding: 11px 22px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: background 0.2s;
  margin-top: 22px;
}
.filter-btn:hover { background: var(--blue-light); }

/* ─── RESULTS SUMMARY ─── */
.results-summary {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; flex-wrap: wrap; gap: 10px;
}
.results-count { font-size: 0.88rem; color: var(--gray); }
.results-count strong { color: var(--dark); }

/* ─── TECHNICIAN CARDS ─── */
.tech-list { display: flex; flex-direction: column; gap: 16px; }
.tech-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 24px 26px; display: grid; gap: 0;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.tech-card:hover { box-shadow: var(--shadow); border-color: var(--blue-light); transform: translateY(-2px); }
.tech-card.top-rated::before {
  content: 'Top Rated';
  position: absolute; top: 0; left: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: white; font-size: 0.68rem; font-weight: 800; padding: 5px 14px;
  font-family: 'DM Sans', sans-serif; letter-spacing: 0.05em;
}
.tech-main { display: flex; align-items: flex-start; gap: 16px; padding-top: 6px; }
.tech-avatar {
  width: 54px; height: 54px; border-radius: 12px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  flex-shrink: 0; border: 1px solid rgba(37,99,235,0.15);
}
.tech-info h3 { font-size: 1.02rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.tech-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rating { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.stars { color: #F59E0B; font-size: 0.88rem; }
.reviews { color: var(--gray); font-size: 0.78rem; font-weight: 400; }
.badge {
  padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-verified { background: #DCFCE7; color: #15803D; }
.badge-fast { background: #FEF3C7; color: #92400E; }
.badge-warranty { background: #EDE9FE; color: #6D28D9; }
.badge-new { background: var(--blue-pale); color: var(--blue-mid); }
.tech-location { font-size: 0.8rem; color: var(--gray); margin-top: 6px; display: flex; align-items: center; gap: 4px; }
.tech-specs {
  display: flex; gap: 22px; margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--gray-light); flex-wrap: wrap;
}
.spec-label { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; }
.spec-val { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-top: 3px; }
.tech-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; padding-left: 22px; min-width: 156px; }
.price-block { text-align: right; }
.price-from { font-size: 0.72rem; color: var(--gray); }
.price-num { font-family: 'Outfit', sans-serif; font-size: 1.65rem; font-weight: 800; color: var(--dark); line-height: 1.1; }
.price-unit { font-size: 0.74rem; color: var(--gray); }
.tech-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.btn-get-quote {
  background: var(--blue-mid); color: white; padding: 11px 18px; border-radius: 8px;
  font-weight: 700; font-size: 0.86rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: background 0.2s;
}
.btn-get-quote:hover { background: var(--blue-light); }
.btn-compare-add {
  background: var(--gray-light); color: var(--dark); padding: 10px 18px; border-radius: 8px;
  font-weight: 600; font-size: 0.84rem; border: 1px solid var(--border); cursor: pointer;
  font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: all 0.2s;
}
.btn-compare-add:hover { border-color: var(--blue-mid); color: var(--blue-mid); background: var(--blue-pale); }
.btn-compare-add.selected { background: var(--blue-pale); border-color: var(--blue-mid); color: var(--blue-mid); }
.tech-grid { grid-column: 1 / -1; }

/* ─── COMPARE BAR ─── */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--dark); color: white; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform 0.3s ease; flex-wrap: wrap;
}
.compare-bar.visible { transform: translateY(0); }
.compare-slots { display: flex; gap: 10px; flex-wrap: wrap; }
.compare-slot {
  background: rgba(255,255,255,0.08); border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 8px; padding: 8px 16px; font-size: 0.84rem; min-width: 140px; text-align: center;
}
.compare-slot.filled { background: rgba(37,99,235,0.3); border-color: var(--blue-light); border-style: solid; }
.compare-actions { display: flex; gap: 10px; }
.btn-compare-now { background: var(--blue-mid); color: white; padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: 0.88rem; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-clear { background: transparent; color: rgba(255,255,255,0.5); padding: 10px 16px; border-radius: 8px; font-size: 0.88rem; border: 1px solid rgba(255,255,255,0.12); cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* ─── COMPARISON TABLE ─── */
.compare-table-wrap { display: none; margin-bottom: 32px; }
.compare-table-wrap.active { display: block; }
.compare-table {
  width: 100%; border-collapse: collapse; background: white;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.compare-table th { background: var(--dark); color: white; padding: 18px 20px; font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; text-align: left; }
.compare-table th:first-child { width: 160px; background: var(--gray-light); color: var(--gray); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-light); font-size: 0.9rem; vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--gray); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.best-val { color: var(--green); font-weight: 700; }
.check { color: var(--green); font-size: 1rem; }
.cross { color: var(--red); font-size: 1rem; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: 20px; width: 100%; max-width: 480px;
  padding: 34px; transform: scale(0.95); transition: transform 0.25s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.modal h3 { font-size: 1.35rem; font-weight: 700; }
.modal-close { background: var(--gray-light); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--gray); display: flex; align-items: center; justify-content: center; }
.modal-tech-banner { background: var(--blue-pale); border: 1px solid rgba(37,99,235,0.2); border-radius: 10px; padding: 12px 16px; margin: 14px 0 20px; display: flex; align-items: center; gap: 12px; }
.modal-tech-banner .icon-sm { font-size: 1.4rem; }
.modal-tech-banner strong { font-size: 0.93rem; }
.modal-tech-banner span { font-size: 0.8rem; color: var(--gray); }
.modal p.sub { font-size: 0.86rem; color: var(--gray); margin-bottom: 20px; line-height: 1.65; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--gray); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 9px;
  font-size: 0.93rem; font-family: 'DM Sans', sans-serif; color: var(--text);
  outline: none; transition: border-color 0.2s; background: var(--gray-light);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-mid); background: white; }
.form-group textarea { resize: vertical; min-height: 80px; }
.two-col-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn {
  width: 100%; background: #25D366; color: white; padding: 14px;
  border-radius: 10px; font-weight: 800; font-size: 0.97rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; margin-top: 8px; transition: all 0.2s;
}
.submit-btn:hover { background: #1fb858; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.privacy-note { font-size: 0.73rem; color: var(--gray); text-align: center; margin-top: 10px; line-height: 1.5; }
.success-screen { display: none; text-align: center; padding: 20px 0; }
.success-screen.active { display: block; animation: fadeUp 0.4s ease; }
.success-icon { width: 68px; height: 68px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; margin: 0 auto 18px; }
.success-screen h3 { font-size: 1.4rem; margin-bottom: 10px; }
.success-screen p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; }

/* ─── REPAIR COST ESTIMATOR ─── */
.estimator-layout { display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.est-card {
  background: white; border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.est-header {
  background: linear-gradient(120deg, var(--dark) 0%, var(--navy) 100%);
  padding: 26px 30px; color: white;
  display: flex; align-items: center; gap: 14px;
}
.est-header-icon { font-size: 2.2rem; }
.est-header h2 { font-size: 1.45rem; font-weight: 700; margin-bottom: 3px; }
.est-header p { font-size: 0.86rem; opacity: 0.7; }
.est-body { padding: 28px 30px; }
.est-section-title {
  font-size: 0.72rem; font-weight: 800; color: var(--blue-mid); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px; margin-top: 26px; padding-bottom: 7px;
  border-bottom: 2px solid var(--blue-pale);
}
.est-section-title:first-child { margin-top: 0; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray); margin-bottom: 8px; }
.field label span { color: var(--blue-mid); font-weight: 700; }
.field select, .field input[type=text] {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 9px;
  font-size: 0.93rem; font-family: 'DM Sans', sans-serif; color: var(--text);
  outline: none; transition: border-color 0.2s; background: var(--gray-light);
  cursor: pointer;
}
.field select:focus, .field input:focus { border-color: var(--blue-mid); background: white; }

/* Issue picker tiles */
.issue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.issue-tile {
  background: var(--gray-light); border: 2px solid var(--border); border-radius: 12px;
  padding: 14px 10px; text-align: center; cursor: pointer; transition: all 0.2s;
  position: relative;
}
.issue-tile:hover { border-color: var(--blue-mid); background: var(--blue-pale); }
.issue-tile.selected { border-color: var(--blue-mid); background: var(--blue-pale); }
.issue-tile.selected::after { content: '✓'; position: absolute; top: 5px; right: 8px; font-size: 0.65rem; font-weight: 800; color: var(--blue-mid); }
.issue-icon { font-size: 1.6rem; margin-bottom: 5px; display: block; }
.issue-name { font-size: 0.75rem; font-weight: 600; color: var(--dark); }

/* Results panel */
.results-panel {
  background: var(--dark); border-radius: 20px; padding: 26px; color: white;
  position: sticky; top: 88px;
}
.results-panel h3 { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.1em; }
.result-big {
  text-align: center; padding: 22px; background: rgba(37,99,235,0.2); border-radius: 14px;
  margin-bottom: 18px; border: 1px solid rgba(37,99,235,0.4);
}
.result-big-label { font-size: 0.74rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.result-big-val { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; color: #60A5FA; line-height: 1; }
.result-big-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.result-items { display: flex; flex-direction: column; gap: 0; }
.result-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.result-item:last-child { border-bottom: none; }
.ri-label { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.ri-val { font-size: 0.9rem; font-weight: 700; }
.ri-val.green { color: var(--green-light); }
.ri-val.yellow { color: #FCD34D; }
.ri-val.red { color: #FCA5A5; }
.result-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 14px 0; }
.btn-get-quotes-full {
  width: 100%; background: var(--blue-mid); color: white; padding: 14px;
  border-radius: 10px; font-weight: 800; font-size: 0.97rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; margin-top: 18px; transition: all 0.2s;
}
.btn-get-quotes-full:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
.complexity-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 14px;
}
.complexity-easy { background: rgba(16,185,129,0.2); color: #34D399; }
.complexity-medium { background: rgba(251,191,36,0.2); color: #FCD34D; }
.complexity-hard { background: rgba(239,68,68,0.2); color: #FCA5A5; }
.range-note { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 8px; line-height: 1.55; }

/* ─── HOW IT WORKS ─── */
.how-section { background: linear-gradient(160deg, var(--blue-pale), var(--bg)); padding: 80px 24px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 52px; }
.how-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 10px; }
.how-header h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.step-card { text-align: center; padding: 32px 20px; background: white; border-radius: 16px; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; }
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num {
  width: 50px; height: 50px; background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem;
  margin: 0 auto 16px; box-shadow: 0 6px 18px rgba(37,99,235,0.3);
}
.step-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ─── TRUST STRIP ─── */
.trust-strip { background: var(--dark); padding: 24px; text-align: center; }
.trust-strip-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.84rem; font-weight: 500; }
.trust-item span { font-size: 1.1rem; }

/* ─── FOOTER ─── */
footer { background: #060D1F; color: rgba(255,255,255,0.5); padding: 52px 24px 32px; text-align: center; }
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 800; color: white; margin-bottom: 10px; }
footer p { font-size: 0.84rem; line-height: 1.75; max-width: 480px; margin: 0 auto 20px; }
.footer-links { display: flex; gap: 22px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
footer a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; cursor: pointer; }
footer a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07); font-size: 0.78rem; }

/* ─── RESPONSIVE ─── */
@media(max-width: 860px) {
  .estimator-layout { grid-template-columns: 1fr; }
  .results-panel { position: static; }
}
@media(max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hero { padding: 48px 16px 36px; }
  .hstat { padding: 10px 16px; }
  .main { padding: 28px 16px 60px; }
  .tech-card { grid-template-columns: 1fr; padding: 18px; }
  .tech-right { flex-direction: row; align-items: center; justify-content: space-between; padding-left: 0; padding-top: 16px; border-top: 1px solid var(--gray-light); min-width: unset; }
  .tech-actions { flex-direction: row; }
  .filter-bar { padding: 14px 16px; }
  .est-body { padding: 20px; }
  .issue-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col-form { grid-template-columns: 1fr; }
}
@media(max-width: 480px) {
  .issue-grid { grid-template-columns: repeat(2, 1fr); }
  .hstat { padding: 8px 12px; }
}
