/*
=================================================================
                     STYLES.CSS - TABLE OF CONTENTS
=================================================================
1. CORE FOUNDATION
   - Toast Notifications
   - CSS Variables (:root)
   - Font Faces
   - Keyframes & Animations
   - Base Styles & Reset
2. LAYOUT FOUNDATION
   - Background Wrapper
   - Main Content Wrapper
   - Sections & Spacing
   - Typography
3. HEADER & NAVIGATION
   - Navigation Styles
   - Mobile Navigation
   - Logo & Nav Links
4. BUTTONS & INTERACTIVE ELEMENTS
   - Primary & Secondary Buttons
   - CTA Buttons & Badges
   - Interactive States
5. MAIN SECTIONS
   - Hero Section
   - Features Section
   - Problems Section
   - Comparison Section
   - How It Works Section
   - Reviews Section
   - FAQ Section
   - Call to Action Section
   - Contact Section
   - Stats Section
6. SPECIALIZED COMPONENTS
   - Video Components
   - Form Elements
   - PHP Settings Table
   - Cookie Components
7. PAGE-SPECIFIC STYLES
   - Thank You Page
   - Payment Page
   - Payment Failed Page
8. RESPONSIVE DESIGN
   - Desktop Breakpoints
   - Mobile Breakpoints
   - Responsive Utilities
9. UTILITY COMPONENTS
   - Back to Top Button
   - Footer
   - Mobile Menu
=================================================================
*/
/* ===== 1. CORE FOUNDATION ===== */
/* Toast notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
}
.toast {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 16px 20px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 10px;
    border-left: 4px solid var(--green);
    box-shadow: var(--card-shadow);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    max-width: 350px;
    word-wrap: break-word;
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}
.toast-success {
    border-left-color: var(--green);
}
.toast-error {
    border-left-color: #ef4444;
}
.toast-info {
    border-left-color: var(--accent-blue);
}
/* Utility Classes for Reduced Specificity */
/* CSS Variables & Root Styles */
:root {
    /* Colors */
    --green: #4ADE80;
    --dark-navy: #0B1120;
    --navy: #111827;
    --deep-blue: #1A1F2C;
    --accent-blue: #2A5298;
    --card-bg: #1E293B;
    --card-bg-gradient: linear-gradient(to bottom right, #1E293B, #252F48);
    --body-bg-gradient: linear-gradient(145deg, #0B1120, #111827 60%, rgba(30, 41, 59, 0.8));
    --card-gradient: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(37, 35, 68, 0.4));
    --green-subtle-gradient: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(74, 222, 128, 0.05));
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --hover-border: var(--white-15);
    --icon-color: #4ADE80;
    --card-shadow: 0 8px 24px var(--black-20);
    --button-shadow: 0 4px 12px rgba(74, 222, 128, 0.12);
    --button-bg: #2EAD5F;
    --app-blue: #1E293B;
    --app-purple: #6366F1;
    --white-5: rgba(255, 255, 255, 0.05);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-15: rgba(255, 255, 255, 0.15);
    --black-20: rgba(0, 0, 0, 0.2);
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-xs: 0.25rem;
    --spacing-3xl: 0.75rem;
    --spacing-4xl: 1.25rem;
    --spacing-5xl: 1.5rem;
    --section-padding-top: 50px;
    --section-padding-bottom: 50px;
    --blue-accent: #1E293B;
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 20px;
    --border-radius-full: 50%;
    --border-radius-pill: 9999px;
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* Font Sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 0.9375rem;
    --font-md: 0.95rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    /* Responsive Breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --large-desktop: 1280px;
}
/* Font Faces */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('./font/static/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('./font/static/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('./font/static/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('./font/static/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}
/* Keyframes & Animations */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes background-float {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }
    25% {
        transform: scale(1.15) translateX(-10px) translateY(-8px);
    }
    50% {
        transform: scale(1.05) translateX(8px) translateY(-4px);
    }
    75% {
        transform: scale(1.2) translateX(-3px) translateY(12px);
    }
    100% {
        transform: scale(1) translateX(0) translateY(0);
    }
}
@keyframes background-pattern {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-60px) translateY(-60px);
    }
}
@keyframes energy-flow {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateX(-10px) translateY(-5px) scale(1.02);
        opacity: 0.25;
    }
    50% {
        transform: translateX(-5px) translateY(-10px) scale(0.98);
        opacity: 0.2;
    }
    75% {
        transform: translateX(-15px) translateY(-3px) scale(1.01);
        opacity: 0.3;
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.2;
    }
}
/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* Remove duplicate background - let background-wrapper handle it */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "ss02", "cv01", "cv02";
}
/* ===== 2. LAYOUT FOUNDATION ===== */
/* Main background wrapper */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    width: 100vw;
    background:
        linear-gradient(135deg,
            rgba(8, 12, 24, 0.98) 0%,
            rgba(18, 24, 36, 0.98) 25%,
            rgba(18, 24, 36, 0.98) 50%,
            rgba(32, 62, 122, 0.98) 100%);
    z-index: -1;
    /* Ensure background covers properly */
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 240px);
    background-image:
        radial-gradient(circle at 20% 80%, rgba(74, 222, 128, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.06) 0%, transparent 65%),
        radial-gradient(circle at 40% 40%, rgba(74, 222, 128, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 60% 60%, rgba(74, 222, 128, 0.03) 0%, transparent 55%);
    animation: background-float 6s ease-in-out infinite;
    z-index: -1;
    overflow: visible;
    border: none;
    outline: none;
    box-shadow: none;
}
/* Main content wrapper */
.main-wrapper {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
/* Sections */
section {
    width: 100%;
    overflow: hidden;
    position: relative;
}
/* Section separators */
.section-divider {
    position: relative;
    margin: 0 auto 40px;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.8;
    overflow: hidden;
}
.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.3);
    animation: section-glow 2s ease-in-out infinite;
}
@keyframes section-glow {
    0%,
    100% {
        box-shadow: 0 0 8px rgba(74, 222, 128, 0.2);
    }
    50% {
        box-shadow: 0 0 16px rgba(74, 222, 128, 0.4);
    }
}
/* Footer link styling */
.footer a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #ffffff;
}
/* Unified section spacing across all breakpoints */
section {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom) 0;
    margin: 0;
}
/* Hero section gets optimal top padding */
.hero-section {
    padding: 3.5rem 0 var(--section-padding-bottom) 0;
    margin: 0;
}
/* Sections with ID (except hero) - no top padding */
#features,
#problems,
#how-it-works,
#reviews,
#faq,
#contact {
    padding-top: 0 !important;
}
/* Platform note - consistent spacing */
/* Settings section without ID gets consistent spacing */
.settings-section {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom) 0;
    margin: 0;
}
body>* {
    position: relative;
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
    font-feature-settings: "ss01", "ss02", "cv01", "cv02";
}
h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}
h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}
h3 {
    font-size: var(--font-xl);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}
.text-green {
    color: var(--green);
}
.text-light {
    color: var(--text-muted);
    font-size: 0.9em;
}
.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin: 20px auto 30px auto;
    font-size: clamp(1rem, 2.5vw, var(--font-lg));
    max-width: min(650px, 90vw);
    line-height: 1.6;
    font-weight: 400;
}
/* Section headings consistent styling */
section h2 {
    text-align: center;
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}
/* ===== 3. HEADER & NAVIGATION ===== */
/* Navigation */
.nav {
    padding: var(--spacing-4xl) 0;
    background: rgba(11, 17, 32, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--white-10);
    backdrop-filter: blur(8px);
    height: auto;
    display: flex;
    align-items: center
}
.nav .container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}
.logo {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.logo img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-item .brace {
    color: var(--green);
    font-size: var(--font-xl);
    font-family: monospace;
    font-weight: normal;
}
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: var(--font-base);
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}
.nav-links a:hover {
    color: var(--green);
}
.nav-links a.active {
    color: var(--green);
    font-weight: 600;
}
.nav-links a.active::after {
    display: none;
}
.nav-button {
    justify-self: end;
}
.nav-button .btn-primary {
    position: relative;
    overflow: hidden;
    border: none;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}
