:root {
    --ink: #122033;
    --muted: #64748b;
    --paper: #f7f9fc;
    --card: #ffffff;
    --line: #dbe4ef;
    --brand: #2563eb;
    --brand-dark: #123a8f;
    --accent: #14b8a6;
    --warm: #fff7ed;
    --shadow: 0 24px 80px rgba(18, 32, 51, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}
a { color: inherit; }
.site-header {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255,255,255,.86);
    border: 1px solid var(--line);
    border-radius: 22px;
    position: sticky;
    top: 14px;
    z-index: 10;
    backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-decoration: none; letter-spacing: -.03em; }
.brand-mark { width: 38px; height: 38px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--accent)); color: white; display: grid; place-items: center; font-size: 14px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 700; color: var(--muted); }
.nav-links a { text-decoration: none; }
.nav-button { background: var(--ink); color: white !important; padding: 10px 16px; border-radius: 999px; }
.hero { width: min(1180px, calc(100% - 32px)); margin: 70px auto 40px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--brand); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.055em; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 78px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: 22px; }
.hero-text, .page-hero p, .section-heading p, .split-section p, .cta-band p { color: var(--muted); font-size: 19px; max-width: 680px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border-radius: 999px; text-decoration: none; font-weight: 900; border: 0; cursor: pointer; font-size: 15px; }
.primary { background: var(--brand); color: white; box-shadow: 0 16px 38px rgba(37,99,235,.25); }
.secondary { background: white; color: var(--ink); border: 1px solid var(--line); }
.light { background: white; color: var(--brand-dark); }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; color: var(--muted); font-weight: 700; font-size: 14px; }
.trust-row span { background: white; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; }
.dashboard-card { background: var(--card); border: 1px solid var(--line); border-radius: 34px; padding: 26px; box-shadow: var(--shadow); transform: rotate(1deg); }
.dashboard-top { display: flex; gap: 7px; margin-bottom: 22px; }
.dashboard-top span { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.metric-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.metric-grid div { background: var(--paper); border-radius: 22px; padding: 18px; }
.metric-grid strong { display: block; font-size: 32px; letter-spacing: -.06em; }
.metric-grid span { color: var(--muted); font-weight: 700; font-size: 13px; }
.panel-list { background: var(--warm); border: 1px solid #fed7aa; border-radius: 24px; padding: 14px 18px; }
.panel-list p { margin: 10px 0; font-weight: 800; }
.panel-list span { display: inline-block; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; margin-right: 8px; }
.section, .split-section, .pricing-grid, .custom-box, .contact-section, .page-hero { width: min(1180px, calc(100% - 32px)); margin: 90px auto; }
.section-heading { text-align: center; max-width: 820px; margin: 0 auto 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card, .price-card, .quote-card, .custom-box, .contact-card, .lead-form { background: white; border: 1px solid var(--line); border-radius: 28px; padding: 26px; box-shadow: 0 12px 40px rgba(18,32,51,.06); }
.feature-card p, .price-card p, .custom-box p, .contact-card p { color: var(--muted); }
.split-section { display: grid; grid-template-columns: 1fr .75fr; gap: 30px; align-items: center; }
.tick-list { padding: 0; list-style: none; display: grid; gap: 12px; font-weight: 800; }
.tick-list li::before { content: "✓"; color: var(--accent); margin-right: 10px; }
.quote-card { font-size: 24px; font-weight: 800; color: var(--brand-dark); }
.cta-band { width: min(1180px, calc(100% - 32px)); margin: 90px auto; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: white; border-radius: 36px; padding: 54px; text-align: center; }
.cta-band p { color: rgba(255,255,255,.86); margin-left: auto; margin-right: auto; }
.page-hero { text-align: center; }
.page-hero p { margin-left: auto; margin-right: auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--brand); transform: translateY(-14px); }
.badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: white; border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 900; }
.price { font-size: 42px; font-weight: 900; margin: 18px 0 0 !important; letter-spacing: -.06em; color: var(--ink) !important; }
.price span { font-size: 15px; color: var(--muted); }
.monthly { font-weight: 900; color: var(--brand) !important; font-size: 20px; margin-top: 4px !important; }
.price-card ul { padding-left: 18px; color: var(--muted); flex: 1; }
.custom-box { text-align: center; }
.contact-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: start; }
.lead-form { display: grid; gap: 16px; }
.lead-form label { display: grid; gap: 7px; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 13px 14px; font: inherit; background: #fff; }
.form-note { color: var(--muted); font-size: 13px; margin: 0; }
.site-footer { width: min(1180px, calc(100% - 32px)); margin: 40px auto 26px; padding: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 900px) {
    .hero, .split-section, .pricing-grid, .contact-section { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .price-card.featured { transform: none; }
}
@media (max-width: 620px) {
    .feature-grid { grid-template-columns: 1fr; }
    .hero { margin-top: 42px; }
    .cta-band { padding: 34px 20px; }
    .site-footer { flex-direction: column; }
}
