@charset "UTF-8";

:root {
  --navy: #07357a;
  --navy-dark: #05275b;
  --blue: #0a4b9e;
  --yellow: #ffc400;
  --yellow-dark: #e4a900;
  --ink: #13284a;
  --muted: #5e6b7f;
  --line: #dbe4f1;
  --surface: #f5f8fc;
  --white: #fff;
  --success: #127a4c;
  --danger: #b42318;
  --shadow: 0 18px 55px rgba(7, 53, 122, .11);
  --shadow-sm: 0 8px 24px rgba(7, 53, 122, .09);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 95px; }
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;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only, .hp-field {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}
.skip-link {
  position: fixed; z-index: 9999; left: 16px; top: 16px; transform: translateY(-150%);
  background: var(--white); color: var(--navy); padding: 10px 16px; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { transform: none; }

.topbar { background: var(--navy-dark); color: #fff; font-size: 13px; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__links { display: flex; gap: 24px; align-items: center; }
.topbar a:hover { text-decoration: underline; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(219,228,241,.85); backdrop-filter: blur(12px);
}
.header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 310px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--navy); font-weight: 750; font-size: 14px; position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 3px;
  background: var(--yellow); transition: right .2s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); }

.hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(255,196,0,.11), transparent 27%),
    linear-gradient(110deg, #fff 0%, #f7f9fc 58%, #eef4fb 100%);
  overflow: hidden;
}
.hero__grid { min-height: 560px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; }
.hero__content { padding: 80px 56px 72px 0; align-self: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: 13px;
  font-weight: 800; letter-spacing: .055em; text-transform: uppercase; margin-bottom: 13px;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 4px; background: var(--yellow); }
