:root {
  --navy: #082b5c;
  --navy-deep: #041b3a;
  --blue: #1768e5;
  --blue-light: #eaf3ff;
  --red: #e51f2f;
  --red-dark: #b91220;
  --ink: #152238;
  --muted: #5f6e82;
  --line: #dbe4ef;
  --surface: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(4, 27, 58, 0.12);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: 6rem 0; }
.section-muted { background: var(--surface); }
.section-dark { color: var(--white); background: linear-gradient(135deg, var(--navy-deep), var(--navy)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219, 228, 239, .8);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 52px;
  height: 52px;
  padding: 5px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0 49%, var(--red) 51% 100%);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(8, 43, 92, .18);
  transform: rotate(-3deg);
}
.brand-mark span { font-size: 1.2rem; font-weight: 900; line-height: 1; transform: rotate(3deg); }
.brand-mark.small { width: 42px; height: 42px; border-radius: 13px; box-shadow: none; }
.brand-mark.small span { font-size: 1rem; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { color: var(--navy); font-size: 1.05rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: .25rem; color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 1.6rem; }
.desktop-nav a { color: var(--navy); font-size: .93rem; font-weight: 750; text-decoration: none; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--red); }
.desktop-nav .nav-cta { padding: .7rem 1rem; color: var(--white); background: var(--red); border-radius: 999px; }
.desktop-nav .nav-cta:hover, .desktop-nav .nav-cta:focus-visible { color: var(--white); background: var(--red-dark); }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { cursor: pointer; color: var(--navy); font-weight: 800; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav nav { position: absolute; right: 0; top: 2.5rem; width: 230px; padding: .75rem; display: grid; gap: .25rem; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.mobile-nav nav a { padding: .65rem .75rem; color: var(--navy); font-weight: 700; text-decoration: none; border-radius: 8px; }
.mobile-nav nav a:hover { background: var(--blue-light); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0 5.5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(23, 104, 229, .15), transparent 28%),
    radial-gradient(circle at 15% 85%, rgba(229, 31, 47, .10), transparent 30%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(8, 43, 92, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 43, 92, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 4rem; }
.eyebrow { margin: 0 0 .75rem; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: #ffb5bd; }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 720px; font-size: clamp(3.25rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); }
h3 { font-size: 1.28rem; }
.section-dark h2 { color: var(--white); }
.hero-lead { max-width: 680px; margin: 1.35rem 0 1.6rem; color: #42526a; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-points { display: grid; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.hero-points li { position: relative; padding-left: 1.65rem; color: #42526a; }
.hero-points li::before { content: ""; position: absolute; left: 0; top: .62em; width: .65rem; height: .65rem; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px rgba(229, 31, 47, .09); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .82rem 1.2rem; font-weight: 850; text-decoration: none; border: 2px solid transparent; border-radius: 12px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); box-shadow: 0 12px 28px rgba(229, 31, 47, .22); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.button-secondary:hover { border-color: #aebed2; box-shadow: 0 10px 24px rgba(4, 27, 58, .08); }

.hero-visual { position: relative; }
.image-card { padding: 1.15rem; background: rgba(255, 255, 255, .9); border: 1px solid rgba(219, 228, 239, .85); border-radius: 32px; box-shadow: var(--shadow); transform: rotate(1deg); }
.image-card img { border-radius: 23px; }
.experience-badge { position: absolute; left: -1.5rem; bottom: -1.5rem; display: grid; padding: 1rem 1.25rem; color: var(--white); background: var(--navy); border: 5px solid var(--white); border-radius: 18px; box-shadow: var(--shadow); }
.experience-badge strong { font-size: 1.25rem; }
.experience-badge span { color: #cbd8ea; font-size: .82rem; }

.proof-strip { padding: 1.2rem 0; color: var(--white); background: var(--navy); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid div { display: grid; gap: .15rem; padding: .5rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,.2); }
.proof-grid div:last-child { border-right: 0; }
.proof-grid strong { font-size: 1rem; }
.proof-grid span { color: #bed0e8; font-size: .82rem; }

.section-heading { max-width: 760px; margin-bottom: 2.75rem; }
.section-heading.narrow { max-width: 680px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.card-grid { display: grid; gap: 1.2rem; }
.services-grid { grid-template-columns: repeat(2, 1fr); }
.service-card { position: relative; min-height: 250px; padding: 2rem; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 15px 35px rgba(4, 27, 58, .06); }
.service-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -50px; bottom: -50px; background: var(--blue-light); border-radius: 50%; }
.service-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1.25rem; color: var(--red); background: #fff0f2; font-weight: 900; border-radius: 12px; }
.service-card p { position: relative; z-index: 1; margin-bottom: 0; color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.process-grid li { padding: 1.8rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.process-grid li > span { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1rem; color: var(--white); background: linear-gradient(135deg, var(--navy), var(--blue)); font-weight: 900; border-radius: 50%; }
.process-grid p { margin-bottom: 0; color: var(--muted); }

.pricing-section { background: linear-gradient(180deg, #ffffff, #f7faff); }
.pricing-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 4rem; align-items: center; }
.pricing-intro p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.pricing-intro .button { margin-top: 1rem; }
.pricing-card { padding: 2.2rem; background: var(--white); border: 1px solid var(--line); border-top: 7px solid var(--red); border-radius: 24px; box-shadow: var(--shadow); }
.price-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.price-row > div { display: grid; align-content: start; padding: 1.25rem; background: var(--surface); border-radius: 15px; }
.price-row span { color: var(--muted); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.price-row strong { color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.price-row small { color: var(--muted); }
.check-list { display: grid; gap: .75rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.8rem; color: #42526a; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 900; }

.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; }
.why-copy { font-size: 1.1rem; }
.why-copy p { margin-top: 0; color: #d6e2f1; }

.guide-section { background: linear-gradient(135deg, #eef5ff, #fff5f6); }
.guide-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 4rem; align-items: center; }
.guide-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.mini-list { display: grid; gap: .6rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.mini-list li { position: relative; padding-left: 1.6rem; }
.mini-list li::before { content: ""; position: absolute; left: 0; top: .58em; width: .58rem; height: .58rem; background: var(--blue); border-radius: 50%; }
.form-card { padding: 2rem; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.form-card > p { color: var(--muted); }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.ml-embedded { min-height: 120px; }

.site-footer { padding: 2rem 0; color: #d7e3f2; background: var(--navy-deep); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand > div { display: grid; }
.footer-brand strong { color: var(--white); }
.footer-brand span { font-size: .82rem; }
.site-footer p { margin: 0; font-size: .85rem; }

:focus-visible { outline: 3px solid #ffbdc4; outline-offset: 3px; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero { padding-top: 3.25rem; }
  .hero-grid, .pricing-grid, .why-grid, .guide-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 620px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { gap: 1.5rem; }
}

@media (max-width: 640px) {
  .section { padding: 4.25rem 0; }
  .header-inner { min-height: 72px; }
  .brand-copy strong { font-size: .95rem; }
  .brand-copy small { font-size: .62rem; }
  .brand-mark { width: 44px; height: 44px; border-radius: 13px; }
  .hero { padding: 3rem 0 4.5rem; }
  h1 { font-size: clamp(3rem, 17vw, 4.4rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .experience-badge { left: .5rem; bottom: -1.5rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .proof-grid div:last-child { border-bottom: 0; }
  .price-row { grid-template-columns: 1fr; }
  .pricing-card, .form-card, .service-card { padding: 1.5rem; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

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