:root {
  --blue-950: #08213f;
  --blue-900: #0b2f5f;
  --blue-800: #0e4c92;
  --blue-700: #1167c4;
  --blue-600: #1786e8;
  --blue-500: #35a7ff;
  --blue-100: #dff3ff;
  --blue-50: #f2fbff;
  --ink: #102033;
  --muted: #5d6c7e;
  --line: rgba(16, 32, 51, .12);
  --white: #ffffff;
  --soft: #f7fbff;
  --shadow: 0 24px 70px rgba(8, 33, 63, .14);
  --shadow-sm: 0 12px 30px rgba(8, 33, 63, .10);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 42%, #ffffff 100%);
  line-height: 1.65;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--blue-950);
}
h1 { font-size: clamp(2.65rem, 6vw, 5.8rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.6rem); }
h3 { font-size: 1.35rem; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 1000;
  background: var(--blue-950);
  color: white;
  padding: .7rem 1rem;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(17, 103, 196, .12);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(8, 33, 63, .08); background: rgba(255,255,255,.92); }
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 12px 26px rgba(23, 134, 232, .28);
}
.brand strong { display: block; font-size: 1.05rem; color: var(--blue-950); }
.brand small { display: block; color: var(--muted); margin-top: -4px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: .65rem .82rem;
  border-radius: 999px;
  color: #26425e;
  font-weight: 650;
  font-size: .95rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-menu a:hover, .nav-menu a:focus-visible, .nav-menu a[aria-current="page"] {
  background: var(--blue-100);
  color: var(--blue-900);
}
.nav-menu .nav-cta {
  margin-left: 8px;
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 12px 30px rgba(23, 134, 232, .26);
}
.nav-menu .nav-cta:hover { color: white; transform: translateY(-2px); background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-950);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(53,167,255,.22), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(17,103,196,.16), transparent 28%),
    linear-gradient(140deg, #ffffff 0%, #ecf8ff 60%, #ffffff 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--blue-700);
  font-size: .78rem;
  margin-bottom: .9rem;
}
.hero-text {
  font-size: 1.17rem;
  color: #41556b;
  max-width: 720px;
}
.hero-actions, .page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 18px 42px rgba(23, 134, 232, .32);
}
.btn-secondary {
  color: var(--blue-900);
  background: rgba(255,255,255,.78);
  border-color: rgba(17,103,196,.18);
  box-shadow: var(--shadow-sm);
}
.btn-light { color: var(--blue-900); background: white; box-shadow: 0 16px 34px rgba(8,33,63,.16); }
.trust-strip {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-strip span {
  padding: .72rem .95rem;
  border: 1px solid rgba(17,103,196,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: #33516d;
  box-shadow: 0 10px 24px rgba(8,33,63,.06);
  font-weight: 700;
}
.hero-visual {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 34px;
  background: rgba(255,255,255,.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.rich-copy {
  font-size: 1.06rem;
  color: #40566d;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 850;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.about-band {
  background: linear-gradient(180deg, rgba(223,243,255,.65), rgba(255,255,255,.65));
}
.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card, .info-card, .price-card, .service-detail, .faq-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,103,196,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.feature-card {
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
}
.feature-card p, .service-tile p, .timeline-item p, .price-card p, .faq-card p { color: var(--muted); }
.process-section {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}
.process-section h2, .process-section h3 { color: white; }
.process-section .section-heading p { color: rgba(255,255,255,.78); }
.process-section .eyebrow { color: #9fe3ff; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline-item {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
}
.timeline-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--blue-900);
  font-weight: 900;
  margin-bottom: 22px;
}
.service-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-tile {
  padding: 18px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(17,103,196,.12);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-tile img {
  border-radius: 18px;
  background: var(--blue-50);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}
.accordion {
  display: grid;
  gap: 12px;
}
.accordion-item {
  border: 1px solid rgba(17,103,196,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 28px rgba(8,33,63,.06);
  overflow: hidden;
}
.accordion-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--blue-950);
  font-weight: 850;
  text-align: left;
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  position: relative;
}
.accordion-item button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--blue-700);
}
.accordion-item button[aria-expanded="true"]::after { content: "−"; }
.accordion-item div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}
.accordion-item div p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
}
.accordion-item.is-open div { grid-template-rows: 1fr; }
.accordion-item.is-open div p { padding-bottom: 18px; }
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px;
  border-radius: 32px;
  color: white;
  background:
    linear-gradient(135deg, rgba(8,33,63,.96), rgba(17,103,196,.94)),
    radial-gradient(circle at 90% 12%, rgba(255,255,255,.2), transparent 38%);
  box-shadow: var(--shadow);
}
.cta-panel h2, .cta-panel p { color: white; }
.cta-panel .eyebrow { color: #b9ecff; }
.site-footer {
  padding: 54px 0 26px;
  background: #061d38;
  color: rgba(255,255,255,.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
}
.footer-brand strong { color: white; }
.footer-brand small { color: rgba(255,255,255,.66); }
.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.site-footer nav a {
  color: rgba(255,255,255,.82);
  padding: .4rem 0;
}
.site-footer nav a:hover { color: white; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .92rem;
}

.page-hero {
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at 82% 18%, rgba(53,167,255,.20), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef9ff);
}
.page-hero .container { max-width: 1000px; }
.page-hero p:not(.eyebrow) { max-width: 760px; color: #40566d; font-size: 1.16rem; }
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card { padding: 28px; }
.wide { grid-column: span 2; }
.service-list {
  display: grid;
  gap: 22px;
}
.service-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px;
  align-items: center;
}
.service-detail img {
  border-radius: 20px;
  background: var(--blue-50);
}
.check-list, .plain-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.check-list li, .plain-list li {
  position: relative;
  padding-left: 30px;
  color: #40566d;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: inset 0 0 0 4px white;
}
.plain-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--blue-700);
  font-weight: 900;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  padding: 30px;
}
.price {
  display: block;
  color: var(--blue-800);
  font-weight: 900;
  font-size: 2rem;
  margin: 16px 0;
}
.note-box {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(223,243,255,.95), rgba(255,255,255,.95));
  border: 1px solid rgba(17,103,196,.14);
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-card { padding: 24px; }
.faq-card h2 { font-size: 1.25rem; }
.contact-panel {
  max-width: 860px;
  padding: 38px;
  border-radius: 30px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(17,103,196,.14);
  box-shadow: var(--shadow);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .6rem .9rem;
  border-radius: 999px;
  color: var(--blue-900);
  background: var(--blue-100);
  font-weight: 850;
  margin-bottom: 18px;
}
.policy-content {
  max-width: 920px;
}
.policy-content h2 { font-size: 1.65rem; margin-top: 2rem; }
.policy-content p, .policy-content li { color: #40566d; }
.policy-content ul { padding-left: 1.3rem; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

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

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(17,103,196,.14);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: .85rem 1rem; }
  .nav-menu .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .split, .footer-grid, .service-detail { grid-template-columns: 1fr; }
  .feature-grid, .timeline, .service-showcase, .content-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .wide { grid-column: span 1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 64px 0; }
  .hero { min-height: auto; }
  .feature-grid, .timeline, .service-showcase, .content-grid, .price-grid { grid-template-columns: 1fr; }
  .hero-actions, .page-actions, .cta-panel { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .cta-panel { padding: 30px; border-radius: 24px; }
  .site-footer nav { grid-template-columns: 1fr 1fr; }
}
