/* Color Variables */
:root {
    --primary: #00EAFF;
    --secondary: #3C8CE7;
    --dark: #1A1A2E;
    --darker: #121225;
    --light: #F5F9FC;
    --gray: #718096;
    --text: #E2E8F0;
    --gradient: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 2.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    color: var(--light);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: var(--light);
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* Header Styles */
.site-header {
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
    padding: 2rem 0 6rem;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 234, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 90% 80%, rgba(60, 140, 231, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

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

.logo {
    width: 220px;
    height: 60px;
}

.logo-small {
    width: 120px;
    height: 40px;
}

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

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

/* Mobile Menu */
#menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 10;
}

.menu-button span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-button span:nth-child(1) {
    top: 0;
}

.menu-button span:nth-child(2) {
    top: 10px;
}

.menu-button span:nth-child(3) {
    top: 20px;
}

#menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

#menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* Hero Section */
.hero {
    text-align: center;
    position: relative;
    z-index: 2;
}

.tagline {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--gray);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 234, 255, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 234, 255, 0.3);
    color: var(--darker);
}

/* Section Styling */
section {
    padding: 6rem 0;
}

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

.section-header p {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--gray);
}

/* Features Section */
.features {
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 234, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 234, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

/* Process Section */
.process {
    background-color: var(--dark);
    position: relative;
}

.process-flow {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    background-color: rgba(26, 26, 46, 0.8);
    box-shadow: 0 10px 30px rgba(0, 234, 255, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

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

/* Showcase Section */
.showcase {
    background-color: var(--darker);
    padding: 6rem 0;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.showcase-content, .showcase-visual {
    flex: 1;
    min-width: 300px;
}

.showcase-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(60, 140, 231, 0.2);
    position: relative;
    padding-left: 2rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '→';
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 1rem;
}

.benefits-list strong {
    color: var(--primary);
}

/* FAQ Section */
.faq {
    background-color: var(--dark);
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 234, 255, 0.1);
    background-color: rgba(26, 26, 46, 0.8);
}

/* Footer */
.site-footer {
    background-color: var(--darker);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 234, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-text {
    flex: 2;
    min-width: 200px;
    text-align: center;
}

.footer-brand, .footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text);
}

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

.keywords {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    opacity: 0.7;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .menu-button {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    #menu-toggle:checked ~ .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        background-color: var(--darker);
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 10;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .showcase-grid {
        flex-direction: column-reverse;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-brand, .footer-links {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .process-step, .faq-item {
    animation: fadeUp 0.6s ease-out forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.4s;
}
