@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

@font-face {
    font-family: 'Roboto';
    src: url('https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nasalization';
    src: url("/static/fonts/nasalization-rg.3e5a870c6d7a.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --orange:        #FF4500;
    --orange-dark:   #D93A00;
    --orange-light:  #FF6B35;
    --orange-faint:  rgba(255, 69, 0, 0.08);
    --blue:          #01B0FD;
    --blue-dark:     #0090D4;
    --blue-faint:    rgba(1, 176, 253, 0.08);
    --black:         #0D0D0D;
    --black-soft:    #1A1A1A;
    --gray-dark:     #444444;
    --gray-mid:      #888888;
    --gray-light:    #E8E8E8;
    --off-white:     #F7F7F7;
    --white:         #FFFFFF;

    /* legacy aliases kept so inline styles in the template still resolve */
    --primary-color:   var(--orange);
    --secondary-color: var(--orange-dark);
    --accent-color:    var(--orange-light);
    --bg-color:        var(--off-white);
    --text-color:      var(--black);
    --medium-gray:     var(--gray-mid);
    --card-bg:         var(--white);
}

/* ─── Base ─────────────────────────────────────────────────────────────── */
body {
    font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
    color: var(--black);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--black);
}

/* ─── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
    background: transparent;
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: transparent;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Nasalization', 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--black);
    transition: opacity 0.3s ease;
}

.navbar-brand:hover { opacity: 0.75; color: var(--black); }

.navbar-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    gap: 0.5rem;
}

.nav-link {
    color: var(--black);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    transition: all 0.25s ease;
}

.nav-link::after { display: none; }

.nav-link:hover {
    color: var(--orange);
    background: var(--orange-faint);
}

.navbar .btn-outline-light {
    border: 2px solid var(--black);
    color: var(--black);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    background: transparent;
    transition: all 0.25s ease;
}

.navbar .btn-outline-light:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar .btn-light {
    background: var(--orange);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.25);
}

.navbar .btn-light:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.35);
}

.navbar-toggler {
    border: 2px solid var(--black);
    padding: 0.5rem;
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-collapse.show {
    background: var(--white);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .navbar {
        background: transparent;
        position: relative;
    }

    .navbar-nav {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        flex-direction: column;
        gap: 0;
    }

    .nav-link:hover { background: transparent; }

    .navbar .d-flex {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .navbar .btn-outline-light,
    .navbar .btn-light { width: 100%; }
}

/* ─── Demo Player ───────────────────────────────────────────────────────── */
.demo-player {
    position: relative;
}

.demo-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.demo-tab {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    color: var(--gray-dark);
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.demo-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.demo-tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.25);
}

.demo-screens { position: relative; }

.demo-screen { display: none; }
.demo-screen.active { display: block; }

.demo-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: var(--black);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--gray-light);
}

.demo-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none; /* shown when src is set */
}

.demo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--black-soft) 0%, #2a2a2a 100%);
}

.demo-placeholder i { color: var(--orange); }
.demo-placeholder p  { color: rgba(255,255,255,0.75); margin: 0; }
.demo-placeholder p.fw-bold { color: var(--white); font-size: 1.1rem; margin-bottom: 0.35rem; }

.demo-caption {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-top: 0.9rem;
    line-height: 1.6;
    padding: 0 0.25rem;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero-clean {
    background: var(--white);
    padding: 0;
}

.hero-content-clean { position: relative; }

.hero-eyebrow {
    display: flex;
    align-items: center;
}

.eyebrow-badge {
    background: var(--blue-faint);
    color: var(--blue-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(1, 176, 253, 0.25);
}

.hero-title-clean {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--black);
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text {
    color: var(--black);
    font-size: 0.8em;
}

.hero-description-clean {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: var(--gray-dark);
}

.hero-cta-clean {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-hero-gradient {
    background: var(--orange);
    color: var(--white);
    padding: 1.1rem 2.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
}

.btn-hero-gradient:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(255, 69, 0, 0.4);
}

.hero-note-clean {
    color: var(--gray-mid);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--gray-light);
}

.proof-avatars {
    display: flex;
    margin-left: -10px;
}

.proof-avatars .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    border: 3px solid var(--white);
    margin-left: -10px;
}

.proof-text { font-size: 0.9rem; color: var(--black); }
.proof-text strong { color: var(--orange); }

/* Hero visual */
.hero-visual-clean { position: relative; }

.visual-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--gray-light);
    animation: float-gentle 5s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.floating-element {
    position: absolute;
    background: var(--white);
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border: 1px solid var(--gray-light);
    animation: element-float 3s ease-in-out infinite;
}

.floating-element i {
    font-size: 1.4rem;
    color: var(--orange);
}

.floating-element strong {
    display: block;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 0.1rem;
}

