/* ===================================
   DuraEdge - Main Stylesheet
   Modern, Clean, Privacy-Focused Design
   =================================== */

:root {
    /* Color Palette - Dark Purple Theme */
    --primary: #a78bfa;
    --primary-dark: #8b5cf6;
    --primary-light: #c4b5fd;
    --secondary: #8b5cf6;
    --tertiary: #6366f1;
    --danger: #f87171;
    --warning: #fbbf24;
    --accent: #a855f7;

    /* Neutrals - Dark Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-tertiary: #9ca3af;
    --border: #2a2a2a;

    /* Gradients - Purple Light to Dark */
    --gradient-primary: linear-gradient(135deg, #6d28d9 0%, #a78bfa 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #c4b5fd 100%);
    --gradient-tertiary: linear-gradient(135deg, #5b21b6 0%, #8b5cf6 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-title: linear-gradient(135deg, #5b21b6 0%, #a78bfa 100%);
    --gradient-orb-1: radial-gradient(circle at center, rgba(124, 58, 237, 0.06) 0%, rgba(124, 58, 237, 0) 70%);
    --gradient-orb-2: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0) 70%);
    --gradient-orb-3: radial-gradient(circle at center, rgba(167, 139, 250, 0.04) 0%, rgba(167, 139, 250, 0) 70%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(124, 58, 237, 0.15) 0, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(139, 92, 246, 0.12) 0, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(167, 139, 250, 0.08) 0, transparent 50%);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Effects - Light Purple Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.15), 0 0 15px rgba(139, 92, 246, 0.1);
    --shadow-glow-strong: 0 0 45px rgba(124, 58, 237, 0.2), 0 0 20px rgba(139, 92, 246, 0.15);
    --shadow-glow-secondary: 0 0 35px rgba(167, 139, 250, 0.2);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   Reset & Base Styles
   =================================== */

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

/* Disable all fade animations globally */
.fade-in,
.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right,
.delay-1,
.delay-2,
.delay-3,
.delay-4 {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Animated Gradient Background Mesh */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 40% 20%, rgba(124, 58, 237, 0.08) 0, transparent 50%),
        radial-gradient(at 80% 0%, rgba(139, 92, 246, 0.06) 0, transparent 50%),
        radial-gradient(at 0% 50%, rgba(167, 139, 250, 0.05) 0, transparent 50%),
        radial-gradient(at 80% 80%, rgba(109, 40, 217, 0.04) 0, transparent 50%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
    }
    25% {
        background-position: 100% 0%, 0% 100%, 100% 100%, 0% 0%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 100% 0%, 0% 100%;
    }
    75% {
        background-position: 0% 100%, 100% 0%, 0% 0%, 100% 100%;
    }
}

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

img {
    max-width: 100%;
    display: block;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.01em;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    font-family: var(--font-body);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

/* Apply body font to all text elements except headings */
span, a, button, li, label, input, textarea, .nav-link, .btn, .hero-description, .section-subtitle,
.feature-description, .why-description, .showcase-description, .testimonial-quote, .faq-answer,
.step-desc, .footer-description, .cta-subtitle, .price-detail {
    font-family: var(--font-body);
}

/* ===================================
   Layout
   =================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
}

/* ===================================
   Navigation
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.15);
    border-bottom: 1px solid rgba(167, 139, 250, 0.25);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    position: relative;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 100px;
    background: var(--bg-primary);
    margin-bottom: 0;
}

/* Ensure all sections after hero flow normally */
.hero ~ section {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
}

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
    z-index: -2;
    pointer-events: none;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    will-change: transform;
}

.orb-1 {
    width: 700px;
    height: 700px;
    top: -250px;
    left: -250px;
    background: var(--gradient-orb-1);
    animation: float 25s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    top: 50%;
    right: -200px;
    background: var(--gradient-orb-2);
    animation: float-slow 30s ease-in-out infinite;
    animation-delay: -5s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: 30%;
    background: var(--gradient-orb-3);
    animation: float-reverse 28s ease-in-out infinite;
    animation-delay: -10s;
}

.orb-4 {
    width: 450px;
    height: 450px;
    top: 20%;
    left: 50%;
    background: var(--gradient-orb-1);
    animation: float 35s ease-in-out infinite;
    animation-delay: -15s;
}

