:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --ink: #111827;
    --muted: #64748b;
    --line: #dbe3ee;
    --navy: #102033;
    --teal: #009688;
    --teal-dark: #00796f;
    --blue: #2457a6;
    --amber: #f6b21a;
    --shadow: 0 18px 42px rgba(16, 32, 51, 0.11);
}

* {
    box-sizing: border-box;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px max(24px, calc((100vw - 1180px) / 2));
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--teal);
    color: #fff;
    font-weight: 900;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 6px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav a {
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.nav a.active,
.nav a:hover {
    background: #e7f6f4;
    color: var(--teal-dark);
}

.nav-cta,
.customer-link,
.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 11px 18px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.nav-cta,
.button.primary,
button {
    background: var(--teal);
    color: #fff;
}

.customer-link {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    font-size: 13px;
}

.button.secondary {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
}

.shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 34px 0 56px;
}

.setup-warning {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 18px;
    border: 1px solid #f4cf7a;
    border-radius: 12px;
    background: #fff7df;
    color: #684a00;
    padding: 14px 16px;
    line-height: 1.45;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 32px;
    align-items: center;
    padding: 42px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--navy), #193a41);
    color: #fff;
    box-shadow: var(--shadow);
}

.hero-home {
    min-height: 430px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #5de0d3;
}

h1,
h2,
h3 {
    margin: 0;
    color: inherit;
}

h1 {
    max-width: 850px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
}

h2 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
}

h3 {
    font-size: 20px;
}

.lead {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    max-width: 760px;
}

.hero .lead {
    color: #cdd8e4;
}

.lead.small {
    font-size: 15px;
}

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

.hero-panel {
    display: grid;
    gap: 14px;
}

.status-card,
.metric {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.status-card strong,
.status-card span {
    display: block;
}

.status-card strong {
    color: #7ff0e5;
    font-size: 13px;
    text-transform: uppercase;
}

.status-card span {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 800;
}

.metric span {
    display: block;
    font-size: 30px;
    font-weight: 900;
}

.metric small {
    color: #cdd8e4;
}

.section-head,
.page-title {
    margin: 42px 0 20px;
}

.page-title {
    padding: 26px 0 8px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 42px;
}

.trust-strip span {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--navy);
    padding: 14px 16px;
    font-weight: 800;
    text-align: center;
}

.product-grid,
.pricing-grid,
.feature-grid,
.grid {
    display: grid;
    gap: 18px;
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.price-card,
.feature,
.card,
.notice {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(16, 32, 51, 0.06);
}

.product-card p,
.price-card p,
.card p,
.hint,
.audience {
    color: var(--muted);
    line-height: 1.6;
}

.tag-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.tag-row span {
    border-radius: 999px;
    background: #edf5f4;
    color: var(--teal-dark);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.product-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--teal-dark);
    font-weight: 800;
    text-decoration: none;
}

.card-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.product-card ul,
.price-card ul {
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.7;
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    margin: 44px 0;
}

.steps {
    display: grid;
    gap: 12px;
}

.steps.horizontal {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.steps strong {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background: var(--teal);
    color: #fff;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 30px;
    border-radius: 999px;
    background: #e7f6f4;
    color: var(--teal-dark);
    font-size: 12px;
}

.feature span {
    color: var(--muted);
    line-height: 1.6;
}

.cta-band {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    margin-top: 42px;
    padding: 28px;
    border-radius: 16px;
    background: #e9f7f5;
    border: 1px solid #ccebe7;
}

.product-hero {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.mockup {
    min-height: 260px;
    border-radius: 16px;
    background: #fff;
    padding: 20px;
}

.mockup-bar {
    height: 38px;
    border-radius: 10px;
    background: var(--navy);
    margin-bottom: 18px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-grid span {
    height: 78px;
    border-radius: 10px;
    background: #dbe9ef;
}

.price-card.highlight {
    border-color: var(--teal);
    box-shadow: 0 18px 44px rgba(0, 150, 136, 0.18);
}

.inline-select {
    margin-top: 16px;
    max-width: 430px;
}

.form-wrap {
    max-width: 640px;
}

.form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 12px;
    font: inherit;
}

textarea {
    margin-top: 10px;
}

.notice {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    border-color: #ccebe7;
    background: #edf9f7;
}

.comparison {
    margin-top: 24px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px 20px;
    margin-top: 18px;
}

.comparison-grid strong {
    color: var(--navy);
}

.comparison-grid span {
    color: var(--muted);
}

.payment-card {
    margin-bottom: 22px;
    border-color: #ccebe7;
    background: #f3fbfa;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.data-table th,
.data-table td {
    border-bottom: 1px solid var(--line);
    padding: 12px 10px;
    text-align: left;
    vertical-align: top;
}

.data-table th {
    color: var(--navy);
    font-size: 13px;
    text-transform: uppercase;
}

.data-table td {
    color: var(--muted);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px max(24px, calc((100vw - 1180px) / 2));
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #fff;
}

.site-footer span {
    display: block;
    margin-top: 3px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

@media (max-width: 900px) {
    .site-header,
    .nav,
    .header-actions {
        flex-wrap: wrap;
    }

    .hero,
    .split,
    .product-hero,
    .product-grid,
    .product-grid.wide,
    .pricing-grid,
    .feature-grid,
    .grid,
    .steps.horizontal,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 28px;
    }

    .cta-band,
    .site-footer {
        display: block;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .header-actions {
        width: 100%;
    }

    .customer-link,
    .nav-cta {
        flex: 1;
    }

    .cta-band .button,
    .site-footer a {
        margin-top: 14px;
    }
}
