/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors - Deep Premium Theme */
    --bg-dark: #02020a;
    --bg-surface: #0a0a1a;
    --bg-glass: rgba(15, 15, 35, 0.7);

    /* Brand Palette */
    --brand-primary: #0066ff;
    --brand-secondary: #00d26a;
    --brand-accent: #448aff;

    /* Text */
    --text-main: #ffffff;
    --text-dim: #a0a0b8;
    --text-muted: #6b6b83;

    /* Decoration */
    --border-glass: rgba(255, 255, 255, 0.08);
    --glow-primary: rgba(0, 102, 255, 0.4);
    --glow-secondary: rgba(0, 210, 106, 0.4);

    --container: 1240px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Utilities */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 25px;
}

.section {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--brand-secondary);
}

.w-100 {
    width: 100%;
}

.subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    border: none;
}

.btn-primary {
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 10px 25px var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--glow-primary);
    background: var(--brand-accent);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-primary);
}

.btn-glow {
    background: var(--brand-secondary);
    color: #000;
    box-shadow: 0 10px 25px var(--glow-secondary);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--glow-secondary);
    filter: brightness(1.1);
}

.btn-nav {
    padding: 8px 20px;
    background: var(--brand-primary);
    color: white !important;
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-glass);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dim);
}

.nav-links a:hover {
    color: var(--brand-primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-text {
    max-width: 850px;
    position: relative;
    z-index: 10;
}

.tech-badge {
    background: rgba(0, 102, 255, 0.1);
    color: var(--brand-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 102, 255, 0.2);
    margin-bottom: 25px;
    display: inline-block;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 45px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Background Effects */
.tech-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 2;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--brand-primary);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--brand-secondary);
    bottom: -150px;
    left: -100px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* About Section */
.section-display {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.rounded-tech {
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--brand-primary);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px var(--glow-primary);
}

.exp-badge .count {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.exp-badge .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 500;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-glass);
}

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--brand-secondary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Product Section */
.product-section {
    background: var(--bg-surface);
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.product-featured {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.featured-content {
    padding: 60px;
}

.badge-featured {
    background: var(--brand-secondary);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
}

.featured-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.lead-product {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.check-list {
    margin: 30px 0 40px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dim);
}

.check-list i {
    color: var(--brand-secondary);
}

.featured-visual {
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.visual-mock {
    width: 100%;
    background: #050510;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.mock-header {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.r {
    background: #ff5f56;
}

.y {
    background: #ffbd2e;
}

.g {
    background: #27c93f;
}

.m-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 10px;
}

.w-80 {
    width: 80%;
}

.w-60 {
    width: 60%;
}

.m-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.m-box {
    height: 80px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-glass);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-primary);
    background: rgba(15, 15, 45, 0.9);
}

.p-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-primary);
    margin-bottom: 25px;
}

.product-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Development Section */
.dev-banner {
    background: radial-gradient(circle at top right, #001a4d, #050511);
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.dev-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.dev-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.dev-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dev-tags span {
    color: var(--brand-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.btn-big {
    padding: 20px 45px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-item i {
    width: 54px;
    height: 54px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--brand-primary);
}

.c-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.c-item span {
    color: var(--text-dim);
}

.contact-form-wrapper {
    background: var(--bg-surface);
    padding: 50px;
    border-radius: 32px;
    border: 1px solid var(--border-glass);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 16px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
.main-footer {
    padding-top: 100px;
    border-top: 1px solid var(--border-glass);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: var(--text-dim);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
}

.social-links a:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--text-dim);
    display: flex;
    gap: 12px;
}

.footer-contact i {
    color: var(--brand-primary);
    margin-top: 4px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1200px) {
    .section-display {
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {

    .section-display,
    .product-featured,
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-text p {
        margin-inline: auto;
    }

    .stat-grid {
        justify-content: center;
    }

    .check-list {
        display: inline-block;
        text-align: left;
    }

    .product-featured {
        padding-bottom: 40px;
    }

    .featured-content {
        padding: 40px 25px;
    }

    .dev-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .contact-items {
        align-items: center;
    }

    .c-item {
        flex-direction: column;
    }

    .navbar .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .about-text h2,
    .contact-info h2,
    .dev-content h2 {
        font-size: 2.2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        grid-column: auto;
    }

    .exp-badge {
        position: static;
        margin: 20px auto 0;
        width: fit-content;
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* Receipt Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-dim);
    cursor: pointer;
    transition: var(--transition);
}

.receipt-options {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

#receiptForm {
    display: none;
    margin-top: 10px;
}

#receiptForm.active {
    display: block;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.flex-grow-1 {
    flex-grow: 1;
}

#openReceipt i {
    color: var(--brand-secondary);
}

#openReceipt:hover {
    border-color: var(--brand-secondary);
}