:root {
    --primary-color: #2563eb;
    --secondary-color: #1d4ed8;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #f8fafc;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.98);
    --glass-bg: rgba(255, 255, 255, 0.2);
    --gradient: linear-gradient(135deg, #2563eb, #1d4ed8);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background);
    font-size: 16px;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-btn {
    display: inline-block;
    text-decoration: none;
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.contact-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 6rem 5% 3rem;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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 1440 320"><path fill="%23ffffff20" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.primary-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    border: none;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2.5rem;
    border-radius: 50px;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 3rem 5%;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    color: var(--text-color);
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--light-text);
}

/* Add x6 badge for node-specific features */
.feature-card.node-feature::after {
    content: "×N";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer Styles */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section a:hover {
    opacity: 1;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 0.5rem 1rem;
        position: relative;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        margin: 0.5rem 0;
    }

    .nav-links a {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .logo-image {
        height: 32px;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .feature-grid {
        display: flex;
        flex-direction: column;
        padding: 0 1rem;
    }

    .feature-card {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    /* Product page specific */
    .product-showcase {
        padding: 1rem;
    }

    .product-image {
        width: 100%;
        transform: none;
    }

    .price-tag {
        text-align: center;
        width: 100%;
    }

    /* Services page specific */
    .migration-overview {
        padding: 4rem 1rem 2rem;
    }

    .process-steps {
        padding: 0 1rem;
    }

    .benefits-grid {
        padding: 0 1rem;
    }

    /* About page specific */
    .expertise-grid {
        padding: 0 1rem;
    }

    .achievements-grid {
        padding: 0 1rem;
    }

    /* Footer adjustments */
    .footer-content {
        padding: 0 1rem;
    }

    .footer-section {
        text-align: center;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .amount {
        font-size: 2rem;
    }

    .spec-section {
        padding: 0 1rem;
    }

    .spec-row {
        flex-direction: column;
    }

    .spec-label {
        margin-bottom: 0.5rem;
    }
}

/* Add floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Add decorative elements */
.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    filter: blur(100px);
    border-radius: 100%;
    top: -50px;
    right: -50px;
    opacity: 0.3;
}

.product-showcase {
    background: rgba(255, 255, 255, 0.25);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.product-image {
    max-width: 600px;
    width: 90%;
    border: none;
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
}

.product-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.product-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
}

@media (max-width: 768px) {
    .product-image {
        max-width: 100%;
    }
}

.badge {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1rem;
    opacity: 0.8;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-buttons i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2.5rem;
    }
}

/* Clean Technical Specifications */
.tech-specs-clean {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.spec-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spec-section h3 i {
    font-size: 1.25rem;
}

.spec-row {
    display: flex;
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    gap: 2rem;
}

.spec-label {
    flex: 0 0 200px;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-label i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.spec-value {
    flex: 1;
    color: var(--text-color);
}

.spec-value ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.spec-value ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.spec-value ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .spec-row {
        flex-direction: column;
        gap: 0.5rem;
        padding-left: 0;
    }

    .spec-label {
        flex: 0 0 auto;
    }

    .spec-value {
        padding-left: 2rem;
    }
}

/* Expertise Section Styles */
.expertise-section {
    padding: 3rem 5%;
    background: var(--background);
}

.expertise-content {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}

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

.expertise-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.expertise-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.expertise-card p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Achievements Section */
.achievements-section {
    background: var(--gradient);
    padding: 3rem 5%;
    color: var(--white);
}

.achievements-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.achievement-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .expertise-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-card,
    .achievement-card {
        margin-bottom: 1rem;
    }
}

/* Migration Overview Styles */
.migration-overview {
    padding: 6rem 5% 4rem;
    background: var(--background);
    position: relative;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.overview-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-text);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Add subtle background decoration */
.migration-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(37, 99, 235, 0.1) 50%, 
        transparent 100%
    );
}

/* Migration Process Styles */
.migration-process {
    padding: 4rem 5%;
    background: var(--gradient);
    color: var(--white);
}

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

.migration-process h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.step {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Technical Benefits Styles */
.technical-benefits {
    padding: 4rem 5%;
    background: var(--background);
}

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

.benefit-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

@media (max-width: 768px) {
    .overview-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
}

/* Footer Note Styles */
.footer-note {
    text-align: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footer-note p {
    margin: 0;
    line-height: 1;
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none !important;  /* Force hide by default */
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;  /* Force hide on desktop */
        visibility: hidden;  /* Additional hiding for Firefox */
        opacity: 0;  /* Additional hiding for Firefox */
    }

    .nav-links {
        display: flex !important;  /* Force show on desktop */
    }

    .contact-btn {
        display: inline-block !important;  /* Force show on desktop */
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        visibility: visible;
        opacity: 1;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .navbar {
        flex-direction: column;
        padding: 0.5rem 1rem;
        position: relative;
    }

    .nav-links {
        display: none;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .logo {
        margin-right: 3rem;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        display: none;
    }

    .nav-links.active + .contact-btn {
        display: inline-block;
        margin-top: 0.5rem;
    }
} 