/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: #0f172a;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo svg {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #06b6d4;
}

.chat-link {
    background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
}

.chat-link:hover {
    background: linear-gradient(135deg, #0891b2, #0e7490) !important;
    color: white !important;
    transform: translateY(-1px);
}

.quote-btn {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.quote-btn:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23334155" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}



.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.value-item {
    background: rgba(6, 182, 212, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0f172a;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, #06b6d4 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, #06b6d4 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
    font-weight: 700;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #06b6d4;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
    font-weight: 700;
}

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

.benefit-item {
    padding: 2rem;
    border-left: 4px solid #06b6d4;
    background: white;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.benefit-item::after {
    content: '→';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #06b6d4;
    opacity: 0.3;
}

.benefit-item h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(6, 182, 212, 0.02) 50%, transparent 60%);
    background-size: 30px 30px;
    pointer-events: none;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
    font-weight: 700;
}

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

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #06b6d4;
}

.pricing-card.featured {
    border-color: #06b6d4;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-header {
    margin-bottom: 1.5rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    color: #06b6d4;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card li:before {
    content: "✓";
    color: #4299e1;
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-card .btn-primary {
    margin-top: 1.5rem;
    display: inline-block;
    width: auto;
    min-width: 120px;
}

.savings-highlight {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid #06b6d4;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.savings-highlight h4 {
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.savings-highlight p {
    color: #0f172a;
    font-weight: 600;
    margin: 0;
}

.scalability-note {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.scalability-note p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.scalability-note em {
    color: #0f172a;
    font-style: normal;
    font-weight: 500;
}

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

.savings-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #06b6d4;
    text-align: left;
}

.savings-item strong {
    color: #0f172a;
    display: block;
    margin-bottom: 0.25rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
    font-weight: 700;
}

.about-story {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

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

.founder-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #06b6d4;
}

.founder-card h3 {
    color: #0f172a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.founder-card h4 {
    color: #06b6d4;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.founder-card p {
    color: #64748b;
    line-height: 1.6;
}

.vision-statement {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #06b6d4;
    max-width: 700px;
    margin: 0 auto;
}

.vision-statement h3 {
    color: #0f172a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vision-statement p {
    color: #0f172a;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    z-index: 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #06b6d4;
}

.contact-item h4 {
    color: #06b6d4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.chat-widget {
    margin-top: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.chat-widget p {
    margin: 0;
    font-size: 1.1rem;
}

.chat-widget strong {
    font-weight: 700;
}

/* Footer */
footer {
    background: #020617;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0f172a;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    nav ul.mobile-menu-open {
        transform: translateX(0);
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    /* Show only specific items on mobile */
    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0f172a;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    nav ul.mobile-menu-open {
        transform: translateX(0);
    }
    
    /* Hide features, pricing, get quote - show home, products, chat */
    nav ul li:nth-child(2),
    nav ul li:nth-child(3),
    nav ul li:nth-child(6) {
        display: none;
    }
    
    nav ul li a {
        display: block;
        padding: 0.5rem 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features h2, .benefits h2, .pricing h2 {
        font-size: 2rem;
    }
    
    .value-props {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .value-item {
        display: block;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    

}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, #fafbfc 100%);
    position: relative;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.animation-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



.transformation-svg {
    width: 100%;
    height: auto;
}

/* Animation keyframes - 4 steps, 6 seconds each = 24 second loop */
@keyframes step1Highlight {
    0%, 20% { 
        opacity: 1;
        transform: scale(1.05);
        border-width: 3px;
    }
    25%, 100% { 
        opacity: 0.4;
        transform: scale(1);
        border-width: 2px;
    }
}

@keyframes step2Highlight {
    0%, 20% { 
        opacity: 0.4;
        transform: scale(1);
        border-width: 2px;
    }
    25%, 45% { 
        opacity: 1;
        transform: scale(1.05);
        border-width: 3px;
    }
    50%, 100% { 
        opacity: 0.4;
        transform: scale(1);
        border-width: 2px;
    }
}

@keyframes step3Highlight {
    0%, 45% { 
        opacity: 0.4;
        transform: scale(1);
        border-width: 2px;
    }
    50%, 70% { 
        opacity: 1;
        transform: scale(1.05);
        border-width: 3px;
    }
    75%, 100% { 
        opacity: 0.4;
        transform: scale(1);
        border-width: 2px;
    }
}

@keyframes step4Highlight {
    0%, 70% { 
        opacity: 0.4;
        transform: scale(1);
        border-width: 2px;
    }
    75%, 100% { 
        opacity: 1;
        transform: scale(1.05);
        border-width: 3px;
    }
}

@keyframes step1Only {
    0%, 20% { opacity: 1; }
    25%, 100% { opacity: 0; }
}

@keyframes step2Plus {
    0%, 20% { opacity: 0; }
    25%, 100% { opacity: 1; }
}

@keyframes step3Only {
    0%, 45% { opacity: 0; }
    50%, 70% { opacity: 1; }
    75%, 100% { opacity: 0; }
}

@keyframes step4Only {
    0%, 70% { opacity: 0; }
    75%, 100% { opacity: 1; }
}

@keyframes moveToCloud1 {
    0%, 20% { transform: translate(0, 0); opacity: 1; }
    21%, 24% { opacity: 1; }
    28% { transform: translate(301px, 79px) scale(0.7); opacity: 0.5; }
    30%, 100% { transform: translate(301px, 79px) scale(0); opacity: 0; }
}

@keyframes moveToCloud2 {
    0%, 20% { transform: translate(0, 0); opacity: 1; }
    21%, 24% { opacity: 1; }
    28% { transform: translate(301px, -1px) scale(0.7); opacity: 0.5; }
    30%, 100% { transform: translate(301px, -1px) scale(0); opacity: 0; }
}

@keyframes moveToCloud3 {
    0%, 20% { transform: translate(0, 0); opacity: 1; }
    21%, 24% { opacity: 1; }
    28% { transform: translate(301px, -81px) scale(0.7); opacity: 0.5; }
    30%, 100% { transform: translate(301px, -81px) scale(0); opacity: 0; }
}

@keyframes drawVpnLine {
    0%, 45% { stroke-dashoffset: 300; }
    50%, 55% { stroke-dashoffset: 300; }
    65%, 100% { stroke-dashoffset: 0; }
}

@keyframes drawControlLine {
    0%, 70% { stroke-dashoffset: 300; }
    75%, 80% { stroke-dashoffset: 300; }
    90%, 100% { stroke-dashoffset: 0; }
}

@keyframes cloudActivate {
    0%, 20% { opacity: 0; }
    25%, 100% { opacity: 0.9; }
}

@keyframes serverAppear {
    0%, 20% { transform: scale(0); opacity: 0; }
    25% { transform: scale(0); opacity: 0; }
    30% { transform: scale(1.1); opacity: 1; }
    35%, 100% { transform: scale(1); opacity: 1; }
}

@keyframes vpnAppear {
    0%, 45% { opacity: 0; }
    50%, 100% { opacity: 1; }
}

@keyframes controlCenterAppear {
    0%, 70% { transform: scale(0); opacity: 0; }
    75% { transform: scale(1.1); opacity: 1; }
    80%, 100% { transform: scale(1); opacity: 1; }
}



/* Apply animations - 24 second loop */
.old-elements {
    animation: step1Only 24s ease-in-out infinite;
}

.cloud-active {
    animation: cloudActivate 24s ease-in-out infinite;
}

.cloud-label {
    animation: step2Plus 24s ease-in-out infinite;
}

.server-1 {
    animation: moveToCloud1 24s ease-in-out infinite;
    transform-origin: center;
}

.server-2 {
    animation: moveToCloud2 24s ease-in-out infinite;
    transform-origin: center;
}

.server-3 {
    animation: moveToCloud3 24s ease-in-out infinite;
    transform-origin: center;
}

.cloud-server {
    animation: step2Plus 24s ease-in-out infinite;
    transform-origin: center;
}

.new-elements rect,
.new-elements text {
    animation: vpnAppear 24s ease-in-out infinite;
}

.local-connection {
    animation: vpnAppear 24s ease-in-out infinite;
}

.vpn-line {
    animation: drawVpnLine 24s ease-in-out infinite;
}

.vpn-label {
    animation: vpnAppear 24s ease-in-out infinite;
}

.control-center {
    animation: controlCenterAppear 24s ease-in-out infinite;
    transform-origin: center;
}

.connection-line {
    animation: drawControlLine 24s ease-in-out infinite;
}

.cost-indicator {
    animation: step1Only 24s ease-in-out infinite;
}

.savings-indicator {
    animation: step4Only 24s ease-in-out infinite;
}



.cost-indicator {
    animation: fadeOut 8s ease-in-out infinite;
}

.savings-indicator {
    animation: fadeIn 8s ease-in-out infinite;
}

.step-info {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.step-content {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-1-content {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 2px solid #ef4444;
    animation: step1Highlight 24s ease-in-out infinite;
}

.step-2-content {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border: 2px solid #3b82f6;
    animation: step2Highlight 24s ease-in-out infinite;
}

.step-3-content {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
    border: 2px solid #8b5cf6;
    animation: step3Highlight 24s ease-in-out infinite;
}

.step-4-content {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 2px solid #10b981;
    animation: step4Highlight 24s ease-in-out infinite;
}

.step-content h3 {
    color: #0f172a;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    color: #1e293b;
    font-size: 0.85rem;
    margin: 0.3rem 0;
    font-weight: 500;
    text-align: left;
}

.step-content li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .animation-container {
        padding: 1rem;
    }
    
    .transformation-svg {
        height: 350px;
    }
    
    .step-info {
        grid-template-columns: 1fr;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content li {
        font-size: 0.85rem;
    }
    
    .vpn-label {
        font-size: 8px;
    }
}

/* Quote Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #06b6d4;
}

.modal-content button {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-content button:hover {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    transform: translateY(-1px);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}


/* Pricing Table */
.pricing-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.pricing-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-table th:first-child {
    text-align: left;
}

.pricing-table .featured-col {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.pricing-table .price-row td {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.3rem;
    color: #06b6d4;
    background: #f8fafc;
}

.pricing-table .price-row td:first-child {
    text-align: left;
    color: #0f172a;
    font-size: 1rem;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.pricing-table tbody tr:hover {
    background: #f8fafc;
}

.pricing-table td {
    padding: 1rem;
    text-align: center;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #0f172a;
}

.pricing-table .cta-row {
    background: #f8fafc;
}

.pricing-table .cta-row td {
    padding: 1.5rem 1rem;
}

.btn-small {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.85rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .pricing-table th {
        font-size: 0.9rem;
    }
    
    .pricing-table .price-row td {
        font-size: 1rem;
    }
}


/* Products Page */
.products-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.products-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.product-details {
    padding: 80px 0;
    background: white;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-info h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin: 2rem 0 1rem;
}

.product-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    border-radius: 10px;
    border: 2px solid #06b6d4;
}

.price-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #06b6d4;
}

.product-features,
.product-specs {
    list-style: none;
    padding: 0;
}

.product-features li,
.product-specs li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.product-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
}

.product-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.product-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.product-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #06b6d4;
}

.benefit-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .product-cta {
        flex-direction: column;
    }
}


/* Legal Pages */
.legal-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.legal-hero p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    color: #0f172a;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    color: #475569;
    line-height: 1.8;
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}