.orb-5 {
    width: 550px;
    height: 550px;
    bottom: 20%;
    right: 20%;
    background: var(--gradient-orb-2);
    animation: float-slow 32s ease-in-out infinite;
    animation-delay: -20s;
}

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

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    text-align: left;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2rem; /* Add spacing above title on desktop */
}

.hero-split .hero-badge {
    margin-bottom: 2rem;
}

.hero-split .hero-title {
    text-align: left;
}

.hero-split .hero-subtitle {
    text-align: left;
}

.hero-split .hero-description {
    text-align: left;
}

.hero-split .hero-cta {
    justify-content: flex-start;
}

.hero-split .hero-stats {
    justify-content: flex-start;
}

@media (max-width: 968px) {
    .hero {
        min-height: 100vh; /* Force full viewport height on mobile */
        padding-top: 80px; /* Navbar height */
        padding-bottom: 3rem; /* Spacing before next section */
        display: flex;
        align-items: flex-start; /* Align to top */
        position: relative; /* Ensure normal flow */
        z-index: 1; /* Below sections */
    }

    /* Prevent sections from overlapping hero on mobile */
    .hero ~ section {
        position: relative;
        z-index: 1;
        background: var(--bg-primary);
        margin-top: 0 !important;
    }

    /* Remove extra padding from value-prop on mobile */
    .value-prop {
        padding: 3rem 0 2rem 0 !important;
        margin-top: 0 !important;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        position: relative;
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
    }

    .hero-left {
        position: absolute;
        top: -40px; /* Move animation UP to center between navbar and title */
        left: 0;
        right: 0;
        order: 1;
        width: 100%;
        height: 350px;
        z-index: 1;
        pointer-events: none;
        margin-bottom: 0;
    }

    .hero-right {
        order: 2;
        align-items: center;
        position: relative;
        z-index: 2;
        padding-top: 260px; /* Further increased spacing to minimize overlap with sphere */
        margin-top: 0;
        padding-bottom: 2rem; /* Add bottom padding for spacing before next section */
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1; /* Allow vertical expansion */
        width: 100%;
    }

    .hero-split .hero-title {
        text-align: center;
        font-size: clamp(2.2rem, 10vw, 4rem);
        line-height: 1.1;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    }

    .hero-split .hero-subtitle,
    .hero-split .hero-description {
        text-align: center;
        text-shadow: 0 1px 15px rgba(0, 0, 0, 0.7);
    }

    .hero-split .hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        margin-bottom: 1.5rem;
        line-height: 1.4;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-split .hero-description {
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        font-size: clamp(1rem, 3vw, 1.15rem);
    }

    .hero-split .hero-cta,
    .hero-split .hero-stats {
        justify-content: center;
        margin-bottom: 2rem; /* Add bottom margin for spacing */
    }

    .hero-split .hero-sphere-container {
        height: 350px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-sphere-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    animation: none !important;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    transform: none !important;
    height: 500px;
    width: 100%;
    pointer-events: none;
}

.hero-split .hero-sphere-container {
    height: 600px;
    width: 100%;
    margin: 0;
    max-height: 80vh;
}

#particleSphere {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.4));
    will-change: contents;
    transform: translateZ(0);
    backface-visibility: hidden;
    pointer-events: none;
}

.hero-logo-container {
    display: none;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes logoPulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 45px rgba(167, 139, 250, 0.9));
    }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-description {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.stat {
    text-align: center;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--text-tertiary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--text-tertiary);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

/* ===================================
   Trust Section
   =================================== */

.trust-section {
    background: var(--bg-secondary);
    padding: 2rem 0;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.trust-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.badge-item svg {
    stroke: var(--primary);
}

/* ===================================
   Section Headers
   =================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Why DuraEdge Section
   =================================== */

.why-duraedge {
    background: var(--bg-primary);
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top center, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-8px);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(167, 139, 250, 0.2) 100%);
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.why-icon svg {
    stroke: var(--primary-light);
    stroke-width: 2;
}

.why-title {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.why-description {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ===================================
   Value Proposition - COMPLETELY NEW DESIGN
   =================================== */

.value-prop {
    background: var(--bg-primary);
    padding: calc(var(--section-padding) + 40px) 0 var(--section-padding) 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
    clear: both;
}

/* Main Comparison Container */
.privacy-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Comparison Sides */
.comparison-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.comparison-side:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

/* Traditional Side - Danger Accent */
.traditional-side {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(to bottom, rgba(239, 68, 68, 0.03) 0%, var(--bg-secondary) 100%);
}

.traditional-side:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2);
}

/* DuraEdge Side - Success Accent */
.duraedge-side {
    border-color: rgba(167, 139, 250, 0.4);
    background: linear-gradient(to bottom, rgba(167, 139, 250, 0.05) 0%, var(--bg-secondary) 100%);
}

.duraedge-side:hover {
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 12px 40px rgba(167, 139, 250, 0.3);
}

/* Side Headers */
.side-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.header-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 3px solid var(--border);
}

