:root {
  --ink: #0b1f33;
  --muted: #5f6f7f;
  --line: #dfe6ec;
  --soft: #f4f7f9;
  --blue: #1267d6;
  --blue-dark: #0a4ba8;
  --white: #ffffff;
  --header-h: 76px;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(11, 31, 51, .10);
}

* { 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: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-anchor { scroll-margin-top: calc(var(--header-h) + 18px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid rgba(223,230,236,.9);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; min-width: 238px; line-height: 1.15; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-size: 17px; font-weight: 760; letter-spacing: -.02em; }
.brand-copy > span { color: #7a8896; font-size: 11px; margin-top: 4px; }
.main-nav { display: flex; gap: 23px; margin-left: auto; }
.main-nav a { font-size: 14px; color: #304257; }
.main-nav a:hover { color: var(--blue); }
.header-phone { padding: 9px 13px; border-radius: 10px; border: 1px solid #cbd6e0; background: #fff; color: var(--ink); font-size: 14px; font-weight: 760; }
.header-phone:hover { border-color: #aebdca; background: #f8fafc; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--ink); }

.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; color: var(--blue); }
.eyebrow-light { color: #96c3ff; }
h1,h2,h3,p { margin-top: 0; }
h1 { font-size: clamp(52px, 5vw, 70px); line-height: .99; letter-spacing: -.05em; margin-bottom: 18px; }
h2 { font-size: clamp(34px, 3.7vw, 52px); line-height: 1.06; letter-spacing: -.04em; margin-bottom: 18px; }
h3 { font-size: 22px; line-height: 1.2; letter-spacing: -.025em; }

.hero {
  position: relative;
  min-height: 650px;
  padding: 0;
  overflow: hidden;
  background: #f5f7f9;
}
.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 650px;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: 53%;
  max-width: 650px;
  padding: 86px 72px 82px 0;
}
.hero-subtitle {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 720;
  letter-spacing: -.025em;
  color: #20364b;
}
.hero-lead { max-width: 620px; font-size: 18px; color: #43566a; line-height: 1.64; }
.hero-actions { display: flex; gap: 12px; margin: 30px 0 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 10px; font-weight: 750; border: 1px solid transparent; cursor: pointer; }
.button-primary { background: #145fbe; color: white; }
.button-primary:hover { background: #0f4f9e; }
.button-secondary { border-color: #becad5; background: rgba(255,255,255,.94); }
.button-light { background: white; color: var(--ink); }
.trust-row {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  color: #697a8b;
  font-size: 12.5px;
  padding-top: 2px;
}
.trust-row span { position: relative; white-space: nowrap; }
.trust-row span:not(:last-child)::after {
  content: ""; position: absolute; right: -11px; top: 50%;
  width: 3px; height: 3px; border-radius: 50%; background: #aab6c1;
}
.trust-row b { color: #293d51; font-weight: 760; }
.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/35650695/pexels-photo-35650695.jpeg?auto=compress&cs=tinysrgb&w=2000");
  background-size: cover;
  background-position: center 48%;
  filter: saturate(.68) contrast(.9) brightness(1.08);
  transform: scale(1.015);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.985) 0%,
      rgba(255,255,255,.975) 30%,
      rgba(255,255,255,.92) 42%,
      rgba(255,255,255,.66) 54%,
      rgba(255,255,255,.22) 72%,
      rgba(255,255,255,.05) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(11,31,51,.08));
  pointer-events: none;
}

.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 820px; margin-bottom: 48px; }
.section-heading.narrow { max-width: 690px; }
.section-heading p:last-child { font-size: 18px; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  padding: 30px;
  border: 1px solid #e2e8ee;
  border-radius: 18px;
  background: linear-gradient(180deg,#fff,#fbfcfd);
  box-shadow: 0 12px 30px rgba(11,31,51,.035);
  position: relative;
}
.service-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: #edf5ff; margin-bottom: 24px; }
.service-icon svg { width: 25px; height: 25px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-number { position: absolute; right: 24px; top: 22px; color: #9aa8b5; font-weight: 800; font-size: 12px; }
.service-card p { color: var(--muted); }
.service-card ul { margin: 22px 0 0; padding-left: 18px; color: #34485d; }
.service-card li { margin: 8px 0; }

.feature { padding: 88px 0; }
.feature-dark { background: var(--ink); color: white; }
.feature-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: start; }
.feature h2 span { color: #84b6ff; white-space: nowrap; }
.feature-lead { color: #b8c6d4; max-width: 680px; font-size: 18px; }
.feature-summary { color: #d9e3ed; max-width: 700px; margin-top: 26px; }
.feature-summary strong { color: #fff; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 24px; padding-top: 10px; }
.check-list span { position: relative; padding-left: 26px; color: #e9f0f7; }
.check-list span::before { content: "✓"; position: absolute; left: 0; color: #73aefc; font-weight: 900; }

.remote-section { padding-top: 92px; padding-bottom: 92px; }
.split-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: stretch; }
.split-copy { padding-right: 42px; }
.split-copy > p:not(.eyebrow):not(.price-line) { font-size: 18px; color: var(--muted); max-width: 720px; }
.price-line { margin: 34px 0 20px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.price-line span { color: var(--muted); }
.price-line strong { font-size: 29px; letter-spacing: -.03em; }
.price-line.compact { margin-top: 28px; }
.visit-note { border-left: 1px solid var(--line); padding-left: 48px; }
.visit-note p:not(.eyebrow):not(.price-line) { color: var(--muted); }
.visit-note small { color: #728294; }
.text-link { color: var(--blue); font-weight: 800; }

.business-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 86px; align-items: start; }
.business-grid p { font-size: 18px; color: var(--muted); }
.business-grid strong { color: var(--ink); }
.business-kicker { font-size: 20px !important; color: #33485d !important; margin-top: -4px; }

.process-section { padding-bottom: 88px; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; }
.process-grid article { border-top: 1px solid var(--line); padding-top: 24px; }
.process-grid article > span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; background: var(--blue); color: white; font-weight: 800; margin-bottom: 24px; }
.process-grid p { color: var(--muted); }

.values-section { background: #fbfcfd; padding-top: 82px; padding-bottom: 88px; }
.values-heading { margin-bottom: 40px; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.values-grid article { padding: 26px 28px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.values-grid h3 { margin-bottom: 10px; }
.values-grid p { margin-bottom: 0; color: var(--muted); }

.faq-section { padding-top: 86px; padding-bottom: 94px; }
.faq-wrap { max-width: 900px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 0; }
summary { list-style: none; cursor: pointer; padding: 23px 0; font-weight: 800; font-size: 18px; display: flex; justify-content: space-between; gap: 24px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--blue); font-size: 24px; font-weight: 500; }
details[open] summary::after { content: "−"; }
details p { padding: 0 0 24px; color: var(--muted); max-width: 800px; }

.contact { padding: 96px 0; background: #081a2b; color: white; }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 84px; align-items: start; }
.contact p { color: #b9c6d3; font-size: 18px; max-width: 640px; }
.contact-direct { display: flex; flex-direction: column; gap: 7px; margin-top: 30px; }
.contact-direct a { font-weight: 800; font-size: 18px; }
.contact-direct span { color: #9eb0c1; margin-top: 6px; }
.contact-form { background: white; color: var(--ink); border-radius: 20px; padding: 30px; }
.contact-form label { display: block; font-size: 13px; font-weight: 800; margin-bottom: 18px; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; border: 1px solid #cad5df; border-radius: 10px; padding: 13px 14px; background: #fbfcfd; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,103,214,.12); }
.contact-form .button { background: var(--blue); color: white; width: 100%; }
.form-note { margin: 13px 0 0 !important; font-size: 12px !important; color: #7b8996 !important; }

.site-footer { padding: 30px 0; background: white; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center; }
.footer-inner > div:first-child { display: flex; flex-direction: column; }
.footer-inner span { color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 22px; font-size: 13px; }
.footer-inner small { color: var(--muted); }

@media (max-width: 980px) {
  :root { --header-h: 70px; }
  .header-phone { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; margin: 0; padding: 20px; flex-direction: column; background: white; border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .hero { min-height: 610px; }
  .hero-inner { min-height: 610px; }
  .hero-copy { width: 68%; max-width: 620px; padding: 64px 34px 58px 0; }
  .hero-visual { background-position: 62% center; }
  .hero::after { background: linear-gradient(90deg, rgba(255,255,255,.985) 0%, rgba(255,255,255,.96) 48%, rgba(255,255,255,.7) 66%, rgba(255,255,255,.18) 100%); }
  .feature-grid, .split-grid, .business-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .visit-note { border-left: 0; border-top: 1px solid var(--line); padding: 34px 0 0; }
  .split-copy { padding-right: 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand { min-width: 0; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy > span { display: none; }
  .hero { min-height: auto; background: #f5f7f9; }
  .hero-inner { min-height: auto; }
  .hero-copy { width: 100%; padding: 54px 0 46px; }
  h1 { font-size: 47px; }
  h2 { font-size: 35px; }
  .hero-subtitle { font-size: 21px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-row { flex-direction: column; gap: 7px; }
  .trust-row span::after { display: none; }
  .hero-visual { opacity: .2; background-position: 68% center; }
  .hero::after { background: rgba(255,255,255,.86); }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 34px; }
  .service-card { padding: 26px; }
  .feature { padding: 72px 0; }
  .check-list { grid-template-columns: 1fr; }
  .price-line { align-items: flex-start; flex-direction: column; gap: 4px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact { padding: 78px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; }
  .footer-links { order: 3; }
}
