/* ============================================================
   PENTASYSAI — DIGITAL MARKETING PAGE STYLES
   ============================================================ */

/* ——— MARKETING HERO ——— */
.marketing-hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--header-height) + var(--space-16));
    padding-bottom: var(--space-16);
    position: relative;
    overflow: hidden;
}

.marketing-hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.marketing-hero h1 {
    font-size: var(--fs-h1);
    font-weight: 900;
    margin-bottom: var(--space-5);
    background: linear-gradient(135deg, var(--text-white), var(--mkt-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marketing-hero p {
    font-size: var(--fs-body-lg);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

.marketing-hero .hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

.mt-8 { margin-top: var(--space-8); }

/* ——— MARKETING SERVICES GRID ——— */
.marketing-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-8);
}

.mkt-service-card {
    background: var(--bg-deep);
    border: 1px solid rgba(var(--mkt-rose-rgb), 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mkt-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--mkt-rose), var(--dev-amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.mkt-service-card:hover {
    border-color: rgba(var(--mkt-rose-rgb), 0.35);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 0 30px rgba(var(--mkt-rose-rgb), 0.03);
}

.mkt-service-card:hover::after {
    transform: scaleX(1);
}

.mkt-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--mkt-rose-rgb), 0.05);
    border: 1px solid rgba(var(--mkt-rose-rgb), 0.15);
    border-radius: var(--radius-md);
    font-size: 1.75rem;
    color: var(--mkt-rose);
    margin-bottom: var(--space-6);
    box-shadow: var(--glow-rose);
}

.mkt-service-card h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-4);
}

.mkt-service-card p {
    color: var(--text-secondary);
    font-size: var(--fs-body);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-6);
}

.mkt-features {
    list-style: none;
    padding: 0;
    margin: 0 var(--space-10) var(--space-8) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mkt-features li {
    position: relative;
    padding-left: 20px;
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.mkt-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--mkt-rose);
}

.card-meta {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-6);
}

.meta-group {
    margin-bottom: var(--space-4);
}

.meta-group:last-child {
    margin-bottom: 0;
}

.meta-label {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    margin-bottom: var(--space-3);
}

.meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.meta-tag {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.meta-list li {
    font-size: var(--fs-small);
    color: var(--text-muted);
    position: relative;
    padding-left: 18px;
}

.meta-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dev-emerald);
}

/* ——— RESPONSIVE OVERRIDES ——— */
@media (max-width: 900px) {
    .marketing-hero {
        min-height: 50vh;
        padding-top: calc(var(--header-height) + var(--space-12));
    }

    .marketing-services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ——— INSIGHTS & RESOURCES SECTION (BLOGS) ——— */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.insight-card {
    background: var(--bg-deep);
    border: 1px solid rgba(var(--mkt-rose-rgb), 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out);
}

.insight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--mkt-rose-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.insight-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.insight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.insight-card:hover .insight-img {
    transform: scale(1.06);
}

.insight-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 3;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.insight-body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-meta {
    display: flex;
    gap: var(--space-4);
    font-size: var(--fs-xs);
    color: var(--text-dim);
    margin-bottom: var(--space-3);
    font-family: var(--font-mono);
}

.insight-body h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    line-height: var(--lh-tight);
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.insight-excerpt {
    font-size: var(--fs-small);
    color: var(--text-muted);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-5);
    flex-grow: 1;
}

.btn-read-more {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--mkt-rose);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.btn-read-more i {
    transition: transform var(--transition-fast);
}

.btn-read-more:hover {
    color: var(--text-primary);
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

/* ——— STANDALONE BLOG DETAILS PAGE LAYOUT ——— */
.blog-hero {
    background: var(--bg-surface);
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-12);
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.blog-hero-content {
    max-width: 900px;
}

.blog-title {
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: var(--lh-tight);
    color: var(--text-primary);
    margin: var(--space-4) 0;
}

.blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-5);
    font-size: var(--fs-small);
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.blog-hero-meta span i {
    color: var(--mkt-rose);
    margin-right: 6px;
}

.blog-body-section {
    padding: var(--space-12) 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 3fr 1.1fr;
    gap: var(--space-10);
    align-items: start;
}

.blog-content-area {
    background: var(--bg-deep);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.blog-featured-img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
}

.article-rich-text {
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    color: var(--text-secondary);
}

.article-rich-text .lead-text {
    font-size: var(--fs-body-lg);
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: var(--space-6);
}

.article-rich-text h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.article-rich-text p {
    margin-bottom: var(--space-5);
}

.article-rich-text blockquote {
    border-left: 4px solid var(--mkt-rose);
    padding: var(--space-2) 0 var(--space-2) var(--space-5);
    margin: var(--space-6) 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: var(--fs-body-lg);
    background: rgba(var(--mkt-rose-rgb), 0.02);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Sidebar Styling */
.blog-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-6));
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-widget {
    background: var(--bg-deep);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.widget-title {
    font-size: var(--fs-body-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.widget-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.widget-links li a {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: var(--lh-normal);
    transition: color var(--transition-fast);
}

.widget-links li a:hover {
    color: var(--mkt-rose);
}

.widget-text {
    font-size: var(--fs-small);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-4);
}

.widget-more-link {
    font-size: var(--fs-xs);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--mkt-rose);
    transition: color var(--transition-fast);
}

.widget-more-link:hover {
    color: var(--text-primary);
}

.cta-widget {
    background: linear-gradient(135deg, var(--bg-deep), rgba(var(--mkt-rose-rgb), 0.03));
    border-color: rgba(var(--mkt-rose-rgb), 0.15);
    text-align: center;
}

.cta-widget h4 {
    font-size: var(--fs-body-lg);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.cta-widget p {
    font-size: var(--fs-small);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-5);
}

.cta-widget .btn {
    width: 100%;
}

/* Sidebar Responsive overrides */
@media (max-width: 1100px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .blog-sidebar {
        position: static;
    }
}


/* ——— MARKETING STRATEGY CONSOLE ——— */
.mkt-console-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-8);
    margin-top: var(--space-10);
}

