﻿/* ------------------ Base Reset ------------------ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #111827;
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    /* Lusora-style fresh theme */
    --accent: #f97316; /* orange */
    --accent-soft: rgba(249, 115, 22, 0.1);
    --accent-strong: #ea580c;
    --accent-green: #22c55e; /* fresh green */
    --bg-light: #ffffff;
    --bg-soft: #f9fafb;
    --border-subtle: #e5e7eb;
    --text-main: #111827;
    --text-muted: #6b7280;
    --radius-lg: 18px;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --transition-fast: 0.22s ease;
}

.page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(249,115,22,0.12), transparent 55%), radial-gradient(circle at 80% 10%, rgba(34,197,94,0.12), transparent 55%), #ffffff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

section {
    padding: 3.5rem 0;
}

@media (min-width: 992px) {
    section {
        padding: 5rem 0;
    }
}

.section-heading {
    text-align: center;
    margin-bottom: 2.3rem;
}

    .section-heading h2 {
        font-size: 1.9rem;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        color: var(--text-main);
    }

    .section-heading p {
        font-size: 0.98rem;
        color: var(--text-muted);
        max-width: 650px;
        margin: 0.5rem auto 0;
    }


/* ------------------ Hero Section ------------------ */
.hero {
    padding-top: 2.7rem;
    padding-bottom: 3.6rem;
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.05fr);
    }
}

.hero-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent-strong);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .hero-kicker::before {
        content: "";
        width: 40px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(to right, var(--accent-green), var(--accent));
    }

.hero-title {
    font-size: 2.25rem;
    line-height: 1.05;
    margin-bottom: 0.9rem;
    color: var(--text-main);
}

    .hero-title span {
        color: var(--accent-strong);
    }

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.7rem;
    }
}

.hero-subtitle {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 1.4rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.7rem;
}

.hero-tag {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 113, 22, 0.4);
    background: #fff7ed;
    color: #9a3412;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 40px rgba(249, 115, 22, 0.55);
    }

.btn-outline {
    border-color: #e5e7eb;
    color: var(--text-muted);
    background: #ffffff;
}

    .btn-outline:hover {
        color: var(--accent-strong);
        border-color: var(--accent-soft);
        background: var(--accent-soft);
    }

.hero-mini {
    font-size: 0.82rem;
    color: var(--text-muted);
}

    .hero-mini strong {
        color: var(--accent-strong);
        font-weight: 600;
    }

/* Hero right card like product highlight */
.hero-card {
    background: radial-gradient(circle at -10% -10%, rgba(249,115,22,0.18), transparent 55%), radial-gradient(circle at 110% -10%, rgba(34,197,94,0.18), transparent 55%), #ffffff;
    border-radius: 26px;
    padding: 1.6rem 1.4rem;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-soft);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.badge-soft {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(249,115,22,0.6);
    background: #fffbeb;
    color: #9a3412;
}

.hero-card-header span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

.metric {
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.15rem;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.metric-chip {
    font-size: 0.7rem;
    margin-top: 0.1rem;
    color: var(--accent-strong);
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.76rem;
    color: var(--text-muted);
}

    .hero-card-footer strong {
        color: var(--accent-strong);
    }

/* ------------------ Products Section ------------------ */
.products {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.products-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 0.7rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.2rem;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    transition: var(--transition-fast);
}

    .product-card:hover {
        transform: translateY(-3px);
        border-color: rgba(249, 115, 22, 0.9);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    }

.product-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-green);
}

.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

.product-body {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.35rem;
    font-size: 0.74rem;
}

.chip {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #4b5563;
}

/* ------------------ Why Partner Section ------------------ */
.why-grid {
    display: grid;
    gap: 1.8rem;
    margin-top: 0.8rem;
    align-items: start;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: 1.1fr 1fr;
    }
}

.why-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.bullet-list {
    list-style: none;
    margin-top: 0.25rem;
}

    .bullet-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
        color: var(--text-main);
    }

.bullet-dot {
    margin-top: 0.4rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    flex-shrink: 0;
}

.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.4rem 1.3rem;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    color: var(--text-muted);
}

    .why-card h3 {
        font-size: 1.08rem;
        margin-bottom: 0.6rem;
        color: var(--text-main);
    }

.steps {
    list-style: none;
    margin-top: 0.6rem;
}

    .steps li {
        margin-bottom: 0.5rem;
    }

    .steps strong {
        color: var(--accent-strong);
        font-weight: 600;
    }

/* ------------------ Dealership Form Section ------------------ */
.dealership {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.dealership-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .dealership-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    }
}

form {
    background: #ffffff;
    padding: 1.6rem 1.4rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 600px) {
    .form-row--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--accent-strong);
        box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.35);
        background: #ffffff;
    }

textarea {
    min-height: 110px;
    resize: vertical;
}

.helper {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.form-footer {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

    .form-footer strong {
        color: var(--accent-strong);
    }

.dealership-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.9rem 0 1.3rem;
}

.pill {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 0.8rem;
    background: #ffffff;
    color: var(--text-main);
}

.highlight-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 1rem 1rem;
    border: 1px dashed rgba(249,115,22,0.7);
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

    .highlight-box strong {
        color: var(--accent-strong);
    }

.contact-block {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.3rem 1.1rem;
    border: 1px solid #e5e7eb;
    display: grid;
    gap: 0.8rem;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}

.contact-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.contact-item a {
    color: var(--accent-strong);
    word-break: break-word;
}
