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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #132025;
    color: #132025;
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 51, 84, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    height: 46px;
}

.logo img {
    height: 32px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00ffff;
}


.btn-buy {
    background: linear-gradient(135deg, #a9ff00, #ff0000); 
    color: #FFFFFF;
    padding: 4px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9rem;
    height: 30px;
    line-height: 24px;
    box-sizing: border-box;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #ff00ff, #d400ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
}


.btn-primary {
    background: linear-gradient(135deg, #00a9ff, #00ffff);
    color: #FFFFFF;
    padding: 4px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9rem;
    height: 30px;
    line-height: 24px;
    box-sizing: border-box;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00ffff, #00d4ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    padding: 12px 24px;
    border: 2px solid #00ffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding-right: 2rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 51, 84, 0.5));
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 169, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    text-align: left;
    max-width: 600px;
    z-index: 2;
    position: relative;
    margin-top: 80px;
    margin-left: auto;
    margin-right: 5%;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #00ffff, #00a9ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.users-counter {
    position: absolute;
    bottom: 5%;
    right: 5%;
    text-align: center;
    background: rgba(0, 51, 84, 0.8);
    padding: 1rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.users-counter .count {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
}

.users-counter .label {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Compatibility Highlights Section */
.compatibility-highlights {
    background: #000000;
    padding: 4rem 2rem;
}

.compatibility-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.compatibility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 51, 84, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: flex-start;
}

.compatibility-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.compatibility-item i {
    color: #00ffff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.compatibility-item span {
    color: #ffffff;
    font-size: 0.95rem;
}

/* Professional Features Section */
.features-section {
    background: #132025;
    padding: 6rem 2rem;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 300px;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00ffff, #00a9ff, #00d4ff);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.3);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(26, 26, 26, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-overlay {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.9) 70%,
        rgba(26, 26, 26, 0.98) 100%
    );
}

.feature-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.feature-text {
    color: #ffffff;
    text-align: right;
    max-width: 60%;
}

.feature-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.feature-text p {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* How it works */
.how-it-works {
    background: #0a0a0a;
    padding: 6rem 2rem;
}

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

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, transparent);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a9ff, #00ffff);
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.custom-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-content p {
    color: #b0b0b0;
}

.cta-center {
    text-align: center;
    margin-top: 4rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #003354, #001122);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

/* Footer */
footer {
    background: #000000;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #b0b0b0;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00ffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #666;
}

/* Updated CSS for smaller square feature cards with padding */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Reduced from 300px */
    gap: 2rem;
    padding: 4rem 2rem; /* Added more padding around the grid */
}

.feature-card {
    position: relative;
    aspect-ratio: 1 / 1; /* Keeps square shape */
    width: 100%;
    max-width: 280px; /* Limits maximum size */
    margin: 0 auto; /* Centers the cards */
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem; /* Reduced padding */
    text-align: center;
    color: white;
}

.feature-icon {
    font-size: 2rem; /* Reduced from 3rem */
    margin-bottom: 0.8rem; /* Reduced margin */
    color: #00d4ff;
}

.feature-text h3 {
    font-size: 1.2rem; /* Reduced from 1.5rem */
    margin-bottom: 0.8rem; /* Reduced margin */
    font-weight: 600;
}

.feature-text p {
    font-size: 0.85rem; /* Reduced from 1rem */
    line-height: 1.5;
    opacity: 0.9;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Further reduced */
        gap: 1.5rem;
        padding: 3rem 1rem;
    }
    
    .feature-card {
        max-width: 240px;
    }
    
    .feature-overlay {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
}

/* Updated feature card overlay styling */
.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(26, 26, 26, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Changed from center to flex-end */
    padding: 2rem;
    text-align: right; /* Changed from center to right */
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-overlay {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.9) 70%,
        rgba(26, 26, 26, 0.98) 100%
    );
}

/* Remove the icon completely */
.feature-icon {
    display: none;
}

.feature-text {
    color: #ffffff;
    text-align: right;
    max-width: 60%; /* Keeps text from spanning full width */
    margin-right: 0.1rem; /* Adds the offset from the right edge */
}

.feature-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.feature-text p {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Mobile responsiveness updates */
@media (max-width: 768px) {
    .feature-overlay {
        padding: 1.5rem;
        align-items: flex-end;
        text-align: right;
    }
    
    .feature-text {
        max-width: 70%;
        margin-right: 0.5rem;
    }
    
    .feature-text h3 {
        font-size: 1.2rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .feature-overlay {
        padding: 1.2rem;
    }
    
    .feature-text {
        max-width: 75%;
        margin-right: 0.5rem;
    }
    
    .feature-text h3 {
        font-size: 1.1rem; 
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.feature-overlay {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-end !important;
    text-align: right !important;
    padding: 0rem !important;
}

.feature-text {
    text-align: right !important;
    max-width: 60% !important;
    margin-left: auto !important;
    margin-right: 1rem !important;
}

.feature-text h3 {
    text-align: right !important;
}

.feature-text p {
    text-align: right !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00a9ff, #00ffff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00ffff, #00d4ff);
}