/* Styles for content pages: pricing, articles, ROI calculator */

.page-hero {
    padding: 10rem 0 3.5rem;
    text-align: center;
}

.page-hero .badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.page-title {
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    max-width: 820px;
    margin: 0 auto 1rem;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

/* Article body */
.article {
    max-width: 760px;
    margin: 0 auto;
    padding: 1rem 20px 4rem;
}

.article h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.01em;
}

.article h3 {
    font-size: 1.2rem;
    margin: 1.75rem 0 0.75rem;
}

.article p,
.article li {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-primary);
}

.article p {
    margin-bottom: 1.1rem;
}

.article ul,
.article ol {
    margin: 0 0 1.25rem 1.4rem;
}

.article li {
    margin-bottom: 0.5rem;
}

.article a {
    color: var(--secondary-color);
}

.article strong {
    font-weight: 600;
}

.article .lead {
    font-size: 1.12rem;
    color: var(--text-secondary);
}

.callout {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
}

.callout p {
    margin-bottom: 0;
}

.article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.article th,
.article td {
    text-align: left;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.article th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.table-scroll {
    overflow-x: auto;
}

/* Inline CTA between article sections */
.article-cta {
    text-align: center;
    padding: 2.5rem 0 3.5rem;
}

/* Calculator */
.calc-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 20px 4rem;
}

.calc-card {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.calc-card h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.calc-card .calc-hint {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
}

.calc-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.calc-field input,
.calc-field select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 0.95rem;
    background: var(--surface);
    color: var(--text-primary);
}

.calc-field input:focus,
.calc-field select:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
}

.calc-field .field-hint {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.result-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.result-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.4rem;
}

.result-tile .tile-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.result-tile .tile-value {
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.25rem;
    line-height: 1.2;
}

.result-tile .tile-note {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.verdict {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 1.4rem 1.6rem;
    margin-top: 1.5rem;
}

.verdict h3 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.verdict p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.calc-disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 0 2.5rem;
    }
    .page-title {
        font-size: 1.9rem;
    }
    .calc-grid,
    .result-tiles {
        grid-template-columns: 1fr;
    }
}

/* Founding-client offer band */
.offer-band {
    background: var(--background-dark);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.offer-band .section-title {
    color: #fff;
}

.offer-band .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.offer-list {
    list-style: none;
    max-width: 760px;
    margin: 0 auto 2rem;
    padding: 0;
    text-align: left;
}

.offer-list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.7rem;
    color: var(--accent);
    font-weight: 700;
}

.offer-band .cta-button {
    background: var(--secondary-color);
}

.offer-band .urgency-text {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

/* Guarantee block on the pricing page */
.guarantee {
    background: var(--surface);
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.guarantee h2 {
    margin-top: 0;
    color: var(--primary-color);
}

.guarantee p:last-child {
    margin-bottom: 0;
}

/* Two-column "who it's for / not for" */
.fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.75rem 0;
}

.fit-col {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
}

.fit-col h3 {
    margin-top: 0;
    font-size: 1.05rem;
}

.fit-col ul {
    margin: 0 0 0 1.1rem;
}

.fit-col li {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .fit-grid {
        grid-template-columns: 1fr;
    }
}

/* Four-across card grid for industry cross-links */
.resources-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .resources-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .resources-grid.grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Source citations */
.sources {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px 4rem;
}

.sources h2 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.sources p.sources-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.sources ol {
    margin: 0 0 0 1.3rem;
    padding: 0;
}

.sources li {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.sources a {
    color: var(--secondary-color);
    word-break: break-word;
}