.floating-element small {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-mid);
}

.element-1 { top: 15%; left: -80px; animation-delay: 0s; }
.element-2 { top: 50%; right: -80px; animation-delay: 1s; }
.element-3 { bottom: 10%; left: -60px; animation-delay: 2s; }

@keyframes element-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-15px); }
}

@media (max-width: 991px) {
    .hero-clean { min-height: auto; padding: 80px 0 60px; }
    .hero-title-clean { font-size: 2.4rem; }
    .floating-element { position: static; margin: 1rem 0; }
    .hero-proof { flex-direction: column; text-align: center; }
    .proof-avatars { margin-left: 0; justify-content: center; }
}

@media (max-width: 767px) {
    .hero-cta-clean { align-items: stretch; }
    .btn-hero-gradient { width: 100%; text-align: center; }
}

/* ─── Trust Section ─────────────────────────────────────────────────────── */
.trust-section {
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    background: var(--white);
}

.trust-label {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: var(--gray-mid);
    font-weight: 600;
}

.logo-grid-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.trust-logo-img {
    height: 56px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.trust-logo-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.06);
}

/* ─── Metrics Section ───────────────────────────────────────────────────── */
.metrics-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--black);
}

.metrics-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 20vw, 25rem);
    font-weight: 700;
    color: rgba(255, 69, 0, 0.12);
    white-space: nowrap;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
}

.metrics-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.9), rgba(13,13,13,0.75));
    z-index: 1;
}

.metrics-content { position: relative; z-index: 2; }

.metrics-number {
    background: linear-gradient(135deg, var(--orange-light), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    display: inline-block;
}

.metrics-description {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

/* ─── Pain Killer / Why Section ─────────────────────────────────────────── */
.pain-killer-card {
    background: var(--white);
    border: 1px solid var(--gray-light) !important;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pain-killer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 69, 0, 0.12);
    border-color: var(--orange) !important;
}

.pain-icon { color: var(--orange); }

.pain-killer-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ─── Marquee ───────────────────────────────────────────────────────────── */
.marquee-container {
    overflow: hidden;
    padding: 1rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.marquee {
    white-space: nowrap;
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee.reverse { animation: marquee-reverse 30s linear infinite; }

@keyframes marquee         { 0% { transform: translateX(0);    } 100% { transform: translateX(-50%); } }
@keyframes marquee-reverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0);    } }

.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    margin: 0 0.75rem;
    min-width: 190px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.marquee-item.primary {
    background: var(--orange-faint);
    color: var(--orange);
    border: 1px solid rgba(255, 69, 0, 0.15);
}

.marquee-item.accent {
    background: var(--blue-faint);
    color: var(--blue-dark);
    border: 1px solid rgba(1, 176, 253, 0.2);
}

.marquee-item.primary:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.marquee-item.accent:hover  { background: var(--blue);   color: var(--white); transform: translateY(-2px); }

/* ─── Features Section ──────────────────────────────────────────────────── */
.feature-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 0.45rem 1.25rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-badge.blue {
    background: var(--blue);
    color: var(--white);
}

.feature-checklist { list-style: none; padding: 0; }

.feature-checklist li {
    padding: 0.7rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gray-light);
}

.feature-checklist li:last-child { border-bottom: none; }

.feature-checklist li i {
    color: var(--orange);
    margin-right: 1rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ─── Comparison Table ──────────────────────────────────────────────────── */
.comparison-section { background: var(--off-white); }

.comparison-table {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.comparison-table thead {
    background: var(--black);
    color: var(--white);
}

.comparison-table thead th {
    padding: 1.4rem;
    font-weight: 700;
    border: none;
    color: var(--white);
}

.comparison-table tbody td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--gray-light);
}

.comparison-table tbody tr:hover { background: var(--off-white); }

.trendscribbr-col {
    background: var(--orange-faint);
    border-left: 2px solid var(--orange) !important;
}

/* ─── Case Study / ROI Section ──────────────────────────────────────────── */
.case-study-section {
    position: relative;
    overflow: hidden;
    background: #fff !important;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.roi-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 3px solid var(--orange);
}

.roi-card:hover { transform: translateY(-5px); }

.roi-card.blue { border-top-color: var(--blue); }

.roi-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.roi-card.blue .roi-number { color: var(--blue); }

.roi-label { color: var(--gray-dark); font-size: 0.9rem; }

/* ─── Pricing Cards ─────────────────────────────────────────────────────── */
.pricing-card-preview {
    border: 1px solid var(--gray-light) !important;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    background: var(--white);
}

.pricing-card-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--orange) !important;
}

.pricing-featured {
    border: 2px solid var(--orange) !important;
    position: relative;
    transform: scale(1.05);
}

.pricing-featured:hover { transform: scale(1.05) translateY(-8px); }

