/* Homepage UX — Phases 1–3 (extracted from index.html) */

        .value-props {
            padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}
.value-props::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(34, 211, 238, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 75%, rgba(124, 58, 237, 0.07), transparent 50%);
    pointer-events: none;
}
.about-us-section .container {
    position: relative;
    z-index: 1;
}
.about-us-section {
    scroll-margin-top: 88px;
}
.about-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.25);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}
.about-grid .prism-lay-caption {
    grid-column: 1 / -1;
    max-width: none;
    margin-top: -24px;
}
.about-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.about-stat {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: var(--shadow-sm);
}
.about-stat strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 6px;
}
.about-stat span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.about-families {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-family {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-light);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.about-family:hover {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: var(--shadow-md);
}
.about-family-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}
.about-family-icon--vertical { background: rgba(16, 185, 129, 0.12); }
.about-family-icon--platform { background: rgba(59, 130, 246, 0.12); }
.about-family-icon--research { background: rgba(167, 139, 250, 0.15); }
.about-family h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}
.about-family p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-secondary);
}
.about-family a {
    color: #0d9488;
    font-weight: 600;
    text-decoration: none;
}
.about-family a:hover { text-decoration: underline; }
.prism-stack-figure {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    background: #0a1628;
}
.prism-stack-figure img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.prism-stack-caption {
    padding: 18px 22px;
    background: linear-gradient(180deg, #0f172a, #1e293b);
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.55;
}
.prism-stack-caption strong { color: #22d3ee; }
.prism-layer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.prism-layer-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    color: #67e8f9;
    border: 1px solid rgba(34, 211, 238, 0.25);
}
.about-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.about-cta-row .btn-secondary-new {
    text-decoration: none;
}
.choose-path-section {
    padding: 56px 0 32px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.choose-path-heading {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 8px;
    color: var(--text-primary);
}
.choose-path-sub {
    text-align: center;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 32px;
}
.choose-path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.choose-path-card {
    display: block;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.choose-path-card:hover {
    border-color: #0d9488;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.12);
    transform: translateY(-2px);
}
.choose-path-card h3 { margin: 8px 0; font-size: 1.125rem; color: #0d9488; }
.choose-path-card p { margin: 0 0 12px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5; }
.choose-path-link { font-size: 0.875rem; font-weight: 600; color: #0d9488; }
.choose-path-card--cta { background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(13, 148, 136, 0.02)); }
.homepage-trust-strip {
    padding: 16px 0 40px;
    background: #fff;
    border-bottom: 1px solid rgba(13, 148, 136, 0.15);
}
.homepage-trust-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.homepage-trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.homepage-trust-dot { color: #0d9488; }
.shop-bundle-details {
    max-width: 640px;
    margin: 20px auto 0;
    padding: 12px 16px;
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 8px;
    background: rgba(13, 148, 136, 0.04);
}
.shop-bundle-details summary { cursor: pointer; font-weight: 600; color: #0d9488; }
.shop-bundle-details p { margin: 12px 0 0; font-size: 0.875rem; color: var(--text-secondary); }
.architecture-compact { padding: 64px 0; background: #f8fafc; }
.deploy-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.deploy-step-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(13, 148, 136, 0.15);
}
.deploy-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0d9488;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}
.deploy-step-card h3 { margin: 0 0 8px; font-size: 1.125rem; }
.deploy-step-card p { margin: 0; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.55; }
.deploy-footnote { text-align: center; margin-top: 28px; font-size: 0.9375rem; }
.deploy-footnote a { color: #0d9488; font-weight: 600; }
.proof-metrics-section { padding: 64px 0; background: #fff; }
.proof-section-title { color: var(--text-primary); }
.proof-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.proof-metric-card {
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), rgba(13, 148, 136, 0.02));
    border: 1px solid rgba(13, 148, 136, 0.15);
}
.proof-metric-card strong {
    display: block;
    font-size: 1.25rem;
    color: #0d9488;
    margin-bottom: 8px;
}
.proof-metric-card span { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.proof-footnote { text-align: center; margin-top: 24px; font-size: 0.875rem; color: var(--text-secondary); }
.contract-payment--collapsed { padding: 32px 0 48px; background: #f8fafc; }
.homepage-trust-details {
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 12px;
    background: #fff;
    padding: 8px 16px;
}
.homepage-trust-details summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.0625rem;
    color: #0d9488;
    padding: 12px 8px;
}
.homepage-trust-details-body { padding: 8px 8px 16px; }

/* --- Phase 2: section rhythm (hero dark → light bands) --- */
.about-us-section.value-props {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.choose-path-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.homepage-trust-strip {
    background: #ffffff;
    border-bottom: 1px solid rgba(13, 148, 136, 0.12);
}
.product-showcase {
    background: linear-gradient(180deg, rgba(13, 148, 136, 0.06) 0%, #f1f5f9 100%) !important;
}
.aiweb-products {
    background: #ffffff;
}
.proof-metrics-section {
    background: linear-gradient(180deg, #ffffff 0%, rgba(13, 148, 136, 0.04) 100%);
}
#contact.cta {
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
}

.value-props::before {
    background:
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(13, 148, 136, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 75%, rgba(13, 148, 136, 0.05), transparent 50%);
}
.about-stat strong { color: #0d9488; }
.value-props .value-icon { color: #0d9488; }
.value-props .value-card::before {
    background: linear-gradient(90deg, #0d9488, #14b8a6);
}
.value-props .value-card:hover .value-icon {
    background: #0d9488;
    color: #fff;
}

/* Trust logo badges */
.homepage-trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 8px;
}
.homepage-trust-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(13, 148, 136, 0.25);
    background: rgba(13, 148, 136, 0.05);
    color: #0f453d;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.homepage-trust-logo-link:hover {
    background: rgba(13, 148, 136, 0.12);
    border-color: #0d9488;
}
.section-header-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 0 16px;
}
.prism-lay-caption {
    margin: 16px 0 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 52ch;
}
.prism-stack-expand-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    position: relative;
}
.prism-stack-expand-hint {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.75);
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 600;
    pointer-events: none;
}
@media (min-width: 769px) {
    .prism-stack-expand-hint { display: none; }
}

.prism-stack-lightbox {
    max-width: min(96vw, 1100px);
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 16px;
    background: #0a1628;
    color: #e2e8f0;
}
.prism-stack-lightbox::backdrop {
    background: rgba(10, 25, 41, 0.85);
}
.prism-stack-lightbox img {
    display: block;
    width: 100%;
    height: auto;
}
.prism-lightbox-body { padding: 0; }
.prism-lightbox-caption {
    padding: 16px 20px 20px;
    font-size: 0.9375rem;
    line-height: 1.55;
}
.prism-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
.prism-stack-lightbox-wrap { position: relative; }

/* Sticky secondary CTA */
.homepage-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    transform: translateY(110%);
    transition: transform 0.25s ease;
    pointer-events: none;
}
.homepage-sticky-cta.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}
.homepage-sticky-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(13, 148, 136, 0.2);
    box-shadow: 0 -8px 32px rgba(15, 69, 61, 0.12);
    backdrop-filter: blur(12px);
}
.homepage-sticky-cta-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}
.homepage-sticky-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.homepage-sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #0d9488;
    transition: background 0.2s, color 0.2s;
}
.homepage-sticky-cta-btn--chat {
    background: #fff;
    color: #0d9488;
}
.homepage-sticky-cta-btn--chat:hover {
    background: rgba(13, 148, 136, 0.08);
}
.homepage-sticky-cta-btn--primary {
    background: #0d9488;
    color: #fff;
}
.homepage-sticky-cta-btn--primary:hover {
    background: #0f766e;
}
@media (max-width: 576px) {
    .homepage-sticky-cta-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
    .homepage-sticky-cta-actions { justify-content: center; }
    .homepage-sticky-cta-btn { flex: 1; min-width: 120px; }
    body.has-sticky-cta-padding { padding-bottom: 88px; }
}

#contact .contact-social-link {
    color: #0d9488 !important;
    border-color: #0d9488 !important;
    background: rgba(13, 148, 136, 0.05) !important;
}
#contact .contact-social-link:hover {
    background: rgba(13, 148, 136, 0.12) !important;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .prism-stack-figure { order: -1; }
    .choose-path-grid { grid-template-columns: 1fr; }
    .deploy-steps-grid { grid-template-columns: 1fr; }
    .proof-metrics-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .about-stats { grid-template-columns: 1fr; }
    .proof-metrics-grid { grid-template-columns: 1fr; }
}

