/* ========================================
   YouTube Bot Plugin v2.0 - Sales Page
   Color Theme: Red & Black (YouTube)
   ======================================== */

   :root {
    --red-primary: #FF0000;
    --red-dark: #CC0000;
    --red-darker: #990000;
    --red-light: #FF3333;
    --red-glow: rgba(255, 0, 0, 0.3);
    --black-primary: #0A0A0A;
    --black-secondary: #111111;
    --black-card: #1A1A1A;
    --black-lighter: #222222;
    --black-border: #2A2A2A;
    --white: #FFFFFF;
    --gray-light: #E0E0E0;
    --gray-mid: #999999;
    --gray-dark: #666666;
    --gradient-red: linear-gradient(135deg, #FF0000, #CC0000);
    --gradient-dark: linear-gradient(135deg, #1A1A1A, #0A0A0A);
    --shadow-red: 0 4px 30px rgba(255, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black-primary);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ========================================
   Typography
   ======================================== */
.text-red {
    color: var(--red-primary);
}

.text-glow {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bold-text {
    font-weight: 700;
    color: var(--white);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 40px rgba(255, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
    background: transparent;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

.btn-primary-sm {
    background: var(--gradient-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-red);
}

.btn-primary-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.left-align {
    text-align: left;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: var(--red-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-mid);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--black-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}

.nav-brand i {
    color: var(--red-primary);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse at 20% 80%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray-mid);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--red-primary);
}

.stat-label {
    font-size: 13px;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Problem Section
   ======================================== */
.problem-section {
    padding: 100px 0;
    background: var(--black-secondary);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
}

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--red-primary);
}

.problem-card p {
    font-size: 16px;
    color: var(--gray-light);
}

.problem-card-solution {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
}

.problem-card-solution .problem-icon {
    background: var(--gradient-red);
    color: var(--white);
}

.solution-banner {
    text-align: center;
    padding: 30px;
    background: var(--gradient-red);
    border-radius: var(--radius-md);
    font-size: 20px;
}

.solution-banner strong {
    text-decoration: underline;
}

/* ========================================
   What Is Section
   ======================================== */
.what-is-section {
    padding: 100px 0;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.check-item:hover {
    border-color: rgba(255, 0, 0, 0.3);
}

.check-item i {
    color: var(--red-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.check-item span {
    font-size: 15px;
    font-weight: 500;
}

.cron-note {
    text-align: center;
    font-size: 16px;
    color: var(--gray-mid);
    padding: 20px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   Focus Section
   ======================================== */
.focus-section {
    padding: 100px 0;
    background: var(--black-secondary);
}

.focus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.focus-left h3,
.focus-right h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--red-primary);
}

.stream-counts {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.stream-count {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    flex: 1;
    transition: var(--transition);
}

.stream-count:hover {
    border-color: rgba(255, 0, 0, 0.3);
}

.stream-count.highlight {
    border-color: var(--red-primary);
    background: rgba(255, 0, 0, 0.05);
}

.count-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--red-primary);
}

.count-label {
    font-size: 13px;
    color: var(--gray-mid);
}

.focus-text {
    font-size: 17px;
    margin-bottom: 20px;
}

.no-need-list p {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-light);
    font-size: 15px;
}

.no-need-list i {
    color: var(--red-primary);
}

.system-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sys-feat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sys-feat:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateX(4px);
}

.sys-feat i {
    color: var(--red-primary);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.sys-feat span {
    font-size: 15px;
    font-weight: 500;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-red);
}

.feature-card-wide {
    grid-column: 1 / -1;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 0, 0, 0.08);
    line-height: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--gradient-red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-subtitle {
    color: var(--gray-mid);
    font-size: 14px;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--gray-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red-primary);
    font-weight: 700;
}

.spinner-example {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: var(--radius-sm);
}

.spinner-title {
    font-size: 13px;
    color: var(--gray-mid);
    margin-bottom: 8px;
    font-weight: 600;
}

.spinner-example code {
    display: block;
    padding: 4px 0;
    font-size: 13px;
    color: var(--red-light);
    font-family: 'Courier New', monospace;
}

.cron-engines {
    display: flex;
    gap: 20px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.cron-engine {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    flex: 1;
    min-width: 200px;
}

.cron-engine i {
    color: var(--red-primary);
    font-size: 20px;
}

.cron-engine span {
    font-weight: 600;
    font-size: 15px;
}

.cron-tagline {
    font-size: 16px;
    color: var(--gray-mid);
    font-style: italic;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    padding: 100px 0;
    background: var(--black-secondary);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--black-card);
    border: 2px solid var(--red-primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient-red);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pricing-amount {
    margin-bottom: 12px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: super;
    color: var(--gray-light);
}

.price {
    font-size: 64px;
    font-weight: 900;
    color: var(--red-primary);
    line-height: 1;
}

.per {
    font-size: 18px;
    color: var(--gray-mid);
    font-weight: 500;
}

.pricing-note {
    color: var(--gray-mid);
    margin-bottom: 30px;
    font-size: 15px;
}

.pricing-highlights {
    text-align: left;
    margin-bottom: 30px;
}

.ph-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
}

.ph-item i {
    color: #22c55e;
    font-size: 16px;
}

.pricing-calculator {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.pricing-calculator h4 {
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--gray-light);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--black-border);
    font-size: 14px;
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-row.highlight {
    color: var(--red-primary);
    font-weight: 700;
}

.calc-price {
    font-weight: 600;
}

.pricing-compare {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-compare h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--gray-light);
}

