  @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

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

  :root {
    --black: #1a1a1a;
    --white: #f8f6f2;
    --accent: #1a56db;
    --gray: #8a8a8a;
    --line: #e0ddd8;
    --dark: #F0EDE8;
  }

  body {
    background: var(--white);
    font-family: 'Manrope', sans-serif;
    color: var(--black);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: 72px;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 100;
    overflow: hidden;
  }


  .nav-logo-img {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  .nav-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    text-decoration: none;
  }

  .nav-logo span { color: var(--accent); }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--black); }

  .nav-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: var(--black);
    padding: 12px 24px;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
  }

  .nav-cta:hover { background: var(--accent); }

  .nav-burger { display: none; }
  .nav-mobile-overlay { display: none; }

  /* ─── HERO ─── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 81px);
  }

  .hero-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 48px;
  }

  .hero-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
  }

  .hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 40px;
  }

  .hero-title em {
    font-style: normal;
    color: var(--accent);
  }

  .hero-desc {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray);
    max-width: 420px;
    margin-bottom: 56px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .btn-primary {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover {
    background: var(--black);
    transform: translateY(-1px);
  }

  .btn-secondary {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .btn-secondary:hover { color: var(--black); }
  .btn-secondary::after { content: '→'; font-size: 16px; }

  .hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 60px;
    padding-top: 40px;
  }

  .stat { flex: 1; padding-right: 32px; }

  .stat + .stat {
    padding-left: 32px;
    border-left: 1px solid rgba(255,255,255,0.08);
  }

  .stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
  }

  .stat-value span { color: var(--accent); }

  .stat-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.5;
  }

  .hero-right {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0a0f1e;
    position: relative;
    overflow: hidden;
  }

  #globeCanvas {
    width: 100%;
    height: 100%;
    display: block;
  }

  .globe-badge-html {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30,64,175,0.12);
    border-radius: 10px;
    padding: 8px 14px;
    pointer-events: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    z-index: 2;
  }

  .globe-badge-html .gb-flag { line-height: 1; }
  .globe-badge-html .gb-flag img { width: 48px; height: auto; border-radius: 3px; display: block; }
  .globe-badge-html .gb-curr {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.04em;
  }
  .globe-badge-html .gb-country {
    font-size: 11px;
    font-weight: 400;
    color: rgba(15,23,42,0.5);
    display: block;
  }

  .badge-usd  { top: 16%; left: 5%; animation: badgeFloat1 5s ease-in-out infinite; }
  .badge-cny  { top: 20%; right: 5%; animation: badgeFloat2 5s ease-in-out infinite 0.8s; }
  .badge-aed  { bottom: 26%; right: 5%; animation: badgeFloat3 5s ease-in-out infinite 1.6s; }
  .badge-try  { bottom: 20%; left: 5%; animation: badgeFloat4 5s ease-in-out infinite 0.4s; }
  .badge-inr  { top: 48%; left: 4%; animation: badgeFloat1 5s ease-in-out infinite 1.2s; }

  @keyframes badgeFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
  @keyframes badgeFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  @keyframes badgeFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
  @keyframes badgeFloat4 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }


  .steps-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(26,26,26,0.35);
    margin-bottom: 48px;
  }

  .step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 24px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    transition: all 0.2s;
    cursor: default;
  }

  .step:first-child { border-top: 1px solid var(--line); }
  .step:hover .step-num { color: var(--accent); }
  .step:hover .step-name { color: var(--black); }

  .step-num {
    font-size: 16px;
    font-weight: 500;
    color: rgba(26,26,26,0.2);
    padding-top: 2px;
    transition: color 0.2s;
    letter-spacing: 0.04em;
  }

  .step-name {
    font-size: 15px;
    font-weight: 500;
    color: rgba(26,26,26,0.8);
    margin-bottom: 4px;
    transition: color 0.2s;
  }

  .step-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(26,26,26,0.3);
    line-height: 1.6;
  }

  .commission-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 20px 24px;
    border: 1px solid rgba(26, 86, 219, 0.25);
    background: rgba(26, 86, 219, 0.06);
  }

  .commission-badge .value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
  }

  .commission-badge .label {
    font-size: 14px;
    font-weight: 300;
    color: rgba(26,26,26,0.4);
    line-height: 1.6;
  }

  /* ─── СЛОЖНЫЕ СДЕЛКИ ─── */
  .complex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: none;
  }

  .complex-left {
    background: #0d1f4a;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .complex-left::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 280px; height: 280px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
  }

  .tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
  }

  .tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent);
  }

  .complex-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
  }

  .complex-title em {
    font-style: normal;
    color: var(--accent);
  }

  .complex-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    max-width: 380px;
    margin-bottom: 48px;
  }

  .solutions { display: flex; flex-direction: column; }

  .solution {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
  }

  .solution:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }

  .solution-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 8px;
    flex-shrink: 0;
  }

  .solution-text {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    transition: color 0.2s;
  }

  .solution:hover .solution-text { color: rgba(255,255,255,0.9); }

  .complex-right {
    background: #0a1a3d;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .stat-big {
    font-size: clamp(80px, 10vw, 128px);
    font-weight: 800;
    line-height: 0.9;
    color: #ffffff;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
  }

  .stat-big span { color: var(--accent); }

  .stat-note {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 320px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
  }

  .stat-note strong { color: #ffffff; font-weight: 600; }

  .situations { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }

  .situation {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    transition: background 0.2s;
    cursor: default;
  }

  .situation:hover { background: rgba(255,255,255,0.1); }

  .situation-arrow {
    font-size: 16px;
    color: var(--accent);
    flex-shrink: 0;
  }

  .cta { display: flex; flex-direction: column; gap: 14px; }

  .cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
  }

  .cta-btn:hover { background: #ffffff; color: var(--accent); transform: translateY(-2px); }
  .cta-note { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); }

  /* ─── МАРШРУТЫ ─── */
  .routes {
    background: #0d1f4a;
    padding: 80px 80px 0;
    position: relative;
    overflow: hidden;
  }

  .routes::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  .routes::after {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .routes-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
  }

  .routes-title {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.03em;
  }

  .routes-title em { font-style: normal; color: var(--accent); }

  .routes-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .route-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0 -80px;
  }

  .route-card {
    background: #0d1f4a;
    padding: 56px 64px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .route-card:hover { background: #162444; }

  .card-num {
    position: absolute;
    top: -10px; right: 16px;
    font-size: 160px;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
    transition: color 0.3s;
  }

  .route-card:hover .card-num { color: rgba(26, 86, 219, 0.06); }

  .card-icon {
    width: 48px; height: 48px;
    margin-bottom: 32px;
  }

  .icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 40px; height: 40px;
  }

  .icon-grid span {
    background: rgba(255,255,255,0.12);
    transition: background 0.2s;
  }

  .icon-grid span.a { background: var(--accent); }

  .icon-chain {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 48px;
  }

  .chain-row {
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .chain-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .chain-dot.a { background: var(--accent); }
  .chain-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

  .route-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }

  .route-card-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
  }

  .card-facts { border-top: 1px solid rgba(255,255,255,0.1); }

  .fact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
  }

  .route-card:hover .fact { color: rgba(255,255,255,0.6); }

  .fact-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  /* ─── HERO СВЕТЛЫЙ + ГЛОБУС ─── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 81px);
  }

  .hero-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .hero-right {
    background: linear-gradient(145deg, #f0f7ff 0%, #e4f0ff 60%, #d5e8ff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
  }

  .hero-right::before { display: none; }
  .hero-right::after  { display: none; }

  /* Фоновые концентрические круги */


  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-tag { animation: fadeUp 0.5s ease 0.1s both; }
  .hero-title { animation: fadeUp 0.5s ease 0.2s both; }
  .hero-desc { animation: fadeUp 0.5s ease 0.3s both; }
  .hero-actions { animation: fadeUp 0.5s ease 0.4s both; }
  .hero-stats { animation: fadeUp 0.5s ease 0.5s both; }

  /* ─── TIMELINE ─── */
  .steps-section {
    background: var(--white);
    padding: 100px 80px;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }

  .steps-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 80px;
  }

  .steps-section-title {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.02;
    color: var(--black);
    letter-spacing: -0.03em;
  }

  .steps-section-title em { font-style: normal; color: var(--accent); }

  .steps-section-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray);
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  /* Timeline */
  .timeline {
    position: relative;
  }

  /* Линия */
  .timeline-track {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0;
  }

  .timeline-line {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--line);
    z-index: 0;
  }

  .timeline-line-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .timeline-line-fill.animated { width: 100%; }

  /* Шаги */
  .timeline-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .tl-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 24px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .tl-step.visible { opacity: 1; transform: translateY(0); }

  /* Точка на линии */
  .tl-dot-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
  }

  .tl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.02em;
    transition: all 0.3s;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .tl-step:hover .tl-dot,
  .tl-step.active .tl-dot {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    box-shadow: 0 0 0 6px rgba(26, 86, 219, 0.1);
  }

  /* Контент шага */
  .tl-content { padding-top: 0; }

  .tl-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    opacity: 0.7;
  }

  .tl-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.2s;
  }

  .tl-step:hover .tl-name { color: var(--accent); }

  .tl-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(26,26,26,0.6);
  }

  /* Нижняя плашка с CTA */
  .timeline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
    padding: 48px 56px;
    background: #0d1f4a;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }

  .timeline-cta::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.25) 0%, transparent 65%);
    pointer-events: none;
  }

  .timeline-cta::after {
    content: '';
    position: absolute;
    left: -60px; bottom: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .timeline-cta-left { position: relative; z-index: 1; }

  .timeline-cta-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
  }

  .timeline-cta-text {
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .timeline-cta-text span { color: var(--accent); }

  .timeline-cta-right {
    display: flex;
    align-items: center;
    gap: 36px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .tl-cta-note {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    text-align: right;
    line-height: 1.6;
  }

  .tl-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    border-radius: 2px;
  }

  .tl-cta-btn:hover { background: #60a5fa; transform: translateY(-2px); }

  /* ─── РИСКИ ─── */
  @keyframes riskFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes counterUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes lineGrow {
    from { width: 0; }
    to { width: 100%; }
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.92); }
  }

  .risks {
    background: #F0EDE8;
    padding: 100px 80px;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }

  .risks::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .risks::after {
    content: '';
    position: absolute;
    bottom: -300px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(26, 86, 219, 0.06) 0%, transparent 65%);
    pointer-events: none;
  }

  .risks-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 80px;
  }

  .risks-title {
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 800;
    line-height: 1.02;
    color: var(--black);
    letter-spacing: -0.03em;
  }

  .risks-title em { font-style: normal; color: var(--accent); }

  .risks-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .risks-meta-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(26,26,26,0.4);
  }

  .risks-meta-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .risks-meta-stat .big { font-size: 48px; font-weight: 800; color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
  .risks-meta-stat .small { font-size: 15px; font-weight: 300; color: rgba(26,26,26,0.35); line-height: 1.5; max-width: 200px; }

  /* Сетка карточек */
  .risks-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1px;
    background: rgba(26,26,26,0.06);
  }

  .risk-card {
    background: #F0EDE8;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.3s;
  }

  .risk-card:hover { background: #E8E4DE; }

  /* Большая подсветка при ховере */
  .risk-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(26, 86, 219, 0.07) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }
  .risk-card:hover::before { opacity: 1; }

  /* Фоновый номер */
  .risk-card-bg-num {
    position: absolute;
    bottom: -20px; right: -10px;
    font-size: 140px;
    font-weight: 800;
    color: rgba(26,26,26,0.04);
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    transition: color 0.3s;
  }
  .risk-card:hover .risk-card-bg-num { color: rgba(26, 86, 219, 0.06); }

  /* Иконка */
  .risk-icon {
    width: 52px; height: 52px;
    margin-bottom: 28px;
    position: relative;
  }

  .risk-icon svg {
    width: 100%; height: 100%;
  }

  /* Прогресс-линия под иконкой */
  .risk-progress {
    width: 32px;
    height: 2px;
    background: rgba(26,26,26,0.06);
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
  }

  .risk-card:hover .risk-progress::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--accent);
    animation: lineGrow 0.4s ease forwards;
  }

  .risk-num {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.7;
  }

  .risk-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    transition: color 0.2s;
  }
  .risk-card:hover .risk-name { color: var(--accent); }

  .risk-problem {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(26,26,26,0.3);
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .risk-solution {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(26, 86, 219, 0.06);
    border-left: 2px solid var(--accent);
    margin-top: auto;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
  }

  .risk-card:hover .risk-solution {
    opacity: 1;
    transform: translateY(0);
  }

  .risk-solution-icon {
    font-size: 13px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
  }

  .risk-solution-text {
    font-size: 16px;
    font-weight: 400;
    color: rgba(26,26,26,0.55);
    line-height: 1.6;
  }

  /* Акцентная карточка */
  .risk-card.featured {
    background: #0d1f4a;
    grid-column: span 1;
  }

  .risk-card.featured::before {
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
    opacity: 1;
  }

  .risk-card.featured:hover { background: #162444; }

  .risk-card.featured .risk-card-bg-num { color: rgba(255,255,255,0.06); }
  .risk-card.featured:hover .risk-card-bg-num { color: rgba(255,255,255,0.09); }

  .risk-card.featured .risk-num { color: rgba(255,255,255,0.4); }
  .risk-card.featured .risk-name { color: #ffffff; }
  .risk-card.featured .risk-problem { color: rgba(255,255,255,0.55); }
  .risk-card.featured .risk-progress { background: rgba(26,26,26,0.08); }
  .risk-card.featured:hover .risk-progress::after { background: #fff; }

  .risk-card.featured .risk-solution {
    background: rgba(255,255,255,0.08);
    border-left-color: rgba(255,255,255,0.4);
    opacity: 1;
    transform: translateY(0);
  }

  .risk-card.featured .risk-solution-icon { color: #ffffff; }
  .risk-card.featured .risk-solution-text { color: rgba(255,255,255,0.8); }

  /* Scroll-reveal */
  .risk-card {
    opacity: 0;
    transform: translateY(24px);
    transition: background 0.3s, opacity 0.5s ease, transform 0.5s ease;
  }

  .risk-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* ─── ПОДБОР МАРШРУТА ─── */
  .pick-route {
    background: #0d1f4a;
    padding: 100px 80px;
    border-top: none;
    position: relative;
    overflow: hidden;
  }

  .pick-route::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .pick-route-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
  }

  .pick-route-title {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.02;
    color: #ffffff;
    letter-spacing: -0.03em;
  }

  .pick-route-title em { font-style: normal; color: var(--accent); }

  .pick-route-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  /* Карточки */
  .pick-cards {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255,255,255,0.06);
  }

  .pick-card {
    background: #0d1f4a;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .pick-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
  }

  .pick-card:hover { background: #162444; }
  .pick-card:hover::after { width: 3px; }

  .pick-card-num {
    padding: 36px 0 36px 40px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.06em;
    transition: color 0.25s;
    white-space: nowrap;
  }

  .pick-card:hover .pick-card-num { color: var(--accent); }

  .pick-card-body {
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    border-left: 1px solid rgba(255,255,255,0.08);
  }

  .pick-card-text {}

  .pick-card-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 8px;
    transition: color 0.25s;
  }

  .pick-card:hover .pick-card-tag { color: var(--accent); opacity: 0.7; }

  .pick-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    transition: color 0.25s;
    line-height: 1.2;
  }

  .pick-card:hover .pick-card-name { color: var(--accent); }

  .pick-card-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    max-width: 480px;
    transition: color 0.25s;
  }

  .pick-card:hover .pick-card-desc { color: rgba(255,255,255,0.7); }

  /* CTA кнопка внутри карточки */
  .pick-card-cta {
    padding: 36px 40px 36px 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .pick-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
  }

  .pick-card:hover .pick-card-btn {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
  }

  .pick-card-btn-arrow {
    font-size: 14px;
    transition: transform 0.25s;
  }

  .pick-card:hover .pick-card-btn-arrow { transform: translateX(3px); }

  /* Иконки (SVG) */
  .pick-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    opacity: 0.25;
    transition: opacity 0.25s;
    margin-right: 8px;
  }

  .pick-card:hover .pick-card-icon { opacity: 0.6; }

  /* Scroll reveal */
  .pick-card {
    opacity: 0;
    transform: translateX(-16px);
    transition: background 0.25s, opacity 0.45s ease, transform 0.45s ease;
  }

  .pick-card.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* ─── ДОП. УСЛУГИ ─── */
  .extra-services {
    background: var(--white);
    padding: 100px 80px;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }

  .extra-services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 72px;
  }

  .extra-services-title {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.02;
    color: var(--black);
    letter-spacing: -0.03em;
  }

  .extra-services-title em { font-style: normal; color: var(--accent); }

  .extra-services-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .extra-services-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray);
  }

  .extra-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.8;
  }

  .extra-badge::before {
    content: '';
    width: 16px; height: 1px;
    background: var(--accent);
  }

  /* Сетка услуг */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    margin-bottom: 1px;
  }

  .services-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
  }

  .svc-card {
    background: var(--white);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.25s;
    opacity: 0;
    transform: translateY(20px);
    transition: background 0.25s, opacity 0.5s ease, transform 0.5s ease;
  }

  .svc-card:hover { background: #faf8f4; }

  /* Красная полоска сверху при ховере */
  .svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  }

  .svc-card:hover::before { transform: scaleX(1); }

  .svc-card.visible { opacity: 1; transform: translateY(0); }

  .svc-icon {
    width: 48px; height: 48px;
    margin-bottom: 24px;
  }

  .svc-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .svc-card:hover .svc-name { color: var(--accent); }

  .svc-desc {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray);
  }

  .svc-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
  }

  .svc-card:hover .svc-tag { opacity: 0.7; transform: translateX(0); }

  /* CTA */
  .services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 40px;
    border: 1px solid var(--line);
    margin-top: 32px;
    transition: border-color 0.25s, background 0.25s;
    cursor: pointer;
    text-decoration: none;
  }

  .services-cta:hover {
    border-color: var(--accent);
    background: rgba(26, 86, 219, 0.03);
  }

  .services-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }

  .services-cta:hover .services-cta-text { color: var(--accent); }

  .services-cta-arrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
    transition: gap 0.2s, color 0.2s;
  }

  .services-cta:hover .services-cta-arrow { gap: 18px; color: var(--accent); }

  .services-cta-arrow span { font-size: 18px; }

  /* ─── КОМИССИЯ ─── */
  .commission {
    background: linear-gradient(135deg, #0d1f4a 0%, #1a3a6b 50%, #0d1f4a 100%);
    border-top: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  /* Сетка на весь блок */
  .commission::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  /* Свечение справа */
  .commission::after {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 65%);
    pointer-events: none;
  }

  .commission-left {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
  }

  .commission-left-top {}

  .commission-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .commission-label::before {
    content: '';
    width: 20px; height: 1px;
    background: var(--accent);
  }

  .commission-heading {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 0.95;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
  }

  .commission-heading span { color: var(--accent); }

  .commission-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 340px;
    margin-bottom: 48px;
  }

  /* Список что входит */
  .commission-includes {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .comm-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
  }

  .comm-item:hover { color: rgba(255,255,255,0.9); }

  .comm-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  /* Правая панель */
  .commission-right {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }

  /* Большая цифра */
  .comm-number-wrap {
    margin-bottom: 40px;
  }

  .comm-number {
    font-size: clamp(72px, 9vw, 128px);
    font-weight: 800;
    line-height: 0.9;
    color: #ffffff;
    letter-spacing: -0.04em;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .comm-number .prefix {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: -0.02em;
  }

  .comm-number .accent { color: var(--accent); }

  .comm-note {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 320px;
  }

  /* Факты */
  .comm-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(26,26,26,0.06);
    margin-bottom: 36px;
  }

  .comm-fact {
    background: #F0EDE8;
    padding: 24px 28px;
    transition: background 0.2s;
  }

  .comm-fact:hover { background: #E8E4DE; }

  .comm-fact-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
  }

  .comm-fact-value span { color: var(--accent); }

  .comm-fact-label {
    font-size: 16px;
    font-weight: 300;
    color: rgba(26,26,26,0.3);
    line-height: 1.5;
  }

  /* CTA кнопка */
  .comm-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
  }

  .comm-cta:hover { background: #fff; color: var(--accent); transform: translateY(-2px); }
  .comm-cta-arrow { font-size: 18px; transition: transform 0.2s; }
  .comm-cta:hover .comm-cta-arrow { transform: translateX(4px); }

  /* ─── СТАТЬИ ─── */
  .articles {
    background: var(--white);
    padding: 100px 80px;
    border-top: 1px solid var(--line);
  }

  .articles-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
  }

  .articles-title {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.02;
    color: var(--black);
    letter-spacing: -0.03em;
  }

  .articles-title em { font-style: normal; color: var(--accent); }

  .articles-all {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s, gap 0.2s;
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--line);
    transition: color 0.2s, border-color 0.2s;
  }

  .articles-all:hover { color: var(--accent); border-color: var(--accent); }
  .articles-all span { font-size: 16px; }

  /* Сетка карточек */
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    margin-bottom: 1px;
  }

  .article-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s;
    overflow: hidden;
    position: relative;
  }

  .article-card.visible { opacity: 1; transform: translateY(0); }
  .article-card:hover { background: #faf8f4; }

  /* Цветная плашка вместо фото */
  .article-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
  }

  .article-thumb-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
  }

  .article-card:hover .article-thumb-bg { transform: scale(1.04); }

  /* Разные фоны для каждой карточки */
  .article-card:nth-child(1) .article-thumb-bg { background: linear-gradient(135deg, #111214 0%, #1e1a17 100%); }
  .article-card:nth-child(2) .article-thumb-bg { background: linear-gradient(135deg, #1a1212 0%, #2d1a14 100%); }
  .article-card:nth-child(3) .article-thumb-bg { background: linear-gradient(135deg, #101418 0%, #151d24 100%); }
  .article-card:nth-child(4) .article-thumb-bg { background: linear-gradient(135deg, #141210 0%, #201c18 100%); }

  /* Декоративный элемент в превью */
  .article-thumb-deco {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.12;
    transition: opacity 0.3s;
  }

  .article-card:hover .article-thumb-deco { opacity: 0.2; }

  .article-thumb-deco svg { width: 80px; height: 80px; }

  /* Тег категории */
  .article-cat {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26,26,26,0.5);
    background: rgba(26,26,26,0.07);
    border: 1px solid rgba(26,26,26,0.15);
    padding: 5px 10px;
    backdrop-filter: blur(4px);
  }

  .article-cat-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  /* Контент */
  .article-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
  }

  .article-date {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    opacity: 0.7;
  }

  .article-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    transition: color 0.2s;
    flex: 1;
  }

  .article-card:hover .article-name { color: var(--accent); }

  .article-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .article-read {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
  }

  .article-card:hover .article-read { opacity: 1; transform: translateY(0); }

  /* CTA */
  .articles-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 1px solid var(--line);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 0.06em;
    gap: 10px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .articles-cta:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(26, 86, 219, 0.03);
  }

  /* ─── FAQ ─── */
  .faq {
    background: #F0EDE8;
    padding: 100px 80px;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }

  .faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .faq-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }

  .faq-left {
    position: sticky;
    top: 120px;
  }

  .faq-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.02;
    color: var(--black);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }

  .faq-title em { font-style: normal; color: var(--accent); }

  .faq-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(26,26,26,0.55);
    margin-bottom: 40px;
  }

  .faq-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(26, 86, 219, 0.3);
    transition: gap 0.2s, border-color 0.2s;
  }

  .faq-cta-link:hover { gap: 16px; border-color: var(--accent); }

  /* Аккордеон */
  .faq-list { display: flex; flex-direction: column; }

  .faq-item {
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .faq-item:first-child { border-top: 1px solid var(--line); }
  .faq-item.visible { opacity: 1; transform: translateY(0); }

  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    cursor: pointer;
    user-select: none;
  }

  .faq-q-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.2s;
  }

  .faq-item.open .faq-q-text,
  .faq-item:hover .faq-q-text { color: var(--accent); }

  .faq-icon {
    width: 32px; height: 32px;
    border: 1px solid rgba(26,26,26,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.3s;
    font-size: 16px;
    color: rgba(26,26,26,0.3);
  }

  .faq-item.open .faq-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  }

  .faq-item.open .faq-a { max-height: 300px; }

  .faq-a-inner {
    padding-bottom: 28px;
    padding-right: 56px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray);
  }

  /* ─── ФОРМА ─── */
  .contact-form-section {
    background: #F0EDE8;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .contact-form-section::after {
    content: '';
    position: absolute;
    left: -200px; bottom: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .form-left {
    background: #0d1f4a;
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  .form-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  .form-left::after {
    content: 'ВЭД';
    position: absolute;
    font-size: 200px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    bottom: -30px;
    right: -20px;
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
  }

  .form-left-top { position: relative; z-index: 1; }

  .form-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .form-eyebrow::before { content: ''; width: 16px; height: 1px; background: rgba(255,255,255,0.3); }

  .form-heading {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.02;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }

  .form-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
  }

  .form-left-bottom {
    position: relative;
    z-index: 1;
  }

  .form-guarantee {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .form-guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
  }

  .form-guarantee-item::before {
    content: '✓';
    font-size: 15px;
    font-weight: 700;
    color: #60a5fa;
    flex-shrink: 0;
  }

  .form-right {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
  }

  .form-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26,26,26,0.3);
  }

  .form-input,
  .form-select {
    background: rgba(26,26,26,0.05);
    border: 1px solid rgba(26,26,26,0.12);
    padding: 14px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    appearance: none;
  }

  .form-input::placeholder { color: rgba(26,26,26,0.2); }

  .form-input:focus,
  .form-select:focus {
    border-color: var(--accent);
    background: rgba(26,26,26,0.07);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 28px;
    background: var(--accent);
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
  }

  .form-submit:hover { background: #fff; color: var(--accent); transform: translateY(-2px); }
  .form-submit span { font-size: 16px; }

  /* ─── FOOTER ─── */
  footer {
    background: #0d1420;
    padding: 60px 80px 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 36px;
  }

  .footer-brand {}

  .footer-logo {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 16px;
  }

  .footer-logo span { color: var(--accent); }

  .footer-tagline {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    max-width: 260px;
    margin-bottom: 28px;
  }

  .footer-contacts { display: flex; flex-direction: column; gap: 12px; }

  .footer-contact-item {}

  .footer-contact-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 4px;
  }

  .footer-contact-value {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-contact-value:hover { color: var(--accent); }

  .footer-col-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 20px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
  }

  .footer-links a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: #ffffff; }

  .footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
  }

  .footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 16px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .footer-social:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .footer-legal {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
    line-height: 1.6;
  }

  .footer-legal strong { color: rgba(255,255,255,0.35); font-weight: 500; }

  .footer-bottom-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .footer-bottom-links a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom-links a:hover { color: rgba(26,26,26,0.5); }


  /* ─── КАРТА МАРШРУТОВ ─── */
  .map-section {
    background: #060f25;
    padding: 80px 80px 0;
    position: relative;
    overflow: hidden;
    border-top: none;
  }

  .map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .map-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
  }

  .map-title {
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.03em;
  }

  .map-title em { font-style: normal; color: var(--accent); }

  .map-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.4);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .map-wrap {
    position: relative;
    z-index: 1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  #worldMap {
    width: 100%;
    height: 640px;
    display: block;
    cursor: crosshair;
  }

  .map-tooltip {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 10px 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
    white-space: nowrap;
  }

  .map-tooltip.visible { opacity: 1; }

  .map-tooltip-flag { font-size: 20px; margin-right: 8px; }
  .map-tooltip-curr {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
  }
  .map-tooltip-country {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 2px;
  }


  /* Тизер услуг */
  .services-teaser {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 56px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
  }

  .services-teaser-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .services-teaser-tags span {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gray);
    background: #f0ede8;
    padding: 8px 18px;
    border-radius: 20px;
  }

  .services-teaser-cta {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }

  .services-teaser-cta:hover { gap: 12px; }

  /* ══════════════════════════════════════════════════
     АДАПТИВ — TABLET (≤1024px)
  ══════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .services-teaser { padding: 32px 32px; }

    nav { padding: 0 32px; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 32px; border-right: none; }
    .hero-right { min-height: 360px; }

    .routes { padding: 60px 32px 0; }
    .routes-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
    .route-cards { grid-template-columns: 1fr; margin: 0 -32px; }

    .steps-section { padding: 72px 32px; }
    .steps-section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }

    .map-section { padding: 60px 32px 0; }
    .map-header { grid-template-columns: 1fr; gap: 24px; }
    .map-wrap { width: calc(100% + 64px); margin: 0 -32px; }

    .risks { padding: 72px 32px; }
    .risks-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
    .risks-grid { grid-template-columns: repeat(2, 1fr); }

    .commission { grid-template-columns: 1fr; }
    .commission-left { padding: 60px 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .commission-right { padding: 60px 40px; }

    .pick-route { padding: 72px 32px; }
    .pick-route-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }

    .extra-services { padding: 72px 32px; }
    .extra-services-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .articles { padding: 72px 32px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }

    .faq { padding: 72px 32px; }
    .faq-inner { grid-template-columns: 1fr; gap: 48px; }
    .faq-left { position: static; }

    .contact-form-section { grid-template-columns: 1fr; }
    .form-left { padding: 60px 40px; }
    .form-right { padding: 60px 40px; }

    footer { padding: 60px 32px 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }

    .complex { grid-template-columns: 1fr; }
    .complex-left { padding: 60px 40px; border-right: none; }
    .complex-right { padding: 60px 40px; }

    .timeline-cta { flex-direction: column; align-items: flex-start; gap: 32px; padding: 40px 40px; }
    .timeline-cta-right { flex-direction: column; align-items: flex-start; gap: 16px; }
    .tl-cta-note { text-align: left; }
  }


  /* ══════════════════════════════════════════════════
     АДАПТИВ — MOBILE (≤768px)
  ══════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    /* ─── Навигация ─── */
    nav {
      padding: 0 20px;
      overflow: visible;
    }
    .nav-links { display: none; }
    .nav-cta { display: none; }

    .nav-burger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      flex-shrink: 0;
    }
    .nav-burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--black);
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile-overlay {
      display: flex !important;
      flex-direction: column;
      position: fixed;
      inset: 72px 0 0 0;
      background: var(--white);
      z-index: 99;
      padding: 32px 20px;
      gap: 0;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
      border-top: 1px solid var(--line);
    }
    .nav-mobile-overlay.open { transform: translateX(0); }

    .nav-mobile-links {
      list-style: none;
      display: flex;
      flex-direction: column;
    }
    .nav-mobile-links li { border-bottom: 1px solid var(--line); }
    .nav-mobile-links a {
      display: block;
      padding: 18px 0;
      font-size: 18px;
      font-weight: 500;
      color: var(--black);
      text-decoration: none;
      letter-spacing: -0.01em;
    }
    .nav-mobile-cta {
      display: block;
      margin-top: 28px;
      padding: 16px 24px;
      background: var(--black);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      text-align: center;
      min-height: 52px;
      line-height: 20px;
      border: none;
      cursor: pointer;
      font-family: 'Manrope', sans-serif;
      width: 100%;
    }

    /* ─── Hero ─── */
    .hero { grid-template-columns: 1fr; }
    .hero-left { display: contents; }
    .hero-content { padding: 48px 20px 32px; grid-row: 1; }
    .hero-right { display: flex; min-height: 300px; max-height: 340px; grid-row: 2; }
    .hero-stats { grid-row: 3; padding: 28px 20px 48px; margin-top: 0; border-top: 1px solid var(--line); }
    .hero-tag { margin-bottom: 28px; font-size: 11px; }
    .hero-desc { font-size: 15px; margin-bottom: 36px; }
    .hero-desc br { display: none; }
    .globe-badge-html { padding: 6px 10px; }
    .globe-badge-html .gb-flag img { width: 32px; }
    .globe-badge-html .gb-curr { font-size: 12px; }
    .globe-badge-html .gb-country { font-size: 10px; }
    .badge-usd { top: 10%; left: 3%; }
    .badge-cny { top: 10%; right: 3%; }
    .badge-aed { bottom: 16%; right: 3%; }
    .badge-try { bottom: 12%; left: 3%; }
    .badge-inr { top: 44%; left: 2%; }
    .hero-stats { flex-direction: column; gap: 0; margin-top: 40px; padding-top: 28px; }
    .stat { flex: none; padding-right: 0; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
    .stat + .stat { padding-left: 0; border-left: none; padding-top: 20px; border-bottom: 1px solid var(--line); }
    .stat-value { font-size: 28px; }

    /* ─── Маршруты ─── */
    .routes { padding: 48px 20px 0; }
    .routes-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
    .route-cards { grid-template-columns: 1fr; margin: 0 -20px; }
    .route-card { padding: 40px 24px; }

    /* ─── Timeline ─── */
    .steps-section { padding: 56px 20px; }
    .steps-section-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .timeline-track { display: none; }
    .timeline-steps {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .tl-step {
      display: grid;
      grid-template-columns: 72px 1fr;
      grid-template-rows: auto auto;
      column-gap: 20px;
      row-gap: 6px;
      padding: 24px 0;
      border-bottom: 1px solid var(--line);
      flex-direction: unset;
      align-items: unset;
      gap: unset;
    }
    .tl-step:first-child { border-top: 1px solid var(--line); }
    .tl-tag { grid-column: 1; grid-row: 1 / 3; align-self: start; padding-top: 2px; }
    .tl-name { grid-column: 2; grid-row: 1; }
    .tl-desc { grid-column: 2; grid-row: 2; }
    .timeline-cta { padding: 32px 20px; }

    .services-teaser { padding: 36px 20px; flex-direction: column; align-items: flex-start; gap: 28px; }
    .services-teaser-cta { font-size: 15px; }

    /* ─── Карта ─── */
    .map-section { padding: 48px 20px 0; }
    .map-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
    .map-wrap { width: calc(100% + 40px); margin: 0 -20px; }
    #worldMap { height: 320px; }

    /* ─── Риски ─── */
    .risks { padding: 56px 20px; }
    .risks-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .risks-grid { grid-template-columns: 1fr; }
    .risk-card { padding: 32px 24px; }

    /* ─── Комиссия ─── */
    .commission { grid-template-columns: 1fr; }
    .commission-left { padding: 48px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .commission-right { padding: 48px 20px; }

    /* ─── Подбор маршрута ─── */
    .pick-route { padding: 56px 20px; }
    .pick-route-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
    .pick-card { grid-template-columns: 40px 1fr; }
    .pick-card-cta { display: none; }
    .pick-card-num { padding: 28px 0 28px 20px; }
    .pick-card-body { padding: 28px 20px; grid-template-columns: 1fr; gap: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }

    /* ─── Доп. услуги ─── */
    .extra-services { padding: 56px 20px; }
    .extra-services-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .services-grid-bottom { grid-template-columns: 1fr; }
    .svc-card { padding: 32px 24px; }

    /* ─── Сложные сделки ─── */
    .complex { grid-template-columns: 1fr; }
    .complex-left { padding: 48px 20px; border-right: none; }
    .complex-right { padding: 48px 20px; }

    /* ─── Статьи ─── */
    .articles { padding: 56px 20px; }
    .articles-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
    .articles-grid { grid-template-columns: 1fr; }

    /* ─── FAQ ─── */
    .faq { padding: 56px 20px; }
    .faq-inner { grid-template-columns: 1fr; gap: 36px; }
    .faq-left { position: static; }
    .faq-q-text { font-size: 16px; }
    .faq-a-inner { padding-right: 20px; }

    /* ─── Форма ─── */
    .contact-form-section { grid-template-columns: 1fr; }
    .form-left { padding: 48px 20px; }
    .form-left-bottom { margin-top: 24px; }
    .form-right { padding: 48px 20px; }
    .form-row { grid-template-columns: 1fr; }

    /* ─── Футер ─── */
    footer { padding: 48px 20px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-bottom-links { flex-wrap: wrap; gap: 16px; }
  }


  /* ══════════════════════════════════════════════════
     АДАПТИВ — SMALL (≤480px)
  ══════════════════════════════════════════════════ */
  @media (max-width: 480px) {
    .hero-right { min-height: 240px; max-height: 260px; }
    .hero-left { padding: 36px 16px; }
    .routes { padding: 40px 16px 0; }
    .route-cards { margin: 0 -16px; }
    .route-card { padding: 32px 20px; }
    .services-teaser { padding: 32px 16px; gap: 24px; }
    .services-teaser-tags span { font-size: 14px; padding: 6px 12px; }
    .services-teaser-cta { font-size: 14px; }

    .steps-section { padding: 48px 16px; }
    .map-section { padding: 40px 16px 0; }
    .map-wrap { width: calc(100% + 32px); margin: 0 -16px; }
    .risks { padding: 48px 16px; }
    .commission-left, .commission-right { padding: 40px 16px; }
    .pick-route { padding: 48px 16px; }
    .extra-services { padding: 48px 16px; }
    .complex-left, .complex-right { padding: 40px 16px; }
    .articles { padding: 48px 16px; }
    .faq { padding: 48px 16px; }
    .form-left, .form-right { padding: 40px 16px; }
    footer { padding: 40px 16px 28px; }
    .footer-bottom-links { flex-direction: column; gap: 12px; }
    .timeline-cta { padding: 28px 16px; }
    .pick-card-num { padding: 24px 0 24px 16px; }
    .pick-card-body { padding: 24px 16px; }
  }

  /* ─── REFERRAL MODAL ─── */
  .referral-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }
  .referral-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .referral-modal {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.25s;
  }
  .referral-overlay.open .referral-modal {
    transform: translateY(0);
  }
  .referral-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: background 0.2s, color 0.2s;
    z-index: 1;
  }
  .referral-close:hover {
    background: var(--black);
    color: var(--white);
  }
  .referral-header {
    padding: 40px 40px 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
  }
  .referral-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .referral-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    margin: 0;
  }
  .referral-body {
    padding: 28px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .referral-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .referral-field-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(26,26,26,0.5);
  }
  .referral-success {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black);
    padding: 12px 0;
  }

  @media (max-width: 540px) {
    .referral-header { padding: 32px 20px 20px; }
    .referral-body { padding: 20px 20px 32px; }
    .referral-title { font-size: 22px; }
  }
