:root {
    --primary-color-start: #6366F1;
    --primary-color-end: #4F46E5;
    --secondary-color: #10B981;
    --tertiary-color: #EC4899;
    --bg-dark: #020617;
    --bg-darker: #0F172A;
    --bg-card: rgba(15, 23, 42, 0.6);
    --text-light: #FFFFFF;
    --text-muted: #94A3B8;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

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

/* Background Effects */
.bg-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    top: 10%;
    right: 10%;
    width: 30vw;
    height: 30vw;
    background-color: var(--primary-color-start);
    opacity: 0.15;
    animation: float-slow 15s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: 20%;
    left: 10%;
    width: 25vw;
    height: 25vw;
    background-color: var(--secondary-color);
    opacity: 0.15;
    animation: float-slow 20s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    top: 50%;
    left: 40%;
    width: 20vw;
    height: 20vw;
    background-color: var(--tertiary-color);
    opacity: 0.1;
    animation: float-slow 17s ease-in-out infinite alternate;
}

@keyframes float-slow {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2%, 2%) rotate(5deg); }
    100% { transform: translate(-2%, 1%) rotate(-5deg); }
}

/* Starfield styles from first file */
.starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 40px 60px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(2px 2px at 20px 150px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(2px 2px at 100px 250px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(2px 2px at 160px 200px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(3px 3px at 200px 300px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(1px 1px at 300px 50px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(1px 1px at 350px 100px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(2px 2px at 400px 200px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(2px 2px at 450px 300px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(1px 1px at 500px 100px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(3px 3px at 550px 200px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
            radial-gradient(2px 2px at 600px 300px, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background-repeat: repeat;
    background-size: 650px 350px;
    animation: twinkle 10s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.4;
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    z-index: -1;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

/* Header */
header {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    background: linear-gradient(to right, var(--primary-color-start), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

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

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(to right, var(--primary-color-start), var(--primary-color-end));
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    min-width: 100px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary-color-start);
    background: rgba(99, 102, 241, 0.1);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    background-color: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge i {
    margin-right: 6px;
    color: var(--secondary-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
}

.feature-icon.primary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.2));
}

.feature-icon.secondary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
}

.feature-icon.tertiary {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(190, 24, 93, 0.2));
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Showcase Sections */
.showcase {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.showcase-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.showcase-content.reverse {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.showcase-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.showcase-text li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.showcase-text li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.showcase-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Benson AI Section */
.benson {
    padding: 80px 0;
    background-color: rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benson-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.benson-avatar {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color-start), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.benson-text {
    flex: 1;
}

.benson-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.benson-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 16px;
}

.benson-text p:last-child {
    margin-bottom: 0;
}

.testimonials {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color-start), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-weight: bold;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.testimonial-body {
    color: var(--text-muted);
    line-height: 1.6;
}

.stars {
    color: #FACC15;
    margin-top: 20px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta p {
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-modal {
    background-color: var(--bg-darker);
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.image-modal .modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.image-modal .modal-close-btn {
    background: rgba(15, 23, 42, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal .modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* Footer */
footer {
    background-color: #000000;
    background-image: linear-gradient(180deg, rgba(2, 6, 23, 0.8) 0%, #000000 100%);
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo span {
    background: linear-gradient(to right, var(--primary-color-start), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    background-color: transparent !important;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    background-color: transparent !important;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

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

/* Contact Info Styling */
.contact-info {
    list-style: none;
    background-color: transparent !important;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: transparent !important;
}

.contact-label {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.5;
}

.contact-info a:hover {
    color: var(--primary-color-start);
}

/* Mobile menu toggle button - added for mobile responsiveness */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-darker);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu-open {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

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

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.mobile-auth .btn {
    width: 100%;
    text-align: center;
}

/* Desktop auth buttons container */
.desktop-auth {
    display: flex;
    gap: 10px;
}

@media (max-width: 1100px) and (min-width: 993px) {
    .header-content {
        gap: 10px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .btn {
        padding: 8px 15px;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .showcase-content {
        flex-direction: column;
        gap: 40px;
    }

    .showcase-content.reverse {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .benson-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .nav-links, .desktop-auth {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Partner Logos Section in Footer */
.partner-logos-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.partner-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.partner-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.partner-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color-start), var(--secondary-color));
    border-radius: 2px;
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-logo-item {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-logo-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Default filter for mixed contrast */
    filter: contrast(1.1) brightness(1.2);
    opacity: 0.9;
}

/* Special handling for specific logos that need inversion */
.partner-logo-item img[src*="Dell"],
.partner-logo-item img[src*="IBM"],
.partner-logo-item img[src*="Cisco"],
.partner-logo-item img[src*="Juniper"],
.partner-logo-item img[src*="fortinet"],
.partner-logo-item img[src*="APC-Schneider"],
.partner-logo-item img[src*="Eaton"],
.partner-logo-item img[src*="Vertiv"],
.partner-logo-item img[src*="PNY"],
.partner-logo-item img[src*="Giga-Computing"],
.partner-logo-item img[src*="AMD"] {
    filter: brightness(0) invert(0.9);
    opacity: 0.85;
}

/* Special handling for HPE logo to preserve green color */
.partner-logo-item img[src*="hpe"] {
    filter: contrast(1.5) brightness(1.3) saturate(1.2);
    opacity: 0.9;
    mix-blend-mode: screen;
}

/* Special handling for Lenovo logo to preserve red color */
.partner-logo-item img[src*="Lenovo"] {
    filter: contrast(1.4) brightness(1.2) saturate(1.3);
    opacity: 0.9;
    mix-blend-mode: screen;
}

/* Logos that work well on dark backgrounds */
.partner-logo-item img[src*="NVIDIA"],
.partner-logo-item img[src*="Microsoft"],
.partner-logo-item img[src*="SuperMicro"] {
    filter: contrast(1.2) brightness(1.1);
    opacity: 0.9;
}

.partner-logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Maintain filters on hover but increase opacity */
.partner-logo-item:hover img[src*="Dell"],
.partner-logo-item:hover img[src*="IBM"],
.partner-logo-item:hover img[src*="Cisco"],
.partner-logo-item:hover img[src*="Juniper"],
.partner-logo-item:hover img[src*="fortinet"],
.partner-logo-item:hover img[src*="APC-Schneider"],
.partner-logo-item:hover img[src*="Eaton"],
.partner-logo-item:hover img[src*="Vertiv"],
.partner-logo-item:hover img[src*="PNY"],
.partner-logo-item:hover img[src*="Giga-Computing"],
.partner-logo-item:hover img[src*="AMD"] {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* HPE hover state */
.partner-logo-item:hover img[src*="hpe"] {
    filter: contrast(1.6) brightness(1.4) saturate(1.3);
    opacity: 1;
    mix-blend-mode: screen;
}

/* Lenovo hover state */
.partner-logo-item:hover img[src*="Lenovo"] {
    filter: contrast(1.5) brightness(1.3) saturate(1.4);
    opacity: 1;
    mix-blend-mode: screen;
}

/* Special sizing for logos that appear too small */
.partner-logo-item img[src*="fortinet"] {
    transform: scale(1.8);
    max-width: 180%;
    max-height: 180%;
}

.partner-logo-item:hover img[src*="fortinet"] {
    transform: scale(1.85);
}

/* Responsive adjustments for partner logos */
@media (max-width: 768px) {
    .partner-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .partner-logo-item {
        width: 100px;
        height: 50px;
    }
    
    .partner-section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .partner-logos-section {
        padding: 40px 0 30px;
    }
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.98);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
    overflow: hidden;
}

.coming-soon-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

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

.coming-soon-content {
    text-align: center;
    padding: 3rem;
    max-width: 500px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideUp 0.4s ease-out;
    position: relative;
    z-index: 10000;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color-start), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(99, 102, 241, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 70px rgba(99, 102, 241, 0.7);
    }
}

.coming-soon-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color-start), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-soon-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coming-soon-message {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.coming-soon-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 16px;
}

/* Coming Soon Overlay for showcase images */
.showcase-image .coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1) !important; /* Ultra light overlay - 10% opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none; /* Allow clicks to pass through to the image */
    transition: none !important; /* Prevent any transitions */
    animation: none !important; /* Prevent any animations */
    opacity: 1 !important; /* Ensure full opacity of the element itself */
}

.showcase-image .coming-soon-content {
    text-align: center;
    color: white;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.5); /* Lighter background for text */
    border-radius: 6px;
    backdrop-filter: blur(1px);
}

.showcase-image .coming-soon-content h3 {
    font-size: 1rem; /* Even smaller */
    font-weight: 400; /* Normal weight */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85; /* More transparent */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Hardware Valuation Page Styles */
.valuation-page {
    padding: 80px 0 40px;
    min-height: 100vh;
    background: var(--bg-dark);
}

.valuation-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.valuation-page .form-container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.valuation-page .form-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color-start), var(--primary-color-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 20px;
}

.valuation-page .form-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.valuation-page .form-description {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Value Propositions Grid */
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop-item i {
    font-size: 1.5rem;
    color: var(--primary-color-start);
}

.value-prop-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
}

.form-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h4 i {
    color: var(--primary-color-start);
}

.form-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color-start);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: #ef4444;
}

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

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.checkbox-item input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item label {
    flex: 1;
    cursor: pointer;
}

.checkbox-item label strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-light);
}

.checkbox-item label small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Conditional Sections */
.conditional-section {
    margin-top: 20px;
    padding: 20px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.conditional-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color-start);
}

/* Consent Section */
.consent-section {
    margin: 30px 0;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consent-item input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.consent-item label {
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Submit Section */
.submit-section {
    text-align: center;
    margin-top: 40px;
}

.submit-button {
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--primary-color-start), var(--primary-color-end));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Error Messages */
.error-message {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #ef4444;
}

/* Required Asterisk */
.required {
    color: #ef4444;
}

/* Success Modal (kept for the success confirmation) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.success-modal-content {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-icon i {
    font-size: 2.5rem;
    color: white;
}

.success-modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.success-modal-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-button {
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-color-start), var(--primary-color-end));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .valuation-page .form-container {
        padding: 24px;
    }

    .valuation-page .form-main-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}
EOF < /dev/null

/* Partner Application Page Styles */
.partner-application-page {
    padding: 80px 0 40px;
    min-height: 100vh;
    background: var(--bg-dark);
}

.partner-application-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.partner-application-page .form-container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.partner-application-page .form-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color-start), var(--primary-color-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 20px;
}

.partner-application-page .form-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.partner-application-page .form-description {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Design for Partner Application */
@media (max-width: 768px) {
    .partner-application-page .form-container {
        padding: 24px;
    }

    .partner-application-page .form-main-title {
        font-size: 2rem;
    }
}
