:root {
    --carbon-black: #111111;
    --panel-grey: #1E1E1E;
    --race-red: #D90429;
    --metallic-grey: #8D99AE;
    --white: #ffffff;
    
    --font-head: 'Teko', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--carbon-black);
    color: var(--metallic-grey);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.alpha-header { background: rgba(17, 17, 17, 0.95); padding: 15px 0; border-bottom: 2px solid var(--race-red); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(5px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--white); letter-spacing: 1px; line-height: 1; }
.red { color: var(--race-red); }
.badge { background: var(--race-red); color: var(--white); font-size: 0.8rem; padding: 2px 6px; border-radius: 2px; vertical-align: middle; letter-spacing: 1px; }

.garage-nav a { margin-left: 20px; font-family: var(--font-head); font-size: 1.2rem; text-transform: uppercase; color: var(--metallic-grey); }
.garage-nav a:hover, .garage-nav a.active { color: var(--white); }

.btn-red { background: var(--race-red); color: var(--white) !important; padding: 5px 20px; border-radius: 0; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); }
.btn-red:hover { background: #fff; color: var(--race-red) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; font-size: 2rem; color: var(--race-red); cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--carbon-black); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; border-left: 2px solid var(--race-red); }
.mobile-menu.open { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--white); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2.5rem; color: var(--white); margin: 15px 0; text-transform: uppercase; }

/* Hero */
.hero-detail { height: 85vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(90deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.4) 100%); display: flex; align-items: center; }
.hero-content { margin-left: 10%; max-width: 600px; }
.tag { color: var(--race-red); font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 2px; font-weight: 600; display: block; margin-bottom: 10px; }
.hero-content h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.9; margin-bottom: 20px; color: var(--white); font-style: italic; }
.hero-content p { font-size: 1.1rem; color: #ccc; margin-bottom: 40px; border-left: 3px solid var(--race-red); padding-left: 15px; }

.cta-group { display: flex; gap: 15px; }
.btn-primary { background: var(--race-red); color: var(--white); padding: 12px 30px; font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); transition: 0.3s; }
.btn-primary:hover { background: var(--white); color: var(--carbon-black); }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 10px 25px; font-family: var(--font-head); font-size: 1.3rem; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); transition: 0.3s; }
.btn-outline:hover { background: var(--white); color: var(--carbon-black); }

/* Features Strip */
.features-strip { background: var(--panel-grey); padding: 40px 0; border-bottom: 1px solid #333; }
.f-flex { display: flex; justify-content: space-around; text-align: center; }
.feature .icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.feature h3 { font-family: var(--font-head); color: var(--white); font-size: 1.8rem; margin-bottom: 5px; }
.feature p { font-size: 0.9rem; }

/* Pricing */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 4rem; color: var(--white); margin-bottom: 10px; line-height: 1; }
.red-bar { width: 100px; height: 4px; background: var(--race-red); margin: 0 auto; transform: skew(-20deg); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.price-card { background: var(--panel-grey); padding: 40px 20px; text-align: center; border: 1px solid #333; transition: 0.3s; position: relative; overflow: hidden; }
.price-card:hover { transform: translateY(-10px); border-color: var(--race-red); box-shadow: 0 0 20px rgba(217, 4, 41, 0.2); }
.price-card.highlight { border: 2px solid var(--race-red); background: #161616; }
.popular-tag { position: absolute; top: 0; right: 0; background: var(--race-red); color: var(--white); padding: 5px 15px; font-family: var(--font-head); font-size: 1rem; }
.price-card h3 { font-family: var(--font-head); color: var(--white); font-size: 2rem; margin-bottom: 15px; }
.price { font-size: 2.5rem; font-weight: 700; color: var(--race-red); margin-bottom: 20px; font-family: var(--font-head); }
.price-card ul { list-style: none; margin-bottom: 30px; text-align: left; padding: 0 20px; }
.price-card li { border-bottom: 1px solid #333; padding: 10px 0; color: #ccc; }
.price-card li::before { content: '✓'; color: var(--race-red); margin-right: 10px; font-weight: bold; }
.btn-select { display: block; border: 1px solid #555; color: #fff; padding: 10px; font-family: var(--font-head); font-size: 1.2rem; transition: 0.3s; }
.btn-select:hover { background: var(--white); color: var(--carbon-black); }
.btn-select.red { background: var(--race-red); border: none; }
.btn-select.red:hover { background: var(--white); color: var(--race-red); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; height: 300px; border: 1px solid #333; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(50%); }
.gallery-item:hover img { transform: scale(1.1); filter: grayscale(0%); }
.g-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.9)); padding: 20px; }
.g-overlay span { color: var(--race-red); font-family: var(--font-head); font-size: 1.5rem; display: block; }
.g-overlay p { margin: 0; color: var(--white); font-size: 0.9rem; }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--panel-grey); padding: 50px; border: 1px solid #333; }
.contact-info h2 { font-family: var(--font-head); font-size: 3rem; color: var(--white); margin-bottom: 20px; line-height: 1; }
.info-box { margin-top: 30px; border-left: 3px solid var(--race-red); padding-left: 20px; }
.info-box p { margin-bottom: 10px; color: var(--white); }

.dark-form .form-group { margin-bottom: 20px; }
.dark-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.dark-form input, .dark-form select { width: 100%; padding: 15px; background: var(--carbon-black); border: 1px solid #333; color: var(--white); font-family: var(--font-body); outline: none; transition: 0.3s; }
.dark-form input:focus, .dark-form select:focus { border-color: var(--race-red); }
.btn-submit { width: 100%; background: var(--race-red); color: var(--white); border: none; padding: 15px; font-family: var(--font-head); font-size: 1.5rem; cursor: pointer; transition: 0.3s; clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%); }
.btn-submit:hover { background: var(--white); color: var(--race-red); }

/* Legal Doc */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--panel-grey); padding: 50px; border: 1px solid #333; }
.legal-content h1 { font-family: var(--font-head); color: var(--white); }
.legal-content h3 { color: var(--race-red); margin-top: 30px; font-family: var(--font-head); font-size: 1.8rem; }

/* Footer */
.alpha-footer { background: #000; padding: 50px 0 20px; border-top: 2px solid var(--race-red); margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { color: var(--white); font-family: var(--font-head); font-size: 2rem; margin-bottom: 5px; }
.f-links a { color: #666; margin-left: 20px; transition: 0.3s; }
.f-links a:hover { color: var(--race-red); }
.copyright { text-align: center; font-size: 0.8rem; color: #444; }

/* Cookie */
.cookie-dark { position: fixed; bottom: 20px; right: 20px; background: var(--panel-grey); border: 1px solid var(--race-red); padding: 15px 25px; z-index: 9999; display: none; align-items: center; gap: 15px; box-shadow: 0 0 20px rgba(0,0,0,0.7); }
.cookie-dark.active { display: flex; }
.cookie-dark p { margin: 0; color: var(--white); font-size: 0.9rem; }
.cookie-dark button { background: var(--race-red); color: var(--white); border: none; padding: 5px 15px; font-family: var(--font-head); cursor: pointer; }

@media (max-width: 900px) {
    .garage-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 4rem; }
    .pricing-grid, .gallery-grid, .contact-wrapper, .f-flex, .dark-form .form-row { grid-template-columns: 1fr; flex-direction: column; }
    .f-flex { gap: 30px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}