
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --black:          #111111;
      --black-soft:     #1E1E1E;
      --yellow:         #F5C021;
      --yellow-light:   #FEF7DC;
      --yellow-border:  #EDD96B;
      --bg:             #F4F3F0;
      --bg-card:        #FFFFFF;
      --bg-subtle:      #F9F8F6;
      --border:         #EBEBEB;
      --border-soft:    #F0EFED;
      --text-primary:   #111111;
      --text-secondary: #6B6A67;
      --text-muted:     #A8A7A4;
      --green:          #16A34A;
      --green-bg:       #F0FDF4;
      --green-border:   #BBF7D0;
      --blue:           #2563EB;
      --blue-bg:        #EFF6FF;
      --blue-border:    #BFDBFE;
      --orange:         #EA580C;
      --orange-bg:      #FFF7ED;
      --shadow-sm:      0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
      --shadow-md:      0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
      --shadow-lg:      0 8px 32px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.05);
      --shadow-btn:     0 4px 14px rgba(0,0,0,0.18);
      --shadow-btn-hover: 0 6px 20px rgba(0,0,0,0.26);
      --r-sm:  8px;
      --r-md:  12px;
      --r-lg:  16px;
      --r-xl:  20px;
      --r-pill: 100px;
    }

    html { -webkit-font-smoothing: antialiased; }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      font-size: 16px;
      line-height: 1.5;
    }

    .container {
      max-width: 1024px;
      padding-left: 20px;
      padding-right: 20px;
      margin-left: auto;
      margin-right: auto;
    }

    section { margin-bottom: 40px; }

    /* ── HEADER & NAV ── */
    header {
      background: var(--bg-card);
      border-bottom: 1px solid var(--border-soft);
      position: sticky;
      top: 0;
      z-index: 100;
      margin-bottom: 24px;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.1rem 0;
    }

    .logo img { max-width: 110px; height: auto; }

    .lang-toggle { display: flex; gap: 4px; }

    .lb {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-muted);
      padding: 5px 14px;
      border-radius: var(--r-pill);
      font-size: 14px;
      font-family: 'DM Mono', monospace;
      cursor: pointer;
      transition: all 0.15s ease;
      letter-spacing: 0.3px;
    }
    .lb:hover { border-color: var(--text-secondary); color: var(--text-primary); }
    .lb.active { background: var(--black); border-color: var(--black); color: #fff; }

    /* ── HERO ── */
    .hero {
      background: var(--bg-card);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      border: 1px solid var(--border-soft);
    }

    .hero-top { padding: 2.25rem 2rem 2rem; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--yellow-light);
      border: 1px solid var(--yellow-border);
      color: #7A5F00;
      font-size: 13px;
      font-weight: 500;
      padding: 5px 13px;
      border-radius: var(--r-pill);
      margin-bottom: 1.5rem;
    }

    .pulse {
      width: 7px; height: 7px;
      background: #22C55E;
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

    .hero h1 {
      font-size: clamp(2rem, 4.5vw, 3.6rem);
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: -1px;
      margin-bottom: 1rem;
    }
    .hero h1 .muted { color: var(--yellow); font-weight: 700; font-style: normal; }

    .hero-desc {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 1.75rem;
      max-width: 460px;
    }

    .trust-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.75rem; }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--bg-subtle);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      padding: 5px 12px;
      font-size: 13px;
      color: var(--text-secondary);
      font-weight: 500;
    }
    .trust-pill svg { flex-shrink: 0; width: 13px; height: 13px; }

    .btns-call { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; }

    .btn-style {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 1;
      min-height: 52px;
      padding: 0 20px;
      border-radius: var(--r-md);
      font-size: 0.95rem;
      font-weight: 600;
      font-family: inherit;
      letter-spacing: -0.2px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      white-space: nowrap;
    }

    .btn-call {
      background: var(--black);
      color: #fff;
      box-shadow: var(--shadow-btn);
    }
    .btn-call:hover { transform: translateY(-1px); box-shadow: var(--shadow-btn-hover); background: var(--black-soft); }

    .btn-wa {
      background: var(--bg-card);
      color: var(--text-primary);
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .btn-wa:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); border-color: var(--text-muted); }

    .phone-strip {
      border-top: 1px solid var(--border-soft);
      background: var(--bg-subtle);
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .phone-left { display: flex; align-items: center; gap: 10px; }
    .phone-num { font-family: 'DM Mono', monospace; font-size: 1.05rem; font-weight: 500; letter-spacing: 0.5px; }

    .copy-btn {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      padding: 6px 14px;
      font-size: 12px;
      color: var(--text-secondary);
      cursor: pointer;
      font-family: 'DM Mono', monospace;
      transition: all 0.15s;
    }
    .copy-btn:hover { background: var(--yellow-light); border-color: var(--yellow-border); color: var(--text-primary); }

    /* ── AIRPORTS ── */
    .airports-card {
      background: var(--bg-card);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      border: 1px solid var(--border-soft);
    }

    .airports-header {
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border-soft);
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--bg-subtle);
    }

    .airports-icon-wrap {
      width: 40px; height: 40px;
      background: var(--blue-bg);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      border: 1px solid var(--blue-border);
    }

    .airports-header-text strong { font-size: 0.95rem; font-weight: 600; display: block; }
    .airports-header-text p { font-size: 14px; color: var(--text-secondary); margin-top: 2px; }

    .airport-list { padding: 4px 0; }

    .airport-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0.95rem 1.5rem;
      border-bottom: 1px solid var(--border-soft);
      transition: background 0.1s;
    }
    .airport-row:last-child { border-bottom: none; }
    .airport-row:hover { background: var(--bg-subtle); }

    .airport-flag { font-size: 1.4rem; flex-shrink: 0; width: 30px; text-align: center; line-height: 1; }
    .airport-info { flex: 1; min-width: 0; }
    .airport-name { font-size: 0.9rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .airport-code { font-family: 'DM Mono', monospace; font-size: 14px; color: var(--text-muted); margin-top: 2px; }

    .airport-tag {
      font-size: 11px; font-weight: 500;
      padding: 4px 9px; border-radius: var(--r-sm);
      background: var(--blue-bg); color: var(--blue); border: 1px solid var(--blue-border);
      white-space: nowrap; flex-shrink: 0;
      font-family: 'DM Mono', monospace;
    }
    .airport-tag.int { background: var(--green-bg); color: var(--green); border-color: var(--green-border); font-family: inherit; }

    .airport-row--custom { background: var(--bg-subtle); border-top: 1px dashed var(--border); }
    .airport-row--custom:hover { background: var(--yellow-light); }
    .airport-tag--ask { background: var(--yellow-light); color: #7A5F00; border-color: var(--yellow-border); font-family: inherit; letter-spacing: 0; }

    /* ── SECTIONS ── */
    .sec-label { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.3px; margin-bottom: 14px; }

    /* ── STEPS ── */
    .steps { display: flex; flex-direction: column; gap: 12px; }

    .step {
      background: var(--bg-card);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-soft);
      padding: 1.1rem 1.25rem;
      display: flex; align-items: center; gap: 1rem;
      transition: box-shadow 0.15s;
    }
    .step:hover { box-shadow: var(--shadow-lg); }

    .step-icon { width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .step-text strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 3px; }
    .step-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.5; }

    /* ── INFO CARDS ── */
    .info-row { display: flex; gap: 12px; }

    .info-card {
      flex: 1;
      background: var(--bg-card);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-soft);
      padding: 1.25rem 0.75rem;
      text-align: center;
      transition: box-shadow 0.15s, transform 0.15s;
    }
    .info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }

    .info-icon { width: 36px; height: 36px; margin: 0 auto 10px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
    .info-card strong { font-size: 1.05rem; font-weight: 700; display: block; letter-spacing: -0.3px; }
    .info-card p { font-size: 16px; color: var(--text-muted); margin-top: 3px; font-weight: 500; }

    /* ── ZONES ── */
    .zones { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }

    .zone {
      background: var(--bg-card);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-soft);
      padding: 1.25rem 0.75rem 1.1rem;
      text-align: center;
      transition: box-shadow 0.15s, transform 0.15s;
    }
    .zone:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }

    .zone-flag { font-size: 1.75rem; display: block; margin-bottom: 6px; line-height: 1; }
    .zone-name { font-size: 0.85rem; font-weight: 600; }
    .zone-icon { margin-top: 10px; display: flex; justify-content: center; }

    /* ── LANGUAGES ── */
    .langs { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }

    .lang-card {
      background: var(--bg-card);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-soft);
      padding: 1.25rem 0.75rem 1.1rem;
      text-align: center;
      transition: box-shadow 0.15s, transform 0.15s;
    }
    .lang-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }

    .lang-flag { font-size: 1.75rem; display: block; margin-bottom: 7px; line-height: 1; }
    .lang-name { font-size: 0.88rem; font-weight: 600; }
    .lang-sub { font-size: 16px; color: var(--text-muted); margin-top: 3px; font-family: 'DM Mono', monospace; }
    .lang-icon { margin-top: 10px; display: flex; justify-content: center; }

    /* ── FOOTER ── */
    footer {
      background: var(--bg-card);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-soft);
      overflow: hidden;
    }

    .footer__inner {
      padding: 2.25rem 2rem 2rem;
      text-align: center;
    }

    footer .big-num {
      font-family: 'DM Mono', monospace;
      font-size: 1.6rem;
      font-weight: 500;
      display: block;
      color: var(--text-primary);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }

    footer p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; }

    .footer__cta {
      display: flex;
      gap: 12px;
      margin-top: 1.5rem;
      justify-content: center;
    }

    .footer__icon-btn {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--black);
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-btn);
      transition: transform 0.15s, box-shadow 0.15s;
      flex-shrink: 0;
      text-decoration: none;
    }
    .footer__icon-btn--wa { background: #25D366; }
    .footer__icon-btn--viber { background: #7360F2; }
    .footer__icon-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-btn-hover); }

    /* ── TRANSLATIONS ── */
    .t  { display: none; } .t.active  { display: block; }
    .ti { display: none; } .ti.active { display: inline; }

    /* ── RESPONSIVE ── */

    @media (max-width: 768px) {
        .info-row {
            flex-direction: column;
        }

        .zones, .langs {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 600px) {
      .hero-top { padding: 1.5rem 1.25rem 1.25rem; }
      .phone-strip { padding: 0.9rem 1.25rem; }
      .airport-row { padding: 0.85rem 1.25rem; }
      .hero h1 { font-size: 2rem; letter-spacing: -0.5px; }
      .btns-call { flex-direction: column; }
      .btn-style { flex: unset; width: 100%; }
      .airport-name { font-size: 0.82rem; }
    }

    @media (max-width: 400px) {
      .container { padding-left: 14px; padding-right: 14px; }
      .hero-top { padding: 1.25rem 1rem 1rem; }
      .airports-header { padding: 1rem 1.25rem; }
      .airport-row { padding: 0.8rem 1rem; gap: 10px; }
      .phone-strip { padding: 0.85rem 1rem; }
      .footer__inner { padding: 1.75rem 1.25rem; }
    }

    @media (min-width: 768px) {
      section { margin-bottom: 48px; }
      .hero-top { padding: 2.75rem 2.5rem 2.25rem; }
      .phone-strip { padding: 1.1rem 2.5rem; }
      .sec-label { font-size: 1.5rem; }
    }