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

:root{
  --bg:#f7f6f2;
  --surface:#ffffff;
  --surface2:#edecea;
  --border:rgba(0,0,0,.09);
  --text:#111110;
  --muted:#706f6a;
  --accent:#1d4ed8;
  --accent-light:#eff6ff;
  --tag-bg:#ececea;
  --tag-text:#3a3935;
  --green:#16a34a;
  --green-bg:#dcfce7;
  --green-text:#15803d;
  --radius:14px;
  --ease:.4s cubic-bezier(.4,0,.2,1);
}
body.dark{
  --bg:#0e0e0d;--surface:#1a1917;--surface2:#222120;
  --border:rgba(255,255,255,.07);--text:#edece8;--muted:#888780;
  --accent:#60a5fa;--accent-light:#172033;
  --tag-bg:#232220;--tag-text:#c2c0b8;
  --green-bg:#14532d;--green-text:#4ade80;
}

html{font-size:16px;scroll-behavior:smooth}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--bg);color:var(--text);
  min-height:100vh;overflow-x:hidden;
  transition:background var(--ease),color var(--ease);
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

.icon{
  width:1em;height:1em;
  stroke:currentColor;fill:none;
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
  display:inline-block;vertical-align:-0.15em;flex-shrink:0;
}

.top-bar{
  display:flex;align-items:flex-start;justify-content:space-between;
  margin-bottom:24px;gap:12px;
}
.back-link{
  font-size:12.5px;font-weight:600;color:var(--muted);
  display:inline-flex;align-items:center;gap:4px;
  transition:color .2s;margin-bottom:6px;
}
.back-link:hover{color:var(--accent);text-decoration:none}
.page-title{font-size:clamp(20px,4vw,28px);font-weight:800;letter-spacing:-.5px}
.page-sub{font-size:13px;color:var(--muted);margin-top:4px;font-weight:500}
.top-bar-right{display:flex;align-items:center;gap:8px;flex-shrink:0}
.theme-toggle{
  display:inline-flex;align-items:center;
  background:var(--surface2);border:.5px solid var(--border);
  border-radius:999px;padding:4px 8px 4px 5px;gap:5px;
  cursor:pointer;font-family:inherit;flex-shrink:0;
  transition:background var(--ease),border-color var(--ease);
  -webkit-tap-highlight-color:transparent;
}
.theme-toggle:hover{background:var(--surface)}

.toggle-track{
  width:32px;height:18px;border-radius:999px;
  background:var(--tag-bg);border:.5px solid var(--border);
  position:relative;transition:background var(--ease);
}
body.dark .toggle-track{background:var(--accent)}

.toggle-thumb{
  position:absolute;top:2px;left:2px;
  width:14px;height:14px;border-radius:50%;
  background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.15);
  display:flex;align-items:center;justify-content:center;
  color:#111;
  transition:transform .3s cubic-bezier(.4,0,.2,1);
}
.toggle-thumb .icon{width:9px;height:9px;stroke-width:2.2}
.toggle-thumb .thumb-sun{display:none}
body.dark .toggle-thumb{transform:translateX(14px)}
body.dark .toggle-thumb .thumb-moon{display:none}
body.dark .toggle-thumb .thumb-sun{display:inline-block}
.nav-cta{
  display:inline-flex;align-items:center;gap:6px;
  background:transparent;color:var(--accent);border:1.5px solid var(--accent);
  border-radius:9px;padding:8px 16px;
  font-size:13px;font-weight:700;
  transition:background .2s;white-space:nowrap;
}
.nav-cta:hover{background:var(--accent-light);opacity:1;text-decoration:none;color:var(--accent)}

.wrap{max-width:980px;margin:0 auto;padding:32px 18px 56px}

.hero{margin-bottom:28px}
.hero-label{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--accent-light);color:var(--accent);
  font-size:11.5px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  border-radius:20px;padding:4px 12px;margin-bottom:12px;
}
.hero h1{
  font-size:clamp(22px,4vw,34px);font-weight:800;
  letter-spacing:-.8px;line-height:1.1;margin-bottom:10px;
}
.hero p{
  font-size:13.5px;color:var(--muted);
  max-width:560px;line-height:1.7;
}
.hero-note{
  margin-top:14px;display:inline-flex;align-items:center;gap:7px;
  background:var(--green-bg);color:var(--green-text);
  font-size:12px;font-weight:600;border-radius:20px;padding:5px 14px;
}
.dot{width:7px;height:7px;border-radius:50%;background:var(--green);display:inline-block;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}

