:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --emerald-700: #047857;
  --amber-100: #fef3c7;
  --amber-800: #92400e;
  --slate-50: #f8fafc;
  --slate-200: #e2e8f0;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sky-50);
  color: var(--slate-900);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 2rem, 64rem); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--slate-200);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-logo { width: 13rem; height: auto; }
.header-link { color: var(--sky-800); font-size: .9rem; font-weight: 800; text-decoration: none; }
.breadcrumb { padding-top: 1.25rem; color: var(--slate-600); font-size: .82rem; }
.breadcrumb a { color: var(--sky-700); font-weight: 700; text-decoration: none; }
.hero { padding: 2rem 0 3rem; overflow: hidden; }
.hero-grid { display: grid; gap: 2rem; align-items: center; }
.eyebrow {
  display: inline-flex;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: var(--amber-100);
  color: var(--amber-800);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .04em;
}
h1 { margin: 1rem 0 0; font-size: clamp(2rem, 7vw, 3.4rem); line-height: 1.08; letter-spacing: -.03em; }
.lead { max-width: 42rem; margin: 1rem 0 0; color: var(--slate-600); font-size: 1.05rem; line-height: 1.75; }
.actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.15rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
  gap: .5rem;
}
.wa-icon { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; }
.button-primary { background: var(--sky-700); color: var(--white); }
.button-primary:hover { background: var(--sky-800); }
.button-secondary { background: var(--white); color: var(--sky-800); border: 1px solid #bae6fd; }
.hero-card {
  display: grid;
  min-height: 18rem;
  place-items: center;
  border: 1px solid #bae6fd;
  border-radius: 2rem;
  background: linear-gradient(145deg, var(--white), var(--sky-100));
  box-shadow: 0 24px 60px rgba(2,132,199,.12);
}
.hero-card img { width: min(48%, 13rem); height: auto; }
.section { padding: 3.5rem 0; }
.section-white { background: var(--white); }
.section-title { margin: 0; font-size: clamp(1.55rem, 5vw, 2.2rem); line-height: 1.2; }
.section-intro { max-width: 45rem; margin: .75rem 0 0; color: var(--slate-600); line-height: 1.7; }
.grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
.card { border: 1px solid var(--slate-200); border-radius: 1.25rem; background: var(--white); padding: 1.25rem; box-shadow: 0 8px 28px rgba(15,23,42,.05); }
.card h2, .card h3 { margin: 0; font-size: 1.05rem; }
.card p { margin: .65rem 0 0; color: var(--slate-600); line-height: 1.65; }
.check-list { margin: 1.25rem 0 0; padding: 0; list-style: none; display: grid; gap: .75rem; }
.check-list li { position: relative; padding-left: 1.8rem; color: var(--slate-700); line-height: 1.6; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald-700); font-weight: 900; }
.steps { counter-reset: steps; }
.step { position: relative; padding-left: 3.6rem; }
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-700);
  color: var(--white);
  font-size: .8rem;
  font-weight: 900;
}
.notice { margin-top: 1.5rem; padding: 1rem 1.1rem; border-left: 4px solid var(--sky-700); border-radius: .75rem; background: var(--sky-50); color: var(--slate-700); line-height: 1.65; }
.related a { color: var(--sky-700); font-weight: 800; text-decoration: none; }
.cta { padding: 3.5rem 0; background: var(--slate-900); color: var(--white); }
.cta p { max-width: 42rem; color: #cbd5e1; line-height: 1.7; }
.site-footer { padding: 2rem 0; background: #020617; color: #cbd5e1; font-size: .86rem; line-height: 1.7; }
.site-footer strong { color: var(--white); }
:focus-visible { outline: 3px solid #38bdf8; outline-offset: 3px; }

.service-detail-page h1,
.service-detail-page h2,
.service-detail-page h3,
.service-detail-page .eyebrow,
.service-detail-page .fact-card strong,
.service-detail-page .button,
.service-detail-page .mobile-service-cta {
  font-family: "Fredoka", ui-sans-serif, system-ui, sans-serif;
}
.service-detail-page .hero-grid { max-width: 48rem; margin-inline: auto; text-align: center; }
.service-detail-page .lead { margin-inline: auto; }
.service-detail-page .actions { justify-content: center; }
.quick-facts { padding: 0 0 2.5rem; }
.quick-facts-grid { display: grid; gap: .75rem; }
.fact-card { display: grid; gap: .25rem; border: 1px solid #bae6fd; border-radius: 1rem; background: rgba(255,255,255,.88); padding: 1rem; box-shadow: 0 8px 24px rgba(15,23,42,.04); }
.fact-label { color: var(--sky-700); font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.fact-card strong { font-size: .98rem; }
.section-kicker { display: block; margin-bottom: .55rem; color: var(--sky-700); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.section-kicker-light { color: #7dd3fc; }
.faq-list { display: grid; gap: .75rem; margin-top: 1.5rem; }
.faq-list details { border: 1px solid var(--slate-200); border-radius: 1rem; background: var(--white); padding: 0 1rem; box-shadow: 0 6px 20px rgba(15,23,42,.04); }
.faq-list summary { display: flex; min-height: 3.5rem; cursor: pointer; list-style: none; align-items: center; justify-content: space-between; gap: 1rem; color: var(--slate-900); font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--sky-700); font-size: 1.35rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { margin: 0; padding: 0 0 1rem; color: var(--slate-600); line-height: 1.7; }
.mobile-service-cta { position: fixed; right: 1rem; bottom: 1rem; left: 1rem; z-index: 30; display: inline-flex; min-height: 3.25rem; transform: translateY(calc(100% + 1.5rem)); opacity: 0; pointer-events: none; align-items: center; justify-content: center; gap: .65rem; border-radius: 999px; background: var(--emerald-700); color: var(--white); font-size: .9rem; font-weight: 700; text-decoration: none; box-shadow: 0 14px 36px rgba(4,120,87,.3); transition: transform .2s ease, opacity .2s ease; }
.mobile-service-cta.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.service-detail-page { padding-bottom: 4.75rem; }

@media (min-width: 40rem) {
  .actions { flex-direction: row; }
  .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .quick-facts-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (min-width: 52rem) {
  .hero { padding: 3.5rem 0 4.5rem; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  .service-detail-page .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .mobile-service-cta { display: none; }
  .service-detail-page { padding-bottom: 0; }
}