.nav-button .btn-primary:hover {
    color: #ffffff;
}
.nav-button .btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--green), transparent, var(--green), transparent, var(--green));
    background-size: 300% 300%;
    border-radius: inherit;
    animation: border-glow 3s ease-in-out infinite;
}
@keyframes border-glow {
    0%,
    100% {
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}
button.mobile-btn,
a.btn-primary.mobile-btn {
    display: none;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    background: var(--button-bg);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
/* Features section */
.feature-card {
    text-align: center;
    align-items: center;
}
.feature-icon {
    margin: 0 auto 1rem;
}
/* How it works section */
.step {
    text-align: center;
    align-items: center;
}
.step-number {
    margin: 0 auto 1rem;
}
/* Reviews section */
.review-card {
    text-align: center;
    align-items: center;
}
.stars {
    justify-content: center;
}
/* Hero section */
.hero-content {
    text-align: center;
}
.hero-text {
    margin: 0 auto;
}
/* Feature tags */
.feature-tags span {
    justify-content: center;
}
/* CTA section */
.cta-section {
    text-align: center;
}
.pricing {
    align-items: center;
}
/* ===== 4. BUTTONS & INTERACTIVE ELEMENTS ===== */
/* Primary Button Styles */
.btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--green), transparent, var(--green), transparent, var(--green));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: gradient-shift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(108%);
}
/* Secondary Button Styles */
.btn-secondary {
    background: transparent;
    color: var(--text-color);
    padding: var(--spacing-3xl) var(--spacing-5xl);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    background: var(--white-5);
    border-color: var(--hover-border);
    transform: translateY(-1px);
    color: #1f2937;
}
/* CTA & Special Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.discount-badge {
    background: none;
    color: var(--green);
    padding: 0;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
    text-decoration: none;
    border: none;
    position: relative;
}
.discount-badge .zap-icon {
    margin-right: 0.25rem;
    width: 12px;
    height: 12px;
    display: inline-block;
}
.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9em;
    margin-left: 0.5rem;
}
.btn-original-price {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 0.85em;
    font-weight: 400;
    margin-left: 0.5rem;
}
.cta-section .discount-badge {
    font-size: 0.9rem;
    margin-left: 0;
    color: var(--green);
    font-style: italic;
    transform: none;
}
.hero-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-3xl)
}
.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.trust-badges {
    display: flex;
    gap: var(--spacing-5xl);
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0 0.5rem;
}
.trust-item i {
    color: var(--green);
}
.problem-cta {
    text-align: center;
    margin-top: 40px;
    padding: 2rem;
    background: rgba(74, 222, 128, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(74, 222, 128, 0.2);
}
.time-savings {
    color: var(--green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.footer-copyright {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.7);
}
/* ===== 5. MAIN SECTIONS ===== */
/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 80px;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.hero-text .btn-primary {
    padding: 1rem 2rem;
    font-size: var(--font-lg);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    background: var(--button-bg);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4) !important;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}
.hero-text .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--green), transparent, var(--green), transparent, var(--green));
    background-size: 300% 300%;
    border-radius: inherit;
    animation: border-glow 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.3;
}
.hero-text .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(74, 222, 128, 0.6) !important;
    text-decoration: none;
    color: #ffffff;
    filter: brightness(110%);
}
.hero-cta-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: cta-pulse 4s ease-in-out infinite;
}
.hero-text {
    max-width: 540px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.hero-text h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.hero-description {
    font-size: var(--font-xl);
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.5;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: var(--font-md);
}
.hero-benefits span {
    color: var(--text-color);
    font-weight: 500;
}
.hero-badge {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-color);
    width: fit-content;
    background: var(--green-subtle-gradient);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}
.hero-badge .badge-highlight {
    color: var(--green);
    font-weight: 600;
}
.hero-badge:hover {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.08));
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-1px);
}
.hero-badge:hover .badge-highlight {
    color: #5BE58A;
}
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}
.hero-cta .pricing-note {
    margin: 0;
}
.pricing-note {
    margin-top: var(--spacing-md);
    color: var(--text-muted);
    font-size: var(--font-sm);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pricing-note i {
    width: 16px;
    height: 16px;
    color: var(--green);
}
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border-color);
    animation: float 4s ease-in-out infinite;
    vertical-align: middle;
}
/* ===== 6. SPECIALIZED COMPONENTS ===== */
/* Video Play Button */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(11, 17, 32, 0.4);
    border-radius: var(--border-radius-full);
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(11, 17, 32, 0.6);
    box-shadow: 0 15px 45px rgba(74, 222, 128, 0.8), 0 0 60px rgba(74, 222, 128, 0.4);
}
.video-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}
.video-play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    /* Adjust for visual center of play icon */
}
/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999999;
}
.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.video-lightbox-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
    padding: 20px;
    border-radius: var(--border-radius-lg);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
}
.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.close-lightbox:hover {
    color: var(--green);
    transform: scale(1.1);
}
/* Story Section */
.story-section {
    padding: 40px 0 45px 0;
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid rgba(74, 222, 128, 0.1);
    border-bottom: 1px solid rgba(74, 222, 128, 0.1);
    position: relative;
}
.story-section::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: rgba(74, 222, 128, 0.1);
    z-index: 1;
}
.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.story-problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    text-align: left;
}
.problem-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(239, 68, 68, 0.25);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.12);
    transition: all 0.3s ease;
}
.problem-icon i {
    width: 24px;
    height: 24px;
    color: #EF4444;
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.25));
}
.problem-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}
.problem-item span {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}
.problem-item code {
    background: rgba(74, 222, 128, 0.1);
    color: var(--green);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}
.story-frustration {
    margin-bottom: 3rem;
    text-align: center;
}
.frustration-icon {
    width: 56px;
    height: 56px;
    background: rgba(251, 146, 60, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.5rem;
}
.frustration-icon i {
    width: 28px;
    height: 28px;
    color: #fb923c;
}
.frustration-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 800px;
}
.frustration-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.frustration-intro h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fb923c;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}
.frustration-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 0 2rem 0;
    font-weight: 400;
}
.frustration-solution h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--green);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
}
.frustration-solution p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
}
/* Responsive design for frustration content */
@media (max-width: 768px) {
    .frustration-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    .frustration-intro h3 {
        font-size: 1.5rem;
    }
    .frustration-intro p {
        font-size: 1.1rem;
    }
    .frustration-solution h4 {
        font-size: 1.2rem;
    }
    .frustration-solution p {
        font-size: 1rem;
    }
}
.frustration-text strong {
    color: #fb923c;
    font-weight: 600;
}
.frustration-intro code {
    background: rgba(74, 222, 128, 0.1);
    color: var(--green);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
}
.story-solution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}
.solution-icon {
    width: 48px;
    height: 48px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.solution-icon i {
    width: 24px;
    height: 24px;
    color: var(--green);
}
.story-solution p {
    font-size: 1.4rem;
    color: var(--green);
    margin: 0;
}
/* Features Section */
.features-section h2 {
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
    margin-bottom: var(--spacing-5xl);
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: var(--font-primary);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    container-type: inline-size;
}
.feature-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.75), rgba(37, 35, 68, 0.75));
}
.feature-card h3 {
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.01em;
    margin: 0;
}
/* Container Queries for Feature Cards */
@container (max-width: 800px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@container (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
}
.feature-card p {
    color: var(--text-muted);
    font-size: var(--font-md);
    line-height: 1.6;
    margin: 0;
}
/* Feature Icons */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.15));
    border-radius: var(--border-radius-pill);
    margin-bottom: 1rem;
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: var(--green);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.15);
    transition: all 0.3s ease;
}
.feature-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 4px rgba(74, 222, 128, 0.3));
}
.feature-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.25);
    border-color: var(--green);
}
/* Problems Section */
.problems-summary {
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.problems-reality-check {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
}
.automation-details {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(37, 35, 68, 0.6));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(8px);
}
.automation-details h3 {
    color: var(--green);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-5xl);
    text-align: center;
}
.automation-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.automation-details li {
    color: var(--text-muted);
    font-size: var(--font-md);
    line-height: 1.6;
    margin-bottom: var(--spacing-3xl);
    padding-left: 1.5rem;
    position: relative;
}
.automation-details li strong {
    color: var(--text-color);
    font-weight: 600;
}
.automation-note {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}
@media (max-width: 1150px) {
    .automation-details {
        margin-top: 2rem;
        padding: var(--spacing-5xl);
    }
    .automation-details h3 {
        font-size: var(--font-xl);
        text-align: left;
        margin-bottom: 1rem;
    }
    .automation-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: var(--spacing-5xl);
    }
    .automation-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .automation-header i {
        margin-top: 0;
        width: 18px;
        height: 18px;
    }
    .automation-header strong {
        font-size: 1.1rem;
    }
    .automation-text {
        margin-left: 2.1rem !important;
        padding-left: 0;
        color: var(--text-muted);
        line-height: 1.5;
    }
    .automation-note {
        text-align: left;
        font-size: 0.9rem;
        padding-top: 1rem;
    }
}
.problems-section h2 {
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
    margin-bottom: var(--spacing-5xl);
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: var(--font-primary);
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.problem-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.problem-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.75), rgba(37, 35, 68, 0.75));
}
.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.12);
    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(239, 68, 68, 0.25);
    align-self: center;
    color: #EF4444;
}
.problem-icon i {
    width: 24px;
    height: 24px;
}
.problem-card h3 {
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.01em;
    margin: 0;
    text-align: center;
}
.problem-card p {
    color: var(--text-muted);
    font-size: var(--font-md);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}
