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

:root {
    --primary-green: #00ff88;
    --secondary-green: #00cc6f;
    --dark-bg: #0a1628;
    --darker-bg: #050d1a;
    --card-bg: rgba(26, 41, 66, 0.6);
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --accent-blue: #4a90e2;
    --accent-purple: #9b59b6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #0d1b2a 50%, var(--dark-bg) 100%);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.7));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05) rotate(2deg);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

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

.btn-login {
    padding: 0.85rem 2.5rem;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transition: width 0.4s ease, height 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-login:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login:hover {
    color: var(--dark-bg);
    border-color: var(--primary-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

/* Hero Section Redesign */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: var(--darker-bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 50px;
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2.5rem;
    letter-spacing: -0.06em;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.brand {
    background: linear-gradient(135deg, #00ff88 0%, #00ffaa 30%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
    position: relative;
    display: inline-block;
}

.brand::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 5rem !important;
    /* Force spacing */
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* Ensure text is centered if we want full centering */
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center !important;
    /* Force centering */
    width: 100%;
    margin-top: 2rem;
    /* Additional explicit spacing */
}

.btn-secondary {
    padding: 1.4rem 3rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Visual Components */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scanning-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    animation: circlePulse 4s infinite ease-out;
}

.circle-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80%;
    height: 80%;
    animation-delay: 1s;
}

.circle-3 {
    width: 60%;
    height: 60%;
    animation-delay: 2s;
}

@keyframes circlePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.shield-container {
    position: relative;
    width: 340px;
    height: 340px;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.shield-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.5));
    animation: shieldGlow 4s ease-in-out infinite;
    position: relative;
}

/* New Scanline Effect */
.shield-container::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    z-index: 10;
    animation: scanline 3s linear infinite;
    opacity: 0.5;
    box-shadow: 0 0 15px var(--primary-green);
}

@keyframes scanline {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes shieldGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.5)) brightness(1);
        transform: scale(1) rotate(0deg);
    }

    50% {
        filter: drop-shadow(0 0 80px rgba(0, 255, 136, 0.8)) brightness(1.3);
        transform: scale(1.05) rotate(2deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

.radial-glow {
    position: absolute;
    top: 50%;
    right: 0%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    transform: translate(20%, -50%);
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }

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

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow:
        0 0 15px rgba(0, 255, 136, 1),
        30px 40px 0 rgba(0, 255, 136, 0.7),
        -40px 50px 0 rgba(0, 255, 136, 0.6),
        60px -30px 0 rgba(0, 255, 136, 0.8),
        -50px -40px 0 rgba(0, 255, 136, 0.7),
        80px 20px 0 rgba(74, 144, 226, 0.6),
        -70px 10px 0 rgba(74, 144, 226, 0.5);
    animation: particleFloat 5s ease-in-out infinite;
}

.particles::after {
    animation-delay: 2.5s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.2);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.8);
    }

    75% {
        transform: translate(25px, 15px) scale(1.1);
    }
}

/* Features Section */
.features {
    padding: 10rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.features-detailed {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.feature-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-detail-block.reverse {
    direction: ltr;
    /* Ensure layout order is handled by grid or flex if needed, but here we just swap content in HTML */
}

.feature-img-wrapper {
    position: relative;
}

.feature-img-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.feature-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-img:hover {
    transform: scale(1.05) rotate(1deg);
    border-color: var(--primary-green);
    box-shadow: 0 30px 80px rgba(0, 255, 136, 0.3);
}

.feature-text h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-green);
    letter-spacing: -0.02em;
}

.feature-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.feature-description strong {
    color: var(--text-white);
    background: rgba(0, 255, 136, 0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-white);
}

.benefit-list .check-icon {
    color: var(--primary-green);
    font-weight: 900;
}

@media (max-width: 968px) {
    .feature-detail-block {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .feature-detail-block.reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .feature-text h3 {
        font-size: 2.2rem;
    }

    .benefit-list {
        text-align: left;
    }
}

.features-summary {
    margin-top: 8rem;
    padding-top: 8rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.summary-card {
    background: linear-gradient(135deg, rgba(26, 41, 66, 0.4) 0%, rgba(0, 255, 136, 0.05) 100%);
    padding: 5rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    backdrop-filter: blur(20px);
}

.summary-card h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-card>p {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.summary-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.summary-benefit-item h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.summary-benefit-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 136, 0.15);
    color: var(--text-gray);
    background: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .shield-container {
        width: 320px;
        height: 320px;
    }

    .ad-text {
        font-size: 3rem;
    }

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

    .feature-card {
        padding: 2.5rem;
    }

    .feature-card h2 {
        font-size: 2.2rem;
    }
}


/* About Us Section */
.about {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

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

.team-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: transform 0.5s ease;
}

.team-img:hover {
    transform: scale(1.02);
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.protection-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.protection-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.protection-item .icon {
    flex-shrink: 0;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--primary-green);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.protection-item:hover .icon {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.protection-item .icon svg {
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

.protection-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.protection-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .protection-item {
        text-align: left;
    }
}

/* Entry Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
/* Force append of btn-primary */
.btn-primary {
    padding: 1.4rem 3.5rem;
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

/* ========================================
   PRICING SECTION - Premium Design
   ======================================== */

.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1419 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(15, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

/* Featured Card */
.pricing-card.featured {
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(15, 20, 25, 0.8);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.pricing-card.featured::before {
    opacity: 1;
}

.badge-best-value {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-green), #00cc6a);
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.price .period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.tier-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.pricing-features li {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    padding-left: 0.5rem;
    color: #fff;
}

.pricing-features .icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pricing-features li.locked {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pricing-features li.locked .icon {
    opacity: 0.4;
}

.btn-tier {
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
}

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

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.btn-filled {
    background: linear-gradient(135deg, var(--primary-green), #00cc6a);
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-filled:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* ========================================
   TECHNICAL SPECS SECTION
   ======================================== */

.specs {
    padding: 6rem 0;
    background: #0a0e1a;
}

.specs-wrapper {
    background: rgba(15, 20, 25, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.specs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.specs-header h3 {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.terminal-dots span:nth-child(1) {
    background: #ff5f56;
}

.terminal-dots span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dots span:nth-child(3) {
    background: #27c93f;
}

.specs-grid {
    display: grid;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--primary-green);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s;
}

.spec-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-left-width: 5px;
    transform: translateX(5px);
}

.spec-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    min-width: 200px;
    font-weight: 600;
}

.spec-value {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .spec-label {
        min-width: auto;
    }
}
