*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ══ ACCESSIBILITY ════════════════════════════════════════
   Skip Navigation Link (WCAG 2.4.1)
   ═══════════════════════════════════════════════════════ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent, #1D4ED8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}
.skip-nav:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

/* Focus-visible styles (WCAG 2.4.7)
   Applied to all interactive elements via :focus-visible
   so only keyboard users see the ring, not mouse users. */
:focus-visible {
  outline: 2px solid var(--accent, #1D4ED8);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Remove default outline only when :focus-visible is used */
:focus:not(:focus-visible) { outline: none; }

    :root {
      --navy:    #0A1628;
      --accent:  #1D4ED8;
      --accent2: #3B82F6;
      --text:    #0F172A;
      --muted:   #64748B;
      --border:  #E2E8F0;
      --bg:      #FFFFFF;
      --soft:    #F8FAFC;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(32px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes accentLine {
      from { transform: scaleX(0); transform-origin: left; }
      to   { transform: scaleX(1); transform-origin: left; }
    }
    @keyframes pulseDot {
      0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
      50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
    }

    .au  { animation: fadeUp      0.65s cubic-bezier(.22,1,.36,1) both; }
    .ai  { animation: fadeIn      0.6s ease both; }
    .asr { animation: slideInRight 0.7s cubic-bezier(.22,1,.36,1) both; }

    .d1 { animation-delay: 0.05s; }
    .d2 { animation-delay: 0.17s; }
    .d3 { animation-delay: 0.29s; }
    .d4 { animation-delay: 0.41s; }
    .d5 { animation-delay: 0.53s; }
    .d6 { animation-delay: 0.65s; }
    .d7 { animation-delay: 0.77s; }
    .d8 { animation-delay: 0.89s; }

        /* ══════════ HEADER ══════════ */
    .header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 200;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(226,232,240,0.8);
      animation: fadeIn 0.4s ease both;
    }
    .header__inner {
      max-width: 1200px; margin: 0 auto; padding: 0 48px;
      height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
    }
    .header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
    .header__logo-mark {
      width: 36px; height: 36px; background: var(--navy); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 13px; font-weight: 800; letter-spacing: -0.5px; flex-shrink: 0;
    }
    .header__logo-name { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.2; display: block; }
    .header__logo-role { font-size: 11px; font-weight: 500; color: var(--muted); display: block; }
    .header__nav { display: flex; gap: 2px; align-items: center; }
    .header__nav a {
      font-size: 14px; font-weight: 600; color: var(--muted);
      text-decoration: none; padding: 6px 13px; border-radius: 8px;
      transition: color .18s, background .18s;
    }
    .header__nav a:hover, .header__nav a.active { color: var(--navy); background: var(--soft); }
    .header__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .header__phone { font-size: 14px; font-weight: 700; color: var(--navy); text-decoration: none; letter-spacing: -0.3px; transition: color .15s; }
    .header__phone:hover { color: var(--accent); }
    .header__cta {
      font-size: 13.5px; font-weight: 800; color: #fff;
      background: var(--accent); border: none; border-radius: 11px;
      padding: 10px 20px; cursor: pointer; text-decoration: none;
      transition: background .18s, transform .18s;
    }
    .header__cta:hover { background: #1e40af; transform: translateY(-1px); }
    @media (max-width: 900px) {
      .header__nav { display: none; }
      .header__inner { padding: 0; gap: 0; justify-content: space-between; }
      .header__phone { display: none; }
    }

    /* ══ BURGER BUTTON ══ */
    .header__burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }
    .header__burger span {
      display: block;
      width: 18px; height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform .25s, opacity .2s;
    }
    .header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .header__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    @media (max-width: 900px) {
      .header__burger { display: flex; }
    }

    /* ══ MOBILE MENU ══ */
    .mob-menu {
      position: fixed;
      top: 68px; right: 0; bottom: 0;
      width: 300px;
      background: #fff;
      box-shadow: -8px 0 40px rgba(10,22,40,.14);
      transform: translateX(100%);
      transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 199;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      padding: 24px 20px 32px;
    }
    .mob-menu.is-open { transform: translateX(0); }
    .mob-menu__nav { display: flex; flex-direction: column; gap: 2px; }
    .mob-menu__nav a {
      font-size: 16px; font-weight: 600; color: var(--text);
      text-decoration: none;
      padding: 11px 16px;
      border-radius: 10px;
      transition: background .15s, color .15s;
    }
    .mob-menu__nav a:hover, .mob-menu__nav a.active {
      background: var(--soft); color: var(--navy);
    }
    .mob-menu__divider {
      height: 1px; background: var(--border);
      margin: 20px 0;
    }
    .mob-menu__contacts { display: flex; flex-direction: column; gap: 10px; }
    .mob-menu__phone {
      display: flex; align-items: center; gap: 10px;
      font-size: 15px; font-weight: 700; color: var(--navy);
      text-decoration: none;
      padding: 13px 16px;
      border-radius: 12px;
      background: var(--soft);
      transition: background .15s;
    }
    .mob-menu__phone:hover { background: #E2E8F0; }
    .mob-menu__socials { display: flex; gap: 8px; }
    .mob-menu__social {
      flex: 1;
      display: flex; align-items: center; justify-content: center; gap: 7px;
      font-size: 13.5px; font-weight: 700;
      text-decoration: none;
      padding: 11px 12px;
      border-radius: 12px;
      border: 1.5px solid var(--border);
      transition: background .15s, border-color .15s, color .15s;
    }
    .mob-menu__social--tg { color: #229ED9; border-color: #BFDBFE; background: #EFF6FF; }
    .mob-menu__social--tg:hover { background: #229ED9; color: #fff; border-color: #229ED9; }
    .mob-menu__social--max { color: var(--navy); }
    .mob-menu__social--max:hover { background: var(--soft); }
    .mob-menu__social--max img { width: 18px; height: 18px; border-radius: 5px; }

    .mob-menu__backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,22,40,.35);
      z-index: 198;
    }
    .mob-menu__backdrop.is-open { display: block; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 7px; font-family: 'Inter', sans-serif; font-weight: 600;
      border: none; cursor: pointer; text-decoration: none;
      transition: all .2s; white-space: nowrap;
    }
    .btn-sm  { font-size: 13.5px; padding: 8px 18px; border-radius: 10px; }
    .btn-lg  { font-size: 15.5px; padding: 14px 28px; border-radius: 13px; }
    .btn-dark {
      background: var(--navy); color: #fff;
      box-shadow: 0 2px 8px rgba(10,22,40,.18);
    }
    .btn-dark:hover {
      background: #152034;
      box-shadow: 0 6px 20px rgba(10,22,40,.26);
      transform: translateY(-1px);
    }
    .btn-outline {
      background: transparent; color: var(--text);
      border: 1.5px solid var(--border);
    }
    .btn-outline:hover { background: var(--soft); border-color: #CBD5E1; }


    /* ══ FOOTER (compact) ══ */
    .footer {
      background: #060E1C;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 72px 0 0;
    }

    .footer__inner {
      max-width: 1200px; margin: 0 auto; padding: 0 48px;
    }

    /* Top grid: brand | nav | services | contacts */
    .footer__grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
      gap: 48px;
      padding-bottom: 56px;
    }

    /* Brand col */
    .footer__brand-name {
      font-size: 17px; font-weight: 900; color: #fff;
      letter-spacing: -0.4px; margin-bottom: 6px;
    }
    .footer__brand-role {
      font-size: 13px; color: rgba(255,255,255,0.38);
      line-height: 1.5; margin-bottom: 24px;
    }
    .footer__tagline {
      font-size: 14px; color: rgba(255,255,255,0.5);
      line-height: 1.7; margin-bottom: 28px;
      max-width: 240px;
    }
    .footer__socials {
      display: flex; gap: 10px;
    }
    .footer__social {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s;
    }
    .footer__social:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

    /* Nav cols */
    .footer__col-title {
      font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
      text-transform: uppercase; color: rgba(255,255,255,0.3);
      margin-bottom: 20px;
    }
    .footer__nav { display: flex; flex-direction: column; gap: 11px; }
    .footer__nav a {
      font-size: 14px; color: rgba(255,255,255,0.55);
      text-decoration: none; transition: color .18s;
      width: fit-content;
    }
    .footer__nav a:hover { color: #fff; }

    /* Contacts col */
    .footer__contacts { display: flex; flex-direction: column; gap: 14px; }
    .footer__contact {
      display: flex; align-items: flex-start; gap: 12px;
      text-decoration: none;
    }
    .footer__contact-icon {
      width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      transition: background .2s, color .2s;
    }
    .footer__contact:hover .footer__contact-icon { background: var(--accent); color: #fff; border-color: var(--accent); }
    .footer__contact-text { padding-top: 2px; }
    .footer__contact-label { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 600; letter-spacing: 0.3px; margin-bottom: 2px; }
    .footer__contact-value { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 600; transition: color .18s; }
    .footer__contact:hover .footer__contact-value { color: #fff; }

    /* CTA pill inside footer */
    .footer__cta {
      background: rgba(29,78,216,0.15);
      border: 1px solid rgba(29,78,216,0.3);
      border-radius: 16px; padding: 18px 20px;
      margin-top: 4px;
      display: flex; align-items: center; gap: 14px;
    }
    .footer__cta-dot {
      width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
      background: #22C55E;
      box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
      animation: pulse-green 2s infinite;
    }
    @keyframes pulse-green {
      0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
      50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
    }
    .footer__cta-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }
    .footer__cta-text strong { color: #fff; font-weight: 700; display: block; margin-bottom: 2px; }
    .footer__cta-btn {
      margin-left: auto; flex-shrink: 0;
      font-size: 12.5px; font-weight: 800; color: #fff;
      background: var(--accent); border: none; border-radius: 10px;
      padding: 9px 16px; cursor: pointer; white-space: nowrap;
      transition: background .18s;
    }
    .footer__cta-btn:hover { background: #1e40af; }

    /* Divider */
    .footer__divider {
      height: 1px; background: rgba(255,255,255,0.07);
    }

    /* Bottom bar */
    .footer__bottom {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 20px 0;
      flex-wrap: wrap;
    }
    .footer__copy {
      font-size: 13px; color: rgba(255,255,255,0.25);
    }
    .footer__legal {
      display: flex; gap: 20px;
    }
    .footer__legal a {
      font-size: 13px; color: rgba(255,255,255,0.25);
      text-decoration: none; transition: color .18s;
    }
    .footer__legal a:hover { color: rgba(255,255,255,0.5); }

    /* Back to top */
    .footer__top-btn {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4); cursor: pointer;
      transition: background .18s, color .18s;
      flex-shrink: 0;
    }
    .footer__top-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

    /* Responsive */
    @media (max-width: 1024px) {
      .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
      .footer__col--contacts { grid-column: 1 / -1; }
      .footer__contacts { flex-direction: row; flex-wrap: wrap; gap: 10px; }
      .footer__cta { display: none; }
    }
    @media (max-width: 768px) {
      .footer { padding: 56px 0 0; }
      .footer__inner { padding: 0 20px; }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer__col--brand { grid-column: 1 / -1; }
    }
    @media (max-width: 600px) {
      .footer__grid { grid-template-columns: 1fr; }
      .footer__contacts { flex-direction: column; }
      .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
      .footer__legal { flex-wrap: wrap; gap: 12px; }
      .cases-page__inner { padding: 0 20px; }
      .cases-grid { grid-template-columns: 1fr; }
      .cases-cta__inner { padding: 0 20px; }
    }
    @media (max-width: 480px) {
      .footer__grid { grid-template-columns: 1fr; }
      .footer__contacts { flex-direction: column; }
      .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
      .footer__legal { flex-wrap: wrap; gap: 12px; }
    }
    @media (max-width: 960px) {
      .cases-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .cases-grid { grid-template-columns: 1fr; }
    }

    /* ══════════ MODAL ══════════ */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(10,22,40,0.6); backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center; padding: 20px;
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .modal-overlay.is-open { opacity: 1; pointer-events: all; }
    .modal {
      background: #fff; border-radius: 24px;
      width: 100%; max-width: 680px; padding: 32px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.18);
      transform: translateY(16px);
      transition: transform .35s cubic-bezier(.22,1,.36,1);
      max-height: 92svh; overflow-y: auto;
    }
    .modal-overlay.is-open .modal { transform: translateY(0); }
    .modal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
    .modal__progress { display: flex; align-items: center; gap: 8px; }
    .modal__step { display: flex; align-items: center; gap: 7px; }
    .modal__step span {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--border); color: var(--muted); font-size: 12px; font-weight: 800;
      display: flex; align-items: center; justify-content: center; transition: all .3s;
    }
    .modal__step em { font-style: normal; font-size: 13px; font-weight: 600; color: var(--muted); transition: color .3s; }
    .modal__step[data-active="true"] span { background: var(--navy); color: #fff; }
    .modal__step[data-active="true"] em { color: var(--navy); }
    .modal__step[data-done="true"] span { background: #22C55E; color: #fff; }
    .modal__progress-line { width: 32px; height: 2px; background: var(--border); border-radius: 2px; transition: background .3s; }
    .modal__progress-line.done { background: #22C55E; }
    .modal__close {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--soft); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--muted); transition: all .18s; flex-shrink: 0;
    }
    .modal__close:hover { background: #FEE2E2; color: #EF4444; border-color: #FECACA; }
    .modal__back {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--muted);
      background: none; border: none; cursor: pointer; padding: 0; margin-bottom: 20px; transition: color .15s;
    }
    .modal__back:hover { color: var(--text); }
    .modal__title { font-size: 26px; font-weight: 900; color: var(--navy); letter-spacing: -1px; margin-bottom: 6px; }
    .modal__subtitle { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 28px; }
    .modal__formats-wrap { margin-bottom: 20px; }
    .modal__col-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: 0.1px; }
    .modal__format-cards { display: flex; flex-direction: column; gap: 10px; }
    .mformat { cursor: pointer; }
    .mformat input { display: none; }
    .mformat__card {
      display: flex; flex-direction: column; gap: 4px;
      padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px;
      transition: all .18s; cursor: pointer; position: relative;
    }
    .mformat__card:hover { border-color: #93C5FD; }
    .mformat input:checked ~ .mformat__card { border-color: var(--accent); background: #EFF6FF; }
    .mformat__icon { color: var(--muted); margin-bottom: 4px; transition: color .18s; }
    .mformat input:checked ~ .mformat__card .mformat__icon { color: var(--accent); }
    .mformat__card strong { font-size: 14px; font-weight: 700; color: var(--navy); }
    .mformat__card span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
    .mformat input:checked ~ .mformat__card::after {
      content: '✓'; position: absolute; top: 12px; right: 14px;
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--accent); color: #fff;
      font-size: 11px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
    }
    .modal__result-box { background: var(--soft); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; margin-bottom: 20px; }
    .modal__result-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .modal__result-text { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
    .modal__fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
    .modal__fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .modal__input {
      width: 100%; padding: 13px 16px;
      border: 1.5px solid var(--border); border-radius: 11px;
      font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
      background: var(--soft); outline: none; transition: border-color .18s;
    }
    .modal__input:focus { border-color: var(--accent); background: #fff; }
    .modal__input::placeholder { color: #94A3B8; }
    .modal__privacy { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; cursor: pointer; }
    .modal__privacy input { margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
    .modal__privacy span { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
    .modal__privacy a { color: var(--accent); text-decoration: underline; }
    .modal__btn {
      width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--navy); color: #fff;
      font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
      padding: 15px 24px; border-radius: 12px; border: none; cursor: pointer;
      box-shadow: 0 4px 16px rgba(10,22,40,0.2); transition: all .2s; margin-bottom: 18px;
    }
    .modal__btn:hover { background: #152034; box-shadow: 0 8px 24px rgba(10,22,40,0.3); transform: translateY(-1px); }
    .modal__or { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .modal__or::before, .modal__or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .modal__or span { font-size: 12px; color: #94A3B8; font-weight: 500; white-space: nowrap; }
    .modal__messengers { display: flex; gap: 10px; }
    .modal__messenger-link {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 11px; border-radius: 10px; border: 1.5px solid var(--border);
      background: var(--soft); font-size: 13.5px; font-weight: 600; color: var(--text);
      text-decoration: none; transition: all .18s;
    }
    .modal__messenger-link:hover { border-color: var(--accent); color: var(--accent); background: #EFF6FF; }

    /* ══ HEADER SOCIAL ICONS ══ */
    .header__social-icons {
      display: flex; align-items: center; gap: 6px;
    }
    .header__social-icon {
      width: 36px; height: 36px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; border: 1.5px solid var(--border);
      background: var(--soft); color: var(--muted);
      transition: all .18s;
    }
    .header__social-icon--tg { color: #229ED9; border-color: #BFDBFE; background: #EFF6FF; }
    .header__social-icon--tg:hover { background: #229ED9; color: #fff; border-color: #229ED9; }
    .header__social-icon--max { background: none; border-color: transparent; padding: 0; overflow: hidden; border-radius: 10px; }
    .header__social-icon--max:hover { background: none; border-color: transparent; opacity: 0.85; }
    .header__social-icon--max img { width: 36px; height: 36px; display: block; border-radius: 10px; }

    /* ══ GUARANTEE CTA BUTTON ══ */
    .guarantee__cta-btn {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 28px;
      background: var(--accent); color: #fff;
      font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
      padding: 14px 26px; border-radius: 13px; border: none; cursor: pointer;
      box-shadow: 0 4px 16px rgba(29,78,216,0.28);
      transition: all .2s;
    }
    .guarantee__cta-btn:hover {
      background: #1e40af;
      box-shadow: 0 8px 28px rgba(29,78,216,0.38);
      transform: translateY(-1px);
    }

    /* ══ CONSULTATION MODAL ══ */
    .consult-modal {
      max-width: 480px;
      position: relative;
    }
    .consult-modal .modal__close {
      position: absolute; top: 20px; right: 20px;
    }
    .consult-modal__body { padding-top: 8px; }
    .consult-modal__head { text-align: center; margin-bottom: 28px; }
    .consult-modal__avatar {
      font-size: 44px; line-height: 1; display: block; margin-bottom: 12px;
    }
    .consult-modal__title {
      font-size: 26px; font-weight: 900; color: var(--navy);
      letter-spacing: -0.8px; margin-bottom: 10px;
    }
    .consult-modal__sub {
      font-size: 14px; color: var(--muted); line-height: 1.7;
    }
    .consult-modal__fields {
      display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px;
    }
    .consult-modal__nosite-label {
      display: flex; align-items: center; gap: 8px;
      font-size: 13.5px; color: var(--muted); cursor: pointer;
      padding: 4px 2px;
    }
    .consult-modal__nosite-label input { accent-color: var(--accent); cursor: pointer; }
    .consult-modal__divider {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 12px; color: #94A3B8; font-size: 12px; font-weight: 500;
    }
    .consult-modal__divider::before,
    .consult-modal__divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .consult-modal__messengers {
      display: flex; gap: 10px;
    }
    .consult-modal__msg-link {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 11px 16px; border-radius: 10px; border: 1.5px solid var(--border);
      background: var(--soft); font-size: 13.5px; font-weight: 700;
      text-decoration: none; transition: all .18s;
    }
    .consult-modal__msg-link--tg { color: #229ED9; border-color: #BFDBFE; background: #EFF6FF; }
    .consult-modal__msg-link--tg:hover { background: #229ED9; color: #fff; border-color: #229ED9; }
    .consult-modal__msg-link--max { color: #5B4FCF; border-color: #DDD6FE; background: #F5F3FF; }
    .consult-modal__msg-link--max:hover { background: #5B4FCF; color: #fff; border-color: #5B4FCF; }
    .consult-modal__success {
      text-align: center; padding: 32px 16px;
    }
    .consult-modal__success-icon {
      width: 60px; height: 60px; border-radius: 50%;
      background: #D1FAE5; color: #059669;
      font-size: 28px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .consult-modal__success h3 {
      font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 8px;
    }
    .consult-modal__success p {
      font-size: 14px; color: var(--muted); margin-bottom: 24px;
    }
    .consult-modal__close-success {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 12px 28px; border-radius: 12px;
      background: var(--navy); color: #fff;
      font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
      border: none; cursor: pointer; transition: background .18s;
    }
    .consult-modal__close-success:hover { background: #152034; }
