:root {
    --fe-primary: #0f172a;
    --fe-accent: #ea580c;
    --fe-accent-hover: #c2410c;
    --fe-teal: #0d9488;
    --fe-bg: #f4f6f8;
    --fe-surface: #ffffff;
    --fe-text: #0f172a;
    --fe-muted: #64748b;
    --fe-border: #e2e8f0;
    --fe-topbar: #0b1224;
    --fe-radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body.frontend-body {
    font-family: "Inter", system-ui, sans-serif;
    color: var(--fe-text);
    background: var(--fe-bg);
    margin: 0;
}

.fe-main {
    padding-top: 0;
    padding-bottom: 2rem;
    min-height: 48vh;
}

.fe-text-accent {
    color: var(--fe-accent) !important;
}

.fe-hero-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.fe-hero-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fe-teal);
}

.fe-hero-lead {
    font-size: 1.05rem;
    max-width: 36rem;
}

.fe-hero {
    background: linear-gradient(180deg, #fff 0%, #eef2f7 100%);
    border-bottom: 1px solid var(--fe-border);
}

.fe-hero-panel {
    background: radial-gradient(120% 120% at 80% 20%, #1e293b 0%, #0f172a 45%, #020617 100%);
    border-radius: calc(var(--fe-radius) + 4px);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.fe-hero-deal-circle {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, var(--fe-accent), #f97316, var(--fe-teal));
    padding: 3px;
}

.fe-hero-deal-circle > span {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #0f172a;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
}

.fe-btn-primary {
    background: var(--fe-accent) !important;
    border-color: var(--fe-accent) !important;
    color: #fff !important;
    font-weight: 600;
}

.fe-btn-primary:hover {
    background: var(--fe-accent-hover) !important;
    border-color: var(--fe-accent-hover) !important;
    color: #fff !important;
}

.fe-btn-search {
    background: var(--fe-primary);
    color: #fff;
    border: 1px solid var(--fe-primary);
}

.fe-btn-search:hover {
    background: #1e293b;
    color: #fff;
}

.fe-section-muted {
    background: #eef2f6;
}

.fe-price {
    color: var(--fe-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fe-brand-text {
    letter-spacing: -0.02em;
}

.py-lg-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }
}
