/* ========================================
   FABSOFT ADS LANDING PAGE STYLES
   Modern conversion-focused design for paid-ads landing pages.
   Uses the FabSoft design system variables from fabsoft-product-layout.css.
   ======================================== */

/* ============================================
   PARENT LAYOUT OVERRIDES
   MasterHome.cshtml wraps content in home-wrapper > home-border + home-mainContent
   which constrains width. These overrides break out for full-width ads pages.
   ============================================ */
.home-wrapper:has(.ads-landing) {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.home-wrapper:has(.ads-landing) > .home-border {
    display: none !important;
}
.home-mainContent:has(.ads-landing) {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
#main-content:has(.ads-landing) {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.home-wrapper:has(.ads-landing) .nav-section {
    display: block !important;
    max-width: 100% !important;
}
.home-wrapper:has(.ads-landing) .nav-section .home-gutter {
    display: none !important;
}
.home-wrapper:has(.ads-landing) .nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.home-wrapper:has(.ads-landing) .home-heroHrContainer {
    display: none !important;
}

.home-wrapper:has(.ads-landing) .home-footer,
.home-wrapper:has(.ads-landing) .home-footerBar,
.home-wrapper:has(.ads-landing) .products-footerButton {
    display: none !important;
}

/* ============================================
   CRITICAL: Override case-* flex layout from site.min.css
   ============================================ */
.ads-landing {
    display: block !important;
    width: 100% !important;
}
.ads-landing .case-section {
    display: block !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
}
.ads-landing .case-pageContent {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}
.ads-landing .case-articleBody {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
}
.ads-landing .case-articleBody article {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.ads-landing .case-title,
.ads-landing .blogs-postAuthor {
    display: none !important;
}
.ads-landing .solutionsPost-hero {
    display: none !important;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.ads-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.ads-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .ads-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.ads-hero {
    padding: 100px 24px 60px;
    background: var(--fabsoft-bg, #F6F6F8);
    text-align: center;
    width: 100%;
}
.ads-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.ads-hero-badge {
    display: inline-block;
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.ads-hero h1 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-hero h1 span {
    color: var(--fabsoft-blue, #0071E3);
}
.ads-hero h2 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    color: var(--fabsoft-text-muted, #86868B);
    max-width: 650px;
    margin: 0 auto 16px;
    line-height: 1.5;
}
.ads-hero-body {
    font-size: 17px;
    color: var(--fabsoft-text-muted, #86868B);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.ads-hero-image {
    margin-top: 32px;
}
.ads-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.ads-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}
.ads-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 980px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.ads-btn-primary {
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
}
.ads-btn-primary:hover {
    background: var(--fabsoft-blue-hover, #0077ED);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,113,227,0.3);
    color: #fff;
    text-decoration: none;
}
.ads-btn-secondary {
    background: transparent;
    color: var(--fabsoft-blue, #0071E3);
    border: 2px solid var(--fabsoft-blue, #0071E3);
}
.ads-btn-secondary:hover {
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    text-decoration: none;
}

.ads-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    justify-content: center;
    font-size: 14px;
    color: var(--fabsoft-text-muted, #86868B);
}
.ads-trust-badges span::before {
    content: '\2713';
    color: var(--fabsoft-green, #34C759);
    font-weight: 700;
    margin-right: 8px;
}

/* ============================================
   PROBLEM / SOLUTION SECTION
   ============================================ */
.ads-problem-section {
    padding: 80px 24px;
    background: #fff;
    width: 100%;
}
.ads-problem-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.ads-problem-section h2 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-problem-section > .ads-problem-inner > p {
    text-align: center;
    color: var(--fabsoft-text-muted, #86868B);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 48px;
}
.ads-problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .ads-problem-grid { grid-template-columns: 1fr 1fr; }
}
.ads-problem-column {
    padding: 32px;
    border-radius: 16px;
    text-align: left;
}
.ads-problem-column--without {
    background: linear-gradient(135deg, #FFF5F5, #FFE8E8);
    border-left: 4px solid #FF3B30;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.08);
}
.ads-problem-column--with {
    background: linear-gradient(135deg, #F0FFF4, #E0FFE8);
    border-left: 4px solid #34C759;
    box-shadow: 0 4px 20px rgba(52, 199, 89, 0.08);
}
.ads-problem-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ads-problem-column--without h3 { color: #C53030; }
.ads-problem-column--with h3 { color: #276749; }
.ads-problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ads-problem-list li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.ads-problem-list li::before {
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.ads-problem-column--without .ads-problem-list li::before {
    content: '\2717';
    color: #C53030;
}
.ads-problem-column--with .ads-problem-list li::before {
    content: '\2713';
    color: #276749;
}

/* ============================================
   STATS BAR
   ============================================ */
.ads-stats-bar {
    background: #fff;
    padding: 40px 24px;
    border-bottom: 1px solid var(--fabsoft-border, #D2D2D7);
    width: 100%;
}
.ads-stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ads-stat {
    text-align: center;
}
.ads-stat-num {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--fabsoft-blue, #0071E3);
    display: block;
    line-height: 1.2;
}
.ads-stat-label {
    font-size: 14px;
    color: var(--fabsoft-text-muted, #86868B);
    margin-top: 4px;
}
@media (min-width: 640px) {
    .ads-stats-inner { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   SHOWCASE TABS
   ============================================ */
.ads-showcase {
    padding: 80px 24px;
    background: var(--fabsoft-bg, #F6F6F8);
    width: 100%;
}
.ads-showcase-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.ads-showcase h2 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 12px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-showcase-subtitle {
    text-align: center;
    color: var(--fabsoft-text-muted, #86868B);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 48px;
}
.ads-showcase-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--fabsoft-border, #D2D2D7);
}
.ads-showcase-tab {
    padding: 14px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--fabsoft-text-muted, #86868B);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
}
.ads-showcase-tab:hover {
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-showcase-tab.active {
    color: var(--fabsoft-blue, #0071E3);
    border-bottom-color: var(--fabsoft-blue, #0071E3);
    font-weight: 600;
}
.ads-showcase-panel {
    display: none;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}
.ads-showcase-panel.active {
    display: grid;
}
@media (min-width: 768px) {
    .ads-showcase-panel.active {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }
}
.ads-showcase-preview {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}
.ads-showcase-preview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.ads-showcase-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--fabsoft-text, #1D1D1F);
    text-align: left;
}
.ads-showcase-info p {
    font-size: 16px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.6;
    text-align: left;
}

/* ============================================
   SHOWCASE DEMO VISUALS (Before/After, Dashboard, Watch, Search)
   Matches the interactive mockups on fabsoft.com/products/ai-file-pro/
   ============================================ */

/* — Panel 0: Before/After — */
.ads-demo-before-after {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 260px;
}
@media (max-width: 600px) {
    .ads-demo-before-after {
        flex-direction: column;
        gap: 12px;
    }
}
.ads-demo-side {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    min-width: 0;
}
.ads-demo-before {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
}
.ads-demo-after {
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
}
.ads-demo-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-align: center;
}
.ads-demo-before .ads-demo-label { color: #C53030; }
.ads-demo-after .ads-demo-label { color: #276749; }

.ads-demo-files {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ads-demo-file {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #4A5568;
    padding: 6px 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.06);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ads-demo-file-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.ads-demo-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--fabsoft-blue, #0071E3);
    flex-shrink: 0;
}
.ads-demo-ai-badge {
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 980px;
    letter-spacing: 0.05em;
}
@media (max-width: 600px) {
    .ads-demo-arrow {
        flex-direction: row;
    }
    .ads-demo-arrow svg {
        transform: rotate(90deg);
    }
}

.ads-demo-folders {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ads-demo-folder {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06);
}
.ads-demo-folder-icon {
    font-size: 16px;
    flex-shrink: 0;
}
.ads-demo-folder-name {
    font-weight: 600;
    color: var(--fabsoft-text, #1D1D1F);
    flex: 1;
}
.ads-demo-folder-count {
    font-size: 12px;
    color: var(--fabsoft-text-muted, #86868B);
}
.ads-demo-status {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #276749;
}

/* — Panel 1: Activity Monitor Dashboard — */
.ads-demo-dashboard {
    font-size: 13px;
}
.ads-demo-dash-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--fabsoft-text, #1D1D1F);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--fabsoft-border, #D2D2D7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ads-demo-dash-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: #34C759;
    padding: 2px 8px;
    border-radius: 980px;
}
.ads-demo-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}
.ads-demo-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--fabsoft-text-muted, #86868B);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 8px;
    border-bottom: 1px solid var(--fabsoft-border, #D2D2D7);
}
.ads-demo-table td {
    padding: 8px;
    font-size: 12px;
    color: var(--fabsoft-text, #1D1D1F);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.ads-demo-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.ads-demo-status--done { background: #34C759; }
.ads-demo-status--active { background: var(--fabsoft-blue, #0071E3); animation: ads-pulse 1.5s infinite; }
.ads-demo-status--queued { background: #D2D2D7; }

@keyframes ads-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ads-demo-progress {
    background: var(--fabsoft-bg, #F6F6F8);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--fabsoft-text-muted, #86868B);
    overflow: hidden;
    position: relative;
}
.ads-demo-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,113,227,0.1);
    border-radius: 8px;
}
.ads-demo-progress span {
    position: relative;
    z-index: 1;
}

/* — Panel 2: Watch Folders — */
.ads-demo-watch {
    font-size: 13px;
}
.ads-demo-watch-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}
.ads-demo-watch-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--fabsoft-bg, #F6F6F8);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
}
.ads-demo-watch-icon {
    font-size: 16px;
    flex-shrink: 0;
}
.ads-demo-watch-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ads-demo-watch-info strong {
    font-size: 12px;
    color: var(--fabsoft-text, #1D1D1F);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ads-demo-watch-status {
    font-size: 11px;
    color: var(--fabsoft-text-muted, #86868B);
}
.ads-demo-watch-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 980px;
    flex-shrink: 0;
}
.ads-demo-watch--active {
    background: rgba(52,199,89,0.15);
    color: #276749;
}
.ads-demo-watch-output {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 12px;
    background: rgba(0,113,227,0.04);
    border-radius: 8px;
    font-size: 12px;
    color: var(--fabsoft-text-muted, #86868B);
}
.ads-demo-watch-auto {
    font-weight: 700;
    font-size: 10px;
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    padding: 2px 8px;
    border-radius: 980px;
    margin-left: auto;
}

/* — Panel 3: AI Search — */
.ads-demo-search {
    font-size: 13px;
}
.ads-demo-search-bar {
    padding: 12px 16px;
    background: var(--fabsoft-bg, #F6F6F8);
    border-radius: 10px;
    border: 2px solid var(--fabsoft-blue, #0071E3);
    font-size: 13px;
    color: var(--fabsoft-text, #1D1D1F);
    margin-bottom: 16px;
    font-weight: 500;
}
.ads-demo-search-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ads-demo-search-answer {
    font-size: 13px;
    color: var(--fabsoft-text, #1D1D1F);
    padding: 8px 0;
    line-height: 1.5;
}
.ads-demo-search-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--fabsoft-bg, #F6F6F8);
    border-radius: 8px;
    font-size: 12px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-demo-search-score {
    font-size: 10px;
    font-weight: 700;
    color: var(--fabsoft-blue, #0071E3);
    background: rgba(0,113,227,0.08);
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.ads-features {
    padding: 80px 24px;
    background: #fff;
    width: 100%;
}
.ads-features-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.ads-features h2,
.ads-features h3 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-features-subtitle {
    text-align: center;
    color: var(--fabsoft-text-muted, #86868B);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 48px;
}
.ads-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.ads-feature-card {
    background: var(--fabsoft-bg, #F6F6F8);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}
.ads-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ads-feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}
.ads-feature-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--fabsoft-text, #1D1D1F);
    margin: 0 0 8px;
}
.ads-feature-text {
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.5;
    margin: 0;
}
.ads-feature-stat {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fabsoft-blue, #0071E3);
    background: rgba(0,113,227,0.08);
    padding: 4px 12px;
    border-radius: 980px;
}
@media (min-width: 640px) {
    .ads-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .ads-features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   ROLE-BASED BENEFIT TABS
   ============================================ */
.ads-role-section {
    padding: 80px 24px;
    background: var(--fabsoft-bg, #F6F6F8);
    width: 100%;
}
.ads-role-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.ads-role-section h2 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-role-section > .ads-role-section-inner > p {
    text-align: center;
    color: var(--fabsoft-text-muted, #86868B);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 40px;
}
.ads-role-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.ads-role-tab {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid var(--fabsoft-border, #D2D2D7);
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    color: var(--fabsoft-text-muted, #86868B);
    cursor: pointer;
    transition: all 0.2s;
}
.ads-role-tab:hover {
    border-color: var(--fabsoft-blue, #0071E3);
    color: var(--fabsoft-blue, #0071E3);
}
.ads-role-tab.active {
    background: var(--fabsoft-blue, #0071E3);
    border-color: var(--fabsoft-blue, #0071E3);
    color: #fff;
}
.ads-role-panel {
    display: none;
}
.ads-role-panel.active {
    display: block;
}
.ads-role-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    text-align: left;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.ads-role-card-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}
.ads-role-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,113,227,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.ads-role-card-intro h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-role-card-intro p {
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    margin: 0;
    line-height: 1.5;
}
.ads-role-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--fabsoft-bg, #F6F6F8);
    border-radius: 12px;
}
.ads-role-stat {
    text-align: center;
}
.ads-role-stat-number {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--fabsoft-blue, #0071E3);
    display: block;
}
.ads-role-stat-label {
    font-size: 13px;
    color: var(--fabsoft-text-muted, #86868B);
}
.ads-role-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
@media (min-width: 640px) {
    .ads-role-benefits-grid { grid-template-columns: 1fr 1fr; }
}
.ads-role-benefit {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 10px;
    transition: background 0.2s;
}
.ads-role-benefit:hover {
    background: var(--fabsoft-bg, #F6F6F8);
}
.ads-role-benefit-icon {
    color: var(--fabsoft-blue, #0071E3);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.ads-role-benefit strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--fabsoft-text, #1D1D1F);
    margin-bottom: 2px;
}
.ads-role-benefit span {
    font-size: 14px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.4;
}
.ads-role-quote {
    font-style: italic;
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    border-left: 3px solid var(--fabsoft-blue, #0071E3);
    padding-left: 16px;
    margin: 0;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.ads-comparison {
    padding: 80px 24px;
    background: #fff;
    width: 100%;
}
.ads-comparison-inner {
    max-width: 900px;
    margin: 0 auto;
}
.ads-comparison h2,
.ads-comparison h3 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-compare-overflow {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
}
.ads-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 540px;
}
.ads-compare-table th,
.ads-compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--fabsoft-border, #D2D2D7);
}
.ads-compare-table thead th {
    background: var(--fabsoft-bg, #F6F6F8);
    font-weight: 600;
    font-size: 14px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-compare-table td {
    color: var(--fabsoft-text-muted, #86868B);
}
.ads-compare-highlight {
    background: rgba(0,113,227,0.04) !important;
    color: var(--fabsoft-blue, #0071E3) !important;
    font-weight: 600 !important;
}
.ads-compare-table thead .ads-compare-highlight {
    background: rgba(0,113,227,0.1) !important;
    color: var(--fabsoft-blue, #0071E3) !important;
}
.ads-compare-check::before {
    content: '\2713';
    color: var(--fabsoft-green, #34C759);
    font-weight: 700;
    margin-right: 6px;
}
.ads-compare-cross::before {
    content: '\2717';
    color: #FF3B30;
    font-weight: 700;
    margin-right: 6px;
}
.ads-compare-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   TESTIMONIALS / SOCIAL PROOF
   ============================================ */
.ads-testimonials-section {
    padding: 80px 24px;
    background: var(--fabsoft-bg, #F6F6F8);
    width: 100%;
}
.ads-testimonials-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.ads-testimonials-section h2,
.ads-testimonials-section h3 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 48px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .ads-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.ads-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    text-align: left;
    display: flex;
    flex-direction: column;
}
.ads-testimonial-result {
    font-size: 13px;
    font-weight: 600;
    color: var(--fabsoft-blue, #0071E3);
    background: rgba(0,113,227,0.08);
    padding: 4px 12px;
    border-radius: 980px;
    display: inline-block;
    margin-bottom: 16px;
    align-self: flex-start;
}
.ads-testimonial-quote {
    font-size: 15px;
    color: var(--fabsoft-text, #1D1D1F);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    flex-grow: 1;
}
.ads-testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-testimonial-role {
    font-size: 13px;
    color: var(--fabsoft-text-muted, #86868B);
}

.ads-social-proof { padding: 80px 24px; background: var(--fabsoft-bg, #F6F6F8); width: 100%; }
.ads-social-proof-inner { max-width: 1000px; margin: 0 auto; }
.ads-social-proof h3 { font-size: clamp(24px, 4vw, 40px); font-weight: 600; line-height: 1.2; text-align: center; margin-bottom: 48px; }

/* ============================================
   SECURITY / TRUST SECTION
   ============================================ */
.ads-security-section {
    padding: 80px 24px;
    background: var(--fabsoft-dark, #1D1D1F);
    color: #fff;
    width: 100%;
}
.ads-security-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.ads-security-section h2 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 16px;
    color: #fff;
}
.ads-security-section > .ads-security-inner > p {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 48px;
}
.ads-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}
.ads-security-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    min-width: 120px;
}
.ads-security-badge-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: block;
}
.ads-security-badge-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}
.ads-security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 32px;
    text-align: left;
}
@media (min-width: 640px) {
    .ads-security-features { grid-template-columns: 1fr 1fr; }
}
.ads-security-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}
.ads-security-feature::before {
    content: '\2713';
    color: var(--fabsoft-green, #34C759);
    font-weight: 700;
    flex-shrink: 0;
}
.ads-security-quote {
    text-align: center;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    max-width: 700px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ads-trust { padding: 48px 24px; background: var(--fabsoft-dark, #1D1D1F); width: 100%; }
.ads-trust-inner { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.ads-trust-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 16px 20px; color: #fff; font-size: 14px; font-weight: 600; }

/* ============================================
   PRICING SECTION
   ============================================ */
.ads-pricing-section {
    padding: 80px 24px;
    background: #fff;
    width: 100%;
}
.ads-pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.ads-pricing-section h2 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 16px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-pricing-section > .ads-pricing-inner > p {
    text-align: center;
    color: var(--fabsoft-text-muted, #86868B);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 48px;
}
.ads-pricing-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
@media (min-width: 640px) {
    .ads-pricing-tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .ads-pricing-tiers { grid-template-columns: repeat(4, 1fr); }
}
.ads-pricing-tier {
    background: var(--fabsoft-bg, #F6F6F8);
    border: 2px solid var(--fabsoft-border, #D2D2D7);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}
.ads-pricing-tier--featured {
    border-color: var(--fabsoft-blue, #0071E3);
    box-shadow: 0 8px 32px rgba(0,113,227,0.15);
    background: #fff;
}
.ads-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    padding: 4px 16px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.ads-pricing-tier-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--fabsoft-text, #1D1D1F);
    margin-bottom: 4px;
}
.ads-pricing-tier-size {
    font-size: 14px;
    color: var(--fabsoft-text-muted, #86868B);
    margin-bottom: 16px;
}
.ads-pricing-tier-price {
    margin-bottom: 8px;
}
.ads-pricing-amount {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-pricing-subtext {
    font-size: 13px;
    color: var(--fabsoft-text-muted, #86868B);
    display: block;
    margin-bottom: 20px;
}
.ads-pricing-best-for {
    display: block;
    font-size: 13px;
    color: var(--fabsoft-text-muted, #86868B);
    margin-bottom: 16px;
    font-style: italic;
}
.ads-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    flex-grow: 1;
}
.ads-pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--fabsoft-text-muted, #86868B);
    display: flex;
    align-items: center;
    gap: 8px;
}
.ads-pricing-features li::before {
    content: '\2713';
    color: var(--fabsoft-green, #34C759);
    font-weight: 700;
    flex-shrink: 0;
}
.ads-pricing-tier-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--fabsoft-blue, #0071E3);
    color: var(--fabsoft-blue, #0071E3);
    background: transparent;
}
.ads-pricing-tier-cta:hover {
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    text-decoration: none;
}
.ads-pricing-tier--featured .ads-pricing-tier-cta {
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    border-color: var(--fabsoft-blue, #0071E3);
}
.ads-pricing-tier--featured .ads-pricing-tier-cta:hover {
    background: var(--fabsoft-blue-hover, #0077ED);
    box-shadow: 0 4px 16px rgba(0,113,227,0.3);
}
.ads-pricing-guarantee {
    text-align: center;
    font-size: 14px;
    color: var(--fabsoft-text-muted, #86868B);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: center;
}
.ads-pricing-guarantee span::before {
    content: '\2713';
    color: var(--fabsoft-green, #34C759);
    font-weight: 700;
    margin-right: 6px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.ads-faq-section {
    padding: 80px 24px;
    background: var(--fabsoft-bg, #F6F6F8);
    width: 100%;
}
.ads-faq-inner {
    max-width: 800px;
    margin: 0 auto;
}
.ads-faq-section h2 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 48px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-faq-category {
    margin-bottom: 32px;
}
.ads-faq-category-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fabsoft-blue, #0071E3);
    margin-bottom: 12px;
    text-align: left;
}
.ads-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ads-faq-item {
    border-bottom: 1px solid var(--fabsoft-border, #D2D2D7);
}
.ads-faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--fabsoft-text, #1D1D1F);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}
.ads-faq-question:hover {
    color: var(--fabsoft-blue, #0071E3);
}
.ads-faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--fabsoft-text-muted, #86868B);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.ads-faq-item.active .ads-faq-question::after {
    content: '\2212';
    color: var(--fabsoft-blue, #0071E3);
}
.ads-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.ads-faq-answer-inner {
    padding: 0 0 18px;
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.6;
    text-align: left;
}

/* ============================================
   GETTING STARTED STEPS
   ============================================ */
.ads-steps-section {
    padding: 80px 24px;
    background: #fff;
    width: 100%;
}
.ads-steps-inner {
    max-width: 800px;
    margin: 0 auto;
}
.ads-steps-section h2 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 48px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ads-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}
.ads-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}
.ads-step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-step-content p {
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.5;
    margin: 0 0 8px;
}
.ads-step-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--fabsoft-blue, #0071E3);
    background: rgba(0,113,227,0.08);
    padding: 4px 12px;
    border-radius: 980px;
    display: inline-block;
}

/* ============================================
   MID-PAGE CTA
   ============================================ */
.ads-midpage-cta {
    padding: 64px 24px;
    background: var(--fabsoft-bg, #F6F6F8);
    text-align: center;
    width: 100%;
}
.ads-midpage-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}
.ads-midpage-cta h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-midpage-cta p {
    color: var(--fabsoft-text-muted, #86868B);
    font-size: 16px;
    margin-bottom: 24px;
}

/* ============================================
   AUDIENCE / TRUST (legacy compat)
   ============================================ */
.ads-audience {
    padding: 64px 24px;
    background: var(--fabsoft-bg, #F6F6F8);
    text-align: center;
    width: 100%;
}
.ads-audience-inner {
    max-width: 700px;
    margin: 0 auto;
}
.ads-audience p {
    font-size: 17px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.6;
}
.ads-audience-trust {
    font-size: 15px;
    font-weight: 600;
    color: var(--fabsoft-text, #1D1D1F);
    margin-bottom: 8px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.ads-final-cta {
    background: var(--fabsoft-dark, #1D1D1F);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
    width: 100%;
}
.ads-final-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}
.ads-final-cta h2 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #fff;
}
.ads-final-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 32px;
}
.ads-final-cta .ads-ctas { margin-bottom: 24px; }
.ads-final-cta .ads-trust-badges span {
    color: rgba(255,255,255,0.5);
}
.ads-final-cta .ads-trust-badges span::before {
    color: var(--fabsoft-green, #34C759);
}

.ads-bottom-cta {
    padding: 64px 24px;
    background: #fff;
    text-align: center;
    width: 100%;
}
.ads-bottom-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}
.ads-bottom-cta h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--fabsoft-text, #1D1D1F);
}
.ads-bottom-cta p {
    color: var(--fabsoft-text-muted, #86868B);
    font-size: 16px;
    margin-bottom: 24px;
}

/* ============================================
   LLM CLASS-NAME COMPATIBILITY LAYER
   The LLM sometimes generates inner element classes without the "ads-"
   prefix. These scoped rules ensure the design system applies regardless
   of whether the LLM emits "feature-card" or "ads-feature-card".
   ============================================ */

/* ── Hero badge ── */
.ads-hero .product-badge {
    display: inline-block;
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

/* ── Feature grid & cards ── */
.ads-features .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) {
    .ads-features .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .ads-features .features-grid { grid-template-columns: repeat(3, 1fr); }
}
.ads-features .feature-card {
    background: var(--fabsoft-bg, #F6F6F8);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}
.ads-features .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ads-features .feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}
.ads-features .feature-card h3,
.ads-features .ads-feature-card h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--fabsoft-text, #1D1D1F) !important;
    margin: 0 0 8px !important;
    text-align: left !important;
    letter-spacing: normal !important;
    line-height: 1.3 !important;
}
.ads-features .feature-card p {
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.5;
    margin: 0;
}
.ads-features .feature-badge {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fabsoft-blue, #0071E3);
    background: rgba(0,113,227,0.08);
    padding: 4px 12px;
    border-radius: 980px;
}

/* ── Role tabs (non-prefixed) ── */
.ads-role-section .role-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.ads-role-section .role-tab {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid var(--fabsoft-border, #D2D2D7);
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    color: var(--fabsoft-text-muted, #86868B);
    cursor: pointer;
    transition: all 0.2s;
}
.ads-role-section .role-tab:hover {
    border-color: var(--fabsoft-blue, #0071E3);
    color: var(--fabsoft-blue, #0071E3);
}
.ads-role-section .role-tab.active {
    background: var(--fabsoft-blue, #0071E3);
    border-color: var(--fabsoft-blue, #0071E3);
    color: #fff;
}
.ads-role-section .role-panel {
    display: none;
}
.ads-role-section .role-panel.active {
    display: block;
}
.ads-role-section .role-panel h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--fabsoft-text, #1D1D1F) !important;
    margin: 0 0 12px !important;
    text-align: left !important;
    letter-spacing: normal !important;
    line-height: 1.3 !important;
}
.ads-role-section .role-panel p {
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.6;
    text-align: left;
}
.ads-role-section .role-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
    padding: 20px;
    background: var(--fabsoft-bg, #F6F6F8);
    border-radius: 12px;
}
.ads-role-section .role-stats .stat {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--fabsoft-blue, #0071E3);
}
.ads-role-section .role-benefits {
    text-align: left;
    margin: 16px 0;
}
.ads-role-section .role-benefits ul {
    padding-left: 20px;
    margin: 0;
}
.ads-role-section .role-benefits li {
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.6;
    padding: 4px 0;
}
.ads-role-section .role-testimonial {
    border-left: 3px solid var(--fabsoft-blue, #0071E3);
    padding-left: 16px;
    margin-top: 20px;
    text-align: left;
}
.ads-role-section .role-testimonial blockquote {
    font-style: italic;
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    margin: 0 0 8px;
    line-height: 1.6;
}
.ads-role-section .role-testimonial cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--fabsoft-text, #1D1D1F);
    font-style: normal;
}
.ads-role-section .role-panels {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-align: left;
}

/* ── Role tabs: tab-button / tab-panels / tab-panel compat ── */
.ads-role-section .tab-button {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid var(--fabsoft-border, #D2D2D7);
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    color: var(--fabsoft-text-muted, #86868B);
    cursor: pointer;
    transition: all 0.2s;
}
.ads-role-section .tab-button:hover {
    border-color: var(--fabsoft-blue, #0071E3);
    color: var(--fabsoft-blue, #0071E3);
}
.ads-role-section .tab-button.active {
    background: var(--fabsoft-blue, #0071E3);
    border-color: var(--fabsoft-blue, #0071E3);
    color: #fff;
}
.ads-role-section .tab-panels,
.ads-role-section .role-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-align: left;
}
.ads-role-section .tab-panel {
    display: none;
}
.ads-role-section .tab-panel.active {
    display: block;
}
.ads-role-section .tab-panel h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--fabsoft-text, #1D1D1F) !important;
    margin: 0 0 12px !important;
    text-align: left !important;
    letter-spacing: normal !important;
    line-height: 1.3 !important;
}
.ads-role-section .tab-panel p {
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.6;
    text-align: left;
}

/* ── FAQ compat (non-prefixed item/answer wrappers) ── */
.ads-faq-section .faq-categories {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ads-faq-section .faq-category h3 {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: var(--fabsoft-blue, #0071E3) !important;
    margin-bottom: 12px !important;
    text-align: left !important;
    line-height: 1.3 !important;
}
.ads-faq-section .faq-item {
    border-bottom: 1px solid var(--fabsoft-border, #D2D2D7);
}
.ads-faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.ads-faq-section .faq-answer p {
    padding: 0 0 18px;
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.6;
    text-align: left;
    margin: 0;
}
.ads-faq-section .faq-item.active .faq-answer {
    max-height: 500px;
}

/* ── Steps compat ── */
.ads-steps-section .steps-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ads-steps-section .step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}
.ads-steps-section .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}
.ads-steps-section .step h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 6px !important;
    color: var(--fabsoft-text, #1D1D1F) !important;
    text-align: left !important;
    letter-spacing: normal !important;
    line-height: 1.3 !important;
}
.ads-steps-section .step p {
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.5;
    margin: 0 0 8px;
}
.ads-steps-section .step-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--fabsoft-blue, #0071E3);
    background: rgba(0,113,227,0.08);
    padding: 4px 12px;
    border-radius: 980px;
    display: inline-block;
}
.ads-steps-section .step-content {
    flex: 1;
}

/* ── Testimonials compat ── */
.ads-landing .testimonial-card,
.ads-landing .testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    text-align: left;
}
.ads-landing .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .ads-landing .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Nuclear h3 override inside .case-articleBody ── */
.ads-landing .case-articleBody h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.3;
}
.ads-landing .case-articleBody section > div > h2,
.ads-landing .case-articleBody .ads-features > div > h2,
.ads-landing .case-articleBody .ads-role-section > div > h2,
.ads-landing .case-articleBody .ads-faq-section > div > h2,
.ads-landing .case-articleBody .ads-steps-section > div > h2,
.ads-landing .case-articleBody .ads-comparison > div > h3 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
}

/* ── Responsive compat ── */
@media (max-width: 480px) {
    .ads-role-section .role-stats { grid-template-columns: 1fr; }
    .ads-role-section .role-panels { padding: 24px 16px; }
    .ads-steps-section .step { flex-direction: column; }
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 480px) {
    .ads-hero { padding: 80px 16px 48px; }
    .ads-ctas { flex-direction: column; align-items: center; }
    .ads-btn { width: 100%; max-width: 320px; }
    .ads-features { padding: 48px 16px; }
    .ads-final-cta { padding: 48px 16px; }
    .ads-showcase { padding: 48px 16px; }
    .ads-role-section { padding: 48px 16px; }
    .ads-role-card { padding: 24px 16px; }
    .ads-role-card-header { flex-direction: column; }
    .ads-role-stats-row { grid-template-columns: 1fr; }
    .ads-comparison { padding: 48px 16px; }
    .ads-pricing-section { padding: 48px 16px; }
    .ads-faq-section { padding: 48px 16px; }
    .ads-steps-section { padding: 48px 16px; }
    .ads-security-section { padding: 48px 16px; }
    .ads-testimonials-section { padding: 48px 16px; }
}

/* ============================================
   REAL PRODUCT VIDEO SHOWCASE
   Mirrors the AI File Pro product-page carousel
   ============================================ */
.fabsoft-video-carousel-section {
    padding: 80px 24px;
    background: #F6F6F8;
    width: 100%;
}

.fabsoft-video-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fabsoft-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.fabsoft-section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--fabsoft-text, #1D1D1F);
    margin: 0 0 16px;
}

.fabsoft-section-subtitle {
    font-size: 19px;
    color: var(--fabsoft-text-secondary-accessible, #6E6E73);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.aifp-showcase {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.aifp-showcase-tabs {
    display: flex;
    border-bottom: 1px solid #E5E5E7;
    background: #FAFBFD;
}

.aifp-showcase-tab {
    flex: 1;
    padding: 18px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--fabsoft-text-secondary-accessible, #6E6E73);
    cursor: pointer;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.aifp-showcase-tab:hover {
    color: #0071E3;
    background: rgba(0, 113, 227, 0.03);
}

.aifp-showcase-tab.active {
    color: #0071E3;
    border-bottom-color: #0071E3;
    background: #fff;
}

.aifp-showcase-tab svg {
    display: block;
    margin: 0 auto 8px;
    width: 24px;
    height: 24px;
}

.aifp-showcase-panel {
    display: none;
}

.aifp-showcase-panel.active {
    display: block;
}

.aifp-showcase-preview {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aifp-showcase-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aifp-showcase-preview:hover .aifp-play-overlay {
    opacity: 1;
}

.aifp-play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 17, 33, 0.08), rgba(9, 17, 33, 0.24));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aifp-play-btn {
    width: 72px;
    height: 72px;
    background: #0071E3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
    transition: transform 0.2s ease;
}

.aifp-play-btn:hover {
    transform: scale(1.08);
}

.aifp-play-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 3px;
}

.aifp-showcase-info {
    padding: 28px 36px;
    border-top: 1px solid #E5E5E7;
}

.aifp-showcase-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--fabsoft-text, #1D1D1F);
    margin: 0 0 8px;
}

.aifp-showcase-info p {
    font-size: 15px;
    color: var(--fabsoft-text-secondary-accessible, #6E6E73);
    line-height: 1.6;
    margin: 0;
}

.fabsoft-video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.fabsoft-video-lightbox-inner {
    position: relative;
    max-width: 960px;
    width: 95%;
}

.fabsoft-video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.fabsoft-video-lightbox video {
    width: 100%;
    border-radius: 8px;
    display: block;
    background: #000;
}

@media (max-width: 768px) {
    .fabsoft-video-carousel-section {
        padding: 48px 16px;
    }

    .fabsoft-section-title {
        margin-bottom: 12px;
    }

    .fabsoft-section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .aifp-showcase-tab {
        font-size: 11px;
        padding: 12px 4px;
    }

    .aifp-showcase-tab svg {
        width: 16px;
        height: 16px;
    }

    .aifp-play-overlay {
        opacity: 1;
    }

    .aifp-showcase-info {
        padding: 16px 20px;
    }

    .aifp-showcase-info h3 {
        font-size: 16px;
    }

    .aifp-showcase-info p {
        font-size: 14px;
    }
}

/* ============================================
   LLM CLASS-NAME VARIANCE COMPAT LAYER
   The LLM generates plausible but slightly different
   class names than the canonical CSS. These rules
   ensure visual parity regardless of minor naming
   differences (missing base class, different suffix,
   missing BEM modifier, etc.).
   ============================================ */

/* ── Standalone button classes (LLM omits .ads-btn base) ── */
a.ads-btn-primary,
a.ads-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 980px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
a.ads-btn-primary {
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
}
a.ads-btn-primary:hover {
    background: var(--fabsoft-blue-hover, #0077ED);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,113,227,0.3);
    color: #fff;
    text-decoration: none;
}
a.ads-btn-secondary {
    background: transparent;
    color: var(--fabsoft-blue, #0071E3);
    border: 2px solid var(--fabsoft-blue, #0071E3);
}
a.ads-btn-secondary:hover {
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    text-decoration: none;
}

/* ── CTA wrapper variant ── */
.ads-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

/* ── Problem columns without BEM modifier ── */
.ads-problem-grid > .ads-problem-column:first-child {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
}
.ads-problem-grid > .ads-problem-column:first-child h3 { color: #C53030; }
.ads-problem-grid > .ads-problem-column:last-child {
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
}
.ads-problem-grid > .ads-problem-column:last-child h3 { color: #276749; }

/* ── Problem/solution item icons (emoji spans) ── */
.ads-problem-icon,
.ads-solution-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

/* ── Solution column (LLM variant of problem-column--with) ── */
.ads-solution-column {
    padding: 32px;
    border-radius: 16px;
    text-align: left;
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
}
.ads-solution-column h3 { color: #276749; }

/* ── Problem/solution items ── */
.ads-problem-item,
.ads-solution-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: left;
}
.ads-problem-item:last-child,
.ads-solution-item:last-child {
    border-bottom: none;
}
.ads-problem-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
}
.ads-problem-item p,
.ads-solution-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #4A5568;
    margin: 0;
}
.ads-solution-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #276749;
    margin: 0 0 4px;
}

/* ── Product badge (LLM variant of ads-hero-badge) ── */
.ads-product-badge {
    display: inline-block;
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

/* ── Stats number (LLM uses ads-stat-number vs ads-stat-num) ── */
.ads-stat-number {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--fabsoft-blue, #0071E3);
    display: block;
    line-height: 1.2;
}

/* ── Step number (LLM uses ads-step-number vs ads-step-num) ── */
.ads-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Role stats (LLM uses ads-role-stats vs ads-role-stats-row) ── */
.ads-role-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--fabsoft-bg, #F6F6F8);
    border-radius: 12px;
}

/* ── Role benefits (LLM uses ads-role-benefits vs ads-role-benefits-grid) ── */
.ads-role-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}
@media (min-width: 640px) {
    .ads-role-benefits { grid-template-columns: 1fr 1fr; }
}

/* ── Benefit item (LLM uses ads-benefit vs ads-role-benefit) ── */
.ads-benefit {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 10px;
    transition: background 0.2s;
    text-align: left;
}
.ads-benefit:hover {
    background: var(--fabsoft-bg, #F6F6F8);
}

/* ── Testimonials section (LLM uses ads-testimonials vs ads-testimonials-section) ── */
.ads-testimonials {
    padding: 80px 24px;
    background: var(--fabsoft-bg, #F6F6F8);
    width: 100%;
}
.ads-testimonials-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.ads-testimonials h2,
.ads-testimonials h3 {
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 48px;
    color: var(--fabsoft-text, #1D1D1F);
}

/* ── Testimonial card (within LLM's ads-testimonials section) ── */
.ads-testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    text-align: left;
    display: flex;
    flex-direction: column;
}
.ads-testimonial blockquote {
    font-size: 15px;
    color: var(--fabsoft-text, #1D1D1F);
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 16px;
    flex-grow: 1;
    border: none;
    padding: 0;
}
.ads-testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--fabsoft-text, #1D1D1F);
}

/* ── Steps CTA (LLM adds a CTA block inside steps section) ── */
.ads-steps-cta {
    text-align: center;
    margin-top: 32px;
}
.ads-steps-cta p {
    font-size: 14px;
    color: var(--fabsoft-text-muted, #86868B);
    margin-top: 8px;
}

/* ── Role panel inner content (LLM uses flat .ads-role-panel) ── */
.ads-role-panel {
    text-align: left;
}
.ads-role-panels {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--fabsoft-border, #D2D2D7);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.ads-role-panel h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--fabsoft-text, #1D1D1F) !important;
    margin: 0 0 12px !important;
    text-align: left !important;
    letter-spacing: normal !important;
    line-height: 1.3 !important;
}
.ads-role-panel p {
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.6;
    text-align: left;
}

/* ── FAQ answer inner (LLM may omit ads-faq-answer-inner wrapper) ── */
.ads-faq-answer p {
    padding: 0 0 18px;
    font-size: 15px;
    color: var(--fabsoft-text-muted, #86868B);
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* ── Security quote ── */
.ads-security-quote {
    text-align: center;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    max-width: 700px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── Feature title/text (LLM may use h4 inside feature-card) ── */
.ads-feature-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--fabsoft-text, #1D1D1F);
    margin: 0 0 8px;
}

/* ── Mobile responsive compat ── */
@media (max-width: 480px) {
    .ads-cta-buttons { flex-direction: column; align-items: center; }
    a.ads-btn-primary,
    a.ads-btn-secondary { width: 100%; max-width: 320px; text-align: center; }
    .ads-role-stats { grid-template-columns: 1fr; }
    .ads-role-panels { padding: 24px 16px; }
}

/* ============================================
   PROBLEM-COMPARISON / PROBLEM-SOLUTION COMPAT
   LLM sometimes generates non-ads-prefixed
   before/after comparison sections. These rules
   ensure they match the ads-problem-* design.
   ============================================ */
.problem-comparison,
.problem-solution-grid {
    padding: 80px 24px;
    background: #fff;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .problem-comparison,
    .problem-solution-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.problem-comparison > h2,
.problem-solution-grid > h2 {
    grid-column: 1 / -1;
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
    color: var(--fabsoft-text, #1D1D1F);
}

.without-column,
.problem-comparison > div:first-of-type {
    padding: 32px;
    border-radius: 16px;
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    text-align: left;
}
.with-column,
.problem-comparison > div:last-of-type {
    padding: 32px;
    border-radius: 16px;
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
    text-align: left;
}

.without-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #C53030;
    display: flex;
    align-items: center;
    gap: 8px;
}
.without-column h3::before {
    content: '\26A0';
    font-size: 22px;
}
.with-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #276749;
    display: flex;
    align-items: center;
    gap: 8px;
}
.with-column h3::before {
    content: '\2713';
    font-size: 22px;
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.problem-list li,
.solution-list li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.problem-list li::before {
    content: '\2717';
    color: #C53030;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.solution-list li::before {
    content: '\2713';
    color: #276749;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-item,
.solution-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.problem-item:last-child,
.solution-item:last-child {
    border-bottom: none;
}
.problem-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #C53030;
    margin: 0 0 4px;
}
.problem-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #4A5568;
    margin: 0;
}
.solution-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #276749;
    margin: 0 0 4px;
}
.solution-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #4A5568;
    margin: 0;
}

/* ============================================
   ADS-COMPARISON-GRID / ADS-WITHOUT / ADS-WITH
   COMPAT LAYER  (LLM variant of problem section)
   ============================================ */
.ads-comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .ads-comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.ads-without {
    padding: 32px;
    border-radius: 16px;
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    text-align: left;
}
.ads-with {
    padding: 32px;
    border-radius: 16px;
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
    text-align: left;
}
.ads-without h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #C53030;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ads-without h3::before {
    content: '\26A0';
    font-size: 22px;
}
.ads-with h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #276749;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ads-with h3::before {
    content: '\2713';
    font-size: 22px;
}
.ads-without ul,
.ads-with ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ads-without li,
.ads-with li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.ads-without li::before {
    content: '\2717';
    color: #C53030;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.ads-with li::before {
    content: '\2713';
    color: #276749;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   PROBLEM-SIDE / SOLUTION-SIDE COMPAT LAYER
   ============================================ */
.problem-side {
    padding: 32px;
    border-radius: 16px;
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    text-align: left;
}
.solution-side {
    padding: 32px;
    border-radius: 16px;
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
    text-align: left;
}
.problem-side h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #C53030;
    display: flex;
    align-items: center;
    gap: 8px;
}
.problem-side h3::before {
    content: '\26A0';
    font-size: 22px;
}
.solution-side h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #276749;
    display: flex;
    align-items: center;
    gap: 8px;
}
.solution-side h3::before {
    content: '\2713';
    font-size: 22px;
}
.problem-side .problem-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #C53030;
    margin: 0 0 4px;
}
.solution-side .solution-item h4,
.solution-side .problem-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #276749;
    margin: 0 0 4px;
}

/* Also handle before-after and ads-before-after compat */
.ads-before-after {
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.ads-before-after .ads-before,
.ads-before-after .ads-after {
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 20px;
}
.ads-before-after .ads-before {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
}
.ads-before-after .ads-after {
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
}
.ads-before-after .ads-before h3 {
    color: #C53030;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}
.ads-before-after .ads-after h3 {
    color: #276749;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}
.ads-before-after li {
    padding: 6px 0;
    font-size: 15px;
    line-height: 1.5;
}

/* ads-problem-before / ads-problem-after — LLM variant of
   ads-problem-column--without / ads-problem-column--with */
.ads-problem-before,
.ads-problem-after {
    padding: 32px;
    border-radius: 16px;
    text-align: left;
}
.ads-problem-before {
    background: linear-gradient(135deg, #FFF5F5, #FFE8E8);
    border-left: 4px solid #FF3B30;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.08);
}
.ads-problem-after {
    background: linear-gradient(135deg, #F0FFF4, #E0FFE8);
    border-left: 4px solid #34C759;
    box-shadow: 0 4px 20px rgba(52, 199, 89, 0.08);
}
.ads-problem-before h3 {
    color: #C53030;
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ads-problem-after h3 {
    color: #276749;
    font-family: var(--fabsoft-font, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ads-problem-before ul,
.ads-problem-after ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ads-problem-before ul li,
.ads-problem-after ul li {
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.ads-problem-before ul li:last-child,
.ads-problem-after ul li:last-child {
    border-bottom: none;
}
.ads-problem-before ul li::before {
    content: '\2717';
    color: #C53030;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 16px;
}
.ads-problem-after ul li::before {
    content: '\2713';
    color: #276749;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 16px;
}

/* ── ads-hero-ctas (LLM variant of ads-ctas in hero) ── */
.ads-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* ── ads-hero-trust (LLM variant of trust badges in hero) ── */
.ads-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
    font-size: 14px;
    color: #86868B;
}

/* ── ads-stats-grid (LLM variant nested inside ads-stats-inner) ── */
.ads-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    grid-column: 1 / -1;
    width: 100%;
}
@media (min-width: 640px) {
    .ads-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.ads-stats-inner:has(.ads-stats-grid) {
    display: block;
}

/* ── ads-stat plain-text variant (LLM omits ads-stat-num / ads-stat-label split) ── */
.ads-stats-bar .ads-stat {
    text-align: center;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--fabsoft-blue, #0071E3);
    padding: 20px 12px;
    background: #f5f7fa;
    border-radius: 12px;
    border: 1px solid #e2e5ea;
    line-height: 1.3;
}

/* ── Non-canonical stat classes (LLM uses stat-item, stats-container, stats-row) ── */
.ads-stats-bar .stats-container,
.ads-stats-bar .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .ads-stats-bar .stats-container,
    .ads-stats-bar .stats-row { grid-template-columns: repeat(4, 1fr); }
}
.ads-stats-bar .stat-item,
.ads-stats-bar .stat {
    text-align: center;
    padding: 20px 12px;
    background: #f5f7fa;
    border-radius: 12px;
    border: 1px solid #e2e5ea;
}
.ads-stats-bar .stat-item .stat-number,
.ads-stats-bar .stat .stat-number {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--fabsoft-blue, #0071E3);
    display: block;
    line-height: 1.2;
}
.ads-stats-bar .stat-item .stat-label,
.ads-stats-bar .stat .stat-label {
    font-size: 14px;
    color: var(--fabsoft-text-muted, #86868B);
    margin-top: 4px;
    display: block;
}
/* ── bare cta-buttons (LLM omits ads- prefix from ads-ctas) ── */
.ads-hero .cta-buttons,
.ads-final-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

/* ── bare btn-primary / btn-secondary (LLM omits ads-btn base class entirely) ── */
.ads-hero .btn-primary,
.ads-hero .btn-secondary,
.ads-final-cta .btn-primary,
.ads-final-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.ads-hero .btn-primary,
.ads-final-cta .btn-primary {
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
}
.ads-hero .btn-primary:hover,
.ads-final-cta .btn-primary:hover {
    background: var(--fabsoft-blue-hover, #0077ED);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,113,227,0.3);
    color: #fff;
    text-decoration: none;
}
.ads-hero .btn-secondary,
.ads-final-cta .btn-secondary {
    background: transparent;
    color: var(--fabsoft-blue, #0071E3);
    border: 2px solid var(--fabsoft-blue, #0071E3);
}
.ads-hero .btn-secondary:hover,
.ads-final-cta .btn-secondary:hover {
    background: var(--fabsoft-blue, #0071E3);
    color: #fff;
    text-decoration: none;
}

/* ── bare trust-badges (LLM omits ads- prefix from ads-trust-badges) ── */
.ads-hero .trust-badges,
.ads-final-cta .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
    font-size: 14px;
    color: #86868B;
}

/* ── Mobile responsive for bare hero classes ── */
@media (max-width: 480px) {
    .ads-hero .cta-buttons,
    .ads-final-cta .cta-buttons { flex-direction: column; align-items: center; }
    .ads-hero .btn-primary,
    .ads-hero .btn-secondary,
    .ads-final-cta .btn-primary,
    .ads-final-cta .btn-secondary { width: 100%; max-width: 320px; text-align: center; }
}

.ads-problem-pain {
    padding: 32px;
    border-radius: 16px;
    background: #FFF5F5;
    border: 1px solid #FED7D7;
}
.ads-problem-pain h3,
.ads-problem-pain h4 {
    color: #C53030;
    font-weight: 600;
    margin-bottom: 12px;
}
.ads-problem-pain li {
    padding: 6px 0;
    font-size: 15px;
    line-height: 1.5;
}