.compare-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compare-items span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-mid);
}

.compare-items i {
    color: var(--red-primary);
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits-section {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.benefit-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
}

.benefit-card i {
    font-size: 32px;
    color: var(--red-primary);
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 600;
}

.database-structure {
    text-align: center;
    padding: 36px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
}

.database-structure h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.db-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
}

.db-tag {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: var(--red-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.database-structure p {
    color: var(--gray-mid);
    font-size: 14px;
}

/* ========================================
   No RDP Section
   ======================================== */
.no-rdp-section {
    padding: 100px 0;
    background: var(--black-secondary);
}

.no-rdp-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.no-rdp-icon {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.05);
    border: 3px solid rgba(255, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.no-rdp-icon i {
    font-size: 48px;
    color: var(--red-primary);
}

.no-rdp-icon span {
    font-size: 32px;
    font-weight: 900;
    color: var(--gray-mid);
    text-decoration: line-through;
}

.no-rdp-text p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.old-methods {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.old-methods span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray-light);
}

.old-methods i {
    color: var(--red-primary);
}

.rdp-benefits {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.rdp-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--black-card);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: #22c55e;
}

/* ========================================
   Audience Section
   ======================================== */
.audience-section {
    padding: 100px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.audience-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.audience-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
}

.audience-card i {
    font-size: 32px;
    color: var(--red-primary);
    margin-bottom: 14px;
}

.audience-card h4 {
    font-size: 16px;
    font-weight: 600;
}

.audience-note {
    text-align: center;
    font-size: 18px;
    color: var(--gray-light);
}

/* ========================================
   Scarcity Section
   ======================================== */
.scarcity-section {
    padding: 100px 0;
    background: var(--black-secondary);
}

.scarcity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.scarcity-left,
.scarcity-right {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.scarcity-left h2,
.scarcity-right h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 16px 0 20px;
}

.scarcity-reasons p {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-light);
}

.scarcity-reasons i {
    color: #22c55e;
}

.scarcity-warning {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--red-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.scarcity-right p {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.highlight-text {
    color: var(--red-primary) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--black-card);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--red-primary);
}

.faq-question i {
    transition: var(--transition);
    font-size: 14px;
    color: var(--gray-mid);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--red-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ========================================
   Conclusion Section
   ======================================== */
.conclusion-section {
    padding: 100px 0;
    background: var(--black-secondary);
}

.conclusion-content {
    text-align: center;
}

.conclusion-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.cc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
}

.cc-item i {
    color: #22c55e;
}

.conclusion-cta-box {
    background: var(--gradient-red);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}

.conclusion-cta-box p {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-price {
    display: block;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.cta-limited {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.conclusion-cta-box .btn {
    background: var(--white);
    color: var(--red-primary);
    font-weight: 700;
}

.conclusion-cta-box .btn:hover {
    background: var(--black-primary);
    color: var(--white);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-mid);
}

.contact-form-wrapper {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--black-card);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ========================================
   Legal Section
   ======================================== */
.legal-section {
    padding: 100px 0;
    background: var(--black-secondary);
}

.legal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-tab {
    padding: 12px 24px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-sm);
    color: var(--gray-mid);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.legal-tab:hover {
    color: var(--white);
    border-color: rgba(255, 0, 0, 0.3);
}

.legal-tab.active {
    background: var(--gradient-red);
    color: var(--white);
    border-color: var(--red-primary);
}

.legal-content {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content.hidden {
    display: none;
}

.legal-content h3 {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-content h3 i {
    color: var(--red-primary);
}

.legal-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 24px 0 10px;
    color: var(--white);
}

.legal-text p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-text ul {
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal-text ul li {
    list-style: disc;
    font-size: 14px;
    color: var(--gray-light);
    padding: 4px 0;
}

.refund-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid var(--red-primary);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.refund-warning i {
    color: var(--red-primary);
    font-size: 24px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--black-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--red-primary);
    font-size: 28px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    color: var(--gray-mid);
}

.footer-links ul li a:hover {
    color: var(--red-primary);
}

.footer-bottom {
    border-top: 1px solid var(--black-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-mid);
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px !important;
    color: var(--gray-dark) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-red);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-red);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .focus-content {
        grid-template-columns: 1fr;
    }

    .scarcity-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--black-border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-actions.active {
        display: flex;
        position: absolute;
        top: calc(100% + 180px);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 0 24px 20px;
        border-bottom: 1px solid var(--black-border);
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .problems-grid {
        grid-template-columns: 1fr 1fr;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .stream-counts {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .no-rdp-content {
        flex-direction: column;
        text-align: center;
    }

    .no-rdp-text .section-header {
        text-align: center;
    }

    .old-methods,
    .rdp-benefits {
        justify-content: center;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price {
        font-size: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cron-engines {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

    .conclusion-cta-box {
        padding: 32px 24px;
    }

    .cta-price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .legal-tabs {
        flex-direction: column;
    }

    .legal-content {
        padding: 24px;
    }
}