:root {
    --bg: #0b0c0e;
    --bg-panel: #121418;
    --bg-elevated: #161a1f;
    --text: #f2f4f6;
    --text-muted: #b4bac3;
    --accent: #f25c3a;
    --accent-strong: #ff6a3d;
    --border: #242a33;
    --max-width: 1100px;
}

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

body {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: radial-gradient(circle at top, #15181d 0%, var(--bg) 45%);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

.page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: rgba(10, 12, 15, 0.9);
    backdrop-filter: blur(8px);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 14px;
    height: 34px;
    background: linear-gradient(180deg, var(--accent), #a62d1d);
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(242, 92, 58, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.brand-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.main-content {
    flex: 1;
}

.hero {
    padding: 80px 0 60px;
}

.hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.subline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.trust-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 28px;
}

.trust-facts span {
    position: relative;
    padding-left: 14px;
}

.trust-facts span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #111;
    box-shadow: 0 10px 30px rgba(242, 92, 58, 0.25);
}

.btn-ghost {
    border: 1px solid var(--border);
    color: var(--text);
}

.btn:hover {
    transform: translateY(-1px);
}

.hero-panel {
    display: flex;
    justify-content: center;
}

.panel-card {
    background: linear-gradient(160deg, var(--bg-panel), #0d0f12);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.panel-card h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.panel-card p {
    color: var(--text-muted);
    margin-bottom: 22px;
}

.panel-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.benefits,
.before-after,
.quality,
.experience {
    padding: 60px 0;
}

.benefits h2,
.quality h2,
.experience h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    display: grid;
    gap: 14px;
    color: var(--text-muted);
}

.benefit-list li {
    padding-left: 18px;
    position: relative;
}

.benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: var(--accent);
}

.before-after {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.before,
.after {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-elevated);
}

.before h3,
.after h3 {
    color: var(--accent);
    margin-bottom: 8px;
}

.quality-inner,
.experience-inner {
    max-width: 720px;
}

.quality p,
.experience p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 26px 0 40px;
    background: #0a0b0d;
}

.footer-inner {
    display: grid;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-brand {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 60px;
    }

    .panel-card {
        padding: 24px;
    }
}