@media (max-width: 900px) {
    .mkt-console-container {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

.mkt-console-tabs {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

@media (max-width: 900px) {
    .mkt-console-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: var(--space-2);
    }
}

.mkt-console-tab {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-6);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

@media (max-width: 900px) {
    .mkt-console-tab {
        flex-shrink: 0;
    }
}

.mkt-console-tab i {
    color: var(--mkt-rose);
}

.mkt-console-tab:hover, .mkt-console-tab.active {
    background: var(--glass-bg-hover);
    color: var(--text-white);
    border-color: var(--mkt-rose);
    box-shadow: 0 0 20px rgba(var(--mkt-rose-rgb), 0.15);
}

.mkt-console-main {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.mkt-console-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.mkt-console-content.active {
    display: block;
}

.mkt-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-8);
}

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

.mkt-info h3 {
    font-size: var(--fs-h3);
    font-weight: 800;
    margin-bottom: var(--space-3);
    color: var(--text-white);
}

.mkt-info p {
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-6);
}

.mkt-tags-title, .mkt-checklist-title {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--mkt-rose);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.mkt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.mkt-tag {
    padding: 6px 12px;
    background: rgba(var(--mkt-rose-rgb), 0.06);
    border: 1px solid rgba(var(--mkt-rose-rgb), 0.15);
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.mkt-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.mkt-checklist li {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.mkt-checklist li i {
    color: var(--dev-emerald);
}


/* ——— PERFORMANCE DASHBOARD MOCKUP ——— */
.dashboard-section {
    background: var(--bg-void);
    padding: var(--space-20) 0;
}

.dashboard-mockup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(var(--mkt-rose-rgb), 0.05);
    margin-top: var(--space-10);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-6);
}

.dashboard-title-group {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--dev-emerald);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--dev-emerald);
    animation: pulse 1.5s infinite alternate;
}

.dashboard-heading {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: 700;
}

.dashboard-sync-lbl {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

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

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

.dashboard-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    transition: border-color 0.3s;
}

.dashboard-card:hover {
    border-color: rgba(var(--mkt-rose-rgb), 0.3);
}

.db-card-label {
    font-size: var(--fs-xs);
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.db-card-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.db-card-trend {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--dev-emerald);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.dashboard-log-feed {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    height: 120px;
    overflow-y: auto;
}

.log-entry {
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.log-entry:last-child {
    margin-bottom: 0;
}

.log-time { color: var(--mkt-rose); }
.log-msg { color: #e2e8f0; }
.log-status { color: var(--dev-emerald); }


/* ——— COMPETITOR INTEL GRADER ——— */
.grader-container {
    max-width: 800px;
    margin: var(--space-10) auto 0 auto;
}

.grader-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(var(--mkt-rose-rgb), 0.05);
    transition: all 0.4s ease-in-out;
}

.grader-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

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

.grader-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    transition: all var(--transition-base);
}

.grader-input:focus {
    border-color: var(--mkt-rose);
    outline: none;
    box-shadow: 0 0 15px rgba(var(--mkt-rose-rgb), 0.2);
}

/* Spinner Loader styling */
.scanner-status-group {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.scanner-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(250, 28, 92, 0.2);
    border-top: 3px solid var(--mkt-rose);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.scanner-title {
    font-family: var(--font-mono);
    font-size: var(--fs-small);
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
}

.scanner-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-6);
}

.scanner-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--mkt-rose), #ff5a79);
    border-radius: var(--radius-full);
    transition: width 0.1s linear;
}

.scanner-logs {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    height: 140px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.scanner-log-line {
    display: flex;
    gap: var(--space-3);
    line-height: var(--lh-relaxed);
}

.scanner-log-line .log-time { color: var(--mkt-rose); }
.scanner-log-line .log-text { color: #cbd5e1; }
.scanner-log-line .log-ok { color: var(--dev-emerald); font-weight: 700; }

/* Table styling */
.results-header-summary {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: var(--space-5);
    margin-bottom: var(--space-6);
}

.results-header-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
}

.results-summary-text {
    color: var(--text-muted);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
}

.results-table-wrapper {
    overflow-x: auto;
}

.grader-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.grader-table th, 
.grader-table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.grader-table th {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 700;
}

.grader-table td {
    font-size: var(--fs-small);
    color: var(--text-white);
}

.badge {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 700;
}

.badge-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--dev-emerald);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-rose {
    background: rgba(250, 28, 92, 0.1);
    color: var(--mkt-rose);
    border: 1px solid rgba(250, 28, 92, 0.2);
}

.results-cta {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

@media (max-width: 600px) {
    .results-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

.results-cta-info h4 {
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: var(--fs-body);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.results-cta-info p {
    color: var(--text-muted);
    font-size: var(--fs-xs);
    line-height: var(--lh-relaxed);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

