* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f1f5f9;
    color: #0f172a;
}

.site-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 30px 16px 60px;
}

.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.2;
}

.hero p {
    margin: 0;
    color: #475569;
}

.main-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
}

.landing-grid {
    grid-template-columns: 1fr 1fr;
}

.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
    padding: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: #0f172a;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.price-box {
    margin: 20px 0;
    padding: 18px;
    border-radius: 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.price-box strong {
    display: block;
    margin-top: 6px;
    font-size: 28px;
    color: #0f172a;
}

.btn-primary,
.btn-whatsapp {
    display: inline-block;
    width: 100%;
    padding: 15px;
    border: 0;
    border-radius: 12px;
    background: #0f172a;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn-primary:hover,
.btn-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .14);
}

.btn-whatsapp {
    margin-top: 12px;
    background: #16a34a;
}

.btn-sm {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

.alert {
    margin-top: 16px;
    padding: 14px;
    border-radius: 12px;
}

.alert.success {
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.small-note {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.5;
}

hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 20px 0;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.site-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-logo {
    font-weight: 800;
    font-size: 22px;
    text-decoration: none;
    color: #0f172a;
}

.site-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.site-nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
}

.site-footer {
    margin-top: 40px;
    padding: 24px 0;
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.featured-card {
    display: block;
    text-decoration: none;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
    transition: .2s ease;
}

.featured-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.featured-logo {
    width: 100%;
    height: 110px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8fafc;
    padding: 10px;
    margin-bottom: 12px;
}

.featured-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.featured-card p {
    margin: 0;
    color: #64748b;
}

.campaign-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 16px;
}

.visual-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #0f172a;
}

.vehicle-shell {
    transition: opacity .25s ease;
}

#locationFallbackNotice {
    transition: all .2s ease;
}