.problem-card code {
    background: rgba(74, 222, 128, 0.1);
    color: var(--green);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: var(--font-sm);
    font-family: 'Courier New', monospace;
}
/* Comparison Section */
.comparison-section h2 {
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
    margin-bottom: var(--spacing-5xl);
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: var(--font-primary);
    text-align: center;
}
.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg-gradient);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    box-shadow: var(--card-shadow);
}
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}
.comparison-table th {
    padding: var(--spacing-5xl);
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}
.comparison-table th:first-child {
    width: 25%;
    color: var(--text-color);
}
.comparison-table .manual-column {
    width: 37.5%;
    color: #EF4444;
    border-left: 3px solid #EF4444;
}
.comparison-table .automated-column {
    width: 37.5%;
    color: var(--green);
    border-left: 3px solid var(--green);
}
.comparison-table td {
    padding: var(--spacing-4xl) var(--spacing-5xl);
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}
.comparison-table .task-name {
    font-weight: 600;
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.1);
}
.comparison-table .manual-cell {
    color: var(--text-muted);
    background: rgba(239, 68, 68, 0.02);
}
.comparison-table .automated-cell {
    color: var(--text-muted);
    background: rgba(74, 222, 128, 0.02);
    font-weight: 500;
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.comparison-table th i {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
/* Mobile responsive comparison table */
@media (max-width: 1150px) {
    .comparison-table {
        margin: 0 1rem;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .comparison-table table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table th,
    .comparison-table td,
    .comparison-table tr {
        display: block;
    }
    .comparison-table thead {
        display: none;
    }
    .comparison-table tr {
        margin-bottom: 1rem;
        background: var(--card-bg-gradient);
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        border: 1px solid var(--border-color);
    }
    .comparison-table td {
        padding: 1rem 1.5rem;
        border: none;
        border-bottom: 1px solid var(--border-color);
        position: relative;
    }
    .comparison-table td:last-child {
        border-bottom: none;
    }
    .comparison-table .task-name {
        background: rgba(74, 222, 128, 0.08);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--green);
        padding: 1rem 1.5rem;
        margin: 0;
        border-bottom: 1px solid var(--border-color);
    }
    .comparison-table .manual-cell {
        background: rgba(239, 68, 68, 0.02);
        border-left: 1px solid #EF4444;
        padding-top: 2.5rem;
        margin-left: 1px;
    }
    .comparison-table .manual-cell:before {
        content: "Manual Way";
        position: absolute;
        left: 1.5rem;
        top: 1rem;
        font-weight: 600;
        color: #EF4444;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .comparison-table .automated-cell {
        background: rgba(74, 222, 128, 0.02);
        border-left: 3px solid var(--green);
        padding-top: 2.5rem;
    }
    .comparison-table .automated-cell:before {
        content: "With Local PHP Tweaker";
        position: absolute;
        left: 1.5rem;
        top: 1rem;
        font-weight: 600;
        color: var(--green);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
}
.time-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
    display: inline-block;
}
.time-badge.bad {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}
.time-badge.good {
    background: rgba(74, 222, 128, 0.2);
    color: var(--green);
}
.comparison-steps {
    padding: var(--spacing-5xl);
}
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
}
.step-item:last-child {
    margin-bottom: 0;
}
.step-item.empty {
    opacity: 0.7;
    font-style: italic;
}
.step-number {
    background: var(--white-10);
    color: var(--text-color);
    width: 24px;
    height: 24px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.comparison-card.automated .step-number {
    background: rgba(74, 222, 128, 0.2);
    color: var(--green);
}
.step-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}
.comparison-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(11, 17, 32, 0.5);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: var(--text-muted);
    font-size: var(--font-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}
/* How It Works Section */
.how-it-works-section h2 {
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
    margin-bottom: var(--spacing-5xl);
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: var(--font-primary);
}
.how-it-works-section h2 .text-green {
    color: var(--green);
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.step {
    background: transparent;
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    backdrop-filter: blur(8px);
}
.step:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.step-number {
    width: 52px;
    height: 52px;
    background: #4ADE80;
    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: #0B1120;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}
.step h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.01em;
}
.step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-base);
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}
/* Reviews Section */
/* Reviews Carousel */
.reviews-carousel {
    transition: min-height 0.2s;
    padding: 0;
}
/* Hide old grid styles */
.reviews-grid {
    display: none;
}
/* Keen Slider Styles */
.keen-slider {
    padding: 0;
    overflow: visible;
}
.keen-slider__slide {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
}
/* Ensure slides are properly sized */
.keen-slider__slide .review-card {
    width: 100%;
    height: 100%;
    margin: 0;
}
.review-card {
    background: linear-gradient(to bottom right,
            rgba(11, 17, 32, 0.6),
            rgba(17, 24, 39, 0.6));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    text-align: center;
    align-items: center;
    height: auto;
    min-height: 250px;
    width: 100%;
}
@media (max-width: 1150px) {
    .review-card {
        flex: 0 0 100%;
        width: 100%;
        height: auto;
        min-height: auto;
    }
    .reviews-carousel {
        max-width: 1200px;
        padding: 0;
    }
    .reviews-splide {
        overflow: hidden;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1150px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .carousel-btn:hover {
        transform: scale(1.05);
    }
}
.review-card p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    text-align: center;
}
.quote-mark {
    color: #4ADE80;
    font-size: 1.5em;
    font-family: Georgia, serif;
    font-style: italic;
    line-height: 0;
    position: relative;
    top: 0.1em;
}
.stars {
    color: var(--green);
    font-size: var(--font-xl);
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(74, 222, 128, 0.3));
    transition: all 0.3s ease;
}
.stars:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(74, 222, 128, 0.4));
}
.review-card cite {
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.review-card cite i {
    width: 12px;
    height: 12px;
    color: var(--green);
    display: inline-flex;
    align-items: center;
}
.role {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-sm);
    margin-top: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.role i {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
}
.lucide-code,
.lucide-briefcase,
.lucide-layers,
.lucide-building,
.lucide-server,
.lucide-palette,
.lucide-wordpress {
    width: 10px;
    height: 10px;
}
.review-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: var(--spacing-5xl);
}
.review-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    align-items: center;
    align-self: flex-end;
    width: 100%;
}
/* FAQ Section */
.faq-section h2 {
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
    margin-bottom: var(--spacing-5xl);
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: var(--font-primary);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.faq-item {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(37, 35, 68, 0.6));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    overflow: hidden;
}
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--card-gradient);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 1.3;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
}
.faq-question:hover {
    color: var(--green);
}
.faq-question[aria-expanded="true"] {
    color: var(--green);
}
.faq-question span:first-child {
    flex: 1;
    text-align: left;
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--green);
    transition: transform 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: 50% 50%;
    position: relative;
}
.faq-icon i {
    transform-origin: center;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid var(--white-5);
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
}
.faq-answer p {
    color: var(--text-muted);
    font-size: var(--font-md);
    line-height: 1.6;
    margin: 0;
}
.faq-answer code {
    background: rgba(74, 222, 128, 0.1);
    color: var(--green);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: var(--font-sm);
    font-family: 'Courier New', monospace;
}
.faq-footer {
    text-align: center;
    margin: 3rem auto 0;
    padding: var(--spacing-5xl);
    margin-bottom: -10px;
    background: rgba(74, 222, 128, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(74, 222, 128, 0.2);
    max-width: 1200px;
}
.faq-footer p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.faq-footer i {
    width: 18px;
    height: 18px;
    color: var(--green);
}
.faq-footer a {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.faq-footer a:hover {
    color: var(--text-color);
}
/* Trust Ticker Section */
.trust-ticker-section {
    background: rgba(15, 23, 42, 0.2);
    border-top: 1px solid rgba(74, 222, 128, 0.1);
    padding: 0.75rem 0;
    overflow: visible;
    position: relative;
    display: none; /* Hide on desktop by default */
}
.ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.ticker-container:active {
    cursor: grabbing;
}
.ticker-container:hover {
    cursor: grab;
}
.ticker-track {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
@keyframes ticker-scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Pause animation on hover */
.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.ticker-item:hover {
    color: var(--text-color);
}
.ticker-item i {
    width: 14px;
    height: 14px;
    color: var(--green);
    opacity: 0.7;
}
.ticker-item span {
    font-weight: 400;
}
/* Responsive design for ticker */
@media (max-width: 768px) {
    .trust-ticker-section {
        display: block; /* Show on mobile */
        padding: 0.5rem 0;
    }
    .ticker-item {
        padding: 0.3rem 0.75rem;
        font-size: 0.8rem;
    }
    .ticker-item i {
        width: 12px;
        height: 12px;
    }
    .ticker-track {
        animation-duration: 18s;
    }
    /* Enhanced touch experience on mobile */
    .ticker-container {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }
    /* Smaller indicator line on mobile */
    .story-section::after {
        bottom: -6px;
        width: 12px;
        height: 1px;
    }
}
@media (max-width: 480px) {
    .ticker-item {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    .ticker-item i {
        width: 11px;
        height: 11px;
    }
    .ticker-track {
        animation-duration: 12s;
    }
    /* Even smaller indicator line on very small screens */
    .story-section::after {
        bottom: -5px;
        width: 10px;
        height: 1px;
    }
}
/* Call to Action Section */
.cta-section {
    background: var(--card-bg-gradient);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    margin: 0 auto 50px;
    max-width: 800px;
    width: calc(100% - 3rem);
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.6), transparent);
    transform: translateY(-2px);
}
.cta-section h2 {
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
}
.cta-section p {
    color: var(--text-muted);
    font-size: var(--font-lg);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.pricing h3 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}
.pricing h3::after {
    content: "- Lifetime Access";
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-lg);
    margin-left: 0.75rem;
}
.pricing .btn-primary {
    background: var(--button-bg);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-size: var(--font-lg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}
.pricing .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--green), transparent, var(--green), transparent, var(--green));
    background-size: 300% 300%;
    border-radius: inherit;
    animation: border-glow 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.3;
}
.pricing .btn-primary::after {
    display: none;
}
.pricing .btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(108%);
    color: #ffffff;
}
.terms {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-sm);
    margin-top: 0.5rem;
    margin-bottom: -15px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-5xl);
    flex-wrap: wrap;
}
.term-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.terms i {
    color: var(--green);
    font-size: 1rem;
}
@media (max-width: 1150px) {
    .terms {
        flex-direction: column;
        gap: 0.5rem;
    }
}
.platform-note {
    margin: 2rem auto 0;
    padding: var(--spacing-5xl);
    background: rgba(11, 17, 32, 0.5);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(8px);
    display: inline-block;
    border: 1px solid var(--white-10);
}
.platform-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-md);
    margin: 0;
}
.platform-note .text-green {
    font-weight: 600;
}
/* Footer */
.footer {
    padding: 2rem 0;
    margin-top: auto;
    border-top: 1px solid var(--white-10);
    background: transparent;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-sm);
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: #ffffff;
}
.footer-made {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-sm);
    align-items: center;
    justify-content: center;
}
.footer-made i {
    color: #ff6b6b;
    margin: 0 0.25rem;
    display: inline-flex;
    align-items: center;
}
.lucide {
    stroke-width: 2px;
    vertical-align: middle;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
}
.lucide-heart {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    vertical-align: middle;
    color: #ff6b6b;
}
.lucide-frown,
.lucide-smile {
    vertical-align: middle;
    margin-right: 5px;
}
.automation-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.automation-list li {
    margin-bottom: 1rem;
    padding: 0;
    line-height: 1.6;
    color: var(--green);
}
.automation-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.automation-header i {
    color: var(--green);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.automation-header strong {
    color: var(--text-color);
    font-weight: 600;
}
.automation-text {
    margin-left: 33px;
    color: var(--text-muted);
    line-height: 1.5;
}
/* Contact Section */
.contact-section h2 {
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
    margin-bottom: var(--spacing-5xl);
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: var(--font-primary);
    text-align: center;
}
.contact-form-wrapper {
    max-width: 600px;
    margin: 2rem auto 0;
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-5xl);
    margin-bottom: var(--spacing-5xl);
}
.form-group {
    margin-bottom: var(--spacing-5xl);
}
.form-group:last-child {
    margin-bottom: 0;
}
.form-group label {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: var(--font-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    padding: 0.75rem;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    background: rgba(30, 41, 59, 0.3);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
/* Fix autofill background */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(30, 41, 59, 0.3) inset !important;
    -webkit-text-fill-color: var(--text-color) !important;
    background-color: rgba(30, 41, 59, 0.3) !important;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}
.form-group select {
    cursor: pointer;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%234ADE80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px !important;
    padding-right: 2.5rem !important;
}
.form-group select option {
    background: var(--card-bg);
    color: var(--text-color);
}
.turnstile-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}
.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}
.form-submit .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}
/* Stats Section */
.stats-section {
    padding: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: var(--spacing-5xl);
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(8px);
    text-align: left;
}
.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon i {
    width: 24px;
    height: 24px;
    color: var(--green);
}
.stat-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}
.stat-label {
    font-size: var(--font-sm);
    color: var(--text-muted);
    font-weight: 500;
}
@media (max-width: 1150px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .stat-item {
        padding: 1rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}
/* Buttons */
.btn-primary {
    background-color: var(--button-bg);
    color: #ffffff;
    padding: var(--spacing-3xl) var(--spacing-5xl);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(74, 222, 128, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--green), transparent, var(--green), transparent, var(--green));
    background-size: 300% 300%;
    border-radius: inherit;
    animation: border-glow 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.3;
}
.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(108%);
    box-shadow: var(--button-shadow);
    text-decoration: none;
    color: #ffffff;
}
.btn-original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9em;
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}
/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Section content containers for better readability */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
}
/* Wide containers for specific sections */
.hero-content,
.features-grid,
.problems-grid,
.comparison-grid,
.steps,
.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Tablet styles removed - using mobile styles for all <768px */
/* Responsive Design */
/* Large Desktop (1025px - 1150px) */
@media (min-width: 1025px) and (max-width: 1150px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    .hero-content {
        gap: 5rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .hero-text h1 {
        font-size: 4.5rem;
    }
    .hero-description {
        font-size: 1.3rem;
    }
}
/* Medium Desktop (up to 1150px) */
@media (max-width: 1150px) {
    .container,
    .hero-content,
    .features-grid,
    .steps,
    .reviews-grid,
    .footer-content {
        max-width: 100%;
        padding: 0 2rem;
    }
}
/* Desktop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 2rem;
    }
    .hero-content {
        gap: 4rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .contact-form-wrapper {
        padding: 2rem;
        margin-top: 2rem;
    }
    .hero-text h1 {
        font-size: 4rem;
    }
    .hero-description {
        font-size: 1.2rem;
    }
}
/* Small Desktop (769px - 1024px) */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .hero-content {
        gap: 3rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-5xl);
        margin-bottom: var(--spacing-5xl);
    }
    .contact-form-wrapper {
        padding: var(--spacing-5xl);
        margin-top: 1.5rem;
    }
}
/* Tablet breakpoint removed - using mobile layout for all <768px */
/* Mobile Navigation */
@media (max-width: 1150px) {
    .mobile-menu-toggle {
        display: block;
    }
    .nav .container {
        display: flex;
        justify-content: space-between;
    }
    .nav-button {
        display: none;
    }
    button.mobile-btn,
    a.btn-primary.mobile-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 200px;
        margin-top: 1rem;
        padding: var(--spacing-3xl) var(--spacing-5xl);
        font-size: 1rem;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        background: var(--button-bg);
        color: #ffffff;
        border-radius: var(--border-radius-md);
        box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
        transition: all 0.3s ease;
        text-decoration: none;
        font-family: var(--font-primary);
        letter-spacing: -0.01em;
        gap: 0.5rem;
        cursor: pointer;
        border: none;
    }
    button.mobile-btn::before,
    a.btn-primary.mobile-btn::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        background: linear-gradient(45deg, var(--green), transparent, var(--green), transparent, var(--green));
        background-size: 300% 300%;
        border-radius: inherit;
        animation: border-glow 3s ease-in-out infinite;
        z-index: -1;
        opacity: 0.6;
        filter: blur(8px);
    }
    button.mobile-btn:hover,
    a.btn-primary.mobile-btn:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 12px 35px rgba(74, 222, 128, 0.6);
        text-decoration: none;
        color: #ffffff;
        filter: brightness(110%);
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0b1120f6;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--white-10);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 1.5rem;
        gap: 0px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 997;
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-links a {
        color: #ffffff !important;
        font-size: 1.5rem;
        font-weight: 500;
        text-decoration: none;
        text-align: center;
        padding: 1rem 0;
        transition: color 0.3s ease;
        display: block;
        position: relative;
        z-index: 10;
    }
    .nav-links a:hover {
        color: var(--green);
    }
    .nav-links .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        width: 200px;
        flex-shrink: 0;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        background: var(--button-bg);
        color: #ffffff;
        border-radius: var(--border-radius-md);
        box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
        transition: all 0.3s ease;
        text-decoration: none;
        font-family: var(--font-primary);
        letter-spacing: -0.01em;
        gap: 0.5rem;
        cursor: pointer;
        border: none;
        margin-top: 1rem;
    }
    .nav-links .btn-primary::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        background: linear-gradient(45deg, var(--green), transparent, var(--green), transparent, var(--green));
        background-size: 300% 300%;
        border-radius: inherit;
        animation: border-glow 3s ease-in-out infinite;
        z-index: -1;
        opacity: 0.6;
        filter: blur(8px);
    }
    .nav-links .btn-primary:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 12px 35px rgba(74, 222, 128, 0.6);
        text-decoration: none;
        color: #ffffff;
        filter: brightness(110%);
    }
}
/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .container,
    .hero-content,
    .footer-content {
        padding: 0 25px;
    }
    .features-grid,
    .problems-grid,
    .steps,
    .reviews-grid {
        padding: 0;
    }
    /* Všechny elementy s borderem a box-shadow - až k okrajům */
    .faq-item,
    .faq-footer,
    .contact-form-wrapper,
    .php-settings-table,
    .cookie-banner,
    .cookie-modal,
    .video-lightbox-content {
        margin: 0;
        border-radius: 8px;
    }
    .comparison-table {
        margin: 0;
        border-radius: 8px;
    }
    .settings-table-container {
        margin: 0;
        border-radius: 8px;
    }
    .automation-details {
        margin: 0;
        border-radius: 8px;
    }
    /* Padding pro karty a kontejnery */
    .feature-card,
    .problem-card,
    .review-card,
    .step {
        padding: 1rem;
    }
    .automation-details {
        padding: 1rem;
        margin-top: 1rem;
    }
    .faq-item {
        margin-bottom: 0;
    }
    .faq-question {
        padding: 1rem 1.5rem;
    }
    .faq-answer {
        padding: 0 var(--spacing-5xl);
    }
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    .contact-form-wrapper {
        padding: 1rem;
    }
    .settings-table-container {
        padding: 0;
    }
    .php-settings-table .setting-row {
        padding: 1rem;
    }
    .cookie-banner-content {
        padding: 1rem;
    }
    .cookie-modal-content {
        padding: 1rem;
    }
    .video-lightbox-content {
        padding: 1rem;
    }
    /* Add top margin to Save Time button on mobile */
    .hero-cta-main {
        margin-top: 1rem;
    }
    /* Reduce bottom margin for section divider on mobile */
    .section-divider {
        margin-bottom: 30px;
    }
    .frustration-intro p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    /* Reduce bottom margin for section h2 on mobile */
    section h2 {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .section-subtitle {
        margin: 20px auto 30px auto;
    }
    .hero-section {
        padding: 30px 0 40px;
    }
    .hero-section::before {
        top: -100px;
        height: calc(100% + 130px);
    }
    /* All sections except hero and ticker have 50px padding-bottom on tablet and mobile */
    section:not(.hero-section):not(.trust-ticker-section) {
        padding-bottom: 50px;
    }
    .reviews-section .section-subtitle {
        margin-bottom: 20px !important;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .comparison-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .section-subtitle {
        margin: 20px auto 30px;
    }
    .reviews-section .section-subtitle {
        margin-bottom: 20px !important;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav .container {
        padding: 0 var(--spacing-5xl);
        width: 100%;
    }
    body.menu-open {
        overflow: hidden;
    }
    /* Features section */
    .feature-card {
        text-align: center;
        align-items: center;
    }
    .feature-icon {
        margin: 0 auto 1rem;
    }
    /* How it works section */
    .step {
        text-align: center;
        align-items: center;
    }
    .step-number {
        margin: 0 auto 1rem;
    }
    /* Reviews section */
    .review-card {
        text-align: center;
        align-items: center;
    }
    .stars {
        justify-content: center;
    }
    /* Hero section */
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    .hero-text h1 {
        font-size: 3rem !important;
        margin-top: 1rem;
        margin-bottom: 30px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 10px;
    }
    .hero-badge {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .pricing-note {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .pricing-note span {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-5xl);
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .footer-made {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .feature-tags {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}
/* ===== 8. RESPONSIVE DESIGN ===== */
/* ===== RESPONSIVE BREAKPOINTS ===== */
/*
Breakpoint System:
- Mobile: 0px - 480px
- Tablet: 481px - 768px  
- Desktop: 769px - 1024px
- Large Desktop: 1025px - 1280px
- Extra Large: 1281px+
*/
/* Button responsive text */
.btn-text-mobile {
    display: none;
}
.btn-text-desktop {
    display: inline;
}
@media (max-width: 768px) {
    .btn-text-desktop {
        display: none;
    }
    .btn-text-mobile {
        display: inline;
    }
    .hero-text .btn-primary {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    /* Mobile CTA button improvements */
    .btn-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.25rem;
        min-height: 48px;
        width: 100%;
        max-width: 300px;
        flex-wrap: wrap;
        white-space: normal;
    }
    .btn-cta .btn-original-price {
        font-size: 0.85em;
        margin-left: 0.25rem;
    }
}
/* Tablet and Mobile (up to 768px) */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }
    .cta-section {
        padding-bottom: 25px !important;
    }
}
/* Mobile (up to 480px) */
@media (max-width: 480px) {
    .container,
    .footer-content {
        padding: 0 15px;
    }
    /* Add padding-bottom to all sections except hero and ticker on small displays */
    section:not(.hero-section):not(.trust-ticker-section) {
        padding-bottom: 50px;
    }
    .hero-content {
        padding: 0;
    }
    .features-grid,
    .problems-grid,
    .steps,
    .reviews-grid {
        padding: 0;
    }
    /* Všechny elementy s borderem a box-shadow - konzistentní odsazení */
    .faq-item,
    .faq-footer,
    .contact-form-wrapper,
    .php-settings-table,
    .cookie-banner,
    .cookie-modal,
    .video-lightbox-content,
    .comparison-table,
    .settings-table-container,
    .automation-details {
        margin: 0;
        border-radius: 8px;
    }
    /* Elementy mimo container - potřebují margin */
    .cookie-banner,
    .cookie-modal,
    .video-lightbox-content {
        margin: 0 15px;
    }
    /* Hero pozadí pro malý mobil */
    .hero-section::before {
        top: -70px;
    }
    /* Consistent section-subtitle styling for small mobile */
    .section-subtitle {
        margin: 20px auto 30px auto;
    }
    /* Larger margin above hero image on small mobile */
    .hero-image {
        margin-top: 0.7rem;
    }
    /* Small mobile CTA button improvements */
    .btn-cta {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        gap: 0.2rem;
        min-height: 44px;
        width: 100%;
        max-width: 280px;
        flex-wrap: wrap;
        white-space: normal;
    }
    .btn-cta .btn-original-price {
        font-size: 0.8em;
        margin-left: 0.2rem;
    }
    /* Padding pro karty a kontejnery */
    .feature-card,
    .problem-card,
    .review-card,
    .step {
        padding: 1rem;
    }
    .automation-details {
        padding: 1rem;
        margin-top: 1rem;
    }
    .faq-item {
        margin-bottom: 0;
    }
    .faq-question {
        padding: 1rem 1.5rem;
    }
    .faq-answer {
        padding: 0 var(--spacing-5xl);
    }
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    .contact-form-wrapper {
        padding: 1rem;
    }
    .settings-table-container {
        padding: 0;
    }
    .php-settings-table .setting-row {
        padding: 1rem;
    }
    .cookie-banner-content {
        padding: 1rem;
    }
    .cookie-modal-content {
        margin: 0.5rem;
        padding: 1rem;
    }
    .video-lightbox-content {
        padding: 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .problems-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }
    .steps {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .hero-text h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-top: 1rem;
    }
    .cta-section {
        width: calc(100% - 30px);
        margin: 0 15px 50px;
        padding-bottom: 18px !important;
    }
    /* All sections except hero and ticker have 50px padding-bottom on tablet and mobile */
    section:not(.hero-section):not(.trust-ticker-section) {
        padding-bottom: 50px;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .pricing h3 {
        font-size: 1.5rem;
    }
    .pricing .btn-primary {
        padding: var(--spacing-3xl) var(--spacing-5xl);
        font-size: 1rem;
    }
    .terms {
        gap: 1rem;
        font-size: 0.8rem;
    }
    .footer {
        padding: 1.5rem 0;
    }
    .contact-form-wrapper {
        padding: 1rem 5px;
    }
    .settings-table-container {
        padding: 0 5px;
    }
    .footer-content {
        padding: 0 5px;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-links {
        gap: 0.75rem;
        justify-content: center;
    }
    .footer-links a {
        font-size: 0.8rem;
    }
    .footer-made {
        gap: 0.75rem;
        font-size: 0.8rem;
        text-align: center;
    }
    section {
        padding: 2rem 0;
    }
    .container {
        padding: 0 1rem;
    }
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-text {
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    /* CTA Section na malém mobilu */
    .cta-section {
        padding-bottom: 18px !important;
    }
}
.feature-tags {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin: 2rem auto 0;
    padding: 0 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
}
.feature-tags span {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-sm);
    color: var(--text-muted);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.feature-tags span i {
    width: 16px;
    height: 16px;
    color: var(--green);
    vertical-align: middle;
    flex-shrink: 0;
}
/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}
/* Text content constraints */
.hero-text,
.section-content {
    max-width: 100%;
}
/* Center the heading container */
.reviews-section .heading-container {
    text-align: center;
    margin-bottom: 0;
}
/* ===== 9. UTILITY COMPONENTS ===== */
/* Back to top button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--card-bg);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius-full);
    color: var(--green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    width: 50px;
    height: 50px;
}
.back-to-top.visible {
    opacity: 0.8;
    visibility: visible;
}
.back-to-top::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 19V5M12 5L5 12M12 5L19 12' stroke='%234ADE80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.back-to-top:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
    border-color: var(--green);
}
/* Base styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    height: 100%;
}
html,
body {
    min-height: 100%;
}
/* Cookie Settings Button (Fixed Position) */
.cookie-settings-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius-full);
    color: var(--green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0.8;
}
.cookie-settings-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
    border-color: var(--green);
}
.cookie-settings-btn i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}
/* Hide cookie settings button when banner is visible */
.cookie-banner.show~.cookie-settings-btn {
    display: none;
}
/* Mobile positioning for cookie settings button and back to top */
@media (max-width: 768px) {
    .cookie-settings-btn {
        left: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }
    .cookie-settings-btn i {
        width: 18px;
        height: 18px;
    }
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }
    .back-to-top::before {
        width: 18px;
        height: 18px;
    }
}
/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--white-10);
    padding: 1rem;
    z-index: 999999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cookie-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}