.danger-icon {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.4);
}

.danger-icon svg {
    color: #ef4444;
}

.success-icon {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.5);
}

.success-icon svg {
    color: #a78bfa;
}

.side-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Diagram Steps */
.diagram-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Step Boxes */
.step-box {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 380px;
    transition: all 0.3s ease;
}

.step-box svg {
    flex-shrink: 0;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    line-height: 1.4;
}

/* Neutral Step */
.neutral-step {
    background: rgba(148, 163, 184, 0.08);
    border-color: rgba(148, 163, 184, 0.3);
}

.neutral-step svg {
    color: #94a3b8;
}

/* Danger Step */
.danger-step {
    background: rgba(239, 68, 68, 0.12);
    border: 3px solid #dc2626;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3), inset 0 0 20px rgba(239, 68, 68, 0.1);
}

.danger-step svg {
    color: #ef4444;
}

.danger-step .step-title {
    color: #dc2626;
    font-weight: 800;
}

.danger-step .step-desc {
    color: #ef4444;
    font-weight: 600;
}

/* Success Step */
.success-step {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.5);
    border-width: 3px;
}

.success-step svg {
    color: #a78bfa;
}

.all-in-one {
    box-shadow: 0 0 25px rgba(167, 139, 250, 0.25);
}

/* Attack Surface Label */
.attack-surface-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.6);
    border: 2px solid #991b1b;
    z-index: 10;
}

/* Flow Arrows */
.flow-arrow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

/* Danger Arrow (going down) */
.danger-arrow {
    margin: 1rem 0;
}

.arrow-tip {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #ef4444;
    margin-top: -2px;
}

@keyframes arrow-dash-flow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -24;
    }
}

.arrow-line-animated {
    animation: arrow-dash-flow 1s linear infinite;
}

/* Success Arrow (circular) */
.success-arrow {
    margin: 1.5rem 0;
}

.local-arrow {
    position: relative;
}

@keyframes circle-rotate {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -157; /* Circumference of circle (2πr = 2π*25 ≈ 157) */
    }
}

.arrow-circle-animated {
    animation: circle-rotate 3s linear infinite;
    transform-origin: center;
}

/* Flow Labels */
.flow-label {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    border-radius: 6px;
    white-space: nowrap;
    position: absolute;
}

