﻿  :root {
    --white:    #F0F2F4;
    --beige:    #EDEAE4;
    --beige-lt: #F5F2EE;
    --navy:     #1B3A5C;
    --blue:     #2E5F8A;
    --taupe:    #8A8070;
    --dark:     #2C2F35;
    --sky:      #A8C8D8;
    --sky-light:#D0E5EE;
    --accent:   #2E5F8A;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--beige-lt);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ─── CURSOR ─── */
  .cursor {
    width: 10px; height: 10px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform .15s ease;
  }
  .cursor-ring {
    width: 34px; height: 34px;
    border: 1.5px solid var(--sky);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: transform .35s cubic-bezier(.23,1,.32,1), opacity .3s;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 15% 0 8%;
    height: 72px;
    background: rgba(27,58,92,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(168,200,216,.15);
    transform: translateY(-100%);
    animation: slideDown .7s .2s cubic-bezier(.23,1,.32,1) forwards;
  }
  @keyframes slideDown { to { transform: translateY(0); } }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--white);
    letter-spacing: 3px;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span { color: var(--sky); }

  .nav-links { display: flex; gap: 36px; }
  .nav-links a {
    color: rgba(240,242,244,.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color .3s;
  }
  .nav-links a:hover { color: var(--sky); }

  .nav-cta {
    background: var(--sky);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s, transform .2s;
  }
  .nav-cta:hover { background: var(--white); transform: translateY(-1px); }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding-left: 8%;
    padding-right: 8%;
  }

  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(168,200,216,.07) 60px),
      repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(168,200,216,.07) 60px);
    pointer-events: none;
  }
  .hero-bg-stripe {
    position: absolute; right: 0; top: 0;
    width: 50%; height: 100%;
    background: linear-gradient(135deg, rgba(46,95,138,.4) 0%, rgba(27,58,92,0) 60%);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }

  /* Plate decoration */
  .hero-plate-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInRight 1s .8s cubic-bezier(.23,1,.32,1) forwards;
  }
  .hero-plate-deco img {
    width: 100%;
    display: block;
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 80px 0;
    position: relative; z-index: 2;
  }

  .hero-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 24px;
    margin-left: 4px;
    opacity: 0;
    animation: fadeUp .7s .4s ease forwards;
  }
  .hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 7vw, 100px);
    line-height: .95;
    color: var(--white);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeUp .7s .55s ease forwards;
  }
  .hero-h1 em { color: var(--sky); font-style: normal; }
  .hero-sub {
    margin-top: 24px;
    font-size: 15px;
    font-weight: 300;
    color: rgba(240,242,244,.65);
    line-height: 1.7;
    max-width: 420px;
    opacity: 0;
    animation: fadeUp .7s .7s ease forwards;
  }

  .hero-btns {
    display: flex; gap: 16px; margin-top: 48px;
    opacity: 0; animation: fadeUp .7s .85s ease forwards;
  }
  .btn-primary {
    background: var(--sky);
    color: var(--navy);
    padding: 16px 36px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 8px 30px rgba(168,200,216,.3);
  }
  .btn-primary:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(168,200,216,.4); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(240,242,244,.3);
    cursor: pointer;
    transition: border-color .3s, color .3s, transform .2s;
  }
  .btn-outline:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-3px); }

  .hero-stats {
    display: flex; gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(168,200,216,.15);
    opacity: 0; animation: fadeUp .7s 1s ease forwards;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--sky);
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    color: rgba(240,242,244,.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
  }

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

  /* ─── MARQUEE BAND ─── */
  .marquee-band {
    background: var(--sky);
    overflow: hidden;
    padding: 14px 0;
    display: flex;
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    display: flex; align-items: center; gap: 20px;
  }
  .marquee-item::after { content: '◆'; font-size: 8px; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ─── SECTION SHARED ─── */
  section { padding: 100px 60px; }
  .section-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
    color: var(--navy);
  }
  .section-title em { color: var(--blue); font-style: normal; }

  /* ─── ABOUT ─── */
  #about {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  #about::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: url('../img/img.about-bg.jpg') center / cover no-repeat;
    filter: blur(10px);
    transform: scale(1.05);
    z-index: 0;
  }
  #about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 35, 0.78);
    z-index: 1;
  }
  .about-text { max-width: 860px; width: 100%; position: relative; z-index: 2; }
  #about .section-label { color: var(--sky); }
  #about .section-title {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
  }
  #about .section-title em { color: var(--sky); }
  .about-text p {
    margin-top: 24px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(240,242,244,.88);
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
  }
  .about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
  }
  .highlight-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.15);
    padding: 28px 24px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, background .3s;
  }
  .highlight-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.12);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
  }
  .highlight-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--sky);
  }
  .highlight-card .icon { font-size: 28px; margin-bottom: 12px; }
  .highlight-card h4 {
    font-size: 13px; font-weight: 700;
    color: var(--white); letter-spacing: .5px;
    margin-bottom: 6px;
  }
  .highlight-card p { font-size: 12px; color: rgba(240,242,244,.7); line-height: 1.6; }

  .about-visual {
    position: relative;
  }
  .about-big-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 220px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(46,95,138,.15);
    user-select: none;
    position: absolute;
    top: -30px; right: -40px;
    pointer-events: none;
  }
  .about-img-block {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: 6px;
    height: 380px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(27,58,92,.3);
  }
  .about-img-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,.02) 31px);
  }
  .plate-showcase {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
  }

  /* ─── SERVICES / PRODUCTS ─── */
  #products {
    background: var(--beige);
    padding-left: 8%;
    padding-right: 15%;
  }
  #products .section-label,
  #products .section-title { text-align: center; }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .product-card {
    background: var(--beige-lt);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(180,170,155,.25);
  }
  .product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(27,58,92,.22); border-color: rgba(168,200,216,.5); }
  .product-card:hover .pc-overlay { opacity: 1; }
  .pc-img {
    height: 220px;
    background: var(--beige);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .pc-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform .4s cubic-bezier(.23,1,.32,1);
  }
  .product-card:hover .pc-img img { transform: scale(1.04); }
  .pc-overlay {
    position: absolute; inset: 0;
    background: rgba(27,58,92,.55);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    backdrop-filter: blur(2px);
  }
  .pc-overlay span {
    background: var(--navy);
    color: var(--sky);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 4px;
  }
  .pc-body { padding: 20px 20px 24px; background: var(--beige-lt); }
  .pc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    color: var(--taupe);
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .pc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .pc-gost {
    font-size: 11px;
    color: var(--taupe);
    letter-spacing: .5px;
  }

  /* Plate SVG inside cards */
  .mini-plate {
    background: #fff;
    border-radius: 4px;
    padding: 8px 14px;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
  }
  .mini-plate .flag-col {
    width: 22px; background: var(--blue);
    border-radius: 2px; padding: 3px 0;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    font-size: 6px; color: white; font-weight: 700;
  }
  .mini-plate .plate-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #111;
    letter-spacing: 2px;
  }
  .mini-plate-sm { transform: scale(.75); }
  .mini-plate-moto { flex-direction: column; padding: 6px 10px; }
  .mini-plate-moto .plate-text { font-size: 18px; }

  /* ─── WHY US ─── */
  #why {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding-left: 8%;
    padding-right: 15%;
  }
  #why::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,200,216,.08) 0%, transparent 70%);
    pointer-events: none;
  }
  #why .section-title { color: var(--white); text-align: center; }
  #why .section-label { color: var(--sky); text-align: center; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
  }
  .why-card {
    border: 1px solid rgba(168,200,216,.15);
    border-radius: 6px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
    background: rgba(255,255,255,.03);
  }
  .why-card:hover { border-color: var(--sky); transform: translateY(-4px); }
  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--sky), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.23,1,.32,1);
  }
  .why-card:hover::before { transform: scaleX(1); }
  .why-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
  }
  .why-num {
    position: absolute;
    right: 24px; top: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(168,200,216,.08);
    line-height: 1;
  }
  .why-card h3 {
    font-size: 17px; font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: .3px;
  }
  .why-card p { font-size: 14px; color: rgba(240,242,244,.5); line-height: 1.7; }

  /* ─── PROCESS ─── */
  #process {
    background: var(--beige-lt);
    padding-left: 8%;
    padding-right: 15%;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 32px; left: 80px; right: 80px;
    height: 1px;
    background: linear-gradient(90deg, var(--sky), var(--blue), var(--navy));
  }
  .step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
  }
  .step-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--sky);
    margin-bottom: 28px;
    position: relative; z-index: 1;
    box-shadow: 0 8px 30px rgba(27,58,92,.3);
    transition: transform .3s, box-shadow .3s;
  }
  .step:hover .step-circle { transform: scale(1.1); box-shadow: 0 16px 40px rgba(27,58,92,.4); }
  .step h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .step p { font-size: 13px; color: #777; line-height: 1.65; }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--beige);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 8%;
    padding-right: 15%;
    gap: 80px;
    align-items: start;
  }
  .contact-info .section-title { margin-bottom: 40px; }

  .contact-item {
    display: flex; gap: 20px; align-items: flex-start;
    margin-bottom: 32px;
  }
  .contact-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--navy);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .contact-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--taupe); margin-bottom: 4px; }
  .contact-val { font-size: 17px; font-weight: 600; color: var(--navy); text-decoration: none; }
  .contact-val:hover { color: var(--blue); }

  .map-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27,58,92,.2);
    height: 380px;
  }
  .map-wrap iframe { width: 100%; height: 100%; border: none; }

  /* ─── ORDER FORM ─── */
  #order {
    background: var(--navy);
    text-align: center;
  }
  #order .section-label { color: var(--sky); }
  #order .section-title { color: var(--white); margin-bottom: 48px; }

  .form-wrap {
    max-width: 560px;
    margin: 0 auto;
    display: flex; flex-direction: column; gap: 16px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field {
    display: flex; flex-direction: column;
  }
  .form-field input, .form-field select, .form-field textarea {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(168,200,216,.2);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .3s, background .3s;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: rgba(240,242,244,.35); }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--sky);
    background: rgba(255,255,255,.1);
  }
  .form-field select { cursor: pointer; }
  .form-field select option { background: var(--navy); color: var(--white); }
  .form-field textarea { min-height: 100px; resize: vertical; }
  .form-submit {
    background: var(--sky);
    color: var(--navy);
    border: none;
    padding: 18px 48px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 8px 30px rgba(168,200,216,.25);
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(168,200,216,.35); }

  .form-note {
    font-size: 12px;
    color: rgba(240,242,244,.35);
    margin-top: 8px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    padding: 32px 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--white);
    letter-spacing: 3px;
  }
  .footer-logo span { color: var(--sky); }
  .footer-copy { font-size: 12px; color: rgba(240,242,244,.35); letter-spacing: .5px; }
  .footer-phone {
    font-size: 14px; font-weight: 600;
    color: var(--sky); text-decoration: none;
    transition: color .3s;
  }
  .footer-phone:hover { color: var(--white); }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.23,1,.32,1), transform .8s cubic-bezier(.23,1,.32,1);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 60px 24px; }
    #hero { grid-template-columns: 1fr; }
    .hero-plate-deco { display: none; }
    .hero-content { padding: 120px 24px 60px; }
    #about { grid-template-columns: 1fr; gap: 40px; }
    .about-big-num { display: none; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    #contact { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 12px; text-align: center; }
  }

  /* Toast */
  .toast {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid var(--sky);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    transform: translateY(100px); opacity: 0;
    transition: all .4s cubic-bezier(.23,1,.32,1);
    z-index: 9999;
  }
  .toast.show { transform: translateY(0); opacity: 1; }
