:root {
    --awd-blue: #005F9E;
    --awd-navy: #0F2744;
    --awd-red: #E31E24;
    --awd-gold: #D97706;
    --text: #1e2937;
    --muted: #64748b;
    --bg: #F4F7FA;
    --white: #ffffff;
    --line: #e2e8f0;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(15, 39, 68, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    background: var(--awd-red);
    color: white;
    font-weight: 800;
    font-size: 18px;
    padding: 8px 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-text strong { font-size: 15px; color: var(--awd-navy); }
.brand-text small { font-size: 11px; color: var(--muted); }
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}
.nav a {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}
.nav a:hover { color: var(--awd-blue); }
.nav-toggle {
    display: none;
    border: none;
    background: #f1f5f9;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}
.btn-primary {
    background: var(--awd-red);
    color: white;
}
.btn-primary:hover {
    background: #c1191f;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(227,30,36,0.2);
}
.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-nav {
    background: var(--awd-blue);
    color: white !important;
    padding: 10px 16px;
    border-radius: 10px;
}
.btn-block { width: 100%; }

/* Hero */
.hero {
    position: relative;
    color: white;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(227,30,36,0.25), transparent 40%),
        linear-gradient(135deg, var(--awd-blue) 0%, var(--awd-navy) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 0 70px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
    color: #93c5fd;
    margin: 0 0 14px;
}
.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    margin: 0 0 18px;
    font-weight: 800;
}
.hero h1 span { color: #fbbf24; }
.hero-lead {
    max-width: 560px;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin: 0 0 28px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.hero-stats strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
}
.hero-stats span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Sections */
.section {
    padding: 80px 0;
}
.section-alt { background: white; }
.section-head {
    max-width: 640px;
    margin-bottom: 36px;
}
.section h2 {
    margin: 0 0 14px;
    font-size: clamp(26px, 3vw, 36px);
    color: var(--awd-navy);
    line-height: 1.2;
}
.section p { color: var(--muted); }
.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #334155;
    font-weight: 500;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 800;
}

.about-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
}
.about-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
}
.about-item:hover { background: #f8fafc; }
.about-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0,95,158,0.1);
    color: var(--awd-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-item h4 { margin: 0 0 4px; color: var(--awd-navy); }
.about-item p { margin: 0; font-size: 14px; }

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--awd-blue), var(--awd-navy));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.card h3 {
    margin: 0 0 8px;
    color: var(--awd-navy);
}
.card p { margin: 0; font-size: 14px; }

.parts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.part-chip {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
    font-weight: 600;
    color: #0f2744;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.part-chip i { color: var(--awd-blue); }

.why-list { display: grid; gap: 14px; }
.why-item {
    display: flex;
    gap: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}
.why-item span {
    font-weight: 800;
    color: var(--awd-red);
    font-size: 18px;
}
.why-item h4 { margin: 0 0 4px; color: var(--awd-navy); }
.why-item p { margin: 0; font-size: 14px; }

/* Contact */
.contact-info {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}
.contact-info > div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.contact-info i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,95,158,0.1);
    color: var(--awd-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info strong { display: block; color: var(--awd-navy); }
.contact-info span { color: var(--muted); font-size: 14px; }

.contact-form {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    margin-bottom: 12px;
    background: #f8fafc;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--awd-blue);
    box-shadow: 0 0 0 4px rgba(0,95,158,0.12);
}
.form-note {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--muted);
}