.popular-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-tag .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
}

.price-tag .period {
    font-size: 1.1rem;
    color: var(--gray-mid);
}

/* ─── CTA Section ───────────────────────────────────────────────────────── */
.cta-section {
    padding: 100px 0 110px;
    background-color: #fff;
}

/* Card */
.cta-why-card {
    background: var(--black);
    border-radius: 24px;
    padding: 56px 52px 0;
    overflow: hidden;
}

.cta-why-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 2.5rem;
}

/* 3-column feature grid */
.cta-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
}

.cta-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
}

.cta-why-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: 0.78rem;
    margin-top: 1px;
}

.cta-why-item strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.3;
}

.cta-why-item span {
    color: rgba(255,255,255,.38);
    font-size: 0.8rem;
    line-height: 1.55;
}

/* Bottom bar */
.cta-why-bottom {
    background: rgba(0,0,0,.35);
    margin: 0 -52px;
    padding: 22px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-why-tagline {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.cta-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #fff;
    color: #0a0a0a;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-why-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,.18);
    color: #0a0a0a;
}

@media (max-width: 768px) {
    .cta-why-card  { padding: 40px 24px 0; }
    .cta-why-grid  { grid-template-columns: 1fr; }
    .cta-why-bottom {
        flex-direction: column;
        text-align: center;
        margin: 0 -24px;
        padding: 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cta-why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
    background-color: var(--black);
    color: rgba(255, 255, 255, 0.65);
}

/* Top CTA strip */
.footer-cta-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-cta-headline {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-cta-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 0.65rem 1.6rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-cta-btn:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.35);
}

/* Column headings */
.footer-col-title {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Links */
.footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.22s ease;
    font-size: 0.9rem;
}

.footer a:hover { color: var(--orange); }

.footer ul.list-unstyled li { margin-bottom: 0.55rem; }

/* Platform source badges */
.footer-platform-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.2rem;
}

.footer-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-platform-badge.reddit  { color: #FF6534; border-color: rgba(255,101,52,.3); background: rgba(255,101,52,.08); }
.footer-platform-badge.twitter { color: rgba(255,255,255,.7); }
.footer-platform-badge.tiktok  { color: rgba(255,255,255,.7); }

/* Social icons */
.footer-social-row {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: var(--orange);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 0.8rem;
}

.footer-bottom-links a:hover { color: var(--orange) !important; }

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ─── Section Eyebrow Labels ────────────────────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-faint);
    color: var(--orange);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-eyebrow.blue {
    background: var(--blue-faint);
    color: var(--blue-dark);
    border-color: rgba(1, 176, 253, 0.25);
}

/* ─── Comparison Table ──────────────────────────────────────────────────── (header supplement) */
.comparison-winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange);
    color: white;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 8px;
}

/* ─── Case Study stars ─────────────────────────────────────────────────── */
.case-study-stars {
    color: #FBBF24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.case-study-quote {
    background: #f8f9fb;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 2rem;
}

/* ─── Pricing trust badge ───────────────────────────────────────────────── */
.pricing-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pricing-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.pricing-trust-badge i { color: var(--orange); font-size: 0.9rem; }

/* ─── FAQ Cards ─────────────────────────────────────────────────────────── */
.faq-section { background: var(--off-white); }

.faq-intro-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }

.faq-support-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.faq-support-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--orange-faint);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-support-title { font-size: 0.9rem; font-weight: 700; color: var(--black); }
.faq-support-sub   { font-size: 0.8rem; color: var(--gray-mid); margin-top: 2px; }

.faq-support-btn {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.faq-support-btn:hover { text-decoration: underline; }

.faq-grid { display: flex; flex-direction: column; gap: 14px; }

.faq-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-card:hover {
    border-color: rgba(255, 69, 0, 0.3);
    box-shadow: 0 4px 16px rgba(255, 69, 0, 0.08);
}

.faq-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--orange-faint);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-q {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    line-height: 1.4;
}

.faq-a {
    font-size: 0.875rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ─── Accordion (legacy, keep for other pages) ──────────────────────────── */
.accordion-item {
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--orange-faint);
    color: var(--orange);
    box-shadow: none;
}

.accordion-button:focus { box-shadow: none; border: none; }

.accordion-button::after {
    filter: none;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .metrics-section { padding: 80px 0; }
    .metrics-background { font-size: 8rem; }
    .pricing-featured { transform: none; margin: 2rem 0; }
    .pricing-featured:hover { transform: translateY(-8px); }
}

@media (max-width: 767px) {
    .display-4 { font-size: 1.8rem; }
    .lead { font-size: 1rem; }
    .logo-grid-inline { gap: 1rem; }
    .roi-card { margin-bottom: 1rem; }
    .roi-number { font-size: 1.9rem; }
}
