/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #45a049;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background-color: #333;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: white;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
    color: white;
}

.btn-small {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-small {
    padding: 5px 10px;
    font-size: 12px;
}

/* Forms */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 20px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    border-left: 4px solid #4CAF50;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.info-box h3, .info-box h4 {
    margin-top: 0;
    color: #333;
}

.info-box ul {
    margin-left: 20px;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.page-header h1 {
    margin: 0;
    color: #333;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #4CAF50;
    display: block;
    margin: 10px 0;
}

.stat-detail {
    font-size: 12px;
    color: #999;
}

/* Data Tables */
.data-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.data-table thead {
    background-color: #f8f9fa;
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover {
    background-color: #f8f9fa;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-active {
    background-color: #d4edda;
    color: #155724;
}

.badge-paused {
    background-color: #fff3cd;
    color: #856404;
}

.badge-pending {
    background-color: #cce5ff;
    color: #004085;
}

.badge-completed {
    background-color: #d4edda;
    color: #155724;
}

.badge-advertiser {
    background-color: #e7f3ff;
    color: #0066cc;
}

.badge-publisher {
    background-color: #f3e7ff;
    color: #6600cc;
}

.badge-admin {
    background-color: #ffe7e7;
    color: #cc0000;
}

/* Code Box */
.code-box {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0;
}

.code-box pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

/* Homepage Styles */
.home-page {
    background: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding-bottom: 80px;
}

.main-nav {
    padding: 0;
    position: relative;
    background: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.main-nav .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    margin: 0;
    color: white;
    font-size: 24px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links a {
    color: white;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:not(.btn):hover {
    color: #dc3545;
    background: rgba(255,255,255,0.1);
}

/* Small Google Login Button */
.btn-google-small {
    background: white !important;
    color: #333 !important;
    border: 1px solid #ddd;
    padding: 6px 12px !important;
    font-size: 13px !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-google-small:hover {
    background: #f8f9fa !important;
    border-color: #c0c0c0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(-1px);
    color: #333 !important;
}

.btn-radiotv {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    color: white !important;
    border: none;
    padding: 8px 16px !important;
    font-size: 14px !important;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.btn-radiotv:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%) !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    transform: translateY(-2px);
    color: white !important;
}

.hero-content {
    text-align: center;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-network-ads {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Live Ads Banner */
.live-ads-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 20px 30px;
    margin: 30px auto 20px;
    max-width: 728px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
        border-color: rgba(220, 53, 69, 0.3);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.25);
        border-color: rgba(220, 53, 69, 0.5);
    }
}

.banner-icon {
    font-size: 36px;
    flex-shrink: 0;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.banner-content {
    flex: 1;
}

.banner-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.banner-subtitle {
    font-size: 14px;
    color: #545454;
    line-height: 1.4;
}

.banner-subtitle strong {
    color: #dc3545;
    font-weight: 700;
}

.banner-cta {
    background: #dc3545;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner-cta:hover {
    background: #c82333;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.network-ad-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 90px;
    max-width: 728px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Publisher Opportunity Banner */
.publisher-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #28a745;
    border-bottom: 3px solid #28a745;
    padding: 40px 0;
    margin: 0;
}

.publisher-banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.15);
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.publisher-banner-icon {
    font-size: 64px;
    flex-shrink: 0;
    animation: money-float 3s ease-in-out infinite;
}

@keyframes money-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    25% { 
        transform: translateY(-8px) scale(1.05);
    }
    50% { 
        transform: translateY(0) scale(1);
    }
    75% { 
        transform: translateY(-4px) scale(1.02);
    }
}

.publisher-banner-text {
    flex: 1;
}

.publisher-banner-text h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.publisher-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.benefit-icon {
    background: #28a745;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.publisher-banner-cta {
    text-align: center;
    flex-shrink: 0;
    padding-left: 20px;
    border-left: 2px solid #e9ecef;
}

.publisher-banner-cta .btn {
    margin-bottom: 10px;
    white-space: nowrap;
    padding: 15px 30px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
}

.publisher-banner-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.35);
}

