:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --accent: #f5d77b;
  --accent-2: #fff4cc;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow: 0 24px 80px rgba(15, 23, 42, .12);
  --shadow-soft: 0 12px 40px rgba(15, 23, 42, .08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg), #fff 36%, #eef2f7);
  line-height: 1.6;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 999;
}
.skip-link:focus { left: 10px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.section-pad { padding: 94px 0; }
.section-pad-sm { padding: 70px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, .8);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(15, 23, 42, .08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: white;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand-text strong { display: block; font-size: 18px; line-height: 1.05; letter-spacing: -.03em; }
.brand-text small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 26px; color: #334155; font-size: 15px; font-weight: 700; }
.main-nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--dark);
  color: white !important;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .18);
}
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; border-radius: 99px; }

.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: 50%;
  top: -160px;
  transform: translateX(-50%);
  background: rgba(203, 213, 225, .62);
  filter: blur(80px);
  border-radius: 999px;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -80px;
  top: 220px;
  background: rgba(245, 215, 123, .45);
  filter: blur(70px);
  border-radius: 999px;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  border-radius: 999px;
  padding: 8px 14px;
  color: #334155;
  font-size: 14px;
  font-weight: 900;
}
.eyebrow::before { content: "✦"; }
.eyebrow.dark { color: #e2e8f0; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 26px;
  max-width: 850px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -.07em;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.15; letter-spacing: -.03em; }
.lead { max-width: 720px; color: #475569; font-size: 20px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 34px 0 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 13px 18px;
  min-height: 50px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--dark); color: white; box-shadow: 0 16px 34px rgba(15, 23, 42, .2); }
.button.primary:hover { background: var(--dark-2); }
.button.secondary { background: white; border-color: #cbd5e1; color: var(--ink); }
.button.full { width: 100%; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding-left: 30px; color: #334155; font-weight: 750; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  font-size: 12px;
  line-height: 1;
}
.hero-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; }