.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.btn-link {
    background: none;
    border: none;
    color: var(--green);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem;
}
.btn-link:hover {
    color: #ffffff;
}
/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 999999;
    box-sizing: border-box;
    border-radius: 0;
}
.cookie-modal.show {
    display: flex;
}
.cookie-modal-content {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    margin: 2rem;
}
.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-5xl);
    border-bottom: 1px solid var(--white-10);
}
.cookie-modal-header h3 {
    color: var(--text-color);
    margin: 0;
    font-size: var(--font-xl);
}
.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-modal:hover {
    color: var(--text-color);
}
.cookie-modal-body {
    padding: var(--spacing-5xl);
}
.cookie-category {
    margin-bottom: 2rem;
}
.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.cookie-category h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
}
.cookie-category p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}
/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
}
.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: var(--border-radius-full);
}
input:checked+.cookie-slider {
    background-color: var(--green);
}
input:checked+.cookie-slider:before {
    transform: translateX(26px);
}
input:disabled+.cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}
.cookie-modal-footer {
    padding: var(--spacing-5xl);
    border-top: 1px solid var(--white-10);
    text-align: center;
}
/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .cookie-modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
}
/* Fix mobile background scrolling issue */
@media (max-width: 768px) {
    .background-wrapper {
        position: fixed;
        background-attachment: scroll;
        /* Keep fixed positioning for better mobile performance */
    }
}
/* Mobile menu button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    width: 30px;
    height: 30px;
}
.mobile-menu-toggle span {
    display: block;
    width: 2px;
    height: 18px;
    background-color: var(--green);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    transition: all 0.2s ease;
}
.mobile-menu-toggle span:nth-child(1) {
    left: 6px;
    transform: translateY(-50%) rotate(20deg);
}
.mobile-menu-toggle span:nth-child(2) {
    left: 15px;
    height: 18px;
    transform: translateY(-50%) rotate(20deg);
}
.mobile-menu-toggle span:nth-child(3) {
    left: 24px;
    transform: translateY(-50%) rotate(20deg);
}
/* Animated to X */
.mobile-menu-toggle.active span:nth-child(1) {
    left: 15px;
    transform: translateY(-50%) rotate(45deg);
    width: 2px;
    height: 20px;
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}
.mobile-menu-toggle.active span:nth-child(3) {
    left: 15px;
    transform: translateY(-50%) rotate(-45deg);
    width: 2px;
    height: 20px;
}
/* Mobile menu styles */
@media (max-width: 1150px) {
    .mobile-menu-toggle {
        display: block;
    }
    .nav .container {
        display: flex;
        justify-content: space-between;
    }
    .nav .container {
        padding: 0 var(--spacing-5xl);
        width: 100%;
    }
    body.menu-open {
        overflow: hidden;
    }
}
/* PHP Settings Table Container */
.settings-table-container {
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}
.table-header {
    text-align: center;
    margin-bottom: var(--spacing-5xl);
}
.table-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.table-header h3 i {
    width: 20px;
    height: 20px;
    color: var(--green);
}
.table-footer {
    text-align: center;
    margin-top: 1.5rem;
}
.apply-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    max-width: 500px;
}
.apply-note i {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}
.apply-note strong {
    color: var(--green);
    font-weight: 600;
}
/* PHP Settings Table */
.php-settings-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 0;
}
.php-settings-table .setting-row {
    background: rgba(30, 41, 59, 0.3);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}
