/* ===========================
   VARIABLES & RESETS
   =========================== */
:root {
    --primary-color: #FF006E;
    --secondary-color: #0a0515;
    --accent-green: #00FF41;
    --dark-bg: #000000;
    --card-bg: #0d0d1a;
    --text-primary: #ffffff;
    --text-secondary: #b8a9c7;
    --border-color: #FF006E;
    --transition: 0.3s ease;
    --glow-color: #FF006E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 65, 0.03) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 0, 110, 0.2);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #FF3385);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 110, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.6), inset 0 0 20px rgba(255, 0, 110, 0.2);
    background: linear-gradient(135deg, #FF3385, var(--primary-color));
}

.btn-primary:hover::before {
    left: 100%;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 800px at 50% 50%, rgba(255, 0, 110, 0.25) 0%, rgba(10, 5, 21, 0) 80%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.radar-animation {
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 255, 65, 0.2);
    border-radius: 50%;
    animation: radarSpin 8s linear infinite;
}

.radar-animation::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(153, 69, 255, 0.2);
    border-radius: 50%;
    animation: radarSpin 12s linear infinite reverse;
}

.radar-animation::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 50%;
    animation: radarSpin 6s linear infinite;
}

/* KEYFRAMES ANIMATIONS */
@keyframes radarSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 0, 110, 0.6)) drop-shadow(0 0 60px rgba(255, 0, 110, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 0, 110, 0.8)) drop-shadow(0 0 100px rgba(255, 0, 110, 0.5));
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 110, 0.5), 0 0 20px rgba(255, 0, 110, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 110, 0.8), 0 0 60px rgba(255, 0, 110, 0.5), inset 0 0 20px rgba(255, 0, 110, 0.1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 0, 110, 0.5), 0 0 20px rgba(255, 0, 110, 0.3), 0 0 30px rgba(255, 0, 110, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 0, 110, 0.8), 0 0 40px rgba(255, 0, 110, 0.6), 0 0 60px rgba(255, 0, 110, 0.4);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(255, 0, 110, 0.5);
        box-shadow: 0 0 5px rgba(255, 0, 110, 0.3);
    }
    50% {
        border-color: rgba(255, 0, 110, 0.9);
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.6), inset 0 0 10px rgba(255, 0, 110, 0.1);
    }
}

@keyframes blinkGlow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 40px rgba(255, 0, 110, 0.8), 0 0 60px rgba(255, 0, 110, 0.4);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: textGlow 2s ease-in-out infinite;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), #FF3385);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(255, 0, 110, 0.4), 0 0 30px rgba(255, 0, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 0, 110, 0.6), 0 0 50px rgba(255, 0, 110, 0.3), inset 0 0 20px rgba(255, 0, 110, 0.1);
    border-color: var(--accent-green);
    background: linear-gradient(135deg, #FF3385, var(--primary-color));
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:active {
    transform: translateY(-2px) scale(0.98);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-hero-secondary {
    background: linear-gradient(135deg, var(--accent-green), #00DD39);
    border-color: var(--accent-green);
    color: var(--secondary-color);
}

.btn-hero-secondary:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #00DD39, var(--accent-green));
    box-shadow: 0 25px 60px rgba(0, 255, 65, 0.6), 0 0 50px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.1);
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(255, 0, 110, 0.05) 0%, rgba(10, 5, 21, 0) 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.5), transparent);
    pointer-events: none;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(29, 15, 46, 0.5));
    border: 2px solid rgba(255, 0, 110, 0.3);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: scaleIn 0.6s ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(0, 255, 65, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.4), inset 0 0 30px rgba(255, 0, 110, 0.1);
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(29, 15, 46, 0.7));
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================
   USE CASES SECTION
   =========================== */
.use-cases {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 5, 21, 0), rgba(255, 0, 110, 0.05));
    position: relative;
    overflow: hidden;
}

.use-cases::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.5), transparent);
    pointer-events: none;
}

.use-cases h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.case-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(29, 15, 46, 0.7));
    border: 2px solid rgba(255, 0, 110, 0.3);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    animation: slideInRight 0.8s ease-out;
}

.case-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.3), inset 0 0 20px rgba(255, 0, 110, 0.05);
}

.case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.case-card p {
    color: var(--text-secondary);
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.5), transparent);
    pointer-events: none;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition);
    position: relative;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #c944ff);
    border-color: var(--primary-color);
    color: white;
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.badge {
    display: inline-block;
    background: var(--accent-green);
    color: var(--secondary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-grid.active {
    display: grid;
}

.pricing-grid:not(.active) {
    display: none;
}

.price-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(29, 15, 46, 0.5));
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.8s ease-out;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 110, 0.05), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.price-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(29, 15, 46, 0.8));
    transform: scale(1.08);
    box-shadow: 0 30px 60px rgba(255, 0, 110, 0.4), 0 0 40px rgba(255, 0, 110, 0.2);
}

.price-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(255, 0, 110, 0.3), inset 0 0 20px rgba(255, 0, 110, 0.05);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-12px);
    box-shadow: 0 40px 80px rgba(255, 0, 110, 0.5), 0 0 60px rgba(255, 0, 110, 0.3), inset 0 0 20px rgba(255, 0, 110, 0.1);
}