/* --- Hero Option D: orbit-first (ticker + orbit + footer) --- */

.hero-pain-ticker {
    flex-shrink: 0;
    padding: 76px 16px 6px;
    text-align: center;
    z-index: 25;
    pointer-events: none;
}
.hero-pain-ticker-text {
    display: inline-block;
    margin: 0;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fef3c7;
    background: rgba(180, 83, 9, 0.42);
    border: 1px solid rgba(251, 191, 36, 0.4);
    line-height: 1.35;
    max-width: min(96vw, 720px);
}
.hero-orbit-canvas {
    position: relative;
    flex: 1 1 auto;
    min-height: clamp(280px, 48vh, 520px);
    width: 100%;
}
.hero-orbit-footer {
    flex-shrink: 0;
    z-index: 28;
    padding: 10px 20px 22px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 25, 41, 0.55) 35%, rgba(10, 25, 41, 0.82) 100%);
}
.hero-orbit-tagline {
    font-size: clamp(1.05rem, 2.4vw, 1.65rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 6px;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero-orbit-tagline em {
    font-style: normal;
    color: #5eead4;
}
.hero-orbit-sub {
    font-size: clamp(0.75rem, 1.4vw, 0.9rem);
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 14px;
    max-width: 640px;
    line-height: 1.45;
}
.hero-orbit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.hero-orbit-actions .btn-primary-new,
.hero-orbit-actions .btn-secondary-new {
    font-size: 0.875rem;
    padding: 10px 18px;
}
@media (max-width: 768px) {
    .hero-pain-ticker { padding: 68px 10px 4px; }
    .hero-pain-ticker-text { font-size: 0.6875rem; padding: 4px 10px; }
    .hero-orbit-canvas { min-height: 300px; }
    .hero-orbit-footer { padding: 8px 12px 18px; }
    .hero-orbit-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Legacy message band — unused in orbit-first; kept for reference pages */
.hero-message-band { display: none; }

/* --- Hormozi marketing: pain, offer stack, FAQ --- */

.marketing-pain-section {
    padding: 56px 0 48px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
}
.marketing-pain-section .section-header-new h2 {
    color: #f8fafc;
}
.marketing-pain-section .section-header-new p {
    color: #94a3b8;
}
.marketing-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.marketing-pain-card {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.2);
}
.marketing-pain-card strong {
    display: block;
    font-size: 1rem;
    color: #fca5a5;
    margin-bottom: 8px;
}
.marketing-pain-card p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #cbd5e1;
}
.marketing-pain-bridge {
    text-align: center;
    margin-top: 32px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #5eead4;
}

.marketing-offer-section {
    padding: 64px 0;
    background: #fff;
}
.marketing-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 32px;
}
.marketing-offer-stack {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.marketing-offer-stack li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(13, 148, 136, 0.15);
    font-size: 0.9375rem;
}
.marketing-offer-stack li span:first-child { color: var(--text-primary); font-weight: 500; }
.marketing-offer-stack li span:last-child {
    color: #64748b;
    font-size: 0.8125rem;
    white-space: nowrap;
}
.marketing-offer-stack li.marketing-offer-core {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(13, 148, 136, 0.04));
    border-color: rgba(13, 148, 136, 0.35);
    font-weight: 700;
}
.marketing-offer-total {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #0f453d;
    color: #ecfdf5;
    text-align: center;
}
.marketing-offer-total del {
    opacity: 0.65;
    font-size: 0.9375rem;
}
.marketing-offer-total strong {
    display: block;
    font-size: 1.5rem;
    margin-top: 4px;
}
.marketing-offer-total small {
    display: block;
    margin-top: 8px;
    font-size: 0.8125rem;
    opacity: 0.85;
}
.marketing-roi-card {
    padding: 28px;
    border-radius: 16px;
    border: 2px solid rgba(13, 148, 136, 0.25);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), #fff);
}
.marketing-roi-card h3 {
    margin: 0 0 16px;
    font-size: 1.125rem;
    color: #0f453d;
}
.marketing-roi-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.marketing-roi-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9375rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(13, 148, 136, 0.15);
}
.marketing-roi-row:last-child { border-bottom: none; padding-bottom: 0; }
.marketing-roi-row span:last-child { font-weight: 700; color: #0d9488; }
.marketing-guarantee-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-secondary);
}
.marketing-guarantee-badge strong { color: #047857; }

.marketing-obstacles-section {
    padding: 56px 0;
    background: #f8fafc;
}
.marketing-obstacles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.marketing-obstacle-card {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(13, 148, 136, 0.15);
}
.marketing-obstacle-card .obstacle-fear {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #b45309;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.marketing-obstacle-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-primary);
}
.marketing-obstacle-card p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.marketing-faq-section {
    padding: 64px 0;
    background: #fff;
}
.marketing-faq-list {
    max-width: 760px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.marketing-faq-item {
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 12px;
    background: #f8fafc;
    overflow: hidden;
}
.marketing-faq-item summary {
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
}
.marketing-faq-item summary::-webkit-details-marker { display: none; }
.marketing-faq-item summary::after {
    content: '+';
    float: right;
    font-weight: 700;
    color: #0d9488;
}
.marketing-faq-item[open] summary::after { content: '−'; }
.marketing-faq-item p {
    margin: 0;
    padding: 0 20px 16px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

/* Audience path split */
.marketing-audience-section {
    padding: 48px 0;
    background: #fff;
    border-bottom: 1px solid rgba(13, 148, 136, 0.12);
}
.marketing-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.marketing-audience-card {
    display: block;
    padding: 28px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.marketing-audience-card--business {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.02));
    border-color: rgba(13, 148, 136, 0.25);
}
.marketing-audience-card--platform {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.02));
    border-color: rgba(59, 130, 246, 0.25);
}
.marketing-audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.marketing-audience-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.marketing-audience-card--business .marketing-audience-label { color: #0d9488; }
.marketing-audience-card--platform .marketing-audience-label { color: #2563eb; }
.marketing-audience-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: var(--text-primary);
}
.marketing-audience-card p {
    margin: 0 0 14px;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--text-secondary);
}
.marketing-audience-cta {
    font-size: 0.875rem;
    font-weight: 700;
}
.marketing-audience-card--business .marketing-audience-cta { color: #0d9488; }
.marketing-audience-card--platform .marketing-audience-cta { color: #2563eb; }

/* Live demo proof */
.marketing-demos-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}
.marketing-demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.marketing-demo-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(13, 148, 136, 0.2);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.marketing-demo-card:hover {
    border-color: #0d9488;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.12);
}
.marketing-demo-card strong {
    font-size: 0.9375rem;
    color: var(--text-primary);
}
.marketing-demo-card span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.marketing-demo-card em {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0d9488;
}

/* Platform buyer funnel */
.marketing-platform-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
}
.marketing-platform-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
    margin-top: 28px;
}
.marketing-platform-pain {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.marketing-platform-pain strong { color: #1e40af; }
.marketing-platform-stack {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.marketing-platform-stack li {
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-size: 0.875rem;
    line-height: 1.45;
}
.marketing-platform-stack li strong { color: #1d4ed8; }

/* Verified benchmark evidence */
.proof-evidence-block {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(13, 148, 136, 0.15);
}
.proof-evidence-block h3 {
    text-align: center;
    margin: 0 0 8px;
    font-size: 1.25rem;
    color: var(--text-primary);
}
.proof-evidence-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0 0 24px;
}
.proof-evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.proof-evidence-card {
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(13, 148, 136, 0.18);
}
.proof-evidence-card strong {
    display: block;
    font-size: 1.35rem;
    color: #0d9488;
    margin-bottom: 6px;
}
.proof-evidence-card .proof-evidence-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.proof-evidence-card cite {
    display: block;
    font-size: 0.75rem;
    font-style: normal;
    color: #64748b;
    line-height: 1.45;
}

.marketing-final-cta {
    text-align: center;
    padding: 48px 24px;
    margin-top: 0;
    background: linear-gradient(135deg, #0f453d, #0d9488);
    color: #ecfdf5;
}
.marketing-final-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
}
.marketing-final-cta p {
    margin: 0 auto 24px;
    max-width: 560px;
    font-size: 1rem;
    opacity: 0.92;
    line-height: 1.6;
}
.marketing-final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.marketing-final-cta .btn-primary-new {
    background: #fff;
    color: #0f453d;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.marketing-final-cta .btn-secondary-new {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

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