:root {
    --bg-dark: #0f1115;
    --bg-card: #1a1d24;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-red: #ef4444;
    --accent-red-hover: #dc2626;
    --accent-yellow: #eab308;
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
}

.text-red { color: var(--accent-red); }
.text-yellow { color: var(--accent-yellow); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 4px; font-weight: 800; font-size: 16px;
    text-decoration: none; text-transform: uppercase; transition: all 0.2s;
    cursor: pointer;
}
.btn-primary { background: var(--accent-red); color: #fff; border: 2px solid var(--accent-red); }
.btn-primary:hover { background: var(--accent-red-hover); border-color: var(--accent-red-hover); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--bg-dark); }
.btn-lg { padding: 16px 32px; font-size: 18px; }
.btn-xl { padding: 20px 40px; font-size: 24px; }

/* Header */
.main-header {
    background: rgba(15, 17, 21, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 100;
}
.header-container {
    display: flex; justify-content: space-between; align-items: center; height: 80px;
}
.logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
    font-size: 32px; color: #fff; line-height: 1; letter-spacing: 1px;
}
.desktop-nav a {
    color: #fff; text-decoration: none; font-weight: 600; margin: 0 15px;
    text-transform: uppercase; font-size: 14px; letter-spacing: 1px; transition: 0.2s;
}
.desktop-nav a:hover { color: var(--accent-red); }

/* Hero */
.hero {
    position: relative; padding: 120px 0; min-height: 80vh;
    display: flex; align-items: center;
    background-image: url('hero-bg.png'); /* Placeholder */
    background-size: cover; background-position: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(15,17,21,1) 0%, rgba(15,17,21,0.8) 50%, rgba(15,17,21,0.4) 100%);
}
.hero-content { position: relative; z-index: 10; }
.hero-text { max-width: 600px; }
.badge {
    display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid var(--border-color);
    padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 20px;
}
.hero h1 { font-size: 80px; line-height: 0.9; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 40px; }
.trust-indicators { display: flex; gap: 24px; font-size: 14px; font-weight: 600; color: #ccc; }
.trust-indicators span { display: flex; align-items: center; gap: 8px; }

/* Brands */
.brands-bar {
    background: var(--accent-red); color: #fff; padding: 20px 0;
    font-family: 'Teko', sans-serif; font-size: 24px; letter-spacing: 2px;
}
.brands-container { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; opacity: 0.8; }

/* Services */
.services-section { padding: 100px 0; background: var(--bg-dark); }
.section-header h2 { font-size: 48px; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); margin-bottom: 60px; font-size: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background: var(--bg-card); padding: 40px 30px; border-radius: 8px;
    border: 1px solid var(--border-color); transition: 0.3s;
}
.service-card:hover { border-color: var(--accent-red); transform: translateY(-5px); }
.icon-box { font-size: 40px; color: var(--accent-red); margin-bottom: 20px; }
.service-card h3 { font-size: 28px; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); font-size: 15px; }

/* CTA */
.cta-section { padding: 80px 0; background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); text-align: center; }
.cta-text h2 { font-size: 48px; margin-bottom: 15px; }
.cta-text p { color: var(--text-muted); margin-bottom: 30px; font-size: 18px; }

/* Footer */
.main-footer { padding: 80px 0 20px; background: #0a0b0e; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-col h3 { font-size: 32px; margin-bottom: 20px; }
.footer-col h4 { font-size: 24px; margin-bottom: 20px; }
.footer-col p, .footer-col li { color: var(--text-muted); font-size: 15px; margin-bottom: 10px; list-style: none; }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 20px; text-align: center; color: var(--text-muted); font-size: 14px; }

@media (max-width: 768px) {
    .hero h1 { font-size: 50px; }
    .hero-buttons { flex-direction: column; }
    .desktop-nav { display: none; }
    .head-btn { display: none; }
    .trust-indicators { flex-direction: column; gap: 10px; }
}
