:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-soft: #edf6fb;
  --ink: #11263a;
  --muted: #607383;
  --line: #d6e5ee;
  --brand: #007dc5;
  --brand-dark: #075a8c;
  --accent: #1aa5a8;
  --success: #188765;
  --danger: #b73737;
  --shadow: 0 22px 64px rgba(17, 38, 58, .10);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 7%, rgba(0, 125, 197, .13), transparent 30vw),
    radial-gradient(circle at 5% 23%, rgba(26, 165, 168, .10), transparent 27vw),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(214, 229, 238, .92);
  background: rgba(244, 248, 251, .90);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 178px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 750; color: #385066; }
.nav-links a:not(.btn):hover { color: var(--brand); }
.mobile-cta { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); box-shadow: 0 15px 34px rgba(0, 125, 197, .24); }
.btn-secondary { background: #fff; border: 1px solid var(--line); color: var(--brand-dark); }
.btn-small { min-height: 42px; padding-inline: 17px; font-size: 14px; }
.btn-block { width: 100%; }

.hero { padding: 62px 0 52px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr); gap: 42px; align-items: start; }
.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #c8dce8;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .075em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(17, 38, 58, .05);
}
.eyebrow::before, .section-tag::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent)); box-shadow: 0 0 0 6px rgba(0, 125, 197, .10); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 770px; margin: 18px 0 20px; font-size: clamp(38px, 5.25vw, 64px); line-height: 1.01; letter-spacing: -.052em; font-weight: 790; }
h2 { margin-bottom: 17px; font-size: clamp(29px, 3.65vw, 44px); line-height: 1.06; letter-spacing: -.045em; }
h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.18; letter-spacing: -.025em; }
.hero-lead { max-width: 680px; margin-bottom: 24px; color: #40586c; font-size: clamp(17px, 1.7vw, 20px); }
.hero-points { display: grid; gap: 11px; max-width: 660px; margin: 0 0 26px; padding: 0; list-style: none; }
.hero-points li, .check-list li { position: relative; padding-left: 35px; color: #40586c; }
.hero-points li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--success); background: rgba(24, 135, 101, .12); font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-fineprint { margin: 15px 0 0; color: var(--muted); font-size: 13px; max-width: 680px; }

.hero-visual { margin-top: 30px; position: relative; min-height: 330px; border: 1px solid var(--line); border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); background: #dcebf3; }
.hero-visual img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 42, 66, .48), transparent 57%); pointer-events: none; }
.visual-label { position: absolute; z-index: 2; left: 24px; bottom: 22px; max-width: 310px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.32); border-radius: 19px; color: #fff; background: rgba(7, 42, 66, .64); backdrop-filter: blur(10px); }
.visual-label strong { display: block; font-size: 18px; }
.visual-label span { color: rgba(255,255,255,.83); font-size: 13px; }

