/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #CCD6F6;
    background-color: #0A192F;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #CCD6F6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    font-family: inherit;
}

.btn-primary {
    background-color: #64FFDA;
    color: #0A192F;
}

.btn-primary:hover {
    background-color: #4DD0BA;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2);
}

.btn-outline {
    border: 2px solid #64FFDA;
    color: #64FFDA;
}

.btn-outline:hover {
    background-color: #64FFDA;
    color: #0A192F;
    transform: translateY(-2px);
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #64FFDA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: #4ECDC4;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.nav-logo img.nav-logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    stroke-width: initial;
}

.nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-100vh);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.nav-menu.active {
    transform: translateY(0);
}

.nav-list {
    list-style: none;
    padding: 2rem 0;
    text-align: center;
}

.nav-list li {
    margin: 1rem 0;
}

.nav-link {
    color: #CCD6F6;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #64FFDA;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #64FFDA 0%, #4ECDC4 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #64FFDA;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-menu {
        position: static;
        transform: none;
        background: none;
        backdrop-filter: none;
        border: none;
        width: auto;
    }
    
    .nav-list {
        display: flex;
        align-items: center;
        padding: 0;
        gap: 2rem;
    }
    
    .nav-list li {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .hamburger {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    position: relative;
    overflow: hidden;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: #CCD6F6;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 400px;
}

.grid-node {
    width: 80px;
    height: 80px;
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid rgba(100, 255, 218, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64FFDA;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.grid-node:hover {
    background: rgba(100, 255, 218, 0.2);
    border-color: #64FFDA;
    transform: scale(1.05);
}

.grid-node.active {
    background: rgba(100, 255, 218, 0.2);
    border-color: #64FFDA;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.grid-node.protected {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.5);
    color: #FF6B6B;
    animation: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .network-grid {
        max-width: 300px;
        gap: 1.5rem;
    }
    
    .grid-node {
        width: 60px;
        height: 60px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: #112240;
}

.how-it-works .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #8892B0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: #0A192F;
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(100, 255, 218, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #64FFDA 0%, #4ECDC4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    position: relative;
    animation: iconShine 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.step-icon i {
    color: #0A192F;
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.5), 0 0 30px rgba(100, 255, 218, 0.4);
    animation-duration: 1s;
}

/* Keyframe animation for shining effect */
@keyframes iconShine {
    0% {
        box-shadow: 0 0 20px rgba(100, 255, 218, 0.3), 0 0 40px rgba(100, 255, 218, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(100, 255, 218, 0.5), 0 0 60px rgba(100, 255, 218, 0.2);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 25px rgba(100, 255, 218, 0.4), 0 0 50px rgba(100, 255, 218, 0.15);
        transform: scale(1.01);
    }
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.step p {
    color: #CCD6F6;
    line-height: 1.6;
    font-size: 1rem;
}

.step-icon i {
    color: #0A192F;
    width: 32px;
    height: 32px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.step-description {
    color: #CCD6F6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-details {
    margin-top: 1.5rem;
}

.step-features {
    list-style: none;
    margin-bottom: 1rem;
}

.step-features li {
    color: #CCD6F6;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.dns-example {
    background-color: #112240;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #64FFDA;
    margin-top: 1rem;
}

.dns-example strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.5rem;
}

.dns-example code {
    background-color: #0A192F;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #64FFDA;
    font-family: 'Courier New', monospace;
    margin: 0 0.25rem;
}

.protection-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 1rem;
    background-color: #112240;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #64FFDA;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #CCD6F6;
    margin-top: 0.5rem;
}

.how-it-works-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.compatibility-section {
    margin-bottom: 3rem;
}

.compatibility-section h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
}

.compatibility-section p {
    text-align: center;
    color: #CCD6F6;
    margin-bottom: 2rem;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.compatibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: #0A192F;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.compatibility-item:hover {
    transform: translateY(-3px);
    border-color: rgba(100, 255, 218, 0.3);
}

.compatibility-item i {
    color: #64FFDA;
    width: 32px;
    height: 32px;
    margin-bottom: 0.75rem;
}

.compatibility-item span {
    color: #CCD6F6;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.time-estimate {
    display: flex;
    justify-content: center;
}

.time-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(100, 255, 218, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    max-width: 500px;
}

.time-box i {
    color: #64FFDA;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.time-content strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.time-content span {
    color: #64FFDA;
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.time-content small {
    color: #CCD6F6;
    font-size: 0.875rem;
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background-color: #0A192F;
}

/* Force plan colors with highest specificity */
.plan.plan-enterprise,
div.plan.plan-enterprise {
    border: 2px solid #FF6B6B !important;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 107, 107, 0.02) 100%) !important;
    transform: scale(1.02) !important;
}

.plan.plan-elite,
div.plan.plan-elite {
    border: 2px solid #9B59B6 !important;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.08) 0%, rgba(155, 89, 182, 0.03) 100%) !important;
    transform: scale(1.03) !important;
}

.plan.plan-platinum,
div.plan.plan-platinum {
    border: 2px solid #F39C12 !important;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.08) 0%, rgba(243, 156, 18, 0.03) 100%) !important;
    transform: scale(1.04) !important;
}

.plan.plan-featured,
div.plan.plan-featured {
    border: 2px solid #64FFDA !important;
    transform: scale(1.05) !important;
}

/* Force text colors with highest specificity */
.plan.plan-enterprise .plan-name,
div.plan.plan-enterprise .plan-name,
.plan.plan-enterprise h3.plan-name {
    color: #FF6B6B !important;
}

.plan.plan-enterprise .amount,
div.plan.plan-enterprise .amount,
.plan.plan-enterprise span.amount {
    color: #FF6B6B !important;
}

.plan.plan-elite .plan-name,
div.plan.plan-elite .plan-name,
.plan.plan-elite h3.plan-name {
    color: #9B59B6 !important;
}

.plan.plan-elite .amount,
div.plan.plan-elite .amount,
.plan.plan-elite span.amount {
    color: #9B59B6 !important;
}

.plan.plan-platinum .plan-name,
div.plan.plan-platinum .plan-name,
.plan.plan-platinum h3.plan-name {
    color: #F39C12 !important;
}

.plan.plan-platinum .amount,
div.plan.plan-platinum .amount,
.plan.plan-platinum span.amount {
    color: #F39C12 !important;
}

/* Force button colors with highest specificity */
.plan.plan-enterprise .btn-primary,
div.plan.plan-enterprise .btn-primary,
.plan.plan-enterprise button.btn-primary {
    background-color: #FF6B6B !important;
    border-color: #FF6B6B !important;
}

.plan.plan-elite .btn-primary,
div.plan.plan-elite .btn-primary,
.plan.plan-elite button.btn-primary {
    background-color: #9B59B6 !important;
    border-color: #9B59B6 !important;
}

.plan.plan-platinum .btn-primary,
div.plan.plan-platinum .btn-primary,
.plan.plan-platinum button.btn-primary {
    background-color: #F39C12 !important;
    border-color: #F39C12 !important;
}

/* Force badge colors with highest specificity */
.plan.plan-enterprise .plan-badge,
div.plan.plan-enterprise .plan-badge,
.plan.plan-enterprise div.plan-badge {
    background-color: #FF6B6B !important;
    color: #FFFFFF !important;
}

.plan.plan-elite .plan-badge,
div.plan.plan-elite .plan-badge,
.plan.plan-elite div.plan-badge {
    background-color: #9B59B6 !important;
    color: #FFFFFF !important;
}

.plan.plan-platinum .plan-badge,
div.plan.plan-platinum .plan-badge,
.plan.plan-platinum div.plan-badge {
    background-color: #F39C12 !important;
    color: #FFFFFF !important;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.plan {
    background-color: #112240;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

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

.currency {
    font-size: 1.2rem;
    color: #CCD6F6;
    font-weight: 500;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #64FFDA;
}

.period {
    font-size: 1rem;
    color: #8892B0;
    font-weight: 500;
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #64FFDA;
    color: #0A192F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    margin: 1rem 0;
    color: #CCD6F6;
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 0.5rem;
}

.plan .btn {
    width: 100%;
    margin-top: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile responsive for plans */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .plan {
        padding: 2rem 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

.plan-enterprise {
    border: 2px solid #FF6B6B !important;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 107, 107, 0.02) 100%) !important;
    transform: scale(1.02) !important;
    position: relative;
}

.plan-enterprise .plan-name {
    color: #FF6B6B !important;
}

.plan-enterprise .amount {
    color: #FF6B6B !important;
}

.plan-enterprise .btn-primary {
    background-color: #FF6B6B !important;
    border-color: #FF6B6B !important;
}

.plan-enterprise .btn-primary:hover {
    background-color: #FF5252 !important;
    border-color: #FF5252 !important;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #64FFDA;
    color: #0A192F;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-enterprise .plan-badge {
    background-color: #FF6B6B !important;
    color: #FFFFFF !important;
}

.plan-elite {
    border: 2px solid #9B59B6 !important;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.08) 0%, rgba(155, 89, 182, 0.03) 100%) !important;
    transform: scale(1.03) !important;
    position: relative;
}

.plan-elite .plan-name {
    color: #9B59B6 !important;
}

.plan-elite .amount {
    color: #9B59B6 !important;
}

.plan-elite .btn-primary {
    background-color: #9B59B6 !important;
    border-color: #9B59B6 !important;
}

.plan-elite .btn-primary:hover {
    background-color: #8E44AD !important;
    border-color: #8E44AD !important;
}

.plan-elite .plan-badge {
    background-color: #9B59B6 !important;
    color: #FFFFFF !important;
}

.plan-platinum {
    border: 2px solid #F39C12 !important;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.08) 0%, rgba(243, 156, 18, 0.03) 100%) !important;
    transform: scale(1.04) !important;
    position: relative;
}

.plan-platinum .plan-name {
    color: #F39C12 !important;
}

.plan-platinum .amount {
    color: #F39C12 !important;
}

.plan-platinum .btn-primary {
    background-color: #F39C12 !important;
    border-color: #F39C12 !important;
}

.plan-platinum .btn-primary:hover {
    background-color: #E67E22 !important;
    border-color: #E67E22 !important;
}

.plan-platinum .plan-badge {
    background-color: #F39C12 !important;
    color: #FFFFFF !important;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

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

.currency {
    font-size: 1.25rem;
    color: #CCD6F6;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #64FFDA;
}

.period {
    font-size: 1rem;
    color: #CCD6F6;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    color: #CCD6F6;
}

.feature-item:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(100, 255, 218, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.pricing-note p {
    color: #CCD6F6;
    font-size: 1rem;
    margin: 0;
}

.pricing-note strong {
    color: #64FFDA;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #112240;
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    background-color: #0A192F;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    color: #64FFDA;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: #CCD6F6;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close:hover {
    color: #64FFDA;
}

.modal-body {
    padding: 2rem;
}

.selected-plan {
    background-color: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.selected-plan h3 {
    color: #64FFDA;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.plan-name-modal {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
}

.plan-price-modal {
    color: #64FFDA;
    font-size: 1.25rem;
    font-weight: 700;
}

.contract-form .form-group {
    margin-bottom: 1.5rem;
}

.contract-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #CCD6F6;
    font-weight: 500;
}

.contract-form input,
.contract-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    background-color: #0A192F;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contract-form input:focus,
.contract-form textarea:focus {
    outline: none;
    border-color: #64FFDA;
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-actions .btn {
    min-width: 120px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .plan-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

/* Mobile responsive for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    .whatsapp-float i {
        width: 24px;
        height: 24px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #112240;
}

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

.feature {
    padding: 2rem;
    border-radius: 12px;
    background-color: #0A192F;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: #64FFDA;
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-description {
    color: #CCD6F6;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #0A192F;
}

.contact .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #8892B0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: rgba(100, 255, 218, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateY(-2px);
}

.info-item i {
    color: #64FFDA;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.info-item h4 {
    color: #CCD6F6;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.info-item p {
    color: #8892B0;
    margin: 0;
    font-size: 1rem;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.whatsapp-link:hover {
    text-decoration: none;
    color: inherit;
}

.whatsapp-link i {
    color: #25D366;
}

.whatsapp-link:hover i {
    color: #128C7E;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #112240;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    background-color: #0A192F;
    color: #CCD6F6;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64FFDA;
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.form-message {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22C55E;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: #112240;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #64FFDA;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #8892B0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #8892B0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: #64FFDA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #4ECDC4;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0A192F;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .plan-featured {
        transform: none;
    }

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

    .footer-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .protection-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .compatibility-item {
        padding: 1rem;
    }

    .time-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .step,
    .feature {
        padding: 1.5rem;
    }

    .plan {
        padding: 2rem;
    }

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

    .dns-example {
        padding: 0.75rem;
    }

    .dns-example code {
        display: block;
        margin: 0.25rem 0;
    }

    .stat {
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .time-box {
        padding: 1rem;
    }
}

/* LGPD Cookie Consent */
.lgpd-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    color: #CCD6F6;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #64FFDA;
    animation: slideUpCookie 0.5s ease-out;
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lgpd-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.lgpd-cookie-text {
    flex: 1;
}

.lgpd-cookie-text h4 {
    color: #64FFDA;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.lgpd-cookie-text p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.lgpd-cookie-text a {
    color: #64FFDA;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.lgpd-cookie-text a:hover {
    color: #4ECDC4;
}

.lgpd-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.lgpd-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lgpd-btn-accept {
    background: #64FFDA;
    color: #0A192F;
}

.lgpd-btn-accept:hover {
    background: #4ECDC4;
    transform: translateY(-2px);
}

.lgpd-btn-essential {
    background: transparent;
    color: #CCD6F6;
    border: 2px solid #64FFDA;
}

.lgpd-btn-essential:hover {
    background: #64FFDA;
    color: #0A192F;
}

.lgpd-btn-settings {
    background: transparent;
    color: #8892B0;
    border: 1px solid #8892B0;
}

.lgpd-btn-settings:hover {
    background: #8892B0;
    color: #0A192F;
}

/* LGPD Modal */
.lgpd-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    animation: fadeInModal 0.3s ease-out;
}

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

.lgpd-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0A192F;
    border: 2px solid #64FFDA;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideInModal 0.3s ease-out;
}

@keyframes slideInModal {
    from { 
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.lgpd-modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #233554;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lgpd-modal-header h3 {
    color: #64FFDA;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.lgpd-close {
    background: none;
    border: none;
    color: #8892B0;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lgpd-close:hover {
    color: #64FFDA;
}

.lgpd-modal-body {
    padding: 25px 30px;
    color: #CCD6F6;
}

.lgpd-cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: #112240;
    border-radius: 12px;
    border: 1px solid #233554;
}

.lgpd-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.lgpd-category-header h4 {
    color: #64FFDA;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Toggle Switch */
.lgpd-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.lgpd-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.lgpd-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #233554;
    transition: 0.3s;
    border-radius: 24px;
}

.lgpd-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #8892B0;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .lgpd-slider {
    background-color: #64FFDA;
}

input:checked + .lgpd-slider:before {
    transform: translateX(26px);
    background-color: #0A192F;
}

input:disabled + .lgpd-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.lgpd-data-info {
    background: #0A192F;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #64FFDA;
    margin-top: 25px;
}

.lgpd-data-info h4 {
    color: #64FFDA;
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
}

.lgpd-data-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.lgpd-data-info li {
    margin: 8px 0;
    line-height: 1.5;
}

.lgpd-data-info a {
    color: #64FFDA;
    text-decoration: none;
}

.lgpd-data-info a:hover {
    text-decoration: underline;
}

.lgpd-modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #233554;
    text-align: center;
}

/* Mobile Responsive for LGPD */
@media (max-width: 768px) {
    .lgpd-cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .lgpd-cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .lgpd-btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .lgpd-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .lgpd-modal-header,
    .lgpd-modal-body,
    .lgpd-modal-footer {
        padding: 20px;
    }
    
    .lgpd-cookie-category {
        padding: 15px;
    }
    
    .lgpd-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background-color: #0A192F;
    color: #CCD6F6;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #64FFDA;
}

.privacy-header h1 {
    font-size: 3rem;
    color: #64FFDA;
    margin-bottom: 15px;
    font-weight: 700;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #8892B0;
    margin-bottom: 10px;
}

.privacy-date {
    color: #64FFDA;
    font-size: 1rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #112240;
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.privacy-section h2 {
    color: #64FFDA;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    padding-bottom: 10px;
}

.privacy-section h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.privacy-section h4 {
    color: #64FFDA;
    font-size: 1.1rem;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

.privacy-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li {
    margin: 10px 0;
    line-height: 1.6;
}

.privacy-section a {
    color: #64FFDA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #4ECDC4;
    text-decoration: underline;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background-color: #0A192F;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #64FFDA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(100, 255, 218, 0.1);
}

.right-item h4 {
    color: #64FFDA;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.right-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.dpo-contact, .contact-info {
    background-color: #0A192F;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #64FFDA;
    margin: 20px 0;
}

.dpo-contact p, .contact-info p {
    margin: 10px 0;
    font-size: 1rem;
}

.privacy-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #112240;
    border-radius: 16px;
    border: 2px solid #64FFDA;
}

.privacy-footer p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.privacy-footer .btn {
    margin-top: 20px;
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #64FFDA 0%, #4ECDC4 100%);
    color: #0A192F;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

/* Mobile Responsive for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content {
        padding: 0 20px;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .privacy-footer {
        padding: 30px 20px;
        margin-top: 40px;
    }
}