.danger-flow {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.success-flow {
    background: rgba(167, 139, 250, 0.2);
    color: #a78bfa;
    border: 2px solid rgba(167, 139, 250, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Minimal Attack Badge */
.minimal-attack-badge {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(196, 181, 253, 0.2) 100%);
    border: 3px solid rgba(167, 139, 250, 0.6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 800;
    color: #c4b5fd;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}

.minimal-attack-badge svg {
    flex-shrink: 0;
    color: #c4b5fd;
}

/* VS Badge */
.vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.vs-badge span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-tertiary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* ===================================
   Features Grid
   =================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    stroke: white;
}

.feature-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Core Features Showcase
   =================================== */

.core-features {
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-badge {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.showcase-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.showcase-description {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.showcase-list li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    flex-shrink: 0;
}

.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-placeholder {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 2px dashed var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.screenshot-placeholder:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
}

.placeholder-text {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
}

.showcase-screenshot {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.visual-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
}

.visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.visual-dots {
    display: flex;
    gap: 0.5rem;
}

.visual-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.visual-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.visual-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transcription-line {
    height: 12px;
    background: linear-gradient(90deg, var(--bg-tertiary) 0%, var(--border) 100%);
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
}

.transcription-line.short {
    width: 60%;
}

.transcription-line.medium {
    width: 80%;
}

.status-badge {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* AI Card Styles */
.ai-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.ai-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse-grow 3s ease-in-out infinite;
}

.ai-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    z-index: 1;
}

.ai-text {
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.ai-status {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    z-index: 1;
}

/* Anonymizer Card Styles */
.anonymizer-card {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    min-height: 200px;
}

.doc-before,
.doc-after {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doc-line {
    height: 8px;
    border-radius: 4px;
}

.doc-line.redacted {
    background: var(--danger);
    opacity: 0.3;
}

.doc-line.safe {
    background: var(--secondary);
    opacity: 0.5;
}

.arrow-transform {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

/* ===================================
   Testimonials
   =================================== */

.testimonials {
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    z-index: 1;
}

.cta-background .gradient-orb {
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-pricing {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.cta-visual {
    display: none;
}

.help-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

.pricing-header {
    background: var(--gradient-title);
    padding: 2.5rem 3rem;
    text-align: center;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    color: white;
}

.amount {
    font-size: clamp(3rem, 6vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1;
}

.period {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.price-features {
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.feature-item {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    margin: 0 auto 2rem auto;
    display: block;
    width: fit-content;
}

.cta-section .btn-primary:hover {
    background: var(--bg-secondary);
}

.cta-info {
    font-size: 0.95rem;
    opacity: 0.9;
    text-align: center;
}

.cta-info em {
    font-style: italic;
    font-size: 0.9rem;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--bg-tertiary);
}

.faq-question h3 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition-base);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary) 50%, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-text {
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-description {
    margin-top: 1rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition-base);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-made-in {
    font-size: 0.85rem;
    font-weight: 400;
    color: #9ca3af;
    opacity: 1 !important;
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .privacy-comparison {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vs-badge {
        padding-top: 0;
        padding-bottom: 0;
    }

    .vs-badge span {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .showcase-item {
        grid-template-columns: 1fr;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

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

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link,
    .nav-links .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pricing-info {
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .privacy-comparison {
        gap: 2.5rem;
    }

    .step-box {
        padding: 1.25rem;
        max-width: 100%;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-desc {
        font-size: 0.8rem;
    }

    .header-icon {
        width: 60px;
        height: 60px;
    }

    .side-header h3 {
        font-size: 1.3rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .privacy-comparison {
        gap: 2rem;
    }

    .step-box {
        padding: 1rem;
        gap: 0.75rem;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-desc {
        font-size: 0.75rem;
    }

    .header-icon {
        width: 55px;
        height: 55px;
    }

    .header-icon svg {
        width: 28px;
        height: 28px;
    }

    .side-header h3 {
        font-size: 1.2rem;
    }

    .flow-label {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .attack-surface-label {
        font-size: 0.65rem;
        padding: 0.35rem 0.9rem;
    }

    .minimal-attack-badge {
        font-size: 0.9rem;
        padding: 0.85rem 1.2rem;
    }

    .vs-badge span {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .why-card {
        padding: 1.5rem 1rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon svg {
        width: 36px;
        height: 36px;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .hero-logo-container {
        margin: 1.5rem 0;
    }
}

/* ===================================
   Dark Theme Specific Overrides
   =================================== */

.cta-pricing {
    background: var(--bg-tertiary);
}

/* Badge Contrast Fixes */
.hero-badge {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.3);
    color: var(--text-primary);
}

.showcase-badge {
    color: var(--text-tertiary);
}

/* Section backgrounds for better contrast */
.value-prop,
.features-section,
.core-features,
.testimonials {
    background: var(--bg-primary);
}

.trust-section {
    background: var(--bg-secondary);
}


/* CTA Section Dark Theme */
.cta-section {
    background: linear-gradient(135deg, #1a0f2e 0%, #0f0617 100%);
}

.cta-subtitle {
    color: var(--text-secondary);
}

.pricing-header {
    background: var(--gradient-title);
}

.cta-section .btn-primary {
    background: var(--primary);
    color: var(--bg-primary);
}

.cta-section .btn-primary:hover {
    background: var(--primary-light);
}

/* Footer improvements */
.footer {
    background: var(--bg-secondary);
    border-top-color: var(--border);
}

/* ===================================
   FEATURES SECTION BLACK VERSION - FORCED OVERRIDE
   =================================== */

/* Sezione principale */
section#features,
section.features-section,
.features-section {
    background-color: #0a0a0a !important;
    background: #0a0a0a !important;
    padding: 120px 0 !important;
    margin: 0 !important;
}

/* Header sezione */
.features-section .container,
#features .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.features-section .section-header,
#features .section-header {
    text-align: center !important;
    margin-bottom: 80px !important;
}

.features-section .section-header .section-title,
.features-section .section-title,
#features .section-title,
.features-section h2 {
    color: #ffffff !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 900 !important;
    margin-bottom: 0 !important;
    background: none !important;
    background-image: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2) !important;
}

/* Grid delle feature */
.features-section .features-grid,
#features .features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Card singole */
.features-section .features-grid .feature-card,
.features-section .feature-card,
#features .feature-card {
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 40px !important;
    border-radius: 20px !important;
    border: 3px solid #7c3aed !important;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: visible !important;
}

.features-section .feature-card::before,
#features .feature-card::before {
    content: none !important;
    display: none !important;
}

.features-section .feature-card:hover,
#features .feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 30px 70px rgba(124, 58, 237, 0.5) !important;
    border-color: #a78bfa !important;
}

/* Icone */
.features-section .feature-card .feature-icon,
.features-section .feature-icon,
#features .feature-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%) !important;
    background-color: #7c3aed !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 24px !important;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4) !important;
}

.features-section .feature-icon svg,
#features .feature-icon svg {
    width: 45px !important;
    height: 45px !important;
    color: #ffffff !important;
    stroke: #ffffff !important;
    fill: none !important;
    stroke-width: 2.5 !important;
}

/* Titoli card */
.features-section .feature-card .feature-title,
.features-section .feature-card h3,
.features-section .feature-title,
#features .feature-title,
#features .feature-card h3 {
    color: #000000 !important;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
    font-weight: 900 !important;
    margin: 0 0 16px 0 !important;
    line-height: 1.3 !important;
    background: none !important;
    background-image: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #000000 !important;
    text-fill-color: #000000 !important;
}

/* Descrizioni card */
.features-section .feature-card .feature-description,
.features-section .feature-card p,
.features-section .feature-description,
#features .feature-description,
#features .feature-card p {
    color: #1f2937 !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section .features-grid,
    #features .features-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Section Headers in Dark Theme */
.section-header {
    color: var(--text-primary);
}

.section-title {
    color: var(--text-primary) !important;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary) !important;
}

/* Hero Stats Cards */
.stat-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
}

.stat-number {
    color: var(--primary-light);
}

.stat-label {
    color: var(--text-primary);
}

.stat-description {
    color: var(--text-secondary);
}

/* Showcase Cards - HIGH CONTRAST */
.showcase-item {
    background: transparent !important;
}

.showcase-content {
    color: var(--text-primary) !important;
}

.showcase-badge {
    color: #6b7280 !important;
    opacity: 0.6 !important;
}

.showcase-title {
    color: #f9fafb !important;
    font-weight: 700 !important;
}

.showcase-description {
    color: #d1d5db !important;
}

.showcase-list li {
    color: #d1d5db !important;
}

/* Testimonial Cards */
.testimonial-card {
    background: #1f1f1f !important;
    border: 2px solid #3a3a3a !important;
}

.testimonial-quote {
    color: #f9fafb !important;
}

.author-name {
    color: #f9fafb !important;
}

.author-title {
    color: #9ca3af !important;
}

.author-avatar {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%) !important;
    color: #ffffff !important;
}

/* Hero Stats */
.hero-stats {
    background: transparent !important;
}

.stat-card {
    background: #1f1f1f !important;
    border: 2px solid #3a3a3a !important;
}

.stat-label {
    color: #f9fafb !important;
}

.stat-description {
    color: #d1d5db !important;
}

/* Comparison Cards - ULTRA VISIBLE */
.comparison-column {
    background: #1a1a1a !important;
    border: 2px solid #3a3a3a !important;
}

.comparison-header h3 {
    color: #f9fafb !important;
}

.item-label {
    color: #f9fafb !important;
}

.item-note {
    color: #9ca3af !important;
}

/* Screenshot Placeholders */
.screenshot-placeholder {
    background: #1f1f1f !important;
    border: 2px dashed #4a4a4a !important;
}

.placeholder-text {
    color: #9ca3af !important;
}

/* Trust Section */
.trust-section {
    background: #0f0f0f !important;
}

.trust-label {
    color: #d1d5db !important;
}

/* FAQ Section */
.faq-item {
    background: #1f1f1f !important;
    border: 1px solid #3a3a3a !important;
}

.faq-question {
    color: #f9fafb !important;
}

.faq-answer {
    color: #d1d5db !important;
}
