:root {
    --ford-blue: #003478; 
    --motorcraft-red: #D3202A;  
    --text: #222;
    --light: #f5f7fa;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 50px; color: var(--ford-blue); font-weight: 900; text-transform: uppercase; }
.bg-light { background-color: var(--light); }
.w-100 { width: 100%; }

/* Header */
.header { background: var(--white); padding: 20px 0; border-bottom: 3px solid var(--ford-blue); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 900; color: var(--text); letter-spacing: -1px; }
.logo span { color: var(--motorcraft-red); font-size: 1rem; }
.phone { color: var(--ford-blue); font-weight: 800; font-size: 1.2rem; text-decoration: none; }

/* Hero */
.hero { 
    height: 70vh; 
    min-height: 500px; 
    display: flex; 
    align-items: center; 
    background: linear-gradient(rgba(0, 52, 120, 0.85), rgba(0, 52, 120, 0.95)), url('shipping.jpg') center/cover; 
    color: var(--white); 
    text-align: center; 
}
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 900; letter-spacing: 1px; }
.hero-content p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; opacity: 0.9; }

/* Buttons */
.btn { display: inline-block; padding: 16px 35px; text-decoration: none; font-weight: 800; border-radius: 4px; transition: 0.3s; text-transform: uppercase; border: 2px solid transparent; text-align: center; cursor: pointer; }
.btn-primary { background: var(--motorcraft-red); color: var(--white); }
.btn-primary:hover { background: #b01a22; }
.btn-outline { border-color: var(--white); color: var(--white); margin-left: 15px; }
.btn-outline:hover { background: var(--white); color: var(--ford-blue); }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.benefit-card { background: var(--white); padding: 40px 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-bottom: 4px solid var(--motorcraft-red); }
.benefit-card .icon { font-size: 3rem; margin-bottom: 20px; }
.benefit-card h3 { color: var(--ford-blue); margin-bottom: 15px; }

/* VIN Form */
.vin-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.vin-text h2 { font-size: 2.2rem; color: var(--ford-blue); margin-bottom: 20px; font-weight: 900; }
.vin-list { list-style: none; margin-top: 20px; }
.vin-list li { margin-bottom: 10px; padding-left: 25px; position: relative; font-weight: 600; }
.vin-list li::before { content: '✔'; position: absolute; left: 0; color: var(--motorcraft-red); }
.vin-form-box { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 5px solid var(--ford-blue); }
.custom-form input { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; font-family: 'Inter', sans-serif; }
.custom-form input:focus { outline: none; border-color: var(--ford-blue); }

/* SEO Catalog */
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.seo-box { background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.border-ford { border-left: 5px solid var(--ford-blue); }
.border-motorcraft { border-left: 5px solid var(--motorcraft-red); }
.seo-box h3 { color: var(--text); margin-bottom: 20px; font-size: 1.3rem; }
.seo-list { list-style: none; }
.seo-list li { margin-bottom: 12px; font-size: 0.95rem; color: #444; }
.seo-list li strong { color: var(--ford-blue); }

/* Footer */
.footer { background: #111; color: #aaa; padding: 60px 0 20px; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 40px; margin-bottom: 20px; }
.logo-footer { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.logo-footer span { color: var(--motorcraft-red); }
.footer-contacts a { color: #fff; font-size: 1.2rem; font-weight: bold; text-decoration: none; display: block; margin-top: 10px; }
.small-text { font-size: 0.85rem; margin-top: 15px; }
.small-text a { color: var(--motorcraft-red); text-decoration: none; display: inline; font-size: 0.85rem; font-weight: normal; }
.footer-bottom { text-align: center; font-size: 0.85rem; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .benefits-grid, .vin-layout, .seo-grid, .footer-flex { grid-template-columns: 1fr; text-align: center; }
    .btn-outline { margin-left: 0; margin-top: 15px; }
    .vin-list li { text-align: left; }
    .footer-contacts { margin-top: 30px; }
}