
      :root {
        --bg-main: #050509;
        --bg-elevated: #0f1017;
        --accent: #d6a654;
        --accent-soft: rgba(214, 166, 84, 0.15);
        --text-main: #f7f7f9;
        --text-muted: #a0a3b3;
        --border-subtle: rgba(255, 255, 255, 0.08);
        --radius-xl: 24px;
        --radius-lg: 18px;
        --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.65);
        --transition-fast: 0.25s ease;
        --max-width: 1180px;
      }



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

      body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
          "Roboto", "Segoe UI", sans-serif;
        background: radial-gradient(circle at top left, #191528 0, #050509 55%);
        color: var(--text-main);
        min-height: 100vh;
        -webkit-font-smoothing: antialiased;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      img {
        max-width: 100%;
        display: block;
      }

      .page {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 32px 20px 60px;
      }

      /* HEADER */
      header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
        gap: 18px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 14px;
      }

.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: auto;
  /* свободная ширина */
  height: 46px;
  /* фиксируем высоту под логотип */

  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.logo-placeholder img {
  height: 100%;
  width: auto;
  display: block;
}

      .brand-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }

      .brand-name {
        font-size: 18px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-weight: 600;
      }

      .brand-tagline {
        font-size: 13px;
        color: var(--text-muted);
      }

      .lang-switcher {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(5, 5, 12, 0.8);
        overflow: hidden;
        backdrop-filter: blur(14px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        font-size: 13px;
      }

      .lang-switcher button {
        border: none;
        background: transparent;
        padding: 7px 16px;
        color: var(--text-muted);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: background var(--transition-fast),
          color var(--transition-fast);
      }

      .lang-switcher button.active {
        background: rgba(214, 166, 84, 0.16);
        color: var(--text-main);
      }

      .lang-switcher i {
        font-size: 16px;
      }

      /* HERO */
      .hero {
        position: relative;
        border-radius: var(--radius-xl);
        padding: 34px 30px;
        background: linear-gradient(
            135deg,
            rgba(10, 10, 16, 0.95),
            rgba(6, 7, 16, 0.98)
          ),
          url("pic/1.jpg")
            center right / cover no-repeat;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: var(--shadow-soft);
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: 32px;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle at top left,
          rgba(214, 166, 84, 0.35),
          transparent 55%
        );
        mix-blend-mode: screen;
        opacity: 0.9;
        pointer-events: none;
      }

      .hero-left,
      .hero-right {
        position: relative;
        z-index: 1;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 5px 10px;
        border-radius: 999px;
        background: rgba(8, 8, 14, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 14px;
      }

      .eyebrow i {
        color: var(--accent);
        font-size: 16px;
      }

      .hero-title {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 16px;
      }

      .hero-title span {
        color: var(--accent);
      }

      .hero-subtitle {
        color: var(--text-muted);
        font-size: 14px;
        max-width: 460px;
        margin-bottom: 20px;
      }

      .hero-cta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 18px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border-radius: 999px;
        padding: 10px 20px;
        border: 1px solid transparent;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        transition: background var(--transition-fast),
          transform var(--transition-fast), box-shadow var(--transition-fast),
          border-color var(--transition-fast);
        background: transparent;
        color: var(--text-main);
      }

      .btn-primary {
        background: linear-gradient(135deg, #e0b664, #d0903c);
        color: #120b02;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
      }

      .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95);
      }

      .btn-ghost {
        border-color: rgba(255, 255, 255, 0.22);
        background: rgba(8, 8, 16, 0.8);
        color: var(--text-main);
      }

      .btn-ghost:hover {
        background: rgba(214, 166, 84, 0.12);
        border-color: rgba(214, 166, 84, 0.55);
      }

      .btn i {
        font-size: 18px;
      }

      .hero-note {
        font-size: 12px;
        color: var(--text-muted);
      }

      .hero-note span {
        color: var(--accent);
      }

      /* FIXED STATS BLOCK (no overlapping) */
      .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
      }

      .stat-pill {
        flex: 0 0 auto;
        border-radius: 999px;
        padding: 8px 14px;
        background: rgba(5, 5, 12, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 12px;
        color: var(--text-muted);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        backdrop-filter: blur(10px);
      }

      .stat-pill i {
        color: var(--accent);
        font-size: 16px;
      }

      /* HERO RIGHT CARD */
      .hero-card {
        border-radius: 20px;
        background: rgba(7, 6, 14, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 18px 18px 16px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-height: 260px;
      }

      .hero-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
      }

      .hero-card-title {
        font-size: 16px;
        font-weight: 500;
      }

      .hero-card-chip {
        border-radius: 999px;
        padding: 6px 11px;
        font-size: 11px;
        border: 1px solid rgba(214, 166, 84, 0.6);
        color: var(--accent);
        background: rgba(214, 166, 84, 0.12);
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .hero-card-chip i {
        font-size: 14px;
      }

      .hero-car-preview {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        height: 150px;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.8)
          ),
          url("pic/2.jpg")
            center center / cover no-repeat;
      }

      .hero-car-overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle at top right,
          rgba(20, 16, 36, 0.7),
          transparent 60%
        );
      }

      .hero-car-label {
        position: absolute;
        left: 12px;
        bottom: 12px;
        padding: 6px 10px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(3, 3, 6, 0.75);
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .hero-car-label i {
        color: var(--accent);
        font-size: 14px;
      }

      .hero-card-details {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        font-size: 11px;
      }

      .meta-label {
        color: var(--text-muted);
        margin-bottom: 2px;
      }

      .meta-value {
        font-weight: 500;
        font-size: 12px;
      }

      .hero-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-size: 11px;
      }

      .hero-card-footer span {
        color: var(--text-muted);
      }

      .hero-card-footer strong {
        color: var(--accent);
      }

      .hero-card-footer i {
        font-size: 16px;
        color: var(--accent);
      }

      /* FLEET SECTION */
      section {
        margin-top: 46px;
      }

      .section-heading {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 14px;
        margin-bottom: 20px;
      }

      .section-title {
        font-size: 18px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .section-subtitle {
        font-size: 13px;
        color: var(--text-muted);
        max-width: 420px;
      }

      .fleet-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
      }

      .fleet-card {
        border-radius: var(--radius-lg);
        position: relative;
        overflow: hidden;
        background: radial-gradient(circle at top left, #232330, #050509);
        border: 1px solid var(--border-subtle);
        min-height: 170px;
        display: flex;
        align-items: flex-end;
        padding: 14px;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
        isolation: isolate;
      }

      .fleet-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.6;
        transition: transform 0.8s ease, opacity 0.3s ease;
        z-index: -2;
      }

      .fleet-card:nth-child(1)::before {
        background-image: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.3),
            rgba(5, 5, 12, 0.9)
          ),
          url("pic/3.jpg");
      }

      .fleet-card:nth-child(2)::before {
        background-image: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.3),
            rgba(5, 5, 12, 0.9)
          ),
          url("pic/4.jpg");
      }

      .fleet-card:nth-child(3)::before {
        background-image: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.35),
            rgba(5, 5, 16, 0.95)
          ),
          url("pic/5.jpg");
        filter: saturate(1.1);
      }

      .fleet-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(3, 3, 6, 0.95),
          transparent 55%
        );
        z-index: -1;
      }

      .fleet-card:hover::before {
        transform: scale(1.08);
        opacity: 0.9;
      }

      .fleet-title {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 4px;
      }

      .fleet-meta {
        font-size: 12px;
        color: var(--text-muted);
      }

      .fleet-chip {
        margin-top: 6px;
        border-radius: 999px;
        padding: 5px 9px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(7, 7, 13, 0.85);
        color: var(--accent);
      }

      .fleet-chip i {
        font-size: 14px;
      }

      /* PROCESS SECTION */
      .process-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
      }

      .process-card {
        border-radius: var(--radius-lg);
        padding: 18px 16px 16px;
        background: #080812;
        border: 1px solid var(--border-subtle);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
      }

      .process-icon {
        width: 34px;
        height: 34px;
        border-radius: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-soft);
        color: var(--accent);
        margin-bottom: 4px;
      }

      .process-title {
        font-weight: 500;
        font-size: 14px;
      }

      .process-text {
        color: var(--text-muted);
        font-size: 13px;
      }

      /* CONTACT / FOOTER */
      .contact-card {
        border-radius: var(--radius-xl);
        padding: 22px 20px 20px;
        background: #05050c;
        border: 1px solid rgba(255, 255, 255, 0.12);
        margin-top: 38px;
        box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85);
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
        gap: 26px;
      }

      .contact-left-title {
        font-size: 18px;
        margin-bottom: 8px;
      }

      .contact-left-text {
        font-size: 13px;
        color: var(--text-muted);
      }

      .contact-list {
        list-style: none;
        display: grid;
        gap: 10px;
        font-size: 13px;
      }

      .contact-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-muted);
      }

      .contact-list i {
        color: var(--accent);
        font-size: 18px;
        flex-shrink: 0;
      }

      .contact-list strong {
        color: var(--text-main);
        font-weight: 500;
      }

      footer {
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 12px;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
      }

      .footer-links {
        display: inline-flex;
        gap: 16px;
        flex-wrap: wrap;
      }

      .footer-links a {
        color: var(--text-muted);
        position: relative;
      }

      .footer-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width var(--transition-fast);
      }

      .footer-links a:hover::after {
        width: 100%;
      }

      /* GDPR BANNER */
      .gdpr-banner {
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 560px;
        width: calc(100% - 40px);
        background: #05050a;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        padding: 12px 14px;
        font-size: 12px;
        color: var(--text-muted);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
        display: flex;
        align-items: flex-start;
        gap: 10px;
        z-index: 40;
        backdrop-filter: blur(16px);
      }

      .gdpr-banner i {
        font-size: 16px;
        color: var(--accent);
        margin-top: 2px;
        flex-shrink: 0;
      }

      .gdpr-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
      }

      .gdpr-actions button {
        border-radius: 999px;
        font-size: 11px;
        padding: 6px 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(8, 8, 14, 0.9);
        color: var(--text-main);
        cursor: pointer;
        transition: background var(--transition-fast),
          border-color var(--transition-fast);
      }

      .gdpr-actions button.primary {
        border-color: rgba(214, 166, 84, 0.6);
        background: rgba(214, 166, 84, 0.15);
        color: var(--accent);
      }

      .gdpr-actions button:hover {
        background: rgba(214, 166, 84, 0.22);
        border-color: rgba(214, 166, 84, 0.9);
      }

      /* ANIMATIONS */
      [data-animate="fade-up"] {
        opacity: 0;
        transform: translateY(14px);
        animation: fadeUp 0.8s ease forwards;
      }

      [data-animate="fade-up"][data-delay="1"] {
        animation-delay: 0.1s;
      }
      [data-animate="fade-up"][data-delay="2"] {
        animation-delay: 0.18s;
      }
      [data-animate="fade-up"][data-delay="3"] {
        animation-delay: 0.26s;
      }
      [data-animate="fade-up"][data-delay="4"] {
        animation-delay: 0.34s;
      }
      [data-animate="fade-up"][data-delay="5"] {
        animation-delay: 0.42s;
      }

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

      /* RESPONSIVE */
      @media (max-width: 900px) {
        .hero {
          grid-template-columns: minmax(0, 1fr);
          padding: 24px 20px;
        }
        .hero-card {
          order: -1;
        }
        .fleet-grid,
        .process-grid {
          grid-template-columns: minmax(0, 1fr);
        }
        .contact-card {
          grid-template-columns: minmax(0, 1fr);
        }
      }

      @media (max-width: 600px) {
        header {
          flex-direction: column;
          align-items: flex-start;
        }
        .hero-title {
          font-size: 26px;
        }
      }






            /* LEGAL PAGES (Terms, Privacy, Cookies) */
            .legal-layout {
              max-width: 880px;
              margin: 0 auto 40px;
            }
      
            .legal-card {
              border-radius: var(--radius-xl);
              background: #05050c;
              border: 1px solid rgba(255, 255, 255, 0.12);
              padding: 26px 24px 22px;
              box-shadow: 0 18px 55px rgba(0, 0, 0, 0.9);
              font-size: 14px;
              color: var(--text-muted);
            }
      
            .legal-card h1 {
              font-size: 22px;
              margin-bottom: 6px;
            }
      
            .legal-card .legal-subtitle {
              font-size: 13px;
              color: var(--text-muted);
              margin-bottom: 20px;
            }
      
            .legal-card h2 {
              font-size: 15px;
              margin-top: 18px;
              margin-bottom: 6px;
              color: var(--text-main);
            }
      
            .legal-card p {
              margin-bottom: 8px;
              line-height: 1.6;
            }
      
            .legal-card ul {
              margin: 6px 0 10px 1.2rem;
              padding: 0;
            }
      
            .legal-card ul li {
              margin-bottom: 4px;
            }
      
            .legal-meta {
              font-size: 12px;
              color: var(--text-muted);
              margin-bottom: 16px;
            }


                        .brand {
                          text-decoration: none;
                          color: inherit;
                          display: flex;
                          align-items: center;
                          gap: 12px;
                        }
            
                        .brand:hover {
                          opacity: 0.8;
                          transition: 0.2s;
                        }