.hl{color:var(--accent);font-weight:700}
.hl-green{color:var(--green-text);font-weight:700}

.section-title{
  font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  color:var(--muted);margin-bottom:14px;padding-bottom:8px;
  border-bottom:.5px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.section-title .mini-link{
  font-size:10.5px;font-weight:700;text-transform:none;letter-spacing:0;
  color:var(--accent);cursor:pointer;background:none;border:none;font-family:inherit;
}
.toggle-row{display:flex;justify-content:flex-end;margin-bottom:10px;margin-top:-6px}
.toggle-row .mini-link{
  font-size:11px;font-weight:700;color:var(--accent);cursor:pointer;
  background:none;border:none;font-family:inherit;padding:0;
}
.toggle-row .mini-link:hover{text-decoration:underline}

.top-grid{
  display:grid;grid-template-columns:1.4fr 1fr;gap:18px;margin-bottom:18px;
}

.services-section{margin-bottom:18px}
.s-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.s-card{
  background:var(--surface);border:.5px solid var(--border);
  border-radius:var(--radius);padding:16px;
  transition:border-color .2s,box-shadow .2s,background var(--ease);
}
.s-card:hover{border-color:var(--accent);box-shadow:0 4px 20px rgba(29,78,216,.08)}
.s-icon{
  width:34px;height:34px;border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  background:var(--accent-light);color:var(--accent);
  margin-bottom:8px;
}
.s-icon .icon{width:18px;height:18px}
.s-card h3{font-size:13.5px;font-weight:700;margin-bottom:6px;letter-spacing:-.2px}
.s-card p{font-size:12.5px;color:var(--muted);line-height:1.6}

.personal-section{margin-bottom:18px}
.budget-pill{
  font-size:10px;font-weight:700;text-transform:none;letter-spacing:0;
  background:var(--green-bg);color:var(--green-text);
  border-radius:20px;padding:3px 10px;
}
.personal-intro{font-size:12.5px;color:var(--muted);line-height:1.7;margin-bottom:14px;max-width:680px}
.addon-note{
  margin-top:14px;background:var(--surface);border:.5px dashed var(--border);
  border-radius:var(--radius);padding:14px 16px;
}
.addon-note-title{font-size:11.5px;font-weight:700;color:var(--text);margin-bottom:9px}
.addon-chips{display:flex;flex-wrap:wrap;gap:6px}
.addon-chip{
  font-size:11px;font-weight:600;color:var(--tag-text);
  background:var(--tag-bg);border-radius:20px;padding:5px 12px;
}

.packages-section{margin-bottom:18px}
.pkg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.pkg-card{
  background:var(--surface);border:.5px solid var(--border);
  border-radius:var(--radius);padding:16px;position:relative;
  transition:border-color .2s,box-shadow .2s,background var(--ease);
  display:flex;flex-direction:column;gap:0;cursor:pointer;
}
.pkg-card.featured{border-color:var(--accent);box-shadow:0 0 0 3px rgba(29,78,216,.08)}
.pkg-card.selected{border-color:var(--accent);box-shadow:0 0 0 3px rgba(29,78,216,.15)}
.featured-badge{
  position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  background:var(--accent);color:#fff;
  font-size:9.5px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  padding:3px 12px;border-radius:0 0 8px 8px;white-space:nowrap;
}
.pkg-name{font-size:12px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;margin-bottom:6px}
.pkg-price{font-size:clamp(19px,3vw,24px);font-weight:800;letter-spacing:-.6px;margin-bottom:3px;line-height:1}
.pkg-price span{font-size:13px;font-weight:500;color:var(--muted)}
.pkg-sub{font-size:11px;color:var(--muted);margin-bottom:12px}
.pkg-divider{height:.5px;background:var(--border);margin-bottom:12px}
.pkg-features{list-style:none;display:flex;flex-direction:column;gap:7px;flex:1}
.pkg-features li{font-size:11.5px;color:var(--muted);display:flex;align-items:flex-start;gap:7px;line-height:1.45}
.pkg-features li::before{content:'✓';color:var(--green);font-weight:700;flex-shrink:0;margin-top:1px}
.pkg-features li.na{opacity:.4}
.pkg-features li.na::before{content:'–';color:var(--muted)}
.pkg-radio{
  margin-top:14px;width:100%;text-align:center;
  border-radius:9px;padding:9px;font-size:12.5px;font-weight:700;
  border:.5px solid var(--border);color:var(--muted);
  transition:all .2s;
}
.pkg-card.selected .pkg-radio{background:var(--accent);color:#fff;border-color:var(--accent)}
.pkg-card:hover .pkg-radio{border-color:var(--accent);color:var(--accent)}
.pkg-card.selected:hover .pkg-radio{color:#fff}

.quote-section{margin-bottom:18px}
.quote-card{
  background:var(--surface);border:.5px solid var(--border);
  border-radius:var(--radius);padding:18px;
  transition:background var(--ease),border-color var(--ease);
}
.quote-top{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap}
.quote-info h3{font-size:14px;font-weight:700;margin-bottom:3px}
.quote-info p{font-size:12px;color:var(--muted);max-width:420px;line-height:1.6}
.quote-selected{
  font-size:11px;font-weight:700;color:var(--accent);margin-top:8px;
  display:flex;align-items:center;gap:6px;
}
.quote-actions{display:flex;gap:8px;flex-wrap:wrap;flex-shrink:0}
.q-btn{
  display:inline-flex;align-items:center;gap:6px;
  border-radius:9px;padding:9px 16px;font-size:12.5px;font-weight:700;
  font-family:inherit;cursor:pointer;border:.5px solid var(--border);
  background:var(--surface2);color:var(--text);transition:all .2s;white-space:nowrap;
}
.q-btn:hover{border-color:var(--accent);color:var(--accent)}
.q-btn.primary{background:transparent;color:var(--accent);border:1.5px solid var(--accent)}
.q-btn.primary:hover{background:var(--accent-light);color:var(--accent)}
.q-status{font-size:11px;color:var(--muted);margin-top:8px;min-height:14px}
.negotiable-note{
  margin-top:14px;padding-top:14px;border-top:.5px dashed var(--border);
  font-size:11.5px;color:var(--muted);line-height:1.65;
}
.negotiable-note strong{color:var(--text)}

.info-cta-row{
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  background:var(--text);color:var(--bg);border-radius:var(--radius);
  padding:20px 22px;margin-bottom:18px;
}
.info-cta-row h2{font-size:15.5px;font-weight:800;letter-spacing:-.2px}
.info-cta-row p{font-size:12px;opacity:.65;margin-top:3px}
.info-cta-actions{display:flex;gap:8px;flex-wrap:wrap;flex-shrink:0}
.cta-btn{
  display:inline-flex;align-items:center;gap:6px;border-radius:9px;padding:9px 16px;
  font-size:12.5px;font-weight:700;font-family:inherit;cursor:pointer;
  transition:opacity .2s;white-space:nowrap;
}
.cta-btn.primary{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.7)}
.cta-btn.primary:hover{background:rgba(255,255,255,.12)}
.cta-btn.ghost{background:transparent;color:rgba(255,255,255,.8);border:.5px solid rgba(255,255,255,.25)}
.cta-btn:hover{opacity:.82;text-decoration:none}

footer{
  text-align:center;font-size:12px;color:var(--muted);
  margin-top:8px;padding-top:18px;
  border-top:.5px solid var(--border);line-height:1.8;font-weight:500;
  transition:color var(--ease),border-color var(--ease);
}
.footer-link{
  background:none;border:none;font-family:inherit;font-size:12px;font-weight:600;
  color:var(--accent);cursor:pointer;text-decoration:underline;
}

.modal-overlay{
  display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);
  z-index:1000;align-items:center;justify-content:center;padding:18px;
  backdrop-filter:blur(2px);
}
.modal-overlay.open{display:flex}
.modal-box{
  background:var(--surface);border:.5px solid var(--border);border-radius:16px;
  max-width:640px;width:100%;max-height:84vh;overflow-y:auto;position:relative;
  padding:28px 24px 24px;animation:modalIn .25s ease both;
}
@keyframes modalIn{from{opacity:0;transform:translateY(10px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}
.modal-close{
  position:absolute;top:14px;right:14px;width:30px;height:30px;border-radius:50%;
  border:.5px solid var(--border);background:var(--surface2);color:var(--muted);
  cursor:pointer;font-size:13px;display:flex;align-items:center;justify-content:center;
}
.modal-close:hover{color:var(--text);border-color:var(--accent)}
.modal-box h2{font-size:18px;font-weight:800;margin-bottom:4px;letter-spacing:-.3px}
.modal-box .modal-sub{font-size:12.5px;color:var(--muted);margin-bottom:20px;line-height:1.6}

.rates-wrap{background:var(--surface2);border:.5px solid var(--border);border-radius:12px;overflow-x:auto;margin-bottom:26px;-webkit-overflow-scrolling:touch}
.rates-table{width:100%;min-width:480px;border-collapse:collapse}
.rates-table th{
  font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;
  color:var(--muted);padding:9px 12px;text-align:left;border-bottom:.5px solid var(--border);
}
.rates-table td{font-size:12.5px;padding:11px 12px;color:var(--text);border-bottom:.5px solid var(--border);vertical-align:top}
.rates-table tr:last-child td{border-bottom:none}
.rate-price{font-weight:700;color:var(--accent);white-space:nowrap}
.rate-note{font-size:10.5px;color:var(--muted);margin-top:2px}

.steps{display:flex;flex-direction:column;gap:0;margin-bottom:22px}
.step{display:grid;grid-template-columns:32px 1fr;gap:12px;padding:13px 0;border-bottom:.5px solid var(--border)}
.step:last-child{border-bottom:none}
.step-num{
  width:28px;height:28px;border-radius:50%;background:var(--accent-light);color:var(--accent);
  font-size:11.5px;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.step-body h3{font-size:13px;font-weight:700;margin-bottom:3px}
.step-body p{font-size:12px;color:var(--muted);line-height:1.6}

.modal-cta{
  background:var(--surface2);border-radius:12px;padding:18px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
}
.modal-cta h3{font-size:14px;font-weight:800}
.modal-cta p{font-size:12px;color:var(--muted);margin-top:3px}
.modal-cta-actions{display:flex;gap:8px;flex-wrap:wrap}
.modal-cta-btn{
  display:inline-flex;align-items:center;gap:6px;border-radius:9px;padding:9px 16px;
  font-size:12.5px;font-weight:700;font-family:inherit;cursor:pointer;
  transition:opacity .2s,background .2s,color .2s;white-space:nowrap;
}
.modal-cta-btn.solid{background:transparent;color:var(--accent);border:1.5px solid var(--accent)}
.modal-cta-btn.solid:hover{background:var(--accent-light);text-decoration:none;color:var(--accent)}
.modal-cta-btn.outline{background:transparent;color:var(--text);border:.5px solid var(--border)}
.modal-cta-btn.outline:hover{border-color:var(--accent);color:var(--accent);text-decoration:none}

.copyright-body p{font-size:12.5px;color:var(--muted);line-height:1.75;margin-bottom:12px}
.copyright-body strong{color:var(--text)}
.contact-mini{display:flex;flex-direction:column;gap:8px;margin:16px 0;padding:14px;background:var(--surface2);border-radius:10px}
.contact-mini-row{display:flex;justify-content:space-between;font-size:12.5px;gap:10px}
.contact-mini-row span:first-child{color:var(--muted);font-weight:600}
.contact-mini-row a{font-weight:700}

.export-only{display:none}
.export-only.capturing{display:block}

@keyframes fadeUp{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
.s-card,.pkg-card,.quote-card{animation:fadeUp .4s ease both}

@media(max-width:880px){
  .top-grid{grid-template-columns:1fr}
}
@media(max-width:700px){
  .s-grid{grid-template-columns:1fr}
  .pkg-grid{grid-template-columns:1fr}
  .info-cta-row{flex-direction:column;align-items:flex-start}
  .modal-cta{flex-direction:column;align-items:flex-start}
  .modal-box{padding:22px 16px 18px;max-height:88vh;border-radius:14px}
  .modal-box h2{font-size:16px}
  .modal-close{top:10px;right:10px}
  .rates-table th,.rates-table td{padding:8px 10px;font-size:11.5px}
  .step{grid-template-columns:26px 1fr;gap:10px;padding:11px 0}
  .step-num{width:24px;height:24px;font-size:10.5px}
  .modal-cta-actions{width:100%}
  .modal-cta-btn{flex:1;justify-content:center}
  .contact-mini-row{flex-wrap:wrap;gap:3px}
  .top-bar{flex-wrap:nowrap;align-items:flex-start}
  .top-bar-right{margin-left:auto;flex-shrink:0}
  .nav-cta{
    background:none;color:var(--accent);padding:0;border-radius:0;
    font-size:12.5px;
  }
  .nav-cta:hover{opacity:1;text-decoration:underline}
}
@media(max-width:480px){
  .wrap{padding:22px 13px 50px}
  .info-cta-actions{flex-direction:column;width:100%}
  .cta-btn{justify-content:center}
  .quote-actions{width:100%}
  .q-btn{flex:1;justify-content:center}
}