:root {
  --blue-900: #071a2f;
  --blue-800: #0e3056;
  --blue-700: #0a608c;
  --cyan-600: #13a5be;
  --cyan-100: #e8f7fa;
  --gold-500: #deab49;
  --gray-900: #182637;
  --gray-700: #445364;
  --gray-600: #627180;
  --gray-200: #dceaf0;
  --gray-100: #edf5f8;
  --white: #ffffff;
  --surface: #f8fcff;
  --shadow: 0 22px 70px rgba(7, 26, 47, .12);
  --shadow-soft: 0 14px 36px rgba(7, 26, 47, .08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 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(--gray-900);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1rem; }
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: var(--blue-800);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 234, 240, .86);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--gray-700);
  font-size: .95rem;
  font-weight: 700;
}
.main-nav a {
  text-decoration: none;
  transition: color .18s ease;
}
.main-nav a:hover { color: var(--blue-700); }
.nav-cta {
  background: var(--blue-800);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--blue-800);
  border-radius: 999px;
}
.section { padding: 92px 0; }
.hero {
  padding-top: 74px;
  background:
    radial-gradient(circle at 18% 18%, rgba(19, 165, 190, .14), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f2f9fc 100%);
}
.hero-grid,
.split-grid,
.image-band-grid,
.coverage-grid,
.contact-grid,
.trust-grid,
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 650px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-700);
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.eyebrow.inverse { color: #9ee9f4; }
h1, h2, h3 { line-height: 1.08; margin: 0; color: var(--blue-900); }
h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  letter-spacing: -.06em;
  max-width: 720px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -.045em;
}
h3 {
  font-size: 1.2rem;
  letter-spacing: -.02em;
}
.hero-text,
.section-head p,
.section-copy p,
.trust-copy p {
  font-size: 1.08rem;
  color: var(--gray-600);
}
.hero-text {
  margin-top: 24px;
  max-width: 610px;
  font-size: clamp(1.06rem, 2vw, 1.26rem);
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue-800);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(14, 48, 86, .22);
}
.btn-secondary {
  background: var(--white);
  color: var(--blue-800);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
}
.text-link {
  display: inline-flex;
  color: var(--blue-700);
  font-weight: 850;
  text-decoration: none;
  margin-top: 10px;
}
.text-link:hover { text-decoration: underline; }
.trust-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
  color: var(--gray-700);
  font-weight: 720;
}
.trust-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.trust-list li::before,
.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan-600);
  font-size: .78rem;
  font-weight: 900;
  margin-top: 2px;
}
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(220, 234, 240, .8);
}
.proof-strip { padding: 34px 0; background: var(--blue-900); color: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-grid div {
  padding: 8px 0;
  border-right: 1px solid rgba(255, 255, 255, .16);
}
.proof-grid div:last-child { border-right: 0; }
.proof-kicker {
  display: block;
  color: #93e7f3;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 900;
  margin-bottom: 5px;
}
.proof-grid strong { display: block; font-size: 1.28rem; line-height: 1.1; }
.proof-grid p { color: rgba(255,255,255,.72); margin: 7px 0 0; font-size: .94rem; }
.section-copy h2,
.section-head h2 { margin-bottom: 20px; }
.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}
.section-head.centered { text-align: center; margin-inline: auto; }
.section-head.centered .eyebrow { justify-content: center; }
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.benefit-card,
.service-card,
.case-card,
.contact-card,
.timeline article {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.benefit-card .card-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--cyan-600);
  font-weight: 950;
  font-size: .82rem;
  letter-spacing: .08em;
}
.benefit-card p,
.service-card p,
.case-card p,
.timeline p { color: var(--gray-600); margin: 12px 0 0; }
.section-soft { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card { min-height: 246px; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-600));
  font-size: 1.5rem;
  font-weight: 950;
}
.image-band { padding-top: 76px; }
.image-band img,
.coverage-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.timeline article { position: relative; overflow: hidden; }
.timeline article::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(19, 165, 190, .1);
}
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 20px;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 900;
}
.section-deep {
  background:
    radial-gradient(circle at 80% 15%, rgba(19,165,190,.18), transparent 30%),
    linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: var(--white);
}
.section-deep h2 { color: var(--white); }
.section-deep p { color: rgba(255,255,255,.78); }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-cards div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
}
.trust-cards strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.05em;
  line-height: 1;
}
.trust-cards span { color: rgba(255,255,255,.72); margin-top: 12px; font-weight: 700; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card { border-left: 4px solid var(--cyan-600); }
.coverage-section { background: linear-gradient(180deg, #ffffff, #f7fbfe); }
.coverage-grid { grid-template-columns: .8fr 1fr; }
.faq-layout { align-items: start; }
.faq-list { display: grid; gap: 12px; }
details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 850;
  color: var(--blue-900);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--blue-700); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 24px 24px; color: var(--gray-600); }
.contact-section { background: var(--white); }
.contact-grid {
  align-items: stretch;
  background: linear-gradient(135deg, #f8fcff, #edf7fb);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 46px;
  box-shadow: var(--shadow-soft);
}
.contact-card {
  font-style: normal;
  display: grid;
  gap: 10px;
  background: var(--white);
}
.contact-card strong { color: var(--blue-900); font-size: 1.2rem; }
.contact-card a { color: var(--blue-700); font-weight: 800; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.78);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 42px;
}
.site-footer img { filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-title {
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  margin-top: 42px;
  font-size: .9rem;
}
:focus-visible {
  outline: 3px solid rgba(19, 165, 190, .7);
  outline-offset: 4px;
}
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px; border-radius: 12px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero-grid,
  .split-grid,
  .image-band-grid,
  .coverage-grid,
  .contact-grid,
  .trust-grid,
  .faq-layout { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline,
  .case-grid,
  .proof-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .proof-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 18px; }
  .proof-grid div:last-child { border-bottom: 0; }
  .trust-cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .hero { padding-top: 42px; }
  .benefit-grid,
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions,
  .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .contact-grid { padding: 28px 18px; }
  .header-inner { min-height: 70px; }
  .main-nav { inset-top: 70px; }
  .brand img { width: 180px; }
  h1 { font-size: clamp(2.4rem, 14vw, 4rem); }
  h2 { font-size: clamp(1.9rem, 10vw, 3rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
