﻿:root {
    --ink: #101828;
    --muted: #667085;
    --line: #e6eaf0;
    --soft: #f7f9fc;
    --brand: #2563eb;
    --brand-dark: #0f172a;
    --green: #16a34a;
    --white: #fff;
    --shadow: 0 18px 45px rgba(16, 24, 40, .08);
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
}
a { color: inherit; }
.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.08rem;
}
.brand span span { color: var(--brand); }
.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--brand);
    color: white;
    box-shadow: 0 12px 25px rgba(37, 99, 235, .25);
}
.site-nav {
    display: flex;
    gap: 22px;
    color: var(--muted);
    font-weight: 750;
}
.site-nav a,
.site-footer a {
    text-decoration: none;
}
.site-nav a:hover { color: var(--brand); }
.nav-cta,
.btn-dark,
.btn-light,
.btn-outline,
.btn-primary-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 850;
    border: 0;
}
.nav-cta {
    background: var(--ink);
    color: #fff;
    padding: 12px 16px;
}
.hero {
    padding: 86px 0 70px;
    background:
        radial-gradient(circle at 12% 10%, rgba(37,99,235,.16), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center;
}
.eyebrow {
    color: var(--brand);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: .78rem;
    margin-bottom: 13px;
}
h1 {
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: .98;
    letter-spacing: -.05em;
    margin: 0 0 20px;
}
.hero p {
    color: var(--muted);
    font-size: 1.16rem;
    line-height: 1.65;
    max-width: 680px;
}
.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.btn-dark { background: var(--ink); color: #fff; padding: 14px 20px; }
.btn-light { background: #fff; color: var(--ink); padding: 14px 20px; border: 1px solid var(--line); }
.btn-outline { background: #fff; color: var(--brand); padding: 12px 17px; border: 1px solid #bfdbfe; }
.hero-panel {
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.panel-card {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 14px;
}
.panel-card strong { display: block; margin-bottom: 8px; }
.panel-card span { color: var(--muted); }
.section { padding: 78px 0; }
.section-soft { background: var(--soft); }
.section-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}
.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.035em;
    margin: 0 0 15px;
}
.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.6;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    min-height: 100%;
}
.product-card.featured {
    border-color: var(--brand);
    box-shadow: 0 24px 60px rgba(37, 99, 235, .16);
}
.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--brand);
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
}
.product-group {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}
.product-card h3 {
    font-size: 1.45rem;
    line-height: 1.1;
    font-weight: 900;
    margin: 0 0 10px;
}
.product-tagline {
    color: var(--muted);
    line-height: 1.55;
    min-height: 72px;
    margin: 0 0 18px;
}
.product-price {
    font-size: 2rem;
    font-weight: 950;
    margin-bottom: 18px;
}
.product-price span {
    font-size: .95rem;
    color: var(--muted);
    font-weight: 650;
}
.custom-price { font-size: 1.35rem; }
.module-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
}
.module-pill {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #344054;
    font-weight: 700;
    font-size: .95rem;
}
.module-pill small {
    margin-left: 6px;
    color: var(--brand);
    font-size: .72rem;
    font-weight: 900;
}
.module-check { color: var(--green); font-weight: 950; }
.product-actions { margin-top: auto; }
.btn-primary-soft {
    width: 100%;
    background: var(--ink);
    color: #fff;
    padding: 13px 16px;
}
.btn-primary-soft:hover { background: var(--brand); }
.detail-shell {
    padding: 62px 0 80px;
    background: var(--soft);
}
.detail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow);
}
.detail-card h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
}
.detail-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.badge {
    display: inline-flex;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--brand);
    font-weight: 850;
    padding: 8px 12px;
    font-size: .82rem;
}
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.module-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    background: #fff;
}
.module-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.module-card p { color: var(--muted); line-height: 1.55; margin: 0; }
.cta-band {
    background: var(--brand-dark);
    color: #fff;
    border-radius: 28px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.cta-band p { color: #cbd5e1; max-width: 640px; }
.site-footer {
    background: #0b1220;
    color: #cbd5e1;
    padding: 46px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .7fr .7fr;
    gap: 32px;
}
.footer-brand { color: #fff; font-weight: 900; font-size: 1.2rem; margin-bottom: 10px; }
.site-footer strong { color: #fff; display: block; margin-bottom: 12px; }
.site-footer a,
.site-footer span { display: block; color: #cbd5e1; margin: 7px 0; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); margin-top: 30px; padding-top: 20px; color: #94a3b8; }
.form-card {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #344054; }
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
}
textarea { min-height: 140px; }
@media (max-width: 991px) {
    .hero-grid, .footer-grid { grid-template-columns: 1fr; }
    .product-grid, .modules-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .site-nav { display: none; }
}
@media (max-width: 640px) {
    .product-grid, .modules-grid, .form-grid { grid-template-columns: 1fr; }
    .product-tagline { min-height: auto; }
    .nav-cta { display: none; }
    .cta-band { display: block; }
}


/* FusionCRM feature marketing additions */
.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}
.feature-stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
}
.feature-stat strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 8px;
}
.feature-stat span { color: var(--muted); font-weight: 750; }
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.outcome-card,
.feature-card,
.alert-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow);
}
.outcome-icon,
.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--brand);
    margin-bottom: 16px;
    box-shadow: 0 12px 25px rgba(37, 99, 235, .22);
}
.outcome-card h3,
.feature-card h3,
.alert-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.outcome-card p,
.feature-card p,
.alert-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.split-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
}
.alert-stack { display: grid; gap: 13px; }
.alert-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 15px;
    background: var(--soft);
}
.alert-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #ef4444;
    margin-top: 5px;
    flex: 0 0 auto;
}
.alert-dot.warning { background: #f59e0b; }
.alert-dot.ok { background: var(--green); }
.alert-row strong { display:block; margin-bottom:4px; }
.alert-row span { color: var(--muted); }
.feature-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.feature-card ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}
.feature-card li {
    color: #344054;
    font-weight: 700;
}
.feature-card li i { color: var(--green); margin-right: 8px; }
.hero-panel-title { font-weight: 950; font-size: 1.1rem; margin-bottom: 14px; }
@media (max-width: 991px) {
    .feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .outcome-grid, .split-grid { grid-template-columns: 1fr; }
    .feature-list-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .feature-strip { grid-template-columns: 1fr; }
}