.cta-subtext {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.network-ad-container iframe {
    width: 100%;
    max-width: 728px;
}

.ad-placeholder {
    text-align: center;
    padding: 10px;
}

/* Features Section */
.features-section,
.how-it-works-section,
.pricing-section,
.faq-section {
    padding: 80px 0;
}

.faq-section {
    width: 100%;
    max-width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.faq-section .section-title {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px 60px;
    color: #ffffff;
    font-size: 42px;
}

.how-it-works-section {
    width: 100%;
    max-width: 100%;
    padding: 80px 0;
}

.how-it-works-section .section-title,
.how-it-works-section .section-subtitle {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.how-it-works-section .special-feature-banner,
.how-it-works-section .workflow,
.how-it-works-section .pricing-footer-note {
    width: 100%;
    max-width: 100%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Workflow */
.workflow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.workflow-column {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.workflow-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.workflow-icon {
    font-size: 56px;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.advertiser-icon {
    filter: drop-shadow(0 4px 8px rgba(220, 53, 69, 0.3));
}

.publisher-icon {
    filter: drop-shadow(0 4px 8px rgba(40, 167, 69, 0.3));
}

.workflow-column h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #333;
}

.workflow-desc {
    font-size: 15px;
    color: #777;
    margin: 0;
}

.workflow-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 18px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transform: translateX(5px);
}

.step-number {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.workflow-column:nth-child(2) .step-number {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.step-content h4 {
    margin-bottom: 6px;
    color: #333;
    font-size: 17px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Special Feature Banner */
.special-feature-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 0;
    padding: 40px;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.special-feature-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #c82333, #dc3545);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Ad Showcase Section */
.ad-showcase-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.showcase-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.showcase-demo {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.demo-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.label-icon {
    font-size: 24px;
}

.demo-label strong {
    font-size: 18px;
    color: #1a1a1a;
    flex: 1;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.live-indicator .pulse-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.demo-ad-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-note {
    margin-top: 15px;
    padding: 12px 16px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    font-size: 14px;
    color: #856404;
    margin-bottom: 0;
}

.showcase-features h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.showcase-feature-grid {
    display: grid;
    gap: 20px;
}

.showcase-feature {
    display: flex;
    gap: 15px;
    align-items: start;
}

.feature-bullet {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 16px;
}

.feature-text strong {
    display: block;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.showcase-code {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    position: sticky;
    top: 100px;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.code-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.code-icon {
    font-size: 24px;
}

.code-title strong {
    font-size: 20px;
    color: #1a1a1a;
}

.code-badge {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.code-description {
    margin-bottom: 20px;
}

.code-description p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.code-box {
    margin-bottom: 25px;
}

.code-window {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.code-window-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #3d3d3d;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6c757d;
}

.code-dot:nth-child(1) {
    background: #ff5f56;
}

.code-dot:nth-child(2) {
    background: #ffbd2e;
}

.code-dot:nth-child(3) {
    background: #27c93f;
}

.code-filename {
    margin-left: auto;
    font-size: 13px;
    color: #adb5bd;
    font-family: 'Courier New', monospace;
}

.code-content {
    padding: 20px;
}

.code-content pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.code-content code {
    color: #abb2bf;
}

.code-highlight {
    color: #e06c75;
    font-weight: 700;
}

.code-copy-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.code-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.copy-icon {
    font-size: 18px;
}

.code-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 2px solid #f8f9fa;
    border-bottom: 2px solid #f8f9fa;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 24px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content strong {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.stat-content span {
    font-size: 12px;
    color: #6c757d;
}

.showcase-cta {
    text-align: center;
}

.btn-showcase-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.btn-showcase-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
}

.showcase-cta .cta-subtext {
    margin-top: 12px;
    font-size: 13px;
    color: #6c757d;
}

.special-feature-banner .feature-icon {
    font-size: 64px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(220, 53, 69, 0.5));
}

.special-feature-banner .feature-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.special-feature-banner .feature-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}

.special-feature-banner .feature-content .feature-intro {
    margin-bottom: 30px;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Balance Details Cards */
.balance-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.balance-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.balance-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.balance-detail-card .detail-icon {
    font-size: 36px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(220, 53, 69, 0.4));
}

.balance-detail-card .detail-content h4 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.balance-detail-card .detail-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Balance Workflow Steps */
.balance-workflow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.balance-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.balance-step {
    flex: 1;
    min-width: 200px;
    background: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.25);
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.balance-step:hover {
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.4);
    transform: translateY(-2px);
}

.balance-step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 14px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.balance-step-content strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.balance-step-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.6;
}

.balance-step-arrow {
    font-size: 28px;
    color: rgba(220, 53, 69, 0.6);
    font-weight: bold;
    flex-shrink: 0;
}

/* Balance Example */
.balance-example {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 28px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.balance-example h4 {
    margin: 0 0 18px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.example-scenario {
    background: rgba(220, 53, 69, 0.08);
    padding: 22px;
    border-radius: 10px;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.example-scenario p {
    margin: 0 0 14px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.example-scenario p:last-child {
    margin-bottom: 0;
}

.example-scenario p::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.example-scenario .highlight-amount {
    color: #28a745;
    font-weight: 700;
    font-size: 15px;
}

.example-scenario .example-note {
    margin-top: 18px;
    padding: 14px 16px;
    background: rgba(220, 53, 69, 0.12);
    border-left: 3px solid #dc3545;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
}

.example-scenario .example-note::before {
    content: '';
}

/* Workflow CTA */
.workflow-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.workflow-cta h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.workflow-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .workflow {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .special-feature-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .balance-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .balance-detail-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .balance-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .balance-step {
        min-width: 100%;
    }
    
    .balance-step-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .balance-workflow {
        padding: 20px 15px;
    }
    
    .balance-example {
        padding: 20px 15px;
    }
    
    .example-scenario {
        padding: 15px;
    }
    
    .example-scenario p {
        font-size: 13px;
    }
    
    .workflow-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .live-ads-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .banner-icon {
        font-size: 32px;
    }
    
    .banner-title {
        font-size: 16px;
    }
    
    .banner-subtitle {
        font-size: 13px;
    }
    
    .banner-cta {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Publisher Banner Mobile */
    .publisher-banner-content {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        text-align: center;
    }
    
    .publisher-banner-icon {
        font-size: 48px;
    }
    
    .publisher-banner-text h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .benefit-item {
        font-size: 14px;
        text-align: left;
    }
    
    .publisher-banner-cta {
        border-left: none;
        border-top: 2px solid #e9ecef;
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }
    
    .publisher-banner-cta .btn {
        width: 100%;
        display: block;
    }
}

/* Pricing Section - Professional Red Theme */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header .section-title {
    font-size: 42px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.pricing-header .section-subtitle {
    font-size: 18px;
    color: #666;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.advertiser-card {
    border-top: 5px solid #dc3545;
}

.pricing-card.publisher-card {
    border-top: 5px solid #28a745;
}

.pricing-card.featured {
    position: relative;
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #856404;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    z-index: 10;
}

.pricing-card-header {
    padding: 40px 35px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #e8e8e8;
}

.advertiser-card .pricing-card-header {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-bottom-color: #dc3545;
}

.publisher-card .pricing-card-header {
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
    border-bottom-color: #28a745;
}

.pricing-icon {
    font-size: 56px;
    margin-bottom: 15px;
    display: inline-block;
}

.pricing-card-header h3 {
    font-size: 28px;
    margin: 0 0 8px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-tagline {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.pricing-plans {
    padding: 35px;
    background: white;
}

.pricing-plan {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.pricing-plan:last-child {
    margin-bottom: 0;
}

.advertiser-card .pricing-plan {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 2px solid #dc3545;
}

.publisher-card .pricing-plan {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffe6 100%);
    border: 2px solid #28a745;
}

.plan-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 600;
    margin-bottom: 12px;
}

.plan-price {
    margin: 15px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: #dc3545;
}

.publisher-card .price-currency {
    color: #28a745;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
}

.price-period {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.plan-description {
    font-size: 13px;
    color: #777;
    margin: 10px 0 0 0;
}

.pricing-divider {
    text-align: center;
    font-size: 18px;
    color: #ccc;
    font-weight: 700;
    margin: 15px 0;
}

.pricing-features-box {
    padding: 0 35px 30px;
    flex-grow: 1;
}

.pricing-features-box h4 {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8e8e8;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .feature-icon {
    color: #28a745;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.advertiser-card .pricing-features .feature-icon {
    color: #dc3545;
}

.pricing-features strong {
    color: #1a1a1a;
}

.pricing-card-footer {
    padding: 25px 35px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 2px solid #e8e8e8;
}

.advertiser-card .pricing-card-footer {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-top-color: #dc3545;
}

.publisher-card .pricing-card-footer {
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
    border-top-color: #28a745;
}

.btn-advertiser {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-advertiser:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

.btn-publisher {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-publisher:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

.pricing-note {
    margin: 15px 0 0 0;
    font-size: 13px;
    color: #777;
}

.pricing-footer-note {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff3cd 0%, #fff8dc 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricing-footer-note .note-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.pricing-footer-note .note-content {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

.pricing-footer-note strong {
    color: #664d03;
    font-weight: 700;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Workflow CTA Banner (After How It Works) */
.workflow-cta-banner {
    position: relative;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #a71d2a 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 60px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.3);
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.workflow-cta-banner h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.workflow-cta-banner .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 200px;
}

.btn-cta-primary {
    background: white;
    color: #dc3545;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: #c82333;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-cta-primary span,
.btn-cta-secondary span {
    font-size: 18px;
    margin-bottom: 5px;
}

.btn-cta-primary small,
.btn-cta-secondary small {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

/* Final CTA Section Banner */
.cta-section-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    margin-top: 60px;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 53, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner-main {
    position: relative;
    text-align: center;
    color: white;
}

.cta-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.cta-section-banner h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-main-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-dual-path {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
    align-items: center;
}

.cta-path {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-path:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advertiser-path {
    border-top: 4px solid #dc3545;
}

.publisher-path {
    border-top: 4px solid #0ea5e9;
}

.path-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-path h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.path-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.path-benefits li {
    padding: 10px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.path-benefits li:last-child {
    border-bottom: none;
}

.btn-path-primary,
.btn-path-secondary {
    display: block;
    width: 100%;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-path-primary {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.btn-path-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.5);
}

.btn-path-secondary {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: white;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.btn-path-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.5);
}

.cta-divider {
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-trust-signals {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-item strong {
    font-size: 16px;
    color: white;
    font-weight: 700;
}

.trust-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 1px;
    }
    
    .faq-section .section-title {
        font-size: 32px;
        padding: 0 20px 40px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    /* Ad Showcase Responsive */
    .ad-showcase-section {
        padding: 50px 0;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-code {
        position: static;
        padding: 25px;
    }
    
    .code-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .code-content pre {
        font-size: 12px;
    }
    
    .showcase-feature-grid {
        gap: 15px;
    }
    
    .demo-label {
        flex-wrap: wrap;
    }
    
    /* Workflow CTA Banner Responsive */
    .workflow-cta-banner {
        padding: 40px 25px;
        border-radius: 15px;
        margin-top: 40px;
    }
    
    .workflow-cta-banner h3 {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 25px;
        padding: 20px 0;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .workflow-cta-banner .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 18px 30px;
    }
    
    /* Final CTA Section Banner Responsive */
    .cta-section-banner {
        padding: 50px 0;
    }
    
    .cta-section-banner h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .cta-main-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-urgency-badge {
        font-size: 12px;
        padding: 10px 18px;
    }
    
    .cta-dual-path {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-divider {
        display: none;
    }
    
    .cta-path {
        padding: 30px 20px;
    }
    
    .path-icon {
        font-size: 36px;
    }
    
    .cta-path h3 {
        font-size: 24px;
    }
    
    .path-benefits li {
        font-size: 14px;
    }
    
    .cta-trust-signals {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .trust-item {
        flex: 0 0 calc(50% - 12.5px);
    }
    
    .trust-item strong {
        font-size: 14px;
    }
    
    .trust-item span {
        font-size: 11px;
    }
    
    /* Pricing Responsive */
    .pricing-header .section-title {
        font-size: 32px;
    }
    
    .pricing-card-header {
        padding: 30px 25px 25px;
    }
    
    .pricing-icon {
        font-size: 48px;
    }
    
    .pricing-card-header h3 {
        font-size: 24px;
    }
    
    .pricing-plans {
        padding: 25px 20px;
    }
    
    .pricing-plan {
        padding: 20px 15px;
    }
    
    .price-amount {
        font-size: 40px;
    }
    
    .pricing-features-box {
        padding: 0 25px 25px;
    }
    
    .pricing-card-footer {
        padding: 20px 25px 30px;
    }
    
    .btn-advertiser,
    .btn-publisher {
        width: 100%;
        padding: 14px 30px;
    }
    
    .pricing-footer-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 30px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid rgba(220, 53, 69, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
    transition: height 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(220, 53, 69, 0.3);
    transform: translateY(-4px);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 15px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive - Additional Mobile Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1a1a1a;
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: left;
        font-size: 16px;
    }
    
    .nav-links a.btn {
        margin-top: 10px;
        text-align: center;
        border-bottom: none;
        padding: 12px 20px;
        border-radius: 6px;
    }
    
    .nav-links a.btn-google-small {
        background: white !important;
        color: #333 !important;
        border: 1px solid #ddd;
        justify-content: center;
    }
    
    .nav-links a.btn-primary {
        background: white;
        color: #dc3545;
    }
    
    .nav-links a.btn-secondary {
        background: #6c757d;
        color: white;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-network-ads {
        margin-top: 30px;
    }
    
    .network-ad-container {
        padding: 15px;
        max-width: 100%;
    }
    
    /* Workflow */
    .workflow {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Sections */
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .logo h2 {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 32px !important;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* Header Buttons Group */
.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (max-width: 768px) {
    .header-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .header-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