.eyebrow--light { color: #fff; }
.hero h1, .section-heading h2, .consultation-card h2, .cta-card h2 {
  margin: 0; color: var(--navy-dark); letter-spacing: -.035em; line-height: 1.09;
}
.hero h1 { font-size: clamp(40px, 5vw, 66px); max-width: 780px; }
.hero h1 span { color: var(--yellow-dark); }
.hero__lead { max-width: 680px; margin: 24px 0 28px; color: #31435f; font-size: 19px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__micro { margin: 15px 0 0; color: var(--muted); font-size: 14px; }
.hero__visual { position: relative; min-height: 560px; }
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #f7f9fc 0%, transparent 15%, transparent 84%, rgba(5,39,91,.14) 100%);
  pointer-events: none;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero__badge {
  position: absolute; z-index: 2; right: 36px; top: 60px; width: 145px; aspect-ratio: 1;
  display: grid; place-content: center; text-align: center; border-radius: 50%;
  color: #fff; background: var(--navy); font-weight: 800; line-height: 1.35;
  box-shadow: 0 16px 36px rgba(7,53,122,.25); transform: rotate(4deg);
}
.hero__badge span { color: var(--yellow); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 21px; border: 2px solid transparent; border-radius: 10px;
  font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn svg { width: 21px; height: 21px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-dark); }
.btn--accent { background: var(--yellow); color: var(--navy-dark); }
.btn--accent:hover { background: #ffd027; }
.btn--white { background: #fff; color: var(--navy); }
.btn--full { width: 100%; border: 0; }

.benefit-strip { position: relative; z-index: 4; margin-top: -24px; }
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.benefit { display: flex; gap: 14px; align-items: center; min-height: 130px; padding: 24px; position: relative; }
.benefit + .benefit::before { content: ""; position: absolute; left: 0; top: 26px; bottom: 26px; width: 1px; background: var(--line); }
.benefit__icon {
  flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-content: center;
  border-radius: 50%; background: #e8f1ff; color: var(--navy); font-weight: 900; font-size: 20px;
}
.benefit__icon--accent { background: var(--yellow); color: var(--navy-dark); }
.benefit__icon svg { width: 27px; height: 27px; }
.benefit h2 { margin: 0 0 3px; font-size: 16px; line-height: 1.25; color: var(--navy-dark); }
.benefit p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }

.section { padding: 100px 0; }
.section--service { background: linear-gradient(#fff, #f8faff); }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading h2 { font-size: clamp(32px, 4vw, 49px); }
.section-heading p { margin: 17px 0 0; color: var(--muted); font-size: 18px; }
.section-heading--compact { margin-bottom: 32px; }

.service-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr); gap: 38px; align-items: start; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.choice-card {
  min-height: 162px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px;
  padding: 25px; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease;
}
.choice-card:hover { transform: translateY(-3px); border-color: #aebfdb; }
.choice-card--blue { background: #f2f7ff; }
.choice-card--yellow { background: #fffaf0; }
.choice-card__icon {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-content: center;
  background: #dbeaff; color: var(--navy);
}
.choice-card--yellow .choice-card__icon { background: #ffe27a; }
.choice-card__icon svg { width: 28px; height: 28px; }
.choice-card strong { display: block; color: var(--navy-dark); font-size: 17px; line-height: 1.35; }
.choice-card small { display: block; margin-top: 7px; color: var(--muted); line-height: 1.45; }

.process { margin-top: 44px; }
.process h3 { color: var(--navy-dark); font-size: 25px; margin: 0 0 26px; }
.process__list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin: 0; padding: 0; list-style: none;
}
.process__list li { position: relative; padding-top: 49px; }
.process__list li::before {
  content: ""; position: absolute; top: 17px; left: 31px; right: -18px; height: 2px; background: #cad6e7;
}
.process__list li:last-child::before { display: none; }
.process__list li > span {
  position: absolute; z-index: 1; top: 0; left: 0; width: 36px; height: 36px; display: grid;
  place-content: center; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800;
}
.process__list strong { display: block; color: var(--navy-dark); font-size: 15px; }
.process__list small { display: block; margin-top: 6px; color: var(--muted); line-height: 1.45; }

.notice {
  display: flex; gap: 14px; align-items: flex-start; margin-top: 30px; padding: 20px;
  border-left: 4px solid var(--yellow); border-radius: 12px; background: #f6f8fc;
}
.notice svg { flex: 0 0 28px; color: var(--yellow-dark); width: 28px; height: 28px; }
.notice strong { color: var(--navy-dark); }
.notice p { margin: 3px 0 0; color: var(--muted); }

.form-card, .appointment-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 34px;
}
.form-card__head { margin-bottom: 25px; }
.form-card__kicker { color: var(--blue); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; }
.form-card h3, .appointment-form h3 { margin: 4px 0 4px; color: var(--navy-dark); font-size: 30px; line-height: 1.2; }
.form-card__head p, .appointment-form > p { margin: 0; color: var(--muted); }

form { display: grid; gap: 18px; }
label, legend { color: var(--ink); font-size: 14px; font-weight: 750; }
label > span[aria-hidden="true"], legend > span[aria-hidden="true"] { color: var(--danger); }
.optional { color: var(--muted); font-weight: 500; }
input, select, textarea {
  width: 100%; margin-top: 7px; border: 1px solid #cbd7e7; border-radius: 8px;
  background: #fff; color: var(--ink); padding: 12px 13px; outline: 0; transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,75,158,.12); }
textarea { resize: vertical; min-height: 92px; }
.form-row { display: grid; gap: 15px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
fieldset { margin: 0; padding: 0; border: 0; }
.radio { display: flex; align-items: center; gap: 9px; margin-top: 8px; font-weight: 500; }
.radio input, .checkbox input { width: 18px; height: 18px; margin: 0; accent-color: var(--navy); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; line-height: 1.45; }
.checkbox input { flex: 0 0 18px; margin-top: 2px; }
.checkbox a { color: var(--blue); text-decoration: underline; }

.file-label { display: grid; }
.drop-zone {
  margin-top: 7px; min-height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px; text-align: center; color: var(--navy); border: 2px dashed #9fb4d2; border-radius: 11px;
  background: #f9fbff; transition: border-color .2s, background .2s;
}
.drop-zone.is-dragging { border-color: var(--yellow-dark); background: #fff9df; }
.drop-zone svg { width: 34px; height: 34px; margin-bottom: 7px; }
.drop-zone small { color: var(--muted); font-weight: 500; }
.drop-zone input { position: absolute; opacity: 0; width: 1px; height: 1px; padding: 0; margin: 0; }
.file-list { display: grid; gap: 6px; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 500; }
.file-list span { display: flex; justify-content: space-between; gap: 15px; padding: 7px 9px; background: var(--surface); border-radius: 6px; }
.form-note { margin: -5px 0 0; text-align: center; color: var(--muted); font-size: 13px; }
.form-status { display: none; padding: 13px 15px; border-radius: 9px; font-weight: 700; }
.form-status.is-success { display: block; color: var(--success); background: #eaf8f1; border: 1px solid #bce8d3; }
.form-status.is-error { display: block; color: var(--danger); background: #fff0ee; border: 1px solid #f4c4bf; }
button[disabled] { opacity: .65; cursor: wait; transform: none !important; }

.section--consultation { background: #fff; }
.consultation-card {
  display: grid; grid-template-columns: .88fr 1.02fr .9fr; border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); background: #fff;
}
.consultation-card__image { min-height: 620px; }
.consultation-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.consultation-card__content { padding: 54px 38px; align-self: center; }
.consultation-card h2 { font-size: clamp(31px, 3.4vw, 46px); }
.consultation-card__content > p { color: var(--muted); font-size: 17px; }
.check-list { list-style: none; margin: 25px 0; padding: 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; color: var(--blue); font-weight: 900; font-size: 18px;
}
.location-note { display: grid; gap: 2px; padding: 15px; background: #f4f7fb; border-radius: 10px; }
.location-note strong { color: var(--navy-dark); }
.location-note span { color: var(--muted); font-size: 14px; }
.appointment-form { margin: 26px; align-self: center; padding: 28px; box-shadow: none; background: #f8faff; }
.appointment-form form { margin-top: 20px; }

.trust-section { padding: 0 0 90px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.trust-grid article { display: flex; gap: 16px; align-items: flex-start; padding: 27px; }
.trust-grid article + article { border-left: 1px solid var(--line); }
.trust-grid svg { flex: 0 0 40px; width: 40px; height: 40px; color: var(--navy); }
.trust-grid h2 { margin: 0 0 4px; color: var(--navy-dark); font-size: 17px; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.section--faq { background: var(--surface); padding-top: 80px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
summary {
  position: relative; padding: 18px 52px 18px 20px; list-style: none; cursor: pointer;
  color: var(--navy-dark); font-weight: 750;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; top: 13px; font-size: 26px; color: var(--blue); }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.cta-section { background: var(--surface); padding: 0 0 80px; }
.cta-card {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px;
  padding: 38px 44px; border-radius: 18px; background: linear-gradient(110deg, var(--navy-dark), var(--blue));
  color: #fff; box-shadow: var(--shadow);
}
.cta-card h2 { color: #fff; font-size: clamp(26px, 3vw, 40px); max-width: 720px; }
.cta-card__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.footer { background: #fff; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.35fr 1fr .8fr .7fr; gap: 45px; padding: 58px 0 42px; }
.footer__brand img { width: 260px; height: auto; }
.footer h2 { margin: 0 0 13px; color: var(--navy-dark); font-size: 15px; text-transform: uppercase; letter-spacing: .04em; }
.footer p, .footer address { color: var(--muted); font-style: normal; margin: 10px 0; }
.footer a { color: var(--blue); }
.footer nav { display: grid; gap: 7px; }
.footer__bottom { color: #dfe8f7; background: var(--navy-dark); font-size: 13px; }
.footer__bottom .container { min-height: 48px; display: flex; justify-content: space-between; align-items: center; gap: 25px; }

.mobile-actions { display: none; }

@media (max-width: 1060px) {
  .topbar__links span { display: none; }
  .main-nav { gap: 17px; }
  .brand img { width: 270px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(3)::before { display: none; }
  .benefit:nth-child(n+3) { border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; }
  .form-card { max-width: 760px; width: 100%; justify-self: center; }
  .consultation-card { grid-template-columns: .9fr 1.1fr; }
  .appointment-form { grid-column: 1 / -1; margin: 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; padding: 40px; }
  .consultation-card__image { min-height: 520px; }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .topbar__inner > span { display: none; }
  .topbar__inner { justify-content: center; }
  .header__inner { min-height: 72px; }
  .brand img { width: 245px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch;
    gap: 0; padding: 10px 20px 20px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 4px; }
  .main-nav a::after { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 65px 0 45px; }
  .hero__visual { min-height: 430px; margin-inline: -20px; }
  .hero__visual::after { background: linear-gradient(180deg, #f7f9fc 0%, transparent 18%); }
  .hero__badge { top: 28px; right: 28px; }
  .benefit-strip { margin-top: 0; padding-top: 22px; }
  .benefits { box-shadow: var(--shadow-sm); }
  .choice-grid { grid-template-columns: 1fr; }
  .consultation-card { grid-template-columns: 1fr; }
  .consultation-card__image { min-height: 420px; }
  .consultation-card__content { padding: 40px 30px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card__actions { justify-content: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__links { gap: 14px; font-size: 12px; }
  .topbar__links a:first-child { display: none; }
  .brand img { width: 218px; }
  .hero__content { padding-top: 48px; }
  .hero h1 { font-size: 40px; }
  .hero__lead { font-size: 17px; }
  .hero__actions { display: grid; }
  .btn { width: 100%; }
  .hero__visual { min-height: 350px; }
  .hero__badge { width: 120px; font-size: 13px; }
  .benefits { grid-template-columns: 1fr; }
  .benefit { min-height: 108px; }
  .benefit + .benefit::before { display: none; }
  .benefit:nth-child(n+2) { border-top: 1px solid var(--line); }
  .section { padding: 72px 0; }
  .section-heading h2 { font-size: 34px; }
  .process__list { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
  .process__list li::before { display: none; }
  .form-card, .appointment-form { padding: 24px 19px; border-radius: 15px; }
  .form-row--2 { grid-template-columns: 1fr; }
  .consultation-card { border-radius: 16px; }
  .consultation-card__image { min-height: 350px; }
  .consultation-card__content { padding: 32px 22px; }
  .appointment-form { margin: 0; border-radius: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 30px 22px; }
  .footer__grid { grid-template-columns: 1fr; padding-bottom: 90px; }
  .footer__bottom .container { flex-direction: column; justify-content: center; padding: 12px 0; gap: 2px; text-align: center; }
  .mobile-actions {
    position: fixed; z-index: 900; left: 10px; right: 10px; bottom: 10px; display: grid;
    grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; border-radius: 14px;
    background: rgba(255,255,255,.96); box-shadow: 0 12px 36px rgba(5,39,91,.22); backdrop-filter: blur(10px);
  }
  .mobile-actions a { min-height: 44px; display: grid; place-content: center; border-radius: 9px; font-weight: 800; }
  .mobile-actions a:first-child { color: #fff; background: var(--navy); }
  .mobile-actions a:last-child { color: var(--navy-dark); background: var(--yellow); }
}

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