:root {
  --blue-950: #052e4a;
  --blue-900: #06496c;
  --blue-800: #075b80;
  --blue-700: #087198;
  --blue-600: #0b88ad;
  --blue-100: #e8f7fb;
  --blue-50: #f3fbfd;
  --green: #28a745;
  --ink: #102033;
  --muted: #64748b;
  --line: #dbe7ee;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 43, 63, 0.12);
  --shadow-soft: 0 14px 36px rgba(13, 69, 103, 0.10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 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", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.hidden-field { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 80, 118, 0.10);
  box-shadow: 0 10px 28px rgba(8, 49, 76, 0.06);
}
.header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 190px; }
.brand__logo { width: 50px; height: 50px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; gap: 1px; }
.brand__text strong { font-size: 18px; line-height: 1.15; letter-spacing: -0.02em; color: var(--blue-950); }
.brand__text small { font-size: 12px; color: var(--muted); font-weight: 700; }
.nav { flex: 1; display: flex; justify-content: center; align-items: center; gap: 18px; }
.nav a { white-space: nowrap; font-size: 13px; font-weight: 800; color: #16334f; transition: color .2s ease; }
.nav a:hover { color: var(--blue-700); }
.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex: 0 0 auto; }
.header-phone { display: flex; align-items: center; gap: 7px; color: var(--blue-950); font-size: 13px; font-weight: 900; white-space: nowrap; }
.header-phone svg { width: 20px; height: 20px; color: var(--blue-700); }
.lang-switch { display: inline-flex; flex: 0 0 auto; width: auto; padding: 4px; border: 1px solid #cfe4ed; border-radius: 999px; background: #f3fbfd; }
.lang-btn { border: 0; width: auto; flex: 0 0 auto; background: transparent; color: var(--blue-900); font-weight: 900; font-size: 12px; padding: 8px 11px; border-radius: 999px; cursor: pointer; }
.lang-btn.is-active { background: var(--blue-800); color: #fff; box-shadow: 0 8px 18px rgba(8, 113, 152, 0.22); }
.menu-btn { display: none; width: 44px; height: 44px; border: 0; background: #eef8fb; border-radius: 12px; cursor: pointer; padding: 12px; }
.menu-btn span { display: block; width: 100%; height: 2px; background: var(--blue-900); border-radius: 10px; margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  padding: 82px 0 60px;
  background-image: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.32) 72%, rgba(255,255,255,.12) 100%), url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(36, 160, 205, 0.10), transparent 38%), linear-gradient(180deg, transparent 0%, rgba(255,255,255,.55) 94%);
  pointer-events: none;
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.06fr .72fr; gap: 52px; align-items: center; z-index: 1; }
.hero__content { padding-top: 12px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #207a31; background: rgba(235, 255, 239, .92); border: 1px solid rgba(44, 173, 76, .16); padding: 9px 13px; border-radius: 999px; font-size: 13px; font-weight: 900; box-shadow: 0 10px 24px rgba(32, 124, 48, .08); }
.eyebrow svg { width: 18px; height: 18px; fill: rgba(40, 167, 69, .08); }
.hero h1 { max-width: 710px; margin: 24px 0 20px; font-size: clamp(42px, 5vw, 72px); line-height: .99; letter-spacing: -.055em; color: #092747; }
.hero__lead { max-width: 650px; margin: 0 0 30px; color: #334d67; font-size: 19px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 24px; border-radius: 14px; border: 0; background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); color: #fff; font-weight: 900; cursor: pointer; box-shadow: 0 14px 28px rgba(8, 113, 152, .22); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(8, 113, 152, .28); }
.btn--glass { background: rgba(255,255,255,.70); color: var(--blue-900); border: 1px solid rgba(8, 88, 126, .18); box-shadow: 0 14px 28px rgba(15, 43, 63, .10); backdrop-filter: blur(12px); }
.btn--wide { width: 100%; }
.hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hero__facts article { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: flex-start; padding: 20px 18px; border-radius: var(--radius-lg); background: rgba(255,255,255,.88); border: 1px solid rgba(7, 91, 128, .09); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.mini-icon, .feature-icon, .why-icon, .step-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 14px; color: var(--blue-700); background: var(--blue-100); }
.hero__facts strong { display: block; margin-bottom: 5px; font-size: 15px; color: #14334e; }
.hero__facts p { margin: 0; color: #62758a; font-size: 13.5px; }

.hero-panel { background: rgba(255,255,255,.92); border: 1px solid rgba(7, 91, 128, .11); border-radius: 30px; padding: 26px; box-shadow: 0 30px 70px rgba(8, 54, 82, .20); backdrop-filter: blur(20px); }
.hero-panel__head { display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: center; margin-bottom: 22px; }
.hero-panel__head img { width: 64px; height: 64px; object-fit: contain; border-radius: 18px; background: #fff; box-shadow: 0 10px 25px rgba(8, 49, 76, .08); }
.hero-panel__head span { display: block; color: var(--blue-700); font-size: 12px; text-transform: uppercase; font-weight: 1000; letter-spacing: .06em; }
.hero-panel__head h2 { margin: 4px 0 0; font-size: 22px; line-height: 1.18; letter-spacing: -.025em; color: #112941; }
.panel-list { display: grid; gap: 10px; margin-bottom: 18px; }
.panel-row { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; padding: 13px; border: 1px solid #e2eef4; border-radius: 16px; background: rgba(247, 252, 254, .95); }
.panel-row span { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; color: var(--blue-700); background: #eaf8fc; }
.panel-row p { margin: 0; }
.panel-row small { display: block; color: #7a8da0; font-size: 12px; font-weight: 800; }
.panel-row strong { color: #13324d; font-size: 15px; }

.hero-anim { opacity: 0; transform: translateY(24px); animation: heroFade .85s ease forwards; animation-delay: var(--delay, 0s); }
@keyframes heroFade { to { opacity: 1; transform: translateY(0); } }

.section { padding: 68px 0; }
.section:nth-of-type(even) { background: #f4fbfd; }
.section-label { display: inline-flex; color: var(--blue-700); background: var(--blue-100); padding: 7px 12px; border-radius: 999px; font-size: 12px; font-weight: 1000; margin-bottom: 16px; }
.section-head { margin-bottom: 28px; }
.section-head--center { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.section-head h2, .about__copy h2, .request__copy h2 { margin: 0 0 12px; color: #10233a; font-size: clamp(30px, 3vw, 44px); line-height: 1.1; letter-spacing: -.04em; }
.section-head p, .about__copy p, .request__copy p { margin: 0; color: var(--muted); font-size: 17px; }

.about__grid { display: grid; grid-template-columns: .85fr 1.3fr; gap: 38px; align-items: center; }
.about__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about__features article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-soft); }
.about__features h3 { margin: 18px 0 8px; color: #173650; font-size: 18px; }
.about__features p { margin: 0; color: var(--muted); font-size: 14px; }

.solutions { background: #fff !important; padding-bottom: 44px; }
.solutions__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.solution-card { overflow: hidden; background: #fff; border: 1px solid #dfeaf0; border-radius: 24px; box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease; }
.solution-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(8, 62, 91, .14); }
.solution-card__top { position: relative; height: 148px; display: flex; align-items: flex-end; padding: 18px; overflow: hidden; background: #eef8fc; }
.solution-card__top::before { content: ""; position: absolute; inset: 0; opacity: .95; background-size: cover; background-position: center; }
.solution-card__top--auto::before { background: linear-gradient(135deg, rgba(7, 91, 128, .18), rgba(255,255,255,.60)), url("assets/drivers-card.webp"); background-size: cover; background-position: center right; }
.solution-card__top--life::before { background: linear-gradient(135deg, rgba(40,167,69,.16), rgba(255,255,255,.58)), url("assets/family-card.webp"); background-size: cover; background-position: center right; }
.solution-card__top--property::before { background: linear-gradient(135deg, rgba(242,175,25,.16), rgba(255,255,255,.56)), url("assets/property-card.webp"); background-size: cover; background-position: center center; }
.solution-card__top--travel::before { background: linear-gradient(135deg, rgba(7,91,128,.18), rgba(255,255,255,.58)), url("assets/travel-card.webp"); background-size: cover; background-position: center right; }
.solution-card__top span { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 18px; color: #fff; background: var(--blue-800); box-shadow: 0 10px 22px rgba(7,91,128,.22); }
.solution-card__body, .solution-card { padding-bottom: 0; }
.solution-card h3 { margin: 22px 22px 9px; color: #102944; font-size: 21px; line-height: 1.15; }
.solution-card p { margin: 0 22px 16px; color: var(--muted); font-size: 14.5px; min-height: 68px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 22px 20px; }
.chips span { padding: 6px 10px; border-radius: 999px; background: #eef7fb; color: var(--blue-900); font-size: 12px; font-weight: 900; }
.service-link { display: inline-flex; margin: 0 22px 24px; color: var(--blue-800); font-weight: 1000; font-size: 14px; }
.service-link::after { content: "→"; margin-left: 8px; transition: transform .2s ease; }
.service-link:hover::after { transform: translateX(4px); }

.why { padding: 52px 0 54px; background: #fff !important; }
.why__grid { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #dcebf2; border-radius: 26px; overflow: hidden; background: linear-gradient(135deg, #f4fbff, #ffffff); box-shadow: var(--shadow-soft); }
.why__grid article { padding: 28px 24px; text-align: center; border-right: 1px solid #dcebf2; }
.why__grid article:last-child { border-right: 0; }
.why-icon { margin: 0 auto 18px; width: 52px; height: 52px; border-radius: 18px; }
.why__grid h3 { margin: 0 0 8px; font-size: 17px; color: #12334e; }
.why__grid p { margin: 0; color: var(--muted); font-size: 14px; }

.steps { padding-top: 54px; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps__grid article { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: var(--shadow-soft); }
.step-icon { width: 48px; height: 48px; margin-bottom: 18px; }
.steps__grid h3 { margin: 0 0 8px; color: #12334e; font-size: 18px; }
.steps__grid p { margin: 0; color: var(--muted); font-size: 14px; }

.faq { background: #f4fbfd !important; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 24px rgba(15, 43, 63, 0.06); overflow: hidden; }
.faq-item button { width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; color: var(--blue-900); font-weight: 1000; cursor: pointer; text-align: left; }
.faq-item button svg { width: 18px; height: 18px; transition: transform .2s ease; }
.faq-item.is-open button svg { transform: rotate(180deg); }
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item.is-open .faq-item__body { max-height: 220px; }
.faq-item__body p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

.request__grid { display: grid; grid-template-columns: .75fr 1.05fr; gap: 44px; align-items: center; }
.request-form { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.request-form label, .hero-panel label { display: grid; gap: 8px; color: #23425f; font-size: 13px; font-weight: 900; margin-bottom: 14px; }
.request-form input, .request-form select, .request-form textarea, .hero-panel input, .hero-panel select { width: 100%; border: 1px solid #d9e7ef; border-radius: 13px; padding: 14px 15px; color: var(--ink); background: #f8fcfe; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.request-form textarea { resize: vertical; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus, .hero-panel input:focus, .hero-panel select:focus { background: #fff; border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(11,136,173,.12); }

.contacts { background: #fff !important; padding-top: 58px; }
.contacts__grid { display: block; max-width: 1100px; margin: 0 auto; }
.contacts__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.contacts__list article { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: 0 10px 24px rgba(15,43,63,.055); min-height: 118px; }
.contacts__list article span { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 15px; background: linear-gradient(135deg, var(--blue-700), #10a8d1); color: #fff; }
.contacts__list h3 { margin: 0 0 4px; color: var(--blue-900); font-size: 16px; }
.contacts__list p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.45; }

.footer { background: var(--blue-900); color: #fff; padding: 56px 0 26px; }
.footer__brand { text-align: center; margin-bottom: 38px; }
.footer__brand img { width: 48px; height: 48px; object-fit: contain; background: #fff; border-radius: 999px; padding: 4px; }
.footer__brand h2 { margin: 12px 0 0; font-size: 24px; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.22); }
.footer h3 { margin: 0 0 14px; font-size: 16px; }
.footer p { margin: 8px 0; color: rgba(255,255,255,.85); font-size: 14px; }
.footer a { color: #fff; text-decoration: underline; }
.footer__bottom { text-align: center; padding-top: 22px; color: rgba(255,255,255,.72); font-size: 13px; }

.floating-call { position: fixed; z-index: 120; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; min-height: 56px; padding: 0 20px; border-radius: 999px; background: linear-gradient(135deg, #f43f5e, #e11d48); color: #fff; font-weight: 1000; box-shadow: 0 18px 38px rgba(225, 29, 72, .32); }
.floating-call svg { width: 22px; height: 22px; }

.reveal-section { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .container { width: min(100% - 32px, var(--container)); }
  .nav { position: fixed; left: 16px; right: 16px; top: 88px; display: none; flex-direction: column; gap: 0; align-items: stretch; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; border-radius: 12px; }
  .nav a:hover { background: #eef8fb; }
  .menu-btn { display: block; }
  .header-phone span { display: none; }
  .hero__grid, .about__grid, .request__grid, .contacts__grid { grid-template-columns: 1fr; }
  .contacts__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding-top: 56px; min-height: auto; }
  .hero__facts, .about__features, .solutions__grid, .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid article { border-right: 0; border-bottom: 1px solid #dcebf2; }
  .why__grid article:last-child { border-bottom: 0; }
}
@media (max-width: 720px) {
  .header__inner { min-height: 76px; }
  .brand { min-width: auto; }
  .brand__logo { width: 42px; height: 42px; }
  .brand__text strong { font-size: 15px; }
  .brand__text small { display: none; }
  .hero { padding: 38px 0 44px; background-position: center top; }
  .hero h1 { font-size: 42px; }
  .hero__lead { font-size: 16px; }
  .hero__facts, .about__features, .solutions__grid, .why__grid, .steps__grid, .form-row, .footer__grid, .contacts__list { grid-template-columns: 1fr; }
  .why__grid article { border-bottom: 1px solid #dcebf2 !important; }
  .why__grid article:last-child { border-bottom: 0 !important; }
  .section { padding: 56px 0; }
  .why { padding: 48px 0; }
  .contacts { padding-top: 52px; }
  .floating-call { right: 14px; bottom: 14px; min-height: 52px; padding: 0 17px; }
}
