    :root {
      --ink: #15203b;
      --ink-deep: #0c1326;
      --paper: #f4f0e8;
      --paper-light: #fbf9f4;
      --white: #ffffff;
      --coral: #ed6648;
      --coral-dark: #c94a31;
      --sky: #cbdfe4;
      --lime: #d6dfb2;
      --muted: #666c77;
      --line: rgba(21, 32, 59, .15);
      --line-light: rgba(255, 255, 255, .16);
      --ease-out: cubic-bezier(.23, 1, .32, 1);
      --ease-in-out: cubic-bezier(.77, 0, .175, 1);
      --radius: 22px;
      --shadow: 0 26px 80px rgba(12, 19, 38, .14);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "Jost", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { color: inherit; font: inherit; }
    .container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

    .site-header {
      height: 82px;
      display: flex;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(244, 240, 232, .91);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
    }
    .header-inner { display: grid; grid-template-columns: 240px 1fr 240px; align-items: center; gap: 24px; }
    .logo { width: 190px; }
    .site-nav { justify-self: center; display: flex; gap: 31px; align-items: center; font-size: 14px; font-weight: 500; }
    .site-nav a { position: relative; }
    .site-nav a::after {
      content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--ink);
      transition: right 180ms var(--ease-out);
    }
    .site-nav a:hover::after { right: 0; }
    .header-action { justify-self: end; }
    .menu-button { display: none; justify-self: end; border: 0; background: transparent; padding: 8px; cursor: pointer; }
    .menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 23px; height: 2px; background: var(--ink); transition: transform 180ms var(--ease-out), opacity 150ms ease; }
    .menu-lines { position: relative; }
    .menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; }
    .menu-lines::before { top: -7px; }
    .menu-lines::after { top: 7px; }
    .menu-button[aria-expanded="true"] .menu-lines { background: transparent; }
    .menu-button[aria-expanded="true"] .menu-lines::before { transform: translateY(7px) rotate(45deg); }
    .menu-button[aria-expanded="true"] .menu-lines::after { transform: translateY(-7px) rotate(-45deg); }

    .button {
      min-height: 46px;
      padding: 0 19px;
      border: 0;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      cursor: pointer;
      font: 600 14px "Manrope", sans-serif;
      transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease;
    }
    .button:active { transform: scale(.97); }
    .button-dark { color: white; background: var(--ink); }
    .button-dark:hover { background: var(--ink-deep); }
    .button-coral { color: white; background: var(--coral); }
    .button-coral:hover { background: var(--coral-dark); }
    .button-light { color: var(--ink); background: white; }
    .button-light:hover { background: var(--paper); }
    .button-outline { border: 1px solid var(--line); background: transparent; }
    .button-outline:hover { background: rgba(255,255,255,.55); }
    .button-arrow { font-size: 18px; transition: transform 160ms var(--ease-out); }
    .button:hover .button-arrow { transform: translateX(3px); }

    .hero { padding: 28px 0 80px; }
    .breadcrumbs { margin: 8px 0 24px; color: var(--muted); font-size: 13px; }
    .hero-shell {
      min-height: 660px;
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      border-radius: 28px;
      overflow: hidden;
      background: var(--ink);
      box-shadow: var(--shadow);
    }
    .hero-copy { padding: 70px 60px 54px; color: white; display: flex; flex-direction: column; position: relative; overflow: hidden; }
    .hero-copy::before {
      content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; left: -200px; bottom: -240px;
      box-shadow: 0 0 0 78px rgba(255,255,255,.025), 0 0 0 156px rgba(255,255,255,.018);
    }
    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font: 700 11px "Manrope", sans-serif;
      text-transform: uppercase;
      letter-spacing: .12em;
    }
    .kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; }
    .hero .kicker { color: var(--sky); }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      margin: 28px 0 28px;
      font: 600 clamp(48px, 5.2vw, 72px)/.99 "Manrope", sans-serif;
      letter-spacing: -.055em;
      max-width: 750px;
    }
    .hero-lead { max-width: 650px; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.65; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
    .hero-actions .button-outline { color: white; border-color: rgba(255,255,255,.3); }
    .hero-actions .button-outline:hover { background: rgba(255,255,255,.08); }
    .hero-foot { margin-top: auto; padding-top: 38px; display: flex; gap: 28px; color: rgba(255,255,255,.54); font-size: 12px; }
    .hero-foot span { display: flex; gap: 8px; align-items: center; }
    .hero-foot i { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 4px rgba(214,223,178,.13); }

    .atlas { background: var(--paper-light); position: relative; padding: 25px; overflow: hidden; }
    .atlas-top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 4; }
    .atlas-title { font: 600 13px "Manrope", sans-serif; }
    .atlas-status { color: var(--muted); font-size: 11px; display: flex; align-items: center; gap: 7px; }
    .atlas-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #70a973; }
    .atlas-visual {
      position: absolute; top: 58px; left: 0; right: 0; height: 372px;
      overflow: hidden; background: #050b12;
    }
    .atlas-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .atlas-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,11,18,.78), transparent 48%); pointer-events: none; }
    .atlas-visual-label { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 17px; color: white; }
    .atlas-visual-label span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.58); font: 600 9px "Manrope"; text-transform: uppercase; letter-spacing: .12em; }
    .atlas-visual-label b { font: 600 18px "Manrope"; letter-spacing: -.025em; }
    .atlas-caption { position: absolute; left: 26px; top: 449px; z-index: 4; max-width: 360px; color: var(--muted); font-size: 12px; line-height: 1.45; }
    .atlas-stats { position: absolute; left: 25px; right: 25px; bottom: 25px; z-index: 5; display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 8px; }
    .atlas-stat { min-height: 77px; background: white; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; transition: transform 180ms var(--ease-out), border-color 180ms ease; }
    .atlas-stat span { display: block; color: var(--muted); font-size: 10px; margin-bottom: 5px; }
    .atlas-stat strong { font: 700 22px "Manrope", sans-serif; letter-spacing: -.04em; }
    .atlas-stat:hover { transform: translateY(-3px); border-color: rgba(21,32,59,.32); }

    .quick-nav { padding: 0 0 94px; }
    .quick-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .quick-link { min-height: 102px; padding: 24px 22px; border-right: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .quick-link:first-child { padding-left: 0; }
    .quick-link:last-child { border-right: 0; }
    .quick-link span { color: var(--muted); font-size: 12px; }
    .quick-link b { display: block; font: 600 21px "Manrope", sans-serif; margin-top: 4px; letter-spacing: -.03em; }
    .quick-link i { font-style: normal; font-size: 20px; transition: transform 160ms var(--ease-out); }
    .quick-link:hover i { transform: translateX(4px); }

    .section { padding: 108px 0; }
    .section-light { background: var(--paper-light); }
    .section-dark { color: white; background: var(--ink-deep); }
    .section-head { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 72px; margin-bottom: 52px; }
    .section-head h2 { margin: 16px 0 0; font: 600 clamp(38px, 4.2vw, 56px)/1.03 "Manrope", sans-serif; letter-spacing: -.045em; }
    .section-head > p { margin-bottom: 3px; color: var(--muted); font-size: 17px; line-height: 1.6; }
    .section-dark .section-head > p { color: rgba(255,255,255,.6); }
    .section-dark .kicker { color: var(--sky); }

    .catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 210px 210px; gap: 14px; }
    .catalog-card {
      position: relative;
      border-radius: var(--radius);
      padding: 25px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--paper);
      display: flex;
      flex-direction: column;
      transition: transform 200ms var(--ease-out), box-shadow 200ms ease, border-color 180ms ease;
    }
    .catalog-card.large { grid-column: span 2; grid-row: span 2; color: white; background: var(--ink); border-color: transparent; padding: 34px; }
    .catalog-card.wide { grid-column: span 2; background: var(--sky); }
    .catalog-card.coral { color: white; background: var(--coral); border-color: transparent; }
    .card-index { color: var(--muted); font: 600 11px "Manrope", sans-serif; }
    .large .card-index, .coral .card-index { color: rgba(255,255,255,.55); }
    .catalog-card h3 { margin: auto 0 10px; font: 600 24px/1.1 "Manrope", sans-serif; letter-spacing: -.035em; }
    .catalog-card.large h3 { font-size: 42px; max-width: 430px; }
    .catalog-card p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 14px; max-width: 490px; }
    .large p, .coral p { color: rgba(255,255,255,.65); }
    .card-arrow { position: absolute; right: 24px; top: 23px; font-size: 21px; transition: transform 160ms var(--ease-out); }
    .card-orbit { position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); right: -90px; top: -110px; box-shadow: 0 0 0 56px rgba(255,255,255,.025), 0 0 0 112px rgba(255,255,255,.018); }
    .catalog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(21,32,59,.09); border-color: rgba(21,32,59,.3); }
    .catalog-card:hover .card-arrow { transform: translateX(4px); }

    .city-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
    .city-card { min-height: 390px; grid-column: span 4; position: relative; border-radius: var(--radius); overflow: hidden; color: white; background: var(--ink); }
    .city-card:nth-child(4), .city-card:nth-child(5), .city-card:nth-child(6) { min-height: 300px; }
    .city-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 260ms var(--ease-out); }
    .city-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,13,25,.88), rgba(8,13,25,.06) 68%); }
    .city-body { position: absolute; z-index: 2; inset: auto 25px 24px; }
    .city-region { color: rgba(255,255,255,.67); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
    .city-card h3 { margin: 8px 0 8px; font: 600 29px "Manrope", sans-serif; letter-spacing: -.04em; }
    .city-meta { display: inline-flex; border-radius: 999px; padding: 6px 10px; background: rgba(255,255,255,.13); backdrop-filter: blur(9px); font-size: 11px; }
    .city-card:hover .city-image { transform: scale(1.035); }
    .section-link { display: inline-flex; gap: 8px; margin-top: 28px; font-weight: 600; border-bottom: 1px solid currentColor; }

    .regions-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 76px; align-items: start; }
    .regions-intro { position: sticky; top: 118px; }
    .regions-intro h2 { margin: 18px 0; font: 600 clamp(39px, 4.2vw, 58px)/1.02 "Manrope", sans-serif; letter-spacing: -.05em; }
    .regions-intro p { color: rgba(255,255,255,.59); font-size: 16px; line-height: 1.6; }
    .region-list { border-top: 1px solid var(--line-light); }
    .region-row { display: grid; grid-template-columns: 35px 1fr auto; gap: 18px; align-items: start; padding: 25px 0; border-bottom: 1px solid var(--line-light); }
    .region-number { color: rgba(255,255,255,.38); font: 500 11px "Manrope"; padding-top: 7px; }
    .region-row h3 { margin: 0 0 8px; font: 600 23px "Manrope"; letter-spacing: -.035em; }
    .region-row p { max-width: 610px; margin: 0; color: rgba(255,255,255,.52); font-size: 13px; line-height: 1.5; }
    .region-meta { display: flex; gap: 6px; padding-top: 3px; }
    .region-meta span { white-space: nowrap; padding: 6px 9px; border: 1px solid var(--line-light); border-radius: 99px; color: rgba(255,255,255,.7); font-size: 10px; }

    .b2b-wrap { padding: 34px 0 108px; background: var(--paper-light); }
    .b2b-card { min-height: 480px; border-radius: 28px; display: grid; grid-template-columns: 1fr .88fr; overflow: hidden; background: var(--coral); color: white; }
    .b2b-copy { padding: 62px; display: flex; flex-direction: column; }
    .b2b-copy .kicker { color: rgba(255,255,255,.72); }
    .b2b-copy h2 { margin: 22px 0 20px; font: 600 clamp(40px, 4.5vw, 62px)/1.02 "Manrope"; letter-spacing: -.05em; }
    .b2b-copy p { max-width: 620px; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.6; }
    .b2b-copy .button { align-self: flex-start; margin-top: auto; }
    .b2b-services { background: rgba(255,255,255,.1); border-left: 1px solid rgba(255,255,255,.22); padding: 38px; display: grid; align-content: center; }
    .service-row { padding: 22px 2px; border-bottom: 1px solid rgba(255,255,255,.24); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
    .service-row:first-child { border-top: 1px solid rgba(255,255,255,.24); }
    .service-row b { font: 600 19px "Manrope"; }
    .service-row span { color: rgba(255,255,255,.7); font-size: 12px; }

    .method-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .method { min-height: 250px; padding: 27px 25px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
    .method:first-child { padding-left: 0; }
    .method:last-child { border-right: 0; }
    .method-number { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font: 600 12px "Manrope"; }
    .method h3 { min-height: 46px; margin: auto 0 10px; font: 600 19px/1.18 "Manrope"; letter-spacing: -.025em; }
    .method p { min-height: 78px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

    .site-footer { padding: 74px 0 42px; color: white; background: var(--ink); }
    .footer-top { display: grid; grid-template-columns: 1.1fr 1fr; align-items: end; gap: 70px; padding-bottom: 58px; border-bottom: 1px solid var(--line-light); }
    .footer-top h2 { margin: 0; font: 600 clamp(37px, 4vw, 54px)/1.05 "Manrope"; letter-spacing: -.045em; }
    .footer-top-action { justify-self: end; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; padding: 48px 0; }
    .footer-logo { width: 190px; filter: brightness(0) invert(1); }
    .footer-note { max-width: 300px; margin-top: 20px; color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.55; }
    .footer-column h3 { margin: 0 0 15px; color: rgba(255,255,255,.45); font: 600 11px "Manrope"; text-transform: uppercase; letter-spacing: .1em; }
    .footer-column { display: grid; align-content: start; gap: 8px; font-size: 13px; }
    .footer-column a { color: rgba(255,255,255,.75); }
    .footer-column a:hover { color: white; }
    .footer-bottom { padding-top: 24px; border-top: 1px solid var(--line-light); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.42); font-size: 11px; }

    @media (hover: hover) and (pointer: fine) {
      .atlas-stat:hover, .catalog-card:hover, .city-card:hover { will-change: transform; }
    }
    @media (max-width: 1040px) {
      .header-inner { grid-template-columns: 200px 1fr auto; }
      .site-nav { gap: 19px; }
      .hero-shell { grid-template-columns: 1fr; }
      .hero-copy { min-height: 590px; }
      .atlas { min-height: 590px; }
      .catalog-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 230px 200px 200px; }
      .city-card { grid-column: span 6; }
      .city-card:nth-child(3) { grid-column: span 12; }
      .regions-layout { gap: 44px; }
      .b2b-card { grid-template-columns: 1fr; }
      .b2b-services { border-left: 0; border-top: 1px solid rgba(255,255,255,.22); }
    }
    @media (max-width: 780px) {
      .container { width: min(100% - 28px, 1240px); }
      .site-header { height: 70px; }
      .header-inner { grid-template-columns: 1fr auto; }
      .logo { width: 155px; }
      .header-action { display: none; }
      .menu-button { display: block; }
      .site-nav {
        position: fixed; inset: 70px 0 auto; min-height: calc(100vh - 70px); padding: 44px 28px;
        display: flex; flex-direction: column; align-items: flex-start; gap: 24px;
        width: 100%; justify-self: stretch;
        background: var(--paper); font: 600 25px "Manrope";
        opacity: 0; transform: translateY(-10px); pointer-events: none;
        transition: opacity 180ms ease, transform 200ms var(--ease-out);
      }
      .site-header.menu-open .site-nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
      .hero { padding-top: 10px; }
      .breadcrumbs { display: none; }
      .hero-shell { border-radius: 20px; }
      .hero-copy { min-height: 620px; padding: 44px 26px 34px; }
      h1 { font-size: clamp(41px, 12vw, 58px); }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .hero-foot { flex-direction: column; gap: 10px; }
      .atlas { min-height: 520px; padding: 18px; }
      .atlas-visual { top: 54px; left: 0; right: 0; height: 270px; }
      .atlas-caption { left: 18px; top: 340px; right: 18px; }
      .atlas-stats { left: 17px; right: 17px; bottom: 17px; grid-template-columns: 1.4fr 1fr 1fr; }
      .atlas-stat { padding: 10px; }
      .atlas-stat span { font-size: 8px; }
      .atlas-stat strong { font-size: 17px; }
      .quick-nav { padding-bottom: 60px; }
      .quick-grid { grid-template-columns: 1fr; }
      .quick-link, .quick-link:first-child { min-height: 84px; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .quick-link:last-child { border-bottom: 0; }
      .section { padding: 76px 0; }
      .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
      .catalog-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
      .catalog-card, .catalog-card.large, .catalog-card.wide { grid-column: auto; grid-row: auto; min-height: 205px; }
      .catalog-card.large { min-height: 340px; }
      .catalog-card.large h3 { font-size: 34px; }
      .city-grid { grid-template-columns: 1fr; }
      .city-card, .city-card:nth-child(3), .city-card:nth-child(4), .city-card:nth-child(5), .city-card:nth-child(6) { grid-column: auto; min-height: 340px; }
      .regions-layout { grid-template-columns: 1fr; }
      .regions-intro { position: static; }
      .region-row { grid-template-columns: 28px 1fr; }
      .region-meta { grid-column: 2; }
      .b2b-copy { padding: 40px 25px; min-height: 520px; }
      .b2b-services { padding: 25px; }
      .method-grid { grid-template-columns: 1fr; }
      .method, .method:first-child { min-height: 200px; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .method:last-child { border-bottom: 0; }
      .method h3, .method p { min-height: 0; }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .footer-top-action { justify-self: start; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: span 2; }
      .footer-bottom { flex-direction: column; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    }
