:root {
    --navy: #0D1B4B;
    --navy-light: #152260;
    --red: #C0392B;
    --red-light: #E74C3C;
    --white: #FFFFFF;
    --gray: #F4F6FB;
    --gray-text: #8892A4;
    --border: #1E2E6B;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white);
    height: 90px;
    display: flex; align-items: stretch;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }

  .nav-left-spacer {
    width: 5%;
    background: var(--white);
    flex-shrink: 0;
  }

  nav::before { display: none; }
  nav::after { display: none; }

  .nav-logo-block {
    background: var(--navy);
    display: flex; align-items: center;
    padding: 0 48px 0 48px;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
  }

  .nav-logo-block::after {
    content: '';
    position: absolute; right: -36px; top: 0;
    width: 0; height: 0;
    border-top: 90px solid var(--navy);
    border-right: 36px solid transparent;
  }

  .nav-menu-block {
    flex: 1;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px 0 96px;
  }

  .nav-bike-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
  }

  .nav-bike-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.15;
  }

  .nav-menu-block { position: relative; z-index: 1; }

  .logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .nav-logo-link {
    display: flex;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 14px;
  }

  .nav-logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: var(--white);
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .nav-logo-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    margin-top: 2px;
    letter-spacing: 0.2px;
  }

  .logo-img-wrap {
    width: 48px; height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .logo-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  .logo-box {
    width: 56px; height: 56px;
    background: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 4px;
    flex-shrink: 0;
  }

  .logo-text-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px; font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: 0.5px;
    text-align: center;
  }

  .logo-line {
    width: 30px; height: 2px;
    background: var(--red);
    margin: 2px 0;
  }

  .logo-text-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 7px; font-weight: 900;
    color: var(--navy);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .logo-name {
    display: flex; flex-direction: column;
    margin-left: 8px;
  }

  .nav-logo-block .logo-name span:first-child {
    color: var(--white) !important;
  }

  .nav-logo-block .logo-name span:last-child {
    color: rgba(255,255,255,0.8) !important;
  }

  .logo-name span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; font-size: 12px;
    color: var(--white) !important;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .logo-name span:last-child {
    font-size: 11px; color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    display: block;
  }

  .nav-links {
    display: flex; gap: 8px; list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: var(--navy);
    text-decoration: none !important;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
  }

  .nav-links a:hover {
    background: var(--red) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(192,57,43,0.4);
    text-decoration: none !important;
  }




  .nav-social {
    color: var(--navy) !important;
    font-size: 18px !important;
    padding: 6px !important;
    border-radius: 6px;
    transition: background 0.2s !important;
  }

  .nav-social:hover {
    background: rgba(13,27,75,0.08) !important;
    color: var(--navy) !important;
  }

  .nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--red-light) !important; }

  .burger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
  }

  .burger span {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: transparent;
    display: flex; align-items: center;
    padding: 120px 5% 60px;
    position: relative;
  }

  .hero-card-wrapper {
    background: var(--navy);
    border-radius: 24px;
    padding: 60px 56px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(13,27,75,0.25);
  }

  .hero::before {
    content: '';
    position: absolute; top: -200px; right: -100px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(192,57,43,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero::after {
    content: '';
    position: absolute; bottom: -100px; left: 20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative; z-index: 1;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(192,57,43,0.15);
    border: 1px solid rgba(192,57,43,0.3);
    color: #E87B6F;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
  }

  .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--red);
    display: block;
  }

  .hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-lang {
    display: flex; gap: 8px; margin-bottom: 16px;
    animation: fadeUp 0.6s 0.25s ease both;
  }

  .lang-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .lang-badge:hover { opacity: 0.75; }

  .lang-ru { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
  .lang-pl { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6); }

  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700; font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }

  .btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192,57,43,0.4);
  }

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600; font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
  }

  .btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
  }

  /* Hero right — card */
  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
  }

  .service-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 16px;
  }

  .service-list li {
    display: flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .service-list li:last-child { border-bottom: none; padding-bottom: 0; }

  .service-icon {
    width: 40px; height: 40px;
    background: rgba(192,57,43,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 28px;
  }

  .stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px; font-weight: 900;
    color: var(--white);
  }

  .stat-num span { color: var(--red); }

  .stat-label {
    font-size: 11px;
    color: var(--gray-text);
    margin-top: 4px;
    line-height: 1.4;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--gray);
    padding: 28px 5%;
    border-bottom: 1px solid #E5EAF3;
  }

  .trust-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
  }

  .trust-item {
    display: flex; align-items: center; gap: 10px;
    color: var(--navy);
    font-size: 14px; font-weight: 600;
  }

  .trust-icon {
    width: 32px; height: 32px;
    background: var(--navy);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
  }

  /* ── SECTIONS ── */
  section { padding: 100px 5%; }

  .section-inner {
    max-width: 1200px; margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 520px;
  }

  /* ── SERVICES ── */
  #uslugi { background: var(--white); }

  .services-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 60px;
    flex-wrap: wrap; gap: 24px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--gray);
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--red);
    transition: height 0.3s;
  }

  .service-card:hover {
    border-color: rgba(192,57,43,0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(13,27,75,0.08);
  }

  .service-card:hover::before { height: 100%; }

  .service-card-icon {
    font-size: 32px; margin-bottom: 20px;
  }

  .service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px; font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
  }

  /* ── WHY US ── */
  #o-nas { background: var(--navy); }

  #o-nas .section-title { color: var(--navy); }
  #o-nas .section-label { color: #E87B6F; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-text .section-sub {
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
  }

  .about-points {
    display: flex; flex-direction: column; gap: 20px;
  }

  .about-point {
    display: flex; gap: 16px; align-items: flex-start;
  }

  .point-num {
    width: 36px; height: 36px;
    background: var(--red);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; font-size: 14px;
    color: var(--white);
    flex-shrink: 0;
  }

  .point-content h4 {
    font-weight: 700; font-size: 15px;
    color: var(--white); margin-bottom: 4px;
  }

  .point-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }

  .about-visual {
    position: relative;
  }

  .director-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
  }

  .director-avatar {
    width: 120px; height: 120px;
    background: linear-gradient(135deg, var(--red) 0%, #8B1A14 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--white);
  }

  .director-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 20px;
    color: var(--white);
    margin-bottom: 6px;
  }

  .director-title {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 24px;
  }

  .director-quote {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding: 8px 16px 0 16px;
  }

  .director-quote::before {
    content: '"';
    position: absolute; top: 0; left: 0;
    font-size: 28px; line-height: 1;
    color: var(--red);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
  }

  /* ── ARTICLES ── */
  #stati { background: var(--gray); }

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

  .articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .article-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5EAF3;
    transition: all 0.3s;
  }

  .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(13,27,75,0.08);
    border-color: rgba(192,57,43,0.2);
  }

  .article-top {
    background: var(--navy);
    padding: 28px;
    position: relative;
  }

  .article-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }

  .article-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 17px;
    color: var(--white);
    line-height: 1.35;
  }

  .article-body {
    padding: 24px 28px;
  }

  .article-excerpt {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .article-meta {
    display: flex; justify-content: space-between;
    align-items: center;
  }

  .article-date {
    font-size: 12px;
    color: var(--gray-text);
  }

  .article-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    display: flex; align-items: center; gap: 4px;
    transition: gap 0.2s;
  }

  .article-link:hover { gap: 8px; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: var(--red);
    padding: 80px 5%;
  }

  .cta-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }

  .cta-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
  }

  .cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
  }

  .btn-white {
    background: var(--white);
    color: var(--red);
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 800; font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }

  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  /* ── CONTACTS ── */
  #kontakty { background: var(--white); }

  .contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-items {
    display: flex; flex-direction: column; gap: 20px;
    margin-top: 32px;
  }

  .contact-item {
    display: flex; gap: 16px; align-items: center;
    padding: 20px 24px;
    background: var(--gray);
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    transition: all 0.2s;
  }

  .contact-item:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateX(4px);
  }

  .contact-item:hover .contact-label { color: rgba(255,255,255,0.6); }

  .contact-ico {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .contact-item:hover .contact-ico {
    background: var(--red);
  }

  .contact-label {
    font-size: 12px; color: var(--gray-text);
    margin-bottom: 2px;
    transition: color 0.2s;
  }

  .contact-value {
    font-weight: 700; font-size: 15px;
  }

  /* Form */
  .contact-form {
    background: var(--navy);
    border-radius: 20px;
    padding: 48px 40px;
  }

  .form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
  }

  .form-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--red);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-group select option { background: var(--navy); }

  .form-submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700; font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--red-light);
    transform: translateY(-2px);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 60px 5% 32px;
  }

  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
  }

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

  .social-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 12px; font-weight: 600;
    transition: all 0.2s;
  }

  .social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
  }

  .footer-about p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
  }

  .footer-col h4 {
    font-weight: 700; font-size: 13px;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

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

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

  .footer-links a:hover { color: var(--red) !important; }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
  }

  .footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
  }

  .footer-langs {
    display: flex; gap: 8px;
  }

  .footer-lang {
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
  }

  .footer-lang:hover, .footer-lang.active {
    border-color: var(--red);
    color: var(--white);
  }

  /* ── HERO IMAGES ── */
  .hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 500px;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-img-main {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--navy);
  }

  .hero-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 45%;
    filter: brightness(0.92);
    display: block;
  }

  .hero-img-bike {
    border-radius: 16px;
    overflow: hidden;
  }

  .hero-img-bike img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
  }

  .director-avatar-photo {
    width: 170px; height: 170px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--red);
  }

  .director-avatar-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
  }


  /* ── PRICING ── */
  .price-block {
    background: var(--gray);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid #E5EAF3;
  }

  .price-block-header {
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    padding: 18px 28px;
    letter-spacing: 0.3px;
  }

  .price-table {
    padding: 0 28px;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #E5EAF3;
    font-size: 14px;
    color: var(--navy);
  }

  .price-row:last-child { border-bottom: none; }

  .price-row-head {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-text);
    padding-top: 16px;
  }

  .price-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--red);
    white-space: nowrap;
  }

  .price-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 24px;
    margin-top: 24px;
  }

  .price-card {
    background: var(--gray);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5EAF3;
  }

  .price-card-header {
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    padding: 16px 20px;
  }

  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #E5EAF3;
    font-size: 13px;
    color: var(--navy);
    gap: 12px;
  }

  .price-item:last-child { border-bottom: none; }

  .price-item span:last-child {
    font-weight: 700;
    color: var(--red);
    white-space: nowrap;
    font-size: 13px;
  }

  .price-item small {
    font-size: 11px;
    color: var(--gray-text);
    display: block;
    margin-top: 2px;
  }

  .price-big {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px !important;
    font-weight: 900 !important;
  }

  .price-item-big {
    padding: 20px;
    align-items: center;
  }

  .price-note {
    margin-top: 32px;
    background: var(--gray);
    border-radius: 12px;
    padding: 20px 28px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border: 1px solid #E5EAF3;
  }

  @media (max-width: 900px) {
    .price-grid-3 { grid-template-columns: 1fr; }
  }


  /* ── TEAM CAROUSEL ── */
  .team-carousel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
  }

  .team-slide {
    display: none;
    animation: fadeUp 0.4s ease;
  }

  .team-slide.active { display: block; }

  .team-photo {
    width: 190px; height: 190px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--red);
  }

  .team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
  }

  .team-slide:nth-child(2) .team-photo img {
    object-position: center 35%;
    transform: scale(1.25);
    transform-origin: center 35%;
  }

  .team-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 20px;
    color: var(--white);
    margin-bottom: 6px;
  }

  .team-title {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 24px;
  }

  .team-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .team-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
  }

  .team-btn:hover {
    background: var(--red);
    border-color: var(--red);
  }

  .team-dots { display: flex; gap: 8px; }

  .team-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s;
  }

  .team-dot.active { background: var(--red); }


  /* ── FLOATING CTA ── */
  .floating-cta {
    position: fixed;
    right: 24px;
    bottom: 48px;
    z-index: 999;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    gap: 12px;
    background: var(--red);
    color: var(--white);
    padding: 11px 18px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(192,57,43,0.55);
    font-weight: 800;
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    animation: floatPulse 2.5s ease-in-out infinite;
  }

  @keyframes floatPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(192,57,43,0.55); }
    50% { box-shadow: 0 8px 48px rgba(192,57,43,0.85); }
  }

  .floating-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .floating-cta:hover {
    background: var(--red-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(192,57,43,0.7);
  }

  .floating-icon {
    font-size: 17px;
    flex-shrink: 0;
  }

  .floating-text {
    white-space: nowrap;
    letter-spacing: 0.3px;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── TABLET ── */
  @media (max-width: 1100px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .burger { display: flex; }

    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 68px; left: 0; right: 0;
      background: rgba(13,27,75,0.98);
      padding: 24px 5%;
      gap: 20px;
      border-bottom: 1px solid var(--border);
    }

    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-images { display: none; }
    .hero { min-height: auto; padding-top: 100px; }

    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .articles-grid { grid-template-columns: 1fr; }
    .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-inner { flex-direction: column; text-align: center; }

    section { padding: 70px 5%; }
  }
