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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    display: block;
}

/* ============================================
    NAVIGATION
============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo span {
    color: #e94560;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.nav-link {
    color: #d9dbef;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-cta {
    background: #e94560;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #d63851;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 14px 16px;
    }

    .nav-links {
        gap: 0;
    }

    .nav-link {
        display: none;
    }

    .nav-cta {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .nav-logo {
        font-size: 18px;
    }

    .nav-cta {
        padding: 9px 12px;
        font-size: 12px;
    }
}
 
.button-primary {
    display: inline-block;
    background: #e94560;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    background: #d63851;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(233, 69, 96, 0.3);
}

.button-secondary {
    display: inline-block;
    background: transparent;
    color: #e94560;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(233, 69, 96, 0.25);
    transition: all 0.2s;
}

.button-secondary:hover {
    background: rgba(233, 69, 96, 0.06);
}

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    padding: 96px 24px 72px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-eyebrow {
    display: inline-block;
    background: rgba(233, 69, 96, 0.15);
    color: #e94560;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 800px;
}

.page-hero p {
    font-size: 18px;
    color: #b7bbd6;
    max-width: 720px;
    line-height: 1.75;
}

.page-section {
    padding: 72px 24px;
}

.page-section.alt {
    background: #f8f9fa;
}

.page-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.section-body {
    font-size: 17px;
    color: #4a4a6a;
    line-height: 1.85;
}

.content {
    max-width: 800px;
}

.content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.4px;
    margin: 48px 0 16px;
}

.content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 28px 0 12px;
}

.content p {
    font-size: 17px;
    color: #4a4a6a;
    line-height: 1.9;
    margin-bottom: 18px;
}

.content ul,
.content ol {
    margin: 16px 0 24px 22px;
    color: #4a4a6a;
}

.content li {
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 16px;
}

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

.cards-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.card p {
    color: #5b5b78;
    font-size: 15px;
    line-height: 1.75;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.metric-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 24px;
}

.metric-number {
    font-size: 32px;
    font-weight: 800;
    color: #e94560;
    margin-bottom: 6px;
    letter-spacing: -0.8px;
}

.metric-label {
    font-size: 14px;
    color: #6a6c84;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: start;
}

.price-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

.price-card.featured {
    border: 1px solid rgba(233, 69, 96, 0.25);
    box-shadow: 0 16px 40px rgba(233, 69, 96, 0.08);
}

.price-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e94560;
    margin-bottom: 14px;
}

.price-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.price-copy {
    font-size: 16px;
    color: #5b5b78;
    line-height: 1.75;
    margin-bottom: 22px;
}

.feature-list {
    list-style: none;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #4a4a6a;
    line-height: 1.7;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #27ae60;
    font-weight: 700;
}

.blog-list {
    display: grid;
    gap: 22px;
}

.blog-card {
    display: block;
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 18px;
    padding: 32px;
    transition: all 0.2s ease;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #e94560, #d63851);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
    border-color: rgba(233, 69, 96, 0.25);
}

.blog-card.featured {
    border: 1px solid rgba(233, 69, 96, 0.22);
    box-shadow: 0 16px 40px rgba(233, 69, 96, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fff9fa 100%);
}

.blog-card h2,
.blog-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.blog-card p {
    font-size: 16px;
    color: #5b5b78;
    line-height: 1.8;
}

.blog-meta {
    font-size: 12px;
    font-weight: 700;
    color: #e94560;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e94560;
    font-size: 14px;
    font-weight: 700;
}

.blog-badge {
    display: inline-block;
    background: rgba(233, 69, 96, 0.1);
    color: #e94560;
    border: 1px solid rgba(233, 69, 96, 0.18);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.article-shell {
    padding: 56px 24px 80px;
}

.article-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 20px;
    padding: 40px 40px 48px;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.06);
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.article-tag {
    display: inline-block;
    background: rgba(233, 69, 96, 0.1);
    color: #e94560;
    border: 1px solid rgba(233, 69, 96, 0.18);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.article-meta-text {
    font-size: 13px;
    color: #7a7d95;
    font-weight: 600;
}

.article-lead {
    font-size: 19px;
    line-height: 1.9;
    color: #353552;
    margin-bottom: 28px;
}

.article-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(233, 69, 96, 0.18), rgba(233, 69, 96, 0));
    margin: 28px 0 12px;
}

.article-callout {
    background: #fff8fa;
    border: 1px solid rgba(233, 69, 96, 0.18);
    border-left: 4px solid #e94560;
    border-radius: 14px;
    padding: 20px 22px;
    margin: 28px 0;
}

.article-callout h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    color: #1a1a2e;
}

.article-callout p {
    margin-bottom: 0;
    font-size: 16px;
    color: #4a4a6a;
    line-height: 1.8;
}

.article-cta-box {
    margin-top: 36px;
    padding: 24px;
    background: linear-gradient(180deg, #fff 0%, #fff8fa 100%);
    border: 1px solid rgba(233, 69, 96, 0.16);
    border-radius: 16px;
}

.article-cta-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
}

.article-cta-box p {
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .article-shell {
        padding: 36px 16px 60px;
    }

    .article-card {
        padding: 26px 22px 32px;
        border-radius: 16px;
    }

    .article-lead {
        font-size: 17px;
    }
}

.report-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 28px;
    align-items: start;
}

.report-sidebar {
    display: grid;
    gap: 18px;
}

.report-panel {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 24px;
}

.report-panel h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.report-panel p,
.report-panel li {
    font-size: 15px;
    color: #5b5b78;
    line-height: 1.75;
}

.report-panel ul {
    margin: 12px 0 0 18px;
}

.report-preview {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.06);
}

.report-preview-header {
    padding: 18px 22px;
    border-bottom: 1px solid #eef0f3;
    background: #fcfcfd;
    font-size: 14px;
    color: #6a6c84;
    font-weight: 600;
}

.report-frame {
    width: 100%;
    height: 900px;
    border: none;
    display: block;
    background: #ffffff;
}

.cta-band {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 72px 24px;
}

.cta-band-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-band h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.cta-band p {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 17px;
    color: #b7bbd6;
    line-height: 1.8;
}

.footer {
    background: #12121f;
    padding: 32px 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer p,
.footer a {
    font-size: 13px;
    color: #8d90a7;
}

.footer a:hover {
    color: #e94560;
}

@media (max-width: 900px) {
    .cards-3,
    .cards-2,
    .metric-grid,
    .pricing-grid,
    .report-layout {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 84px 20px 60px;
    }

    .page-section,
    .cta-band {
        padding-left: 20px;
        padding-right: 20px;
    }

    .report-frame {
        height: 700px;
    }
}


.calculator-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.calculator-card,
.calculator-results,
.result-card,
.calculator-explainer {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
}

.calculator-card {
    padding: 32px;
}

.calculator-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.slider-group + .slider-group {
    margin-top: 28px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
    margin-bottom: 12px;
}

.slider-header label {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.5;
}

.slider-header span {
    font-size: 18px;
    font-weight: 800;
    color: #e94560;
    white-space: nowrap;
}

.slider-group input[type="range"] {
    width: 100%;
    accent-color: #e94560;
}

.slider-help {
    margin-top: 10px;
    font-size: 14px;
    color: #6a6c84;
    line-height: 1.7;
}

.calculator-results {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    display: grid;
    gap: 20px;
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-card {
    padding: 28px;
}

.result-card.featured {
    border: 1px solid rgba(233, 69, 96, 0.22);
    box-shadow: 0 16px 40px rgba(233, 69, 96, 0.08);
}

.result-label {
    font-size: 13px;
    font-weight: 700;
    color: #6a6c84;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.result-number {
    font-size: 42px;
    font-weight: 800;
    color: #e94560;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.result-number.small {
    font-size: 30px;
    margin-bottom: 0;
}

.result-copy {
    font-size: 15px;
    color: #5b5b78;
    line-height: 1.75;
}

.calculator-explainer {
    padding: 28px;
}

.calculator-explainer h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.calculator-explainer p {
    font-size: 15px;
    color: #4a4a6a;
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .calculator-layout,
    .result-grid {
        grid-template-columns: 1fr;
    }

    .result-number {
        font-size: 34px;
    }
}

.calculator-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.calculator-card,
.calculator-results,
.result-card,
.calculator-explainer {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
}

.calculator-card {
    padding: 32px;
}

.calculator-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.slider-group + .slider-group {
    margin-top: 28px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
    margin-bottom: 12px;
}

.slider-header label {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.5;
}

.slider-header span {
    font-size: 18px;
    font-weight: 800;
    color: #e94560;
    white-space: nowrap;
}

.slider-group input[type="range"] {
    width: 100%;
    accent-color: #e94560;
}

.slider-help {
    margin-top: 10px;
    font-size: 14px;
    color: #6a6c84;
    line-height: 1.7;
}

.calculator-results {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    display: grid;
    gap: 20px;
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-card {
    padding: 28px;
}

.result-card.featured {
    border: 1px solid rgba(233, 69, 96, 0.22);
    box-shadow: 0 16px 40px rgba(233, 69, 96, 0.08);
}

.result-label {
    font-size: 13px;
    font-weight: 700;
    color: #6a6c84;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.result-number {
    font-size: 42px;
    font-weight: 800;
    color: #e94560;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.result-number.small {
    font-size: 30px;
    margin-bottom: 0;
}

.result-copy {
    font-size: 15px;
    color: #5b5b78;
    line-height: 1.75;
}

.calculator-explainer {
    padding: 28px;
}

.calculator-explainer h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.calculator-explainer p {
    font-size: 15px;
    color: #4a4a6a;
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .calculator-layout,
    .result-grid {
        grid-template-columns: 1fr;
    }

    .result-number {
        font-size: 34px;
    }
}