.hero-card { position: relative; }
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
  padding: 16px;
  box-shadow: var(--shadow);
}
.dashboard-card > * { border-radius: 26px; }
.dashboard-card { color: white; }
.dashboard-top, .meter-list, .next-step { background: var(--dark); }
.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.dashboard-top span { color: #cbd5e1; font-size: 14px; }
.dashboard-top strong { display: block; margin-top: 2px; font-size: 30px; letter-spacing: -.04em; }
.icon-badge { width: 54px; height: 54px; display: grid; place-items: center; background: var(--accent); color: var(--dark); border-radius: 18px; font-size: 26px; font-weight: 900; }
.meter-list { padding: 14px 28px 24px; border-radius: 0; display: grid; gap: 15px; }
.meter-item { background: rgba(255,255,255,.08); border-radius: 20px; padding: 16px; }
.meter-item div { display: flex; justify-content: space-between; margin-bottom: 10px; }
.meter-item span { color: #cbd5e1; }
.meter-item i { display: block; height: 8px; border-radius: 999px; background: rgba(255,255,255,.14); overflow: hidden; }
.meter-item i::before { content: ""; display: block; width: var(--value); height: 100%; border-radius: inherit; background: white; }
.next-step { margin-top: 0; padding: 0 28px 28px; border-top-left-radius: 0; border-top-right-radius: 0; }
.next-step strong, .next-step p { display: block; background: var(--accent-2); color: var(--ink); }
.next-step strong { padding: 18px 18px 0; border-top-left-radius: 20px; border-top-right-radius: 20px; }
.next-step p { margin: 0; padding: 8px 18px 18px; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; color: #475569; }

.stats-band { background: white; border-block: 1px solid var(--line); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stats-grid strong { display: block; font-size: 34px; line-height: 1; letter-spacing: -.05em; }
.stats-grid span { display: block; margin-top: 6px; color: var(--muted); }

.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.service-grid, .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card, .team-card, .faq-item, .result-card, .contact-grid {
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
}
.service-card { padding: 30px; transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 22px; border-radius: 18px; background: var(--dark); font-size: 24px; }
.service-card p, .team-card p, .why-grid p, .process p { color: var(--muted); }

.dark-section { background: var(--dark); color: white; }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.dark-section p { color: #cbd5e1; font-size: 18px; }
.notice-box { margin-top: 32px; padding: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; }
.notice-box strong { display: block; margin-bottom: 8px; }
.notice-box span { color: #cbd5e1; }
.steps { display: grid; gap: 16px; }
.step-card { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.08); border-radius: 26px; padding: 26px; }
.step-card span { display: inline-block; margin-bottom: 12px; color: var(--accent); font-weight: 900; letter-spacing: .18em; }
.step-card h3 { color: white; }
.step-card p { margin-bottom: 0; color: #cbd5e1; }

.why-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.stacked { margin-top: 28px; display: grid; gap: 13px; }
.stacked li { background: white; border: 1px solid var(--line); padding: 15px 18px 15px 48px; border-radius: 18px; box-shadow: 0 4px 14px rgba(15, 23, 42, .04); }
.stacked li::before { left: 16px; top: 17px; }
.result-card { padding: 34px; background: #f8fafc; box-shadow: var(--shadow-soft); }
.result-card small { display: block; margin-bottom: 8px; color: var(--muted); font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.result-card h3 { font-size: 34px; }
.result-card dl { display: grid; gap: 12px; margin: 24px 0 0; }
.result-card dl div { display: flex; justify-content: space-between; gap: 16px; align-items: center; background: white; border-radius: 18px; padding: 16px; }
.result-card dt { font-weight: 850; color: #334155; }
.result-card dd { margin: 0; background: var(--dark); color: white; border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 900; white-space: nowrap; }

.team-section { background: white; }
.team-card { padding: 30px; background: #f8fafc; }
.avatar { width: 82px; height: 82px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 26px; background: var(--dark); color: white; font-size: 26px; font-weight: 900; }
.role { margin-top: -2px; color: #475569 !important; font-size: 14px; font-weight: 900; }

.testimonial-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; background: var(--dark); color: white; border-radius: 34px; padding: 46px; box-shadow: var(--shadow); }
.testimonial-card blockquote { margin: 0; color: #e2e8f0; font-size: 22px; line-height: 1.65; }
.testimonial-card cite { display: block; margin-top: 20px; color: white; font-size: 15px; font-style: normal; font-weight: 900; }

.faq-section { background: #f1f5f9; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item { padding: 22px 24px; }
.faq-item summary { cursor: pointer; font-weight: 900; font-size: 18px; }
.faq-item p { margin: 14px 0 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; padding: 42px; box-shadow: var(--shadow-soft); }
.contact-grid p { color: var(--muted); font-size: 18px; }
.contact-facts { margin-top: 28px; }
.contact-facts p { margin: 8px 0; font-size: 16px; }
.contact-facts strong { color: var(--ink); }
.contact-facts a { text-decoration: underline; text-underline-offset: 3px; }
.contact-form { display: grid; gap: 14px; background: var(--surface-2); border-radius: 26px; padding: 22px; }
.contact-form label span { display: block; margin-bottom: 6px; color: #334155; font-size: 14px; font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  background: white;
  padding: 13px 14px;
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--dark); box-shadow: 0 0 0 3px rgba(15, 23, 42, .12); }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.consent input { width: 18px; margin-top: 4px; }
.consent span { margin-bottom: 0 !important; color: var(--muted) !important; font-size: 12px !important; font-weight: 600 !important; line-height: 1.5; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: 12px !important; line-height: 1.5; }

.site-footer { background: white; border-top: 1px solid var(--line); padding: 36px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer-grid strong { display: block; margin-bottom: 6px; font-size: 18px; }
.footer-grid p { margin: 0; color: var(--muted); }
.footer-grid .small { margin-top: 8px; font-size: 12px; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 800; color: #475569; }
.footer-grid nav a:hover { color: var(--ink); }

.legal-page { background: #f8fafc; }
.legal-main { padding: 78px 0; }
.legal-card { max-width: 900px; margin: 0 auto; background: white; border: 1px solid var(--line); border-radius: 30px; padding: 40px; box-shadow: var(--shadow-soft); }
.legal-card h1 { font-size: clamp(36px, 5vw, 58px); }
.legal-card h2 { margin-top: 34px; font-size: 28px; }
.legal-card p, .legal-card li { color: #475569; }
.legal-card .warning { padding: 16px; border: 1px solid #fde68a; background: #fffbeb; border-radius: 18px; color: #92400e; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 980px) {
  .hero-grid, .process-grid, .why-grid, .contact-grid, .testimonial-card { grid-template-columns: 1fr; gap: 36px; }
  .service-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-checks, .stats-grid { grid-template-columns: 1fr; text-align: left; }
  .stats-grid { gap: 18px; }
  .stats-grid div { padding-left: 20px; border-left: 4px solid var(--dark); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 70px 0; }
  .header-inner { min-height: 70px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 14px; border-radius: 14px; }
  .main-nav a:hover { background: #f8fafc; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .brand-text small { display: none; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  .lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .service-grid, .team-grid, .faq-grid { grid-template-columns: 1fr; }
  .dashboard-top, .meter-list, .next-step { padding-left: 18px; padding-right: 18px; }
  .testimonial-card, .contact-grid, .legal-card { padding: 24px; border-radius: 24px; }
  .result-card dl div { align-items: flex-start; flex-direction: column; }
  .footer-grid { flex-direction: column; }
}
