/* Core Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

html, body, a, button {
    cursor: none !important; /* Hides default mouse arrow */
}

body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Floating Navigation Capsule */
.nav-container {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.nav-capsule {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 30px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.purple-text {
    color: #9933FF;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Two-Column Layout */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 120px 10% 60px 10%;
    gap: 50px;
}

.hero-left {
    flex: 1;
}

.badge {
    background: rgba(153, 51, 255, 0.1);
    color: #b566ff;
    border: 1px solid rgba(153, 51, 255, 0.3);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-left h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-left p {
    color: #8a8a8a;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
}

.cta-btn {
    display: inline-block;
    background: #9933FF;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 99px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(153, 51, 255, 0.4);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.video-container {
    width: 100%;
    max-width: 540px;
    aspect-ratio: 16 / 10;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(153, 51, 255, 0.05);
}

.play-btn {
    background: #ffffff;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    font-size: 20px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.video-container:hover .play-btn {
    transform: scale(1.1);
}

.video-container p {
    color: #6a6a6a;
    font-size: 14px;
}

/* Premium Custom Cursor Ring */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #9933FF;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 0 15px rgba(153, 51, 255, 0.4);
}

.custom-cursor.cursor-hover {
    width: 35px;
    height: 35px;
    background-color: rgba(153, 51, 255, 0.1);
    border-color: #ffffff;
}

/* Section Header Utilities */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Services Grid Layout */
.services-section {
    padding: 100px 10%;
    background: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(153, 51, 255, 0.4);
    box-shadow: 0 10px 30px rgba(153, 51, 255, 0.05);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: #8a8a8a;
    font-size: 15px;
    line-height: 1.6;
}

/* Process Section Layout */
.process-section {
    padding: 100px 10%;
    background: #050505; /* Micro contrast break */
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.step {
    flex: 1;
    position: relative;
}

.step-num {
    font-size: 64px;
    font-weight: 900;
    color: rgba(153, 51, 255, 0.1); /* Ghost text */
    line-height: 1;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.step:hover .step-num {
    color: rgba(153, 51, 255, 0.4);
}

.step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    color: #8a8a8a;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive fixes for mobile/tablets */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 50px;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 160px;
    }
    .hero-left p {
        margin: 0 auto 35px auto;
    }
}
/* Crucial Smooth-Scrolling Engine Rule */
html {
    scroll-behavior: smooth;
}

/* Offset sections slightly to clear room for your floating navigation capsule */
section {
    scroll-margin-top: 100px;
}

/* FAQs Section Styling */
.faqs-section {
    padding: 100px 10%;
    background: #000000;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(153, 51, 255, 0.3);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.faq-item p {
    color: #8a8a8a;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Form Section Styling */
.contact-section {
    padding: 100px 10% 140px 10%;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-section p {
    color: #8a8a8a;
    margin-top: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #9933FF;
    box-shadow: 0 0 10px rgba(153, 51, 255, 0.2);
}

.contact-form button {
    border: none;
    align-self: flex-start;
    padding: 16px 32px;
}