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

:root {
    --primary-purple: #a855f7;
    --primary-pink: #ec4899;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --border-color: rgba(168, 85, 247, 0.2);
    --text-gray: #cbd5e1;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #581c87 50%, var(--dark-bg) 100%);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-purple);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-purple);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary-purple);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Page Header */
.page-header {
    padding-top: 8rem;
    padding-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.hero-badge span {
    color: #c084fc;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(to right, #9333ea, #db2777);
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    border: 2px solid var(--primary-purple);
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    margin: 0 auto;
}

/* Overview/About Section */
.overview {
    padding: 5rem 1rem;
    background: rgba(30, 41, 59, 0.3);
}

.about {
    padding: 5rem 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

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

.image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.about-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.about-card svg {
    width: 3rem;
    height: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-gray);
}

/* Values Section */
.values {
    padding: 5rem 1rem;
    background: rgba(30, 41, 59, 0.3);
}

/* Expertise Section */
.expertise {
    padding: 5rem 1rem;
}

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

.expertise-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.expertise-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.expertise-card ul {
    list-style: none;
}

.expertise-card ul li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-card ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
}

/* Featured Products Preview */
.featured-products {
    padding: 5rem 1rem;
}

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

.product-preview-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--darker-bg) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.product-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.product-preview-card.fx:hover {
    border-color: var(--primary-purple);
}

.product-preview-card.dating:hover {
    border-color: var(--primary-pink);
}

.product-preview-card svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
}

.product-preview-card.fx svg {
    color: var(--primary-purple);
}

.product-preview-card.dating svg {
    color: var(--primary-pink);
}

.product-preview-card h3 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-preview-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Products Section */
.products {
    padding: 5rem 1rem;
}

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

.product-card {
    position: relative;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--darker-bg) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.product-card.fx:hover {
    border-color: var(--primary-purple);
}

.product-card.dating:hover {
    border-color: var(--primary-pink);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4ade80;
}

.product-card svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
}

.product-card.fx svg {
    color: var(--primary-purple);
}

.product-card.dating svg {
    color: var(--primary-pink);
}

.product-card h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.product-features svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.product-card.fx .product-features svg {
    color: var(--primary-purple);
}

.product-card.dating .product-features svg {
    color: var(--primary-pink);
}

.product-card .btn {
    width: 100%;
}

/* Technology Stack */
.tech-stack {
    padding: 5rem 1rem;
    background: rgba(30, 41, 59, 0.3);
}

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

.tech-category {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: all 0.3s;
}

.tech-tag:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: var(--primary-purple);
}

/* Stats Section */
.stats {
    padding: 5rem 1rem;
    background: rgba(30, 41, 59, 0.3);
}

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

.stat-item h3 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple);
    font-size: 1.125rem;
}

.contact-item svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-item a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #c084fc;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 5rem;
}

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

.contact-info-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.contact-info-card svg {
    width: 3rem;
    height: 3rem;
    color: var(--primary-purple);
    margin: 0 auto 1rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info-card a:hover {
    color: #c084fc;
}

.contact-info-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 56rem;
    margin: 0 auto;
}

.contact-form {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    background: var(--darker-bg);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
}

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

.form-group select {
    cursor: pointer;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 1rem;
    background: rgba(30, 41, 59, 0.3);
}

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

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    padding: 3rem 1rem;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-purple);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-contact {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

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

    .hero h1,
    .page-header h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .products-grid,
    .products-preview-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

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

    .about-image {
        order: -1;
    }

    .faq-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .page-header h1 {
        font-size: 2rem;
    }

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