/* Footer */
.site-footer {
    background: var(--awd-navy);
    color: rgba(255,255,255,0.85);
    padding: 48px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 28px;
}
.footer-brand .brand-text strong,
.footer-brand .brand-text small { color: white; }
.footer-brand .brand-text small { opacity: 0.75; }
.footer-copy { color: rgba(255,255,255,0.65); max-width: 320px; }
.site-footer h5 {
    margin: 0 0 12px;
    color: white;
    font-size: 14px;
}
.site-footer a {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.site-footer a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.footer-bottom a { display: inline; color: #fbbf24; }

/* Toast */
#toast {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #212529;
    padding: 14px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    border-left: 5px solid #28a745;
}
#toast.error { border-left-color: #dc3545; }
#toast.success { border-left-color: #28a745; }
#toast i { font-size: 1.25rem; }
#toast.success i { color: #28a745; }
#toast.error i { color: #dc3545; }

/* Responsive */
@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        padding: 16px 20px 20px;
        gap: 14px;
        align-items: flex-start;
    }
    .nav.open { display: flex; }
    .grid-2,
    .cards-3,
    .parts-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero { min-height: auto; }
    .hero-content { padding: 56px 0 48px; }
}
/* Logo */
.brand-logo {
    height: 48px;
    width: auto;
    display: block;
}
.hero-logo {
    height: 56px;
    width: auto;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.95);
    padding: 8px 12px;
    border-radius: 10px;
}

/* Brands grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.brand-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 120px;
}
.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15,39,68,0.1);
}
.brand-card img {
    max-height: 48px;
    max-width: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.15);
}
.brand-card span {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

@media (max-width: 900px) {
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .brand-logo { height: 40px; }
}
@media (max-width: 520px) {
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===========================================
   HERO SLIDER
=========================================== */

.hero{
    position:relative;
    min-height:92vh;
    overflow:hidden;
    color:#fff;
}

.hero-slider{
    position:relative;
    width:100%;
    height:92vh;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .8s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.hero-media{
    position:absolute;
    inset:0;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform:scale(1.03);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(120deg,
        rgba(15,39,68,.92) 0%,
        rgba(0,95,158,.72) 55%,
        rgba(227,30,36,.35) 100%),
        linear-gradient(to top,
        rgba(15,39,68,.75),
        transparent 45%);
}

.hero-content{
    position:relative;
    z-index:5;
    padding:90px 0 70px;
    height:92vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-logo{
    height:56px;
    width:auto;
    display:block;
    margin-bottom:20px;
    background:rgba(255,255,255,.96);
    padding:8px 12px;
    border-radius:10px;
}

.eyebrow{
    text-transform:uppercase;
    letter-spacing:.18em;
    font-size:12px;
    font-weight:700;
    color:#93c5fd;
    margin-bottom:16px;
}

.hero h1{
    font-size:clamp(38px,5vw,62px);
    line-height:1.05;
    margin:0 0 20px;
    font-weight:800;
}

.hero h1 span{
    color:#fbbf24;
}

.hero-lead{
    max-width:620px;
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.88);
    margin-bottom:34px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:38px;
}

.hero-stats{
    display:flex;
    gap:36px;
    flex-wrap:wrap;
}

.hero-stats strong{
    display:block;
    font-size:24px;
    font-weight:800;
}

.hero-stats span{
    color:rgba(255,255,255,.75);
    font-size:13px;
}

.btn-outline{
    background:rgba(255,255,255,.08);
    color:#fff;
    border:1.5px solid rgba(255,255,255,.4);
    backdrop-filter:blur(4px);
}

.btn-outline:hover{
    background:rgba(255,255,255,.16);
}

/* Slider dots */

.hero-dots{
    position:absolute;
    left:50%;
    bottom:30px;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:20;
}

.hero-dots button{
    width:12px;
    height:12px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.35);
    cursor:pointer;
    transition:.3s;
}

.hero-dots button.active{
    width:34px;
    border-radius:20px;
    background:#fff;
}

.hero-dots button:hover{
    background:#fff;
}

@media(max-width:900px){

    .hero,
    .hero-slider,
    .hero-content{
        height:auto;
        min-height:100vh;
    }

    .hero-content{
        padding:80px 0 70px;
    }

    .hero-logo{
        height:44px;
    }

    .hero-stats{
        gap:20px;
    }
}