* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
}

body {
    color: #1f2933;
    background: #ffffff;
    line-height: 1.6;
}

/* Layout */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo-title {
    font-size: 22px;
    font-weight: 800;
}

.logo-subtitle {
    display: block;
    font-size: 12px;
    color: #6b7280;
}

.nav a {
    margin-left: 18px;
    text-decoration: none;
    color: #1f2933;
    font-weight: 500;
}

/* Hero */
.hero {
    position: relative;
    background: url("/hero.jpg") center / cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-offer {
    background: rgba(0,0,0,0.6);
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.hero-offer span {
    color: #22c55e;
    font-weight: 800;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

.btn-primary {
    background: #22c55e;
    color: #fff;
}

.btn-secondary {
    background: #111827;
    color: #fff;
}

/* Sections */
.section {
    padding: 70px 0;
}

.section-light {
    background: #f9fafb;
}

.section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}

/* Brands */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
}

.brands-grid span {
    background: #f3f4f6;
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
}

/* Content */
.content p {
    margin-bottom: 16px;
    font-size: 16px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 20px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .nav a {
        margin: 0 8px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .section h2 {
        font-size: 26px;
    }
}