.php-settings-table .setting-row:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--green);
}
.php-settings-table .setting-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.php-settings-table .setting-icon i,
.php-settings-table .setting-icon svg {
    width: 36px;
    height: 36px;
    color: #3B82F6;
}
.php-settings-table .setting-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
.php-settings-table .setting-info h4 {
    font-weight: 600;
    color: var(--green);
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2;
}
.php-settings-table .setting-info p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
}
.php-settings-table .setting-values {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
    justify-content: flex-start;
}
.php-settings-table .default-value {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    display: inline-block;
    width: fit-content;
    min-width: 80px;
    text-align: center;
}
.php-settings-table .arrow-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.php-settings-table .setting-arrow {
    font-size: 1rem;
    color: var(--green);
    font-weight: bold;
    user-select: none;
}
.php-settings-table .setting-value {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    font-style: italic;
}
.php-settings-table .setting-value.recommended {
    color: var(--green);
    font-weight: 600;
    font-style: normal;
    background: rgba(74, 222, 128, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    min-width: 80px;
    text-align: center;
}
/* Mobile responsive PHP settings table */
@media (max-width: 768px) {
    .settings-table-container {
        margin: 0;
        padding: 0;
    }
    .table-header {
        margin-bottom: 1rem;
    }
    .table-header h3 {
        font-size: 1.1rem;
    }
    .table-footer {
        margin-top: 1rem;
    }
    .apply-note {
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
    .php-settings-table {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .php-settings-table .setting-row {
        padding: 0.75rem;
        flex-direction: row;
        gap: 0.75rem;
        text-align: left;
    }
    .php-settings-table .setting-icon {
        justify-self: flex-start;
        width: 48px;
        height: 48px;
    }
    .php-settings-table .setting-icon i,
    .php-settings-table .setting-icon svg {
        width: 32px;
        height: 32px;
        color: #3B82F6;
    }
    .php-settings-table .setting-info {
        align-items: flex-start;
    }
    .php-settings-table .setting-info h4 {
        font-size: 1rem;
    }
    .php-settings-table .setting-info p {
        font-size: 0.75rem;
    }
    .php-settings-table .setting-values {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
        justify-content: flex-start;
    }
    .php-settings-table .default-value {
        font-size: 0.7rem;
    }
    .php-settings-table .arrow-value {
        gap: 0.4rem;
    }
    .php-settings-table .setting-arrow {
        font-size: 0.9rem;
    }
    .php-settings-table .setting-value {
        font-size: 0.7rem;
    }
}
@media (max-width: 1150px) {
    .logo {
        padding-left: 10px;
    }
    .mobile-menu-toggle {
        padding-right: 1.5rem;
    }
}
/* Settings section - standard padding */
#settings {
    padding-top: 0 !important;
    padding-bottom: 50px !important;
}
/* Comparison section - no top padding */
#comparison {
    padding-top: 0 !important;
}
/* Center automation details heading */
.automation-details h3 {
    text-align: center;
}
/* Center automation note */
.automation-note {
    text-align: center;
}
/* Contact Form Styling */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.contact-form {
    padding: 2rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.form-group {
    margin-bottom: 0.5rem;
}
.form-group:last-child {
    margin-bottom: 0;
}
.form-group:last-child {
    margin-bottom: 0;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: var(--navy);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.1);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}
.turnstile-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .contact-form {
        padding: var(--spacing-5xl);
    }
}
/* Enhanced hero description styling */
.hero-description .pain-relief {
    display: block;
    margin-top: 1rem;
    color: var(--green);
    font-style: italic;
    font-size: 1rem;
    opacity: 0.9;
}
/* ===== 7. PAGE-SPECIFIC STYLES ===== */
/* ===== THANK YOU PAGE STYLES ===== */
/* Navigation Styles */
.nav {
    background: rgba(11, 17, 32, 0.8) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    border-bottom: 1px solid var(--white-10) !important;
    backdrop-filter: blur(8px) !important;
    height: 95px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}
