:root {
  --brand-50: #f0f9ff;
  --brand-100: #e0f2fe;
  --brand-200: #bae6fd;
  --brand-500: #0ea5e9;
  --brand-600: #0284c7;
  --brand-700: #0369a1;
  --accent-100: #dcfce7;
  --accent-500: #22c55e;
  --accent-600: #16a34a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --radius: 1.5rem;
  --shadow: 0 22px 55px -35px rgba(15, 23, 42, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body {
  margin: 0;
  color: var(--slate-800);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #facc15;
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 0.5rem;
  z-index: 200;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: var(--slate-900);
  color: #fff;
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 2rem)); margin-inline: auto; }
.display {
  margin: 0;
  font-family: Outfit, Inter, sans-serif;
  color: var(--slate-900);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.muted { color: var(--slate-600); }
.text-link { color: var(--brand-700); font-weight: 800; text-underline-offset: 0.2em; }
.offer-bar {
  background: linear-gradient(90deg, var(--slate-900), #075985 60%, var(--accent-600));
  color: #fff;
  min-height: 2.75rem;
}
.offer-inner {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
}
.offer-timer {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  background: rgba(255,255,255,0.12);
  white-space: nowrap;
}
.offer-link { color: #fff; text-underline-offset: 0.18em; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(226,232,240,0.85);
  box-shadow: 0 16px 40px -35px rgba(15,23,42,0.55);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.nav-row { min-height: 6rem; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { display: block; width: 11rem; height: 5.5rem; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 1.2rem; }
.desktop-nav > a:not(.btn) {
  text-decoration: none;
  color: var(--slate-600);
  font-size: 0.9rem;
  font-weight: 750;
}
.desktop-nav > a:not(.btn):hover { color: var(--brand-700); }
.phone-link { color: var(--slate-900) !important; white-space: nowrap; }
.mobile-menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  border-radius: 0.85rem;
  background: #fff;
  color: var(--slate-700);
}
.mobile-menu { display: none; padding: 0 0 1rem; }
.mobile-menu.is-open { display: grid; gap: 0.35rem; }
.mobile-menu a { padding: 0.75rem 0.9rem; border-radius: 0.75rem; text-decoration: none; font-weight: 750; }
.mobile-menu a:hover { background: var(--slate-50); }
.mobile-menu .btn { margin-top: 0.35rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.78rem 1.2rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand-600); color: #fff; box-shadow: 0 14px 30px -18px rgba(2,132,199,0.85); }
.btn-primary:hover { background: var(--brand-700); }
.btn-dark { background: var(--slate-900); color: #fff; }
.btn-light { background: #fff; color: var(--brand-700); border: 1px solid var(--brand-200); }
.btn-outline { background: #fff; color: var(--brand-700); border: 2px solid var(--brand-600); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.7rem 0 4.2rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(34,197,94,0.15), transparent 32%),
    radial-gradient(circle at 8% 25%, rgba(14,165,233,0.18), transparent 34%),
    linear-gradient(135deg, var(--brand-50), #fff 56%, #f0fdf4);
}
.hero-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,0.65fr); align-items: center; gap: 3rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.3rem; color: var(--slate-500); font-size: 0.82rem; }
.breadcrumbs a { color: var(--brand-700); font-weight: 750; text-decoration: none; }
.hero h1 { font-size: clamp(2.45rem, 6vw, 4.65rem); }
.hero-lead { max-width: 720px; margin: 1.25rem 0 0; color: var(--slate-600); font-size: clamp(1.04rem,2vw,1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.7rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.35rem; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.72rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  font-size: 0.78rem;
  font-weight: 850;
}
.hero-card {
  border-radius: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(186,230,253,0.9);
  box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 1.35rem; }
.quick-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.8rem; }
.quick-list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.quick-list i { margin-top: 0.27rem; color: var(--accent-600); }
.quick-list strong { display: block; color: var(--slate-900); }
.quick-list span { color: var(--slate-600); font-size: 0.9rem; }
.section { padding: 4.7rem 0; }
.section-soft { background: var(--slate-50); }
.section-brand { background: linear-gradient(135deg, var(--brand-50), #f0fdf4); }
.section-head { max-width: 760px; margin: 0 auto 2.2rem; text-align: center; }
.section-head h2 { margin-top: 0.7rem; font-size: clamp(2rem,4vw,3.15rem); }
.section-head p { margin: 1rem 0 0; color: var(--slate-600); font-size: 1.05rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; }
.card {
  border-radius: var(--radius);
  padding: 1.45rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
}
.card h2, .card h3 { margin: 0; font-family: Outfit, Inter, sans-serif; color: var(--slate-900); line-height: 1.2; }
.card p:last-child { margin-bottom: 0; }
.icon-box {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg,var(--brand-100),var(--accent-100));
  color: var(--brand-700);
  font-size: 1.15rem;
}
.check-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0.75rem; padding: 0; list-style: none; }
.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.8rem;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  background: #fff;
}
.check-grid i { color: var(--accent-600); margin-top: 0.3rem; }
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card p { color: var(--slate-600); }
.service-card .service-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1rem; }
.service-card .price { font-family: Outfit, sans-serif; font-size: 1.25rem; font-weight: 900; color: var(--brand-700); }
.facts {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 1rem;
  margin-top: -1.8rem;
  position: relative;
  z-index: 2;
}
.fact { text-align: center; padding: 1rem; background: #fff; border: 1px solid var(--slate-200); border-radius: 1.2rem; box-shadow: var(--shadow); }
.fact strong { display: block; color: var(--slate-900); font-family: Outfit,sans-serif; font-size: 1.15rem; }
.fact span { color: var(--slate-500); font-size: 0.78rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--slate-200); border-radius: 1.25rem; background: #fff; box-shadow: var(--shadow); }
.price-table { width: 100%; min-width: 660px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 0.92rem 1rem; text-align: left; border-bottom: 1px solid var(--slate-200); }
.price-table th { background: var(--slate-50); color: var(--slate-900); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.price-table td:last-child, .price-table th:last-child { text-align: right; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table .amount { color: var(--brand-700); font-size: 1.08rem; font-weight: 900; white-space: nowrap; }
.note { margin-top: 1rem; padding: 1rem 1.1rem; border-left: 4px solid var(--brand-500); border-radius: 0.8rem; background: var(--brand-50); color: var(--slate-700); }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.step { position: relative; padding: 1.4rem 1.2rem 1.2rem; border: 1px solid var(--slate-200); border-radius: 1.25rem; background: #fff; }
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--brand-600);
  color: #fff;
  font-weight: 900;
}
.step h3 { margin: 0; color: var(--slate-900); font-family: Outfit,sans-serif; }
.step p { margin-bottom: 0; color: var(--slate-600); }
.faq-list { display: grid; gap: 0.75rem; }
.faq-list details { border: 1px solid var(--slate-200); border-radius: 1.05rem; background: #fff; overflow: hidden; }
.faq-list summary { cursor: pointer; list-style: none; padding: 1rem 3rem 1rem 1.1rem; color: var(--slate-900); font-weight: 850; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 1rem; top: 0.78rem; color: var(--brand-700); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 1.1rem 1rem; color: var(--slate-600); }
.faq-answer p { margin: 0; }
.answer-box { padding: 1.35rem; border: 1px solid var(--brand-200); border-radius: 1.25rem; background: linear-gradient(135deg,var(--brand-50),#fff); }
.answer-box strong { color: var(--slate-900); }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 290px; gap: 2.2rem; align-items: start; }
.article-body { font-size: 1.04rem; }
.article-body h2, .article-body h3 { font-family: Outfit,sans-serif; color: var(--slate-900); line-height: 1.2; scroll-margin-top: 7rem; }
.article-body h2 { margin-top: 2.4rem; font-size: 2rem; }
.article-body h3 { margin-top: 1.6rem; font-size: 1.35rem; }
.article-body li + li { margin-top: 0.55rem; }
.toc { position: sticky; top: 7.2rem; }
.toc h2 { font-size: 1.1rem; }
.toc a { display: block; padding: 0.36rem 0; color: var(--brand-700); font-size: 0.9rem; font-weight: 750; text-decoration: none; }
.review-card blockquote { margin: 0; color: var(--slate-700); }
.review-card cite { display: block; margin-top: 1rem; color: var(--slate-900); font-style: normal; font-weight: 850; }
.stars { color: #f59e0b; letter-spacing: 0.05em; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.form-field { display: grid; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--slate-800); font-size: 0.86rem; font-weight: 850; }
.form-control {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.85rem;
  background: #fff;
  color: var(--slate-900);
}
textarea.form-control { min-height: 7rem; resize: vertical; }
.form-control:focus { border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(14,165,233,0.14); outline: 0; }
.form-control[aria-invalid="true"] { border-color: #dc2626; }
.form-status { display: none; margin-top: 1rem; padding: 0.85rem 1rem; border-radius: 0.85rem; font-size: 0.88rem; font-weight: 800; }
.form-status.is-visible { display: block; }
.form-status.is-error { border: 1px solid #fecaca; background: #fef2f2; color: #991b1b; }
.form-status.is-success { border: 1px solid #bbf7d0; background: #f0fdf4; color: #166534; }
.form-note { margin: 0.8rem 0 0; color: var(--slate-500); font-size: 0.78rem; }
.cta-band { padding: 3.8rem 0; background: linear-gradient(115deg,var(--slate-900),#075985 58%,var(--accent-600)); color: #fff; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { margin: 0; color: #fff; font-size: clamp(2rem,4vw,3.25rem); }
.cta-band p { margin: 0.75rem 0 0; color: rgba(255,255,255,0.86); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; flex: 0 0 auto; }
.site-footer { padding: 3.2rem 0 1.4rem; background: #075985; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; }
.footer-logo { width: 12rem; height: 6rem; object-fit: contain; filter: drop-shadow(0 10px 25px rgba(0,0,0,0.12)); }
.site-footer h2 { margin: 0 0 0.8rem; font-family: Outfit,sans-serif; font-size: 1rem; }
.site-footer p { color: rgba(255,255,255,0.84); font-size: 0.9rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.48rem; }
.footer-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.88rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); font-size: 0.78rem; }
.mobile-quick-actions { display: none; }
.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; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 0.85rem; }
  .desktop-nav > a:not(.btn) { font-size: 0.82rem; }
  .brand img { width: 9.5rem; height: 4.75rem; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu-button { display: inline-flex; }
  .nav-row { min-height: 5.25rem; }
  .brand img { width: 9rem; height: 4.5rem; }
  .hero { padding-top: 3.5rem; }
  .hero-grid, .article-layout { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .facts { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .steps { grid-template-columns: 1fr; }
  .toc { position: static; order: -1; }
  .cta-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 6rem; }
  body.has-mobile-actions { padding-bottom: calc(5.2rem + env(safe-area-inset-bottom)); }
  .container, .narrow { width: min(100% - 1.2rem, 1180px); }
  .offer-inner { min-height: 3.1rem; flex-wrap: wrap; gap: 0.25rem 0.45rem; padding: 0.36rem 0; font-size: 0.7rem; line-height: 1.1; }
  .offer-timer { font-size: 0.65rem; }
  .nav-row { min-height: 4.75rem; }
  .brand img { width: 8rem; height: 4rem; }
  .hero { padding: 2.8rem 0 3.2rem; }
  .hero h1 { font-size: clamp(2.2rem,12vw,3.15rem); }
  .hero-actions .btn { width: 100%; }
  .hero-card { border-radius: 1.45rem; padding: 1.2rem; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-pill { justify-content: center; text-align: center; font-size: 0.7rem; }
  .section { padding: 3.3rem 0; }
  .section-head { margin-bottom: 1.55rem; }
  .grid-2, .grid-3, .grid-4, .check-grid, .facts, .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .card { border-radius: 1.2rem; padding: 1.15rem; }
  .service-card .service-footer { align-items: flex-start; flex-direction: column; }
  .fact { text-align: left; }
  .fact strong, .fact span { display: inline; }
  .fact span::before { content: " · "; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .footer-bottom { flex-direction: column; }
  .mobile-quick-actions {
    position: fixed;
    left: 0.65rem;
    right: 0.65rem;
    bottom: calc(0.65rem + env(safe-area-inset-bottom));
    z-index: 120;
    display: flex;
    gap: 0.55rem;
    padding: 0.55rem;
    border: 1px solid rgba(226,232,240,0.95);
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 20px 50px -22px rgba(15,23,42,0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .mobile-quick-actions.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-quick-actions .btn { flex: 1; min-height: 3rem; padding-inline: 0.75rem; font-size: 0.84rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