.form-card { position: sticky; top: 96px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.form-top { padding: 25px 26px 21px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #fff, #eaf5fa); }
.form-kicker { margin-bottom: 8px; color: var(--brand-dark); font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.form-price { margin-bottom: 7px; font-size: 38px; font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.form-top p { margin: 0; color: var(--muted); font-size: 14px; }
.lead-form { padding: 24px 26px 27px; }
.lead-form h2 { margin-bottom: 7px; font-size: 23px; }
.form-intro { color: var(--muted); font-size: 14px; }
.field { margin-bottom: 12px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; margin-bottom: 6px; color: #334a5e; font-size: 13px; font-weight: 850; }
input, select, textarea { width: 100%; padding: 12px 13px; border: 1px solid #d3e2ea; border-radius: 14px; background: #fbfdfe; color: var(--ink); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0, 125, 197, .11); }
textarea { min-height: 82px; resize: vertical; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; margin: 14px 0 16px; color: var(--muted); font-size: 11.5px; font-weight: 500; line-height: 1.45; }
.consent input { width: 18px; height: 18px; margin-top: 1px; }
.consent a { color: var(--brand-dark); text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { display: none; margin-top: 13px; padding: 12px 14px; border-radius: 14px; font-size: 13.5px; font-weight: 750; }
.form-status.show { display: block; }
.form-status.success { color: #12664e; background: #e9f7f1; }
.form-status.error { color: #8d2c2c; background: #fff0f0; }
.form-fallback { display: none; gap: 9px; margin-top: 12px; }
.form-fallback.show { display: grid; grid-template-columns: 1fr 1fr; }

.trust-strip { padding-bottom: 20px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-item { min-height: 105px; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.78); }
.trust-item strong { display: block; margin-bottom: 5px; color: var(--brand-dark); font-size: 17px; }
.trust-item span { color: var(--muted); font-size: 13.5px; }

.section { padding: 63px 0; }
.section-tight { padding-top: 28px; }
.section-head { max-width: 790px; margin-bottom: 30px; }
.section-tag { margin-bottom: 15px; }
.section-copy { color: var(--muted); font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card { position: relative; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: 0 16px 45px rgba(17, 38, 58, .055); }
.card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--brand), var(--accent)); }
.card-badge { display: inline-flex; min-height: 32px; align-items: center; padding: 0 12px; margin-bottom: 16px; border-radius: 999px; border: 1px solid #d7e7ef; background: #f1f8fb; color: var(--brand-dark); font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.card p { margin-bottom: 0; color: var(--muted); font-size: 14.5px; }
.price-line { display: flex; align-items: baseline; gap: 5px; margin: 14px 0 12px; }
.price-line strong { font-size: 31px; letter-spacing: -.05em; }
.price-line span { color: var(--muted); font-size: 13px; }
.note { margin-top: 17px; color: var(--muted); font-size: 13px; }

.band { padding: 0 0 34px; }
.band-inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .42fr); align-items: center; gap: 26px; padding: clamp(30px, 5vw, 52px); border-radius: 34px; color: #fff; background: linear-gradient(135deg, #075a8c, #007dc5 58%, #16989e); box-shadow: 0 26px 68px rgba(0, 83, 133, .24); }
.band-inner .section-tag { color: #fff; border-color: rgba(255,255,255,.30); background: rgba(255,255,255,.12); box-shadow: none; }
.band-inner h2 { color: #fff; }
.band-inner p { margin-bottom: 0; color: rgba(255,255,255,.83); font-size: 17px; }
.band-box { padding: 22px; border: 1px solid rgba(255,255,255,.25); border-radius: 23px; background: rgba(255,255,255,.11); }
.band-box strong { display: block; font-size: 27px; line-height: 1.15; }
.band-box span { display: block; margin-top: 7px; color: rgba(255,255,255,.80); font-size: 14px; }

.split { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: 40px; align-items: center; }
.split-reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.image-card { min-height: 440px; overflow: hidden; border: 1px solid var(--line); border-radius: 31px; background: #dcebf3; box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.image-card.portrait img { object-position: center 18%; }
.check-list { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.info-cell { padding: 18px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.info-cell strong { display: block; margin-bottom: 5px; color: var(--brand-dark); }
.info-cell span { color: var(--muted); font-size: 13.5px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.person { overflow: hidden; border: 1px solid var(--line); border-radius: 27px; background: #fff; box-shadow: 0 16px 45px rgba(17, 38, 58, .055); }
.person-image { height: 310px; background: #edf3f6; }
.person-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.person-copy { padding: 21px; }
.person-copy h3 { margin-bottom: 5px; }
.person-role { margin-bottom: 12px; color: var(--brand-dark); font-size: 13px; font-weight: 850; }
.person-copy p { margin: 0; color: var(--muted); font-size: 13.5px; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: steps; }
.step { position: relative; overflow: hidden; min-height: 205px; padding: 23px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 15px 42px rgba(17, 38, 58, .05); counter-increment: steps; }
.step::before { content: counter(steps); display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 24px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--accent)); font-weight: 900; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.faq { display: grid; gap: 13px; }
details { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 11px 31px rgba(17, 38, 58, .035); }
summary { position: relative; cursor: pointer; list-style: none; padding: 20px 56px 20px 22px; font-size: 17px; font-weight: 850; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; top: 50%; display: grid; place-items: center; width: 30px; height: 30px; transform: translateY(-50%); border-radius: 50%; color: var(--brand-dark); background: var(--surface-soft); font-size: 20px; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

.final-cta { padding: clamp(36px, 6vw, 62px); text-align: center; border: 1px solid var(--line); border-radius: 34px; background: #fff; box-shadow: var(--shadow); }
.final-cta .section-tag { margin-inline: auto; }
.final-cta h2 { max-width: 780px; margin-inline: auto; }
.final-cta p { max-width: 700px; margin: 0 auto 24px; color: var(--muted); font-size: 17px; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.footer { padding: 32px 0 46px; color: #6b7c89; font-size: 13px; }
.footer-row { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); }
.footer-brand img { width: 150px; margin-bottom: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 13px 20px; }
.footer-legal { margin-top: 20px; color: #7b8b97; font-size: 11.5px; }

.home { min-height: 100vh; display: grid; place-items: center; padding: 35px 0; }
.home-card { max-width: 980px; padding: clamp(30px, 5vw, 58px); border: 1px solid var(--line); border-radius: 34px; background: #fff; box-shadow: var(--shadow); }
.home-card > img { width: 190px; margin-bottom: 32px; }
.home-card h1 { font-size: clamp(38px, 5vw, 58px); }
.home-links { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.home-link { padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #fff, #eef6fa); }
.home-link strong { display: block; margin-bottom: 7px; color: var(--brand-dark); font-size: 22px; }
.home-link span { color: var(--muted); }

@media (max-width: 1020px) {
  .nav-links a:not(.btn) { display: none; }
  .hero-grid, .split, .split-reverse { grid-template-columns: 1fr; }
  .form-card { position: static; max-width: 680px; }
  .trust-grid, .cards-4, .process { grid-template-columns: repeat(2, 1fr); }
  .cards, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .band-inner { grid-template-columns: 1fr; }
  .image-card { min-height: 380px; }
  .image-card img { min-height: 380px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 66px; }
  .brand img { width: 145px; }
  .nav-links .btn { display: none; }
  .mobile-cta { display: inline-flex; min-height: 40px; padding-inline: 15px; font-size: 13px; }
  .hero { padding: 38px 0 42px; }
  h1 { font-size: 37px; }
  h2 { font-size: 30px; }
  .hero-grid { gap: 28px; }
  .hero-visual, .hero-visual img { min-height: 270px; }
  .visual-label { left: 15px; right: 15px; bottom: 15px; }
  .hero-actions .btn { width: 100%; }
  .form-top, .lead-form { padding-left: 20px; padding-right: 20px; }
  .field-row, .form-fallback.show, .trust-grid, .cards, .cards-4, .team-grid, .process, .info-grid, .home-links { grid-template-columns: 1fr; }
  .section { padding: 49px 0; }
  .band-inner { border-radius: 26px; padding: 28px 21px; }
  .image-card, .image-card img { min-height: 320px; }
  .person-image { height: 290px; }
  .footer-row { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}