.nav .container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 200px 1fr 200px !important;
    align-items: center !important;
    padding: 0 2rem !important;
    gap: 2rem !important;
    height: 100% !important;
}
.btn-back-arrow,
.mobile-back-arrow {
    color: var(--green);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.btn-back-arrow:hover,
.mobile-back-arrow:hover {
    color: #ffffff;
    transform: translateY(-1px);
}
.btn-back-arrow svg,
.mobile-back-arrow svg {
    width: 30px;
    height: 30px;
}
/* Hide mobile arrow on desktop */
.mobile-back-arrow {
    display: none;
}
/* Add padding to body to account for fixed nav */
body {
    padding-top: 65px;
}
/* Mobile Navigation */
@media (max-width: 1150px) {
    .nav {
        height: 70px !important;
    }
    .nav .container {
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 1.5rem !important;
    }
    /* Show mobile arrow and hide desktop arrow */
    .mobile-back-arrow {
        display: flex !important;
    }
    .nav-button {
        display: none !important;
    }
    body {
        padding-top: 70px;
    }
}
/* Success Section */
.success-section {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom) 0;
    min-height: calc(100vh - 200px);
}
/* Main Download Section */
.main-download-section {
    margin: 0;
    text-align: center;
}
.download-hero {
    margin-bottom: 3rem;
}
.download-hero-icon {
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}
.download-hero-icon i {
    width: 28px;
    height: 28px;
    color: white;
}
.download-hero h2 {
    margin: 0 0 1rem 0;
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.01em;
}
.download-hero p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}
/* Primary Download Card */
.primary-download-card {
    background: var(--card-bg-gradient);
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}
.primary-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, #22c55e 100%);
}
/* Main Download Button - REDUCED SIZE */
.main-download-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, var(--green) 0%, #22c55e 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    width: 100%;
    text-align: left;
    box-shadow: var(--button-shadow);
    border: none;
    outline: none;
}
.main-download-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.4);
    color: white;
}
.main-download-btn .btn-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.main-download-btn .btn-icon i {
    width: 24px;
    height: 24px;
    color: white;
}
.main-download-btn .btn-content {
    flex: 1;
}
.main-download-btn .btn-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.main-download-btn .btn-subtitle {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}
/* Download Security Items */
.download-security {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--white-10);
}
.security-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.security-item i {
    width: 16px;
    height: 16px;
    color: var(--green);
}
/* Success Section */
.success-content {
    max-width: 600px;
    margin: 0 auto;
}
/* Success Header */
.success-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}
.success-header h1 {
    margin: 0 0 1rem 0;
    font-size: clamp(1.8rem, 4.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.success-header .text-light {
    font-weight: 300;
}
.success-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    opacity: 0.8;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}
/* Download Card */
.download-card {
    background: var(--card-bg-gradient);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}
.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 0%, #22c55e 100%);
}
.download-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-5xl);
    margin-bottom: 2rem;
}
.download-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.download-icon i {
    width: 28px;
    height: 28px;
    color: var(--green);
}
.download-title h2 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: clamp(1.875rem, 5.2vw, 2.75rem);
}
.download-title p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}
/* Download Button */
.download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--green) 0%, #22c55e 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--button-shadow);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}
.download-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.4);
    color: white;
}
.download-btn i {
    width: 24px;
    height: 24px;
}
.download-btn small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}
.download-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}
.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.stat i {
    width: 16px;
    height: 16px;
    color: var(--green);
}
/* Order Summary */
.order-summary {
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
}
.order-summary h3 {
    margin: 0 0 2rem 0;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.order-details {
    display: grid;
    gap: 1rem;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.detail-row:last-child {
    border-bottom: none;
}
.detail-row .label {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
}
.detail-row .value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}
/* Transaction ID Section */
.transaction-id-section {
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
}
.transaction-id-section h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.transaction-note {
    margin: 0 0 1.5rem 0;
    color: var(--text-muted);
    font-size: var(--font-md);
    opacity: 0.8;
}
.transaction-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}
.transaction-input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: var(--white-5);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius-md);
    color: var(--text-color);
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-all;
    cursor: text;
    transition: all 0.2s ease;
}
.transaction-input:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(74, 222, 128, 0.05);
}
.transaction-input:read-only {
    cursor: default;
}
.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--green) 0%, #22c55e 100%);
    border: none;
    border-radius: var(--border-radius-md);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.copy-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}