.badge-featured {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.savings {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(153, 69, 255, 0.1);
}

.features-list li:last-child {
    border-bottom: none;
}

.btn-subscribe {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.3), rgba(255, 0, 110, 0.1));
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 2rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-subscribe:hover {
    background: linear-gradient(135deg, var(--primary-color), #FF3385);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4), inset 0 0 15px rgba(255, 0, 110, 0.2);
    border-color: transparent;
}

.btn-subscribe:hover::before {
    left: 100%;
}

.btn-subscribe.featured {
    background: linear-gradient(135deg, var(--primary-color), #FF3385);
    color: white;
    border-color: transparent;
}

.btn-subscribe.featured:hover {
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.5), inset 0 0 20px rgba(255, 0, 110, 0.3);
}

/* ===========================
   SECURITY SECTION
   =========================== */
.security {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(255, 0, 110, 0.05) 0%, rgba(10, 5, 21, 0) 100%);
    position: relative;
    overflow: hidden;
}

.security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.5), transparent);
    pointer-events: none;
}

.security h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.security-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-item {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(29, 15, 46, 0.5));
    border: 2px solid rgba(255, 0, 110, 0.3);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    animation: scaleIn 0.7s ease-out;
}

.security-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 255, 65, 0.2), inset 0 0 20px rgba(0, 255, 65, 0.05);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.security-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.security-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================
   VIDEO SECTION
   =========================== */
.video-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.5), transparent);
    pointer-events: none;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(255, 0, 110, 0.5);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3), 0 0 40px rgba(255, 0, 110, 0.2);
    animation: borderGlow 3s ease-in-out infinite;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: var(--secondary-color);
}

/* ===========================
   DISCORD SECTION
   =========================== */
.discord-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 5, 21, 0), rgba(255, 0, 110, 0.08));
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.5), transparent);
    pointer-events: none;
}

.discord-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.discord-left {
    animation: slideInLeft 0.8s ease-out;
    max-width: 900px;
    width: 100%;
}

.discord-left h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite;
}

.discord-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.discord-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 0 auto 2.5rem auto;
    max-width: fit-content;
    justify-items: center;
}

.discord-feature {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(29, 15, 46, 0.5));
    border: 1px solid rgba(255, 0, 110, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: scaleIn 0.7s ease-out;
}

.discord-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.25), inset 0 0 15px rgba(255, 0, 110, 0.05);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.discord-feature h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.discord-feature p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #5865F2, #7B8FFF);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.4), 0 0 30px rgba(88, 101, 242, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-discord::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-discord:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(88, 101, 242, 0.6), 0 0 50px rgba(88, 101, 242, 0.3), inset 0 0 20px rgba(88, 101, 242, 0.15);
    background: linear-gradient(135deg, #7B8FFF, #5865F2);
}

.btn-discord:hover::before {
    left: 100%;
}

.discord-icon {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.btn-discord:hover .discord-icon {
    transform: translateX(5px);
}

/* ===========================
   RESPONSIVE DISCORD SECTION
   =========================== */
@media (max-width: 1024px) {
    .discord-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .discord-section {
        padding: 4rem 0;
    }
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 6rem 0;
    background: radial-gradient(circle 800px at 50% 50%, rgba(255, 0, 110, 0.15) 0%, rgba(10, 5, 21, 0) 80%);
    text-align: center;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-cta {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-color));
    color: var(--secondary-color);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 35px rgba(0, 255, 65, 0.3), 0 0 30px rgba(0, 255, 65, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 255, 65, 0.5), 0 0 50px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.15);
}

.btn-cta:hover::before {
    left: 100%;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(255, 0, 110, 0.05) 0%, rgba(10, 5, 21, 0) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.5), transparent);
    pointer-events: none;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    animation: textGlow 2s ease-in-out infinite;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(29, 15, 46, 0.5));
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.7s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.3), inset 0 0 20px rgba(255, 0, 110, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 0, 110, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-primary);
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: right;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.4s ease;
    padding: 0 1.5rem;
    background: rgba(255, 0, 110, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    margin: 0.8rem 0;
    line-height: 1.8;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary-color);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
    }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .features h2,
    .use-cases h2,
    .pricing h2,
    .security h2,
    .video-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .price-card.featured {
        transform: scale(1.02);
    }

    .price-card.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        margin-top: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .radar-animation {
        width: 300px;
        height: 300px;
    }

    .radar-animation::before {
        width: 200px;
        height: 200px;
    }

    .radar-animation::after {
        width: 100px;
        height: 100px;
    }

    .features h2,
    .use-cases h2,
    .pricing h2,
    .security h2,
    .video-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .features-grid,
    .cases-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .cases-grid,
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card,
    .case-card,
    .security-item {
        padding: 1.5rem;
    }

    .btn-hero {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 1rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===========================
   SMOOTH SCROLLING
   =========================== */
@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===========================
   ACCESSIBILITY
   =========================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
