:root {
    --dark: #1A1A2E;
    --accent: #4B4BA8;
    --accent-light: #EEEDFE;
    --bg: #FFFFFF;
    --bg-alt: #F5F5F5;
    --text: #1A1A1A;
    --muted: #666666;
    --border: #E0E0E0;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: var(--dark);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}

.main-nav a {
    color: rgba(255,255,255,0.65);
}

.main-nav a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 11px 16px;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 24px;
}

.hero {
    background: var(--dark);
    color: #fff;
    padding: 88px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin: 0 0 18px;
}

.eyebrow.dark {
    color: var(--accent);
}

h1, h2, h3, p {
    margin-top: 0;
}

h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

h3 {
    font-size: 18px;
    line-height: 1.2;
}

.hero-text {
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    line-height: 1.6;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-secondary {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-outline {
    border-color: var(--accent);
    color: var(--accent);
    width: 100%;
}

.text-link {
    color: var(--accent);
    font-weight: 700;
}

.features {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    padding: 36px 28px;
    border-right: 1px solid var(--border);
}

.feature-card:last-child {
    border-right: 0;
}

.icon-box {
    width: 38px;
    height: 38px;
    background: var(--accent-light);
    color: var(--accent);
    display: grid;
    place-items: center;
    border-radius: 6px;
    margin-bottom: 18px;
    font-weight: 700;
}

.feature-card p,
.product-card p,
.quote-banner p,
.final-cta p {
    color: var(--muted);
    line-height: 1.6;
}

.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-heading {
    margin-bottom: 28px;
}

.section-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

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

.category-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover,
.product-card:hover {
    border-color: var(--accent);
}

.category-card span {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    color: var(--accent);
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-weight: 700;
}

.category-card h3 {
    font-size: 15px;
    margin-bottom: 0;
}

.product-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    background: #fff;
}

.product-image {
    height: 150px;
    background: var(--bg-alt);
    border-radius: 6px;
    margin-bottom: 16px;
}

.product-card p {
    font-size: 12px;
    margin-bottom: 6px;
}

.product-card h3 {
    font-size: 16px;
    min-height: 42px;
}

.quote-banner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.badge {
    display: inline-flex;
    background: var(--accent-light);
    color: var(--accent);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.final-cta {
    text-align: center;
}

.final-cta p {
    max-width: 560px;
    margin: 0 auto 24px;
}

.site-footer {
    background: var(--dark);
    color: #fff;
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,0.58);
    line-height: 1.7;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 18px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav.is-open {
        display: flex;
    }

    .features-grid,
    .category-grid,
    .product-placeholder-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .quote-banner,
    .section-row {
        flex-direction: column;
        align-items: flex-start;
    }
}