:root {
  --navy: #06285f;
  --deep: #041b42;
  --royal: #1167f4;
  --royal-2: #0b4cb8;
  --sky: #eaf4ff;
  --ice: #f4f8ff;
  --white: #ffffff;
  --ink: #102033;
  --muted: #60708a;
  --line: #d6e5fb;
  --success: #0f7a57;
  --shadow: 0 22px 60px rgba(4, 27, 66, .13);
  --shadow-soft: 0 12px 34px rgba(4, 27, 66, .09);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.skip-link { position: absolute; left: -999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  z-index: 9999;
  border: 2px solid var(--royal);
  border-radius: 10px;
  background: var(--white);
}
:focus-visible { outline: 3px solid #79aefb; outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(214, 229, 251, .9);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}
.top-strip {
  background: linear-gradient(90deg, var(--deep), var(--navy));
  color: #dbeaff;
  font-size: 13px;
  letter-spacing: .01em;
}
.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 7px 0;
}
.top-strip a { display: inline-flex; min-height: 24px; align-items: center; color: var(--white); font-weight: 750; text-decoration: none; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 10px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.brand span span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.header-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--royal), var(--royal-2));
  box-shadow: 0 12px 28px rgba(17, 103, 244, .28);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(17, 103, 244, .34); }
.btn-secondary { border-color: var(--line); background: var(--white); color: var(--navy); }
.btn-secondary:hover { border-color: #a9c7f5; background: var(--ice); }
.btn-wide { width: 100%; }

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--royal-2);
  box-shadow: 0 8px 25px rgba(4, 27, 66, .06);
  font-size: 13px;
  font-weight: 900;
}
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.05; letter-spacing: -.045em; }
h1 { max-width: 920px; margin: 18px 0; font-size: clamp(46px, 6vw, 78px); }
h2 { margin-bottom: 14px; font-size: clamp(34px, 4vw, 52px); }
h3 { font-size: 22px; letter-spacing: -.025em; }
.lead { max-width: 680px; margin: 0 0 24px; color: #243d61; font-size: clamp(19px, 2vw, 23px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.page-hero {
  padding: 42px 0 40px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white) 0%, var(--ice) 100%);
}
.section { padding: 56px 0; }
.section-soft { background: var(--ice); }
.section-head { max-width: 800px; margin-bottom: 30px; }
.image-frame {
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.image-frame img { width: 100%; border-radius: 18px; }

.split-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.price-panel {
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: var(--white);
  box-shadow: var(--shadow);
}
.price { font-size: 76px; font-weight: 950; letter-spacing: -.065em; line-height: .85; }
.price small {
  display: block;
  margin-bottom: 10px;
  color: #b8d6ff;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker {
  margin-bottom: 8px;
  color: var(--royal-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.service-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.service-list li { position: relative; padding-left: 28px; }
.service-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--success);
  font-weight: 950;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.process { counter-reset: step; }
.step { position: relative; min-height: 112px; padding-left: 86px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--royal), var(--royal-2));
  color: var(--white);
  font-weight: 950;
}
.notice {
  padding: 18px;
  border: 1px solid #f2d07a;
  border-radius: 18px;
  background: #fff8e4;
  color: #4b3900;
}

.cta-band {
  padding: 32px 0;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: var(--white);
}
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { margin-bottom: 8px; color: var(--white); font-size: clamp(28px, 3vw, 42px); }
.cta-band p { max-width: 680px; margin: 0; color: #dbeaff; }

.site-footer { padding: 40px 0 24px; background: var(--deep); color: #dbeaff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 64px; }
.site-footer h3 { margin-bottom: 12px; color: var(--white); font-size: 18px; }
.site-footer a { display: inline-flex; min-height: 24px; align-items: center; color: var(--white); text-decoration: none; font-weight: 800; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #aac2e6;
  font-size: 13px;
}
.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 -12px 35px rgba(4, 27, 66, .12);
}
.mobile-cta .btn { width: 100%; min-height: 46px; }

@media (max-width: 900px) {
  .top-strip .wrap { flex-wrap: wrap; }
  .split-panel, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .wrap { width: min(calc(100% - 24px), var(--max)); }
  body { padding-bottom: 76px; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .section { padding: 42px 0; }
  .top-strip { display: none; }
  .header-inner { min-height: 66px; }
  .header-book { display: none; }
  .header-actions .btn { width: auto; }
  .header-home { min-height: 44px; padding: 11px 17px; }
  .brand strong { font-size: 15px; }
  .brand span span { display: none; }
  .brand img { width: 46px; height: 46px; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .price { font-size: 58px; }
  .step { padding-left: 78px; }
  .mobile-cta { display: block; }
}

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