    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 16px; line-height: 1.6; color: #1a1a2e; background: #fff; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; }

    :root {
      --blue: #0099D3;
      --blue-dark: #006fa0;
      --blue-deep: #1a3a5c;
      --blue-mid: #486DAA;
      --gold: #E8A020;
      --green: #27ae60;
      --bg-light: #EDF5FA;
      --bg-section: #f5f7fb;
      --text: #1a1a2e;
      --muted: #5a6475;
      --white: #fff;
      --border: #dce6ef;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(0,99,160,0.10);
      --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
    }

    /* ── Utilities ── */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 72px 0; }
    .section-alt { background: var(--bg-section); }
    .section-blue { background: var(--blue-deep); color: #fff; }
    .section-title { font-size: clamp(22px,2.8vw,34px); font-weight: 800; line-height: 1.2; color: var(--blue-deep); margin-bottom: 10px; }
    .section-title--white { color: #fff; }
    .section-sub { font-size: 16px; color: var(--muted); margin-bottom: 44px; max-width: 600px; }
    .eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); background: rgba(0,153,211,0.09); padding: 4px 14px; border-radius: 99px; margin-bottom: 14px; }

    /* ── Buttons ── */
    .btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: all 0.18s; white-space: nowrap; }
    .btn-primary { background: var(--blue); color: #fff; }
    .btn-primary:hover { background: var(--blue-dark); }
    .btn-outline { background: transparent; border-color: var(--blue); color: var(--blue); }
    .btn-outline:hover { background: var(--blue); color: #fff; }
    .btn-white { background: #fff; color: var(--blue-deep); border-color: #fff; }
    .btn-white:hover { background: #e8f4fc; }
    .btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
    .btn-outline-white:hover { background: rgba(255,255,255,0.12); }
    .btn-lg { font-size: 17px; padding: 16px 32px; }

    /* ── Image Placeholder ── */
    .img-ph {
      background: #e8edf5;
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #9baabf;
      font-size: 13px;
      font-weight: 500;
      min-height: 300px;
    }
    .img-ph svg { width: 32px; height: 32px; opacity: 0.5; }
    .img-ph--tall { min-height: 440px; }
    .img-ph--hero { min-height: 380px; border-radius: 16px; }
    .img-ph--thumb { min-height: 120px; border-radius: 8px; }

    /* ── Icons ── */
    .icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .icon svg { display: block; }
    .icon-box {
      width: 54px; height: 54px;
      border-radius: 14px;
      background: var(--bg-light);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      flex-shrink: 0;
    }
    .icon-box svg { width: 26px; height: 26px; stroke: var(--blue); stroke-width: 1.6; fill: none; }
    .icon-circle {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--bg-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .icon-circle svg { width: 22px; height: 22px; stroke: var(--blue); stroke-width: 1.7; fill: none; }

    /* ── Top Bar ── */
    .topbar { background: var(--blue-deep); color: rgba(255,255,255,0.75); font-size: 13px; padding: 8px 0; }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
    .topbar a { color: rgba(255,255,255,0.75); }
    .topbar a:hover { color: #fff; }
    .topbar-item { display: flex; align-items: center; gap: 7px; }
    .topbar-item svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.8; flex-shrink: 0; }

    /* ── Header ── */
    .site-header { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.07); position: sticky; top: 0; z-index: 300; }
    .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; flex-wrap: nowrap; }
    .logo { flex-shrink: 0; display: flex; align-items: center; }
    .logo svg { height: 42px; width: auto; display: block; }
    .main-nav-OLD { display: none; }
    .header-contacts { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
    .header-phone { font-size: 19px; font-weight: 800; color: var(--blue); white-space: nowrap; display: block; }
    .header-phone-sub { font-size: 11px; color: var(--muted); font-weight: 400; text-align: right; }

    /* ── Hero ── */
    .hero { background: linear-gradient(140deg, #162f50 0%, #1a4a80 55%, #0086bc 100%); color: #fff; padding: 80px 0 72px; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; top: -60%; right: -8%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
    .hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
    .hero h1 { font-size: clamp(26px, 3.5vw, 46px); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
    .hero h1 em { font-style: normal; color: #6dd9ff; }
    .hero-desc { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 32px; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
    .hero-note { font-size: 13px; color: rgba(255,255,255,0.45); }
    .hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
    .hero-pill { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); border-radius: 99px; padding: 6px 16px; font-size: 13px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 7px; }
    .hero-pill svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; flex-shrink: 0; }

    /* ── Stats bar ── */
    .stats-bar { background: #fff; border-bottom: 1px solid var(--border); }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid var(--border); }
    .stat-item:last-child { border-right: none; }
    .stat-number { font-size: clamp(26px,2.5vw,38px); font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 6px; }
    .stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }

    /* ── Services ── */
    .tabs { display: flex; gap: 6px; margin-bottom: 36px; flex-wrap: wrap; }
    .tab-btn { padding: 10px 26px; border-radius: 8px; border: 2px solid var(--border); background: #fff; color: var(--muted); font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.18s; }
    .tab-btn.active, .tab-btn:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,153,211,0.05); }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .service-card { background: #fff; border-radius: var(--radius); padding: 28px 24px 22px; border: 1.5px solid var(--border); transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s; }
    .service-card:hover { box-shadow: var(--shadow); border-color: var(--blue); transform: translateY(-3px); }
    .service-card h3 { font-size: 16px; font-weight: 700; color: var(--blue-deep); margin-bottom: 8px; line-height: 1.3; }
    .service-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
    .service-card__items { list-style: none; padding: 0; border-top: 1px solid #edf0f5; padding-top: 14px; }
    .service-card__items li { font-size: 13px; color: var(--muted); padding: 4px 0; padding-left: 16px; position: relative; }
    .service-card__items li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: 0.5; }
    .service-card__link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--blue); margin-top: 14px; }
    .service-card__link svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2; transition: transform 0.15s; }
    .service-card:hover .service-card__link svg { transform: translateX(3px); }

    /* ── Steps ── */
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
    .steps-grid::before { content: ''; position: absolute; top: 36px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--blue) 0%, rgba(0,153,211,0.2) 100%); z-index: 0; }
    .step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
    .step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(0,153,211,0.30); }
    .step h3 { font-size: 15px; font-weight: 700; color: var(--blue-deep); margin-bottom: 8px; line-height: 1.35; }
    .step p { font-size: 13px; color: var(--muted); line-height: 1.55; }

    /* ── Why ── */
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
    .why-list { list-style: none; }
    .why-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid #edf0f5; }
    .why-item:last-child { border-bottom: none; }
    .why-item h4 { font-size: 15px; font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; }
    .why-item p { font-size: 13px; color: var(--muted); line-height: 1.55; }

    /* ── Cases ── */
    .cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .case-card { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; box-shadow: var(--shadow-card); }
    .case-top { padding: 22px 22px 0; }
    .case-client-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
    .case-avatar { width: 48px; height: 48px; border-radius: 50%; background: #dce6ef; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    .case-avatar svg { width: 24px; height: 24px; stroke: #9baabf; fill: none; stroke-width: 1.5; }
    .case-name { font-size: 15px; font-weight: 700; color: var(--blue-deep); }
    .case-tag { font-size: 11px; color: var(--muted); }
    .case-problem-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
    .case-problem-text { font-size: 14px; color: #333; line-height: 1.55; }
    .case-result { margin: 16px 0 0; background: rgba(39,174,96,0.07); border-top: 2px solid rgba(39,174,96,0.2); padding: 14px 22px; }
    .case-result-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
    .case-result-text { font-size: 14px; font-weight: 600; color: #1a2e1a; }

    /* ── Media ── */
    .media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .media-card { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; box-shadow: var(--shadow-card); }
    .media-card__img .img-ph { min-height: 160px; border-radius: 0; }
    .media-card__body { padding: 18px 20px; }
    .media-card__tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 8px; }
    .media-card__title { font-size: 15px; font-weight: 700; color: var(--blue-deep); line-height: 1.4; margin-bottom: 8px; }
    .media-card__date { font-size: 12px; color: var(--muted); }

    /* ── CTA Band ── */
    .cta-band { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 64px 0; text-align: center; color: #fff; }
    .cta-band h2 { font-size: clamp(22px,3vw,36px); font-weight: 800; margin-bottom: 10px; }
    .cta-band p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 32px; }
    .cta-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto 12px; flex-wrap: wrap; }
    .cta-form input[type=tel] { flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.14); color: #fff; font-size: 16px; outline: none; font-family: inherit; }
    .cta-form input::placeholder { color: rgba(255,255,255,0.55); }
    .cta-note { font-size: 12px; color: rgba(255,255,255,0.45); }
    .cta-note a { color: rgba(255,255,255,0.45); text-decoration: underline; }

    /* ── FAQ ── */
    .faq-wrap { max-width: 820px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--blue-deep); display: flex; justify-content: space-between; align-items: center; gap: 14px; line-height: 1.45; font-family: inherit; }
    .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
    .faq-icon svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2.5; transition: transform 0.2s; }
    .faq-item.open .faq-icon { background: var(--blue); }
    .faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
    .faq-a { font-size: 15px; color: var(--muted); line-height: 1.7; padding: 0 0 20px; display: none; }
    .faq-item.open .faq-a { display: block; }

    /* ── Footer ── */
    .footer { background: var(--blue-deep); color: rgba(255,255,255,0.78); padding: 56px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand p { font-size: 13px; line-height: 1.65; opacity: 0.65; margin-top: 14px; }
    .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 7px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.68); transition: color 0.15s; }
    .footer-col ul li a:hover { color: #fff; }
    .footer-contact { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; }
    .footer-contact svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
    .footer-phone-big { font-size: 22px; font-weight: 800; color: #fff; display: block; margin-bottom: 14px; letter-spacing: -0.5px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; opacity: 0.45; }
    .footer-bottom a { color: inherit; text-decoration: underline; }
    .footer-logo-img { height: 38px; filter: brightness(0) invert(1); opacity: 0.85; }


    /* ══ TEAM SLIDER (hero) ══ */
    .team-slider-wrap { position: relative; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); height: 380px; }
    .team-slider-track { display: flex; height: calc(100% - 36px); transition: transform 0.5s cubic-bezier(.4,0,.2,1); will-change: transform; }
    .team-slide-item { flex: 0 0 100%; height: 100%; }
    .team-photo-ph {
      width: 100%; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
      background: linear-gradient(160deg, rgba(255,255,255,0.10) 0%, rgba(0,153,211,0.15) 100%);
    }
    .team-photo-ph svg { width: 80px; height: 80px; stroke: rgba(255,255,255,0.4); }
    .team-photo-ph span { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.9); }
    .team-photo-ph small { font-size: 13px; color: rgba(255,255,255,0.55); }
    .team-dots { display: flex; gap: 8px; justify-content: center; align-items: center; height: 36px; }
    .team-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
    .team-dot.active { background: #fff; width: 24px; border-radius: 4px; }
    /* Стрелки слайдера */
    .team-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 10; transition: background 0.2s;
      color: #fff; font-size: 16px; line-height: 1; padding: 0;
    }
    .team-arrow:hover { background: rgba(255,255,255,0.35); }
    .team-arrow--prev { left: 10px; }
    .team-arrow--next { right: 10px; }
    .team-arrow svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; }

    /* ══ VIDEO TESTIMONIALS ══ */
    .video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    @media(max-width:768px) { .video-grid { grid-template-columns: 1fr; } }
    .video-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 1.5px solid var(--border); }
    .video-thumb {
      position: relative; aspect-ratio: 16/9; background: #0d1b2a; cursor: pointer;
      display: flex; align-items: center; justify-content: center; overflow: hidden;
    }
    .video-thumb-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 0.3s; }
    .video-thumb:hover .video-thumb-img { opacity: 0.9; }
    .video-play-btn {
      position: absolute; width: 56px; height: 56px; border-radius: 50%;
      background: rgba(0,153,211,0.92); backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s, background 0.2s; pointer-events: none;
    }
    .video-thumb:hover .video-play-btn { transform: scale(1.1); background: var(--blue); }
    .video-play-btn svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
    .video-card-body { padding: 16px 18px; }
    .video-card-name { font-size: 15px; font-weight: 700; color: var(--blue-deep); }
    .video-card-sum { font-size: 13px; color: var(--blue); font-weight: 600; margin-top: 2px; }

    /* ══ PRICING ══ */
    .pricing-tabs { display: flex; gap: 6px; margin-bottom: 36px; flex-wrap: wrap; }
    .pricing-tab { padding: 9px 22px; border-radius: 8px; border: 2px solid var(--border); background: #fff; color: var(--muted); font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.18s; }
    .pricing-tab.active { border-color: var(--blue); color: var(--blue); background: rgba(0,153,211,0.06); }
    .pricing-panel { display: none; }
    .pricing-panel.active { display: block; }
    .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    @media(max-width:900px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:600px) { .pricing-grid { grid-template-columns: 1fr; } }
    .price-card {
      background: #fff; border: 2px solid var(--border); border-radius: var(--radius);
      padding: 28px 24px; transition: all 0.2s; position: relative;
    }
    .price-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
    .price-card.featured { border-color: var(--blue); background: var(--bg-light); }
    .price-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 99px; white-space: nowrap; }
    .price-card__title { font-size: 16px; font-weight: 700; color: var(--blue-deep); margin-bottom: 10px; }
    .price-card__price { font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1; }
    .price-card__price span { font-size: 15px; font-weight: 400; color: var(--muted); }
    .price-card__divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
    .price-card__list { list-style: none; }
    .price-card__list li { font-size: 13.5px; color: var(--muted); padding: 6px 0; display: flex; align-items: flex-start; gap: 9px; line-height: 1.4; }
    .price-card__list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 5px; }
    .price-card__cta { display: block; text-align: center; background: var(--blue); color: #fff; padding: 11px 20px; border-radius: 7px; font-size: 14px; font-weight: 700; margin-top: 20px; transition: background 0.18s; }
    .price-card__cta:hover { background: var(--blue-dark); color: #fff; }
    .price-card.featured .price-card__cta { background: var(--blue-deep); }
    .price-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 24px; }


    /* ══ NAVIGATION DROPDOWNS ══ */
    .main-nav { display: flex; gap: 2px; font-size: 13.5px; font-weight: 600; color: #3a4560; flex-wrap: nowrap; align-items: center; flex: 1; justify-content: center; min-width: 0; }
    .nav-item { position: relative; }
    .nav-btn {
      display: flex; align-items: center; gap: 4px; padding: 8px 12px;
      border: none; background: none; font-family: inherit; font-size: 13.5px;
      font-weight: 600; color: #3a4560; cursor: pointer; border-radius: 8px;
      transition: color 0.15s, background 0.15s; white-space: nowrap;
      text-decoration: none;
    }
    .nav-btn:hover, .nav-item.open > .nav-btn, .nav-item:hover > .nav-btn, .nav-item:focus-within > .nav-btn { color: var(--blue); background: rgba(0,153,211,0.07); }
    .nav-btn--link { display: flex; align-items: center; }
    .nav-chevron { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.2s; flex-shrink: 0; }
    .nav-item.open > .nav-btn .nav-chevron, .nav-item:hover > .nav-btn .nav-chevron, .nav-item:focus-within > .nav-btn .nav-chevron { transform: rotate(180deg); }

    /* Простое выпадающее (drop-menu) */
    .drop-menu {
      position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
      background: #fff; border: 1px solid var(--border); border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,60,120,0.13); padding: 10px; min-width: 220px;
      opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-6px);
      transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
      z-index: 400;
    }
    .nav-item.open .drop-menu,
    .nav-item:hover .drop-menu,
    .nav-item:focus-within .drop-menu {
      opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
    }
    /* Невидимый мостик над зазором (top: calc(100% + 8px)), чтобы курсор не терял
       наведение на .nav-item при переходе от кнопки к выпадающему списку */
    .nav-item.has-drop::after {
      content: '';
      position: absolute;
      left: 0; right: 0; top: 100%; height: 16px;
    }
    .drop-link {
      display: flex; align-items: center; gap: 8px; padding: 9px 12px;
      border-radius: 8px; color: var(--text); font-size: 13.5px; font-weight: 500;
      transition: background 0.15s, color 0.15s;
    }
    .drop-link svg { width: 14px; height: 14px; fill: var(--blue); opacity: 0.7; flex-shrink: 0; }
    .drop-link:hover { background: var(--bg-light); color: var(--blue); }
    .drop-group-title { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); padding: 8px 12px 4px; }
    .drop-divider { border: none; border-top: 1px solid var(--border); margin: 6px 0; }

    /* Мегаменю */
    .mega-menu {
      position: fixed; left: 0; right: 0;
      top: var(--header-bottom, 68px);
      background: #fff; border-top: 2px solid var(--blue);
      box-shadow: 0 16px 48px rgba(0,40,100,0.13);
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 400;
    }
    .nav-item.open .mega-menu,
    .nav-item:hover .mega-menu,
    .nav-item:focus-within .mega-menu {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
    .mega-inner {
      max-width: 1180px; margin: 0 auto; padding: 32px 24px;
      display: grid; gap: 40px;
    }
    /* Физлицам — 3 колонки, Компаниям — 2 */
    .has-mega:nth-child(1) .mega-inner { grid-template-columns: repeat(3,1fr); }
    .has-mega:nth-child(2) .mega-inner { grid-template-columns: repeat(2,1fr); }
    .mega-col-title {
      font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
      color: var(--blue); margin-bottom: 10px; padding-bottom: 6px;
      border-bottom: 1px solid var(--border);
    }
    .mega-list { list-style: none; }
    .mega-list li a {
      display: block; padding: 6px 8px; border-radius: 6px;
      font-size: 13.5px; color: var(--text); font-weight: 500;
      transition: background 0.12s, color 0.12s;
    }
    .mega-list li a:hover { background: var(--bg-light); color: var(--blue); }

    /* Overlay при открытом меню */
    .nav-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
    }
    .nav-overlay.active { display: block; }

    @media(max-width: 1024px) {
      .mega-menu { position: absolute; left: -20px; right: auto; width: 680px; top: calc(100% + 8px); border-top: none; border-radius: 12px; border: 1px solid var(--border); }
      .has-mega:nth-child(1) .mega-inner { grid-template-columns: 1fr 1fr; }
    }
    @media(max-width: 768px) {
      .main-nav { display: none; }
    }

    /* ── Responsive 1024px ── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid::before { display: none; }
      .hero-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .team-slider-wrap { height: 300px; }
    }
    @media (max-width: 768px) {
      .section { padding: 48px 0; }
      .services-grid, .cases-grid, .media-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; background: #fff; }
      .stat-item { border-bottom: 1px solid var(--border); }
      .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
      .stat-item:nth-child(even) { border-right: none; }
      .why-grid { grid-template-columns: 1fr; }
      .why-ph { display: none; }
      .cta-form { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; }
      .header-inner .btn { display: none; }
      .main-nav { display: none; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .steps-grid { grid-template-columns: 1fr; }
      .tabs { gap: 8px; }
    }

/* ══ MODAL ══ */
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:1000;align-items:center;justify-content:center;padding:20px}
.modal-overlay.on{display:flex}
.modal-box{background:#fff;border-radius:16px;padding:36px;max-width:480px;width:100%;position:relative;max-height:90vh;overflow-y:auto}
.modal-close{position:absolute;top:16px;right:16px;width:32px;height:32px;border-radius:50%;background:#f5f5f5;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center}
.modal-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(0,153,211,.1);color:var(--blue);font-size:12px;font-weight:600;padding:4px 12px;border-radius:99px;margin-bottom:14px}
.modal-box h2{font-size:22px;font-weight:800;margin-bottom:8px;color:var(--blue-deep)}
.modal-sub{color:var(--muted);font-size:14px;margin-bottom:20px}
.mf-field{margin-bottom:16px}
.mf-field label{display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:var(--text)}
.mf-field input,.mf-field textarea{width:100%;padding:11px 14px;border:1.5px solid var(--border);border-radius:8px;font-size:14px;font-family:inherit;transition:border-color .2s;outline:none}
.mf-field input:focus,.mf-field textarea:focus{border-color:var(--blue)}
.mf-prv{font-size:12px;color:var(--muted);margin-top:12px;text-align:center}
.mf-prv a{color:var(--blue)}

/* ══ MOBILE NAV ══ */
.mnav-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:500}
.mnav-overlay.on{display:block}
.mnav{position:fixed;top:0;right:-320px;width:300px;height:100vh;background:#fff;z-index:600;overflow-y:auto;padding:20px;transition:right .3s;display:flex;flex-direction:column;gap:2px}
.mnav.on{right:0}
.mnav-head{font-size:18px;font-weight:800;color:var(--blue-deep);margin-bottom:16px}
.mnav-x{position:absolute;top:16px;right:16px;width:32px;height:32px;border-radius:50%;background:#f5f5f5;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center}
.mnav a{padding:10px 12px;border-radius:8px;color:var(--text);font-size:14px;font-weight:500;transition:background .15s}
.mnav a:hover{background:var(--bg-light);color:var(--blue)}
.mnav-sec{font-size:10px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;color:var(--muted);padding:14px 12px 4px;margin-top:8px}
.mnav-ph{color:var(--blue)!important;font-weight:700!important;font-size:16px!important;margin-top:12px}
.mnav-email{color:var(--muted)!important;font-size:13px!important}

/* ══ TO-TOP BUTTON ══ */
.to-top{position:fixed;bottom:24px;right:24px;width:44px;height:44px;border-radius:50%;background:var(--blue);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s,transform .2s;z-index:400;box-shadow:0 4px 16px rgba(0,153,211,.4)}
.to-top.vis{opacity:1;visibility:visible}
.to-top:hover{transform:translateY(-3px)}

/* ══ BURGER ══ */
.brgr{display:none;flex-direction:column;gap:5px;padding:8px;border:none;background:none;cursor:pointer;border-radius:8px}
.brgr span{display:block;width:22px;height:2px;background:var(--blue-deep);border-radius:2px;transition:all .3s}
.brgr.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.brgr.open span:nth-child(2){opacity:0}
.brgr.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
@media(max-width:768px){.brgr{display:flex}}