.copy-btn.copied {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.copy-btn i {
    width: 16px;
    height: 16px;
}
/* Processing Card */
.processing-card {
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
}
.processing-icon {
    margin-bottom: var(--spacing-5xl);
}
.processing-icon i {
    width: 48px;
    height: 48px;
    color: #f59e0b;
    animation: spin 2s linear infinite;
}
.processing-card h2 {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
}
.processing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(74, 222, 128, 0.1);
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.processing-note i {
    width: 18px;
    height: 18px;
    color: var(--green);
}
/* Quick Start Guide */
.quick-start {
    margin-bottom: 3rem;
}
.quick-start-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.quick-start-header h3 {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
}
.guide-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 0;
}
.step-card {
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem auto;
}
.step-icon-large {
    margin: 0 auto 1.5rem auto;
    color: var(--text-muted);
}
.step-icon-large i {
    width: 40px;
    height: 40px;
}
.step-info h4 {
    margin: 0 0 0.75rem 0;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
}
.step-info p {
    margin: 0 0 1.5rem 0;
    color: var(--text-muted);
    line-height: 1.5;
}
.step-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.feature-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
}
.feature-tag i {
    width: 12px;
    height: 12px;
}
/* Email Backup */
.email-backup {
    display: flex;
    align-items: center;
    gap: var(--spacing-5xl);
    padding: 2rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
}
.backup-icon i {
    width: 24px;
    height: 24px;
    color: #3b82f6;
}
.backup-content h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-color);
    font-size: 1rem;
}
.backup-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
/* Support Footer */
.support-footer {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}
.support-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.support-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-3xl) var(--spacing-5xl);
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.support-link:hover {
    background: var(--white-5);
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-1px);
}
.support-link i {
    width: 18px;
    height: 18px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .success-section {
        padding-bottom: 50px;
    }
    .success-header {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    .success-header h1 {
        font-size: 1.8rem;
    }
    .success-subtitle {
        font-size: 1rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .step-card {
        padding: 1.5rem;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .step-icon-large i {
        width: 32px;
        height: 32px;
    }
    .step-info h4 {
        font-size: 1.1rem;
    }
    .primary-download-card {
        padding: var(--spacing-5xl);
    }
    .main-download-btn {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    .main-download-btn .btn-content {
        text-align: center;
    }
    .security-items {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    .start-step {
        flex-direction: column;
        text-align: center;
    }
    .email-backup {
        flex-direction: column;
        text-align: center;
    }
    .support-links {
        flex-direction: column;
        align-items: center;
        max-width: 250px;
        margin: 0 auto;
    }
    .transaction-input-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    .transaction-input {
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
    }
    .copy-btn {
        padding: 0.875rem 1.25rem;
        justify-content: center;
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* ===== PAYMENT PAGE STYLES ===== */
/* Navigation with fixed heights */
.nav {
    background: rgba(11, 17, 32, 0.8) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    border-bottom: 1px solid var(--white-10) !important;
    backdrop-filter: blur(8px) !important;
    height: 95px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}
.nav .container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 200px 1fr 200px !important;
    align-items: center !important;
    padding: 0 2rem !important;
    gap: 2rem !important;
    height: 100% !important;
}
/* Custom styling for payment page */
.btn-back-arrow,
.mobile-back-arrow {
    color: var(--green);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.btn-back-arrow:hover,
.mobile-back-arrow:hover {
    color: #ffffff;
    transform: translateY(-1px);
}
.btn-back-arrow svg,
.mobile-back-arrow svg {
    width: 30px;
    height: 30px;
}
/* Hide mobile arrow on desktop */
.mobile-back-arrow {
    display: none;
}
/* Mobile Navigation */
@media (max-width: 1150px) {
    .nav {
        height: 70px !important;
    }
    .nav .container {
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 1.5rem !important;
    }
    /* Show mobile arrow and hide desktop arrow */
    .mobile-back-arrow {
        display: flex !important;
    }
    .nav-button {
        display: none !important;
    }
}
/* Simple Payment Section */
.simple-payment-section {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom) 0;
    min-height: calc(100vh - 200px);
}
/* Payment Content */
.payment-content {
    max-width: 600px;
    margin: 0 auto;
}
/* Payment Header */
.payment-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}
.payment-header h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}
.payment-header .text-green {
    color: var(--green);
}
.payment-header .text-light {
    color: var(--text-muted);
    font-weight: 300;
}
.payment-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.simple-payment-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* Product Section */
.product-section {
    text-align: center;
    margin-bottom: 2rem;
}
.product-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}
.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
}
.price-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.current-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--green);
}
.original-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-muted);
}
.discount-info {
    display: flex;
    justify-content: center;
}
.discount-badge {
    background: none;
    color: var(--green);
    padding: 0;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.discount-badge .zap-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
}
/* Payment Section */
.payment-section {
    margin-bottom: 2rem;
}
/* Trust Section */
.trust-section {
    margin-top: 1.5rem;
}
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}
@media (max-width: 480px) {
    .trust-badges {
        gap: 0.75rem;
    }
    .simple-payment-card {
        padding: 1.5rem 1rem;
    }
    .product-section {
        margin-bottom: 1.5rem;
    }
    .price-section {
        margin-bottom: 1.5rem;
    }
    .payment-section {
        margin-bottom: 1rem;
    }
    .trust-section {
        margin-top: 1rem;
    }
    .payment-header,
    .failed-header,
    .success-header {
        padding-top: 1rem;
    }
    .simple-payment-section,
    .payment-failed-section,
    .success-section {
        padding-top: 20px;
    }
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0 0.5rem;
}
.trust-item i {
    width: 18px;
    height: 18px;
    color: var(--green);
    filter: drop-shadow(0 1px 2px rgba(74, 222, 128, 0.3));
}
.simple-price .original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    margin-left: 0.5rem;
    opacity: 0.7;
}
/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.8;
}
.security-badge i {
    width: 14px;
    height: 14px;
    color: var(--green);
}
/* Value Propositions */
.value-props {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
    padding: 1rem;
    background: rgba(74, 222, 128, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(74, 222, 128, 0.1);
}
.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-color);
}
.value-item i {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}
/* Stripe Container */
.stripe-container {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}
/* Stripe Button */
.stripe-button {
    width: auto;
    min-width: 280px;
    max-width: 320px;
    background: linear-gradient(135deg, #635bff 0%, #4f46e5 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
    position: relative;
    animation: stripe-glow 3s ease-in-out infinite;
    margin: 0 auto 30px auto;
}
.stripe-button:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 91, 255, 0.4);
    animation: stripe-glow-hover 1.5s ease-in-out infinite;
}
@keyframes stripe-glow {
    0%,
    100% {
        box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(99, 91, 255, 0.5), 0 0 30px rgba(99, 91, 255, 0.2);
    }
}
@keyframes stripe-glow-hover {
    0%,
    100% {
        box-shadow: 0 6px 20px rgba(99, 91, 255, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(99, 91, 255, 0.6), 0 0 40px rgba(99, 91, 255, 0.3);
    }
}
.stripe-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.stripe-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.stripe-logo i {
    width: 20px;
    height: 20px;
    color: white;
}
/* Animate spin for loading state */
.animate-spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Mobile Styles */
@media (max-width: 768px) {
    .simple-payment-card {
        padding: 2rem 1.5rem;
    }
    .simple-payment-card h1 {
        font-size: 1.5rem;
    }
    .simple-payment-section {
        padding-bottom: 50px;
    }
    .payment-header {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    .payment-header h1 {
        font-size: 1.8rem;
    }
    .payment-subtitle {
        font-size: 1rem;
    }
    .current-price {
        font-size: 1.75rem;
    }
    .price-info {
        gap: 0.75rem;
    }
    .discount-badge {
        font-size: 0.8rem;
    }
    .discount-badge .zap-icon {
        width: 12px;
        height: 12px;
    }
    .stripe-button {
        min-width: 260px;
        max-width: 100%;
        padding: 20px 24px;
        font-size: 15px;
    }
    .current-price {
        font-size: 1.875rem;
    }
    .product-title {
        font-size: 1.25rem;
    }
    .price-main {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
    }
    .trust-item {
        padding: 0 0.75rem;
        font-size: 0.85rem;
    }
    .trust-item i {
        width: 16px;
        height: 16px;
    }
    .trust-indicators {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    .rating {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    .value-props {
        padding: 0.75rem;
    }
    .value-item {
        font-size: 0.8rem;
    }
}
/* ===== PAYMENT FAILED PAGE STYLES ===== */
/* Payment Failed Section */
.payment-failed-section {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom) 0;
    min-height: calc(100vh - 200px);
}
.payment-failed-content {
    max-width: 600px;
    margin: 0 auto;
}
/* Failed Header */
.failed-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}
.failed-header h1 {
    margin: 0 0 1rem 0;
    font-size: clamp(1.8rem, 4.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.text-red {
    color: #ef4444;
}
.failed-header .text-light {
    font-weight: 300;
}
.failed-subtitle {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    opacity: 0.8;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}
.failed-cta {
    text-align: center;
    margin: 0;
}
.failed-cta .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--green) 0%, #22c55e 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--button-shadow);
}
.failed-cta .btn-primary:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
}
/* Button element styling for retry buttons */
button.btn-primary {
    border: none;
    cursor: pointer;
    font-family: inherit;
}
button.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
/* Failed Card */
.failed-card {
    background: var(--card-bg-gradient);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
}
.failed-icon {
    margin-bottom: 2rem;
}
.failed-icon i {
    width: 64px;
    height: 64px;
    color: #ef4444;
}
.failed-card h2 {
    margin: 0 0 1.5rem 0;
    color: var(--text-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
}
.failed-card p {
    margin: 0 0 2rem 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}
.failed-card .specific-error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 0 0 2rem 0;
    color: #ef4444;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
}
/* Failure Reasons */
.failure-reasons {
    display: grid;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.reason-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--text-color);
}
.reason-item i {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
}
/* Next Steps */
.next-steps {
    margin-bottom: 3rem;
}
.next-steps h3 {
    text-align: center;
    margin: 0 0 2rem 0;
    color: var(--text-color);
    font-size: 1.6rem;
    font-weight: 600;
}
.steps-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.step-card {
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.step-icon i {
    width: 28px;
    height: 28px;
    color: var(--green);
}
.step-card h4 {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
}
.step-card p {
    margin: 0 0 1.5rem 0;
    color: var(--text-muted);
    line-height: 1.6;
}
/* Transaction Info */
.transaction-info {
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}
.transaction-info h3 {
    margin: 0 0 1.5rem 0;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
}
.transaction-id {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
}
.transaction-id .label {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
}
.transaction-id .value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    background: var(--white-5);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--white-10);
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.4;
}
.note {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
/* Mobile Responsive for Payment Failed */
@media (max-width: 768px) {
    .payment-failed-section {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .failed-header {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    .failed-header h1 {
        font-size: 1.8rem;
    }
    .failed-subtitle {
        font-size: 1rem;
    }
    .failed-card {
        padding: 2rem 1.5rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
/* Steps List Layout */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
.step-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--card-bg-gradient);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}
.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--green);
}
.step-item .step-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-item .step-icon i {
    width: 24px;
    height: 24px;
    color: var(--green);
}
.step-content {
    flex: 1;
    min-width: 0;
}
.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}
.step-content p {
    margin: 0 0 1rem 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: var(--font-md);
}
.step-content .btn-primary,
.step-content .btn-secondary {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.2s ease;
}
.step-content .btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, #22c55e 100%);
    color: white;
    box-shadow: var(--button-shadow);
}
.step-content .btn-primary:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}
.step-content .btn-secondary {
    background: var(--card-bg-gradient);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}
