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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    font-size: 32px;
    color: #a3e635;
    filter: drop-shadow(0 0 20px rgba(163, 230, 53, 0.5));
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #a3e635;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #ffffff;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #a3e635;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 8%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(163, 230, 53, 0.1);
    border: 2px solid #a3e635;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #a3e635;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 32px;
    animation: fadeIn 1s ease;
}

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

.hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 32px;
    color: #ffffff;
    letter-spacing: -2px;
    animation: slideIn 1s ease 0.2s both;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-subtitle {
    font-size: 20px;
    color: #a1a1aa;
    margin-bottom: 48px;
    max-width: 550px;
    line-height: 1.6;
    font-weight: 400;
    animation: slideIn 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
    animation: slideIn 1s ease 0.6s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #a3e635;
}

.stat-label {
    font-size: 14px;
    color: #71717a;
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 20px 48px;
    background: #a3e635;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideIn 1s ease 0.8s both;
}

.cta-button:hover {
    background: #bef264;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(163, 230, 53, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    flex-shrink: 0;
    width: 500px;
    height: 400px;
}

.floating-card {
    position: absolute;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 5s ease-in-out infinite;
}

.card-icon {
    font-size: 24px;
    color: #a3e635;
}

.card-text {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 0;
    animation-delay: -1.5s;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(163, 230, 53, 0.1);
    border: 1px solid #a3e635;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #a3e635;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -3px;
    line-height: 1;
}

.section-subtitle {
    font-size: 18px;
    color: #71717a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 140px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.about-card {
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: #a3e635;
    transform: translateY(-4px);
}

.about-icon {
    font-size: 36px;
    margin-bottom: 24px;
    color: #a3e635;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card p {
    font-size: 15px;
    color: #a1a1aa;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 140px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #a3e635;
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 230, 53, 0.1);
    color: #a3e635;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #a3e635;
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 15px;
    color: #a1a1aa;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.partners-title {
    font-size: 14px;
    font-weight: 600;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 48px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a1a1aa;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logo svg {
    width: 32px;
    height: 32px;
}

/* Contact Section */
.contact {
    padding: 140px 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 48px;
}

.contact-info p {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #a3e635;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-value {
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.contact-value:hover {
    color: #a3e635;
}

/* Contact Card */
.contact-card {
    perspective: 1000px;
}

.contact-card-inner {
    position: relative;
    padding: 48px;
    background: rgba(163, 230, 53, 0.05);
    border: 1px solid #a3e635;
    border-radius: 8px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(163, 230, 53, 0.03) 10px,
        rgba(163, 230, 53, 0.03) 20px
    );
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-company {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.card-type {
    font-size: 14px;
    color: #a1a1aa;
    margin-bottom: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-email {
    font-size: 16px;
    color: #a3e635;
    word-break: break-all;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 100px 0 48px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand p {
    font-size: 14px;
    color: #71717a;
    margin-top: 12px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-links a {
    font-size: 14px;
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #a3e635;
}

.footer-bottom {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: #52525b;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        justify-content: flex-start;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 24px 80px;
        justify-content: flex-start;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 28px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .contact-info .section-header {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 64px;
}

.legal-date {
    font-size: 14px;
    color: #71717a;
    margin-top: 12px;
}

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

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #a1a1aa;
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section a {
    color: #6366f1;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section code {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 14px;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 600;
}