.step-content .btn-secondary:hover {
    background: var(--white-5);
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-1px);
}
/* Mobile Responsive for Steps List */
@media (max-width: 768px) {
    .steps-list {
        gap: 0.5rem;
    }
    .step-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    .step-item .step-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.5rem;
    }
    .step-item .step-icon i {
        width: 20px;
        height: 20px;
    }
    .step-content h4 {
        font-size: 1rem;
    }
    .step-content p {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-3xl);
    }
    .step-content .btn-primary,
    .step-content .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}
/* CTA Sections */
.features-cta {
    text-align: center;
    margin-top: 2rem;
}
.how-it-works-cta {
    text-align: center;
    margin-top: 2rem;
}
.settings-cta {
    text-align: center;
    margin-top: 2rem;
}
.comparison-cta {
    text-align: center;
    margin-top: 1.25rem;
}
.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}
.faq-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3.125rem;
}
/* CTA Button - Special conversion-focused styling */
.btn-cta {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    color: #ffffff;
    padding: var(--spacing-3xl) var(--spacing-5xl);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: cta-pulse 2s ease-in-out infinite;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f97316, transparent, #fb923c, transparent, #f97316);
    background-size: 300% 300%;
    border-radius: inherit;
    animation: border-glow 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.4;
}
.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(110%);
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.5);
    text-decoration: none;
    color: #ffffff;
}
.btn-cta .btn-original-price {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 0.9em;
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}
@keyframes cta-pulse {
    0%,
    100% {
        box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(251, 146, 60, 0.5), 0 0 20px rgba(251, 146, 60, 0.2);
    }
}