:root {
    --bg-dark: #0a0514;
    --primary: #8a4fff;
    --primary-glow: rgba(138, 79, 255, 0.4);
    --secondary: #d1b8ff;
    --accent: #ff4fb6;
    --text-main: #f0f0f0;
    --text-muted: #a0a0b0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    --font-sora: 'Sora', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-inter);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: var(--font-sora);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(40, 10, 80, 0.3) 0%, transparent 70%);
    z-index: -2;
}

.background-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    animation: floating 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes floating {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* Typography & Layout */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

span.logo-text {
    font-size: 2.2rem;
    color: var(--text-main);
}

span.logo-text span {
    color: var(--primary);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(10, 5, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--glass);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 40%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Gap Section */
.gap-section {
    padding: 8rem 0;
}

.gap-grid {
    display: grid;
    grid-template-columns: 1fr 150px 1fr;
    gap: 2rem;
    align-items: center;
}

.gap-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.gap-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.gap-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.gap-card ul li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.gap-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.gap-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-brain {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 30px var(--primary-glow);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--primary-glow);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px var(--primary-glow);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--primary-glow);
    }
}

/* Video Section */
.video-presentation {
    padding: 8rem 0;
}

.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper iframe {
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px var(--primary-glow);
    border: 1px solid var(--glass-border);
    max-width: 100%;
}

/* Services */
.services {
    padding: 8rem 0;
}

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

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(138, 79, 255, 0.08);
    border-color: var(--primary);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tech Stack */
.tech-stack {
    padding: 6rem 0;
    overflow: hidden;
}

.tech-stack h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stack-marquee {
    display: flex;
    white-space: nowrap;
}

.stack-track {
    display: flex;
    gap: 4rem;
    animation: marquee 20s linear infinite;
}

.stack-track span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    transition: color 0.3s;
}

.stack-track span:hover {
    color: var(--primary);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Case Study */
.case-study {
    padding: 8rem 0;
}

.case-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(30, 10, 60, 0.4), rgba(10, 5, 20, 0.4));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
    align-items: center;
}

.case-info h2 {
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem;
}

.case-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.case-stats {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.case-stats li {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.case-stats li strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-sora);
}

.case-visual {
    background: var(--glass);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.phone-mockup {
    width: 250px;
    height: 350px;
    background: #111;
    border: 6px solid #222;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-bubble {
    background: var(--primary);
    padding: 10px 15px;
    border-radius: 15px 15px 2px 15px;
    font-size: 0.8rem;
    align-self: flex-end;
}

.chat-bubble.left {
    background: #333;
    border-radius: 15px 15px 15px 2px;
    align-self: flex-start;
}

/* Booking */
.booking {
    padding: 8rem 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 32px;
}

.booking-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.calendly-placeholder {
    background: rgba(0, 0, 0, 0.2);
    border: 2px dashed var(--glass-border);
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
}

.calendly-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* FAQ */
.faq {
    padding: 8rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: #05020a;
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-main);
    font-size: 1.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Wow Innovations Section */
.footer-innovations {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--glass-border);
}

.footer-innovations h4 {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.footer-innovations h4 span {
    color: var(--text-main);
}

.innovations-socials {
    display: flex;
    gap: 1.5rem;
}

.innovations-socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.innovations-socials a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

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

    .gap-visual {
        display: none;
    }

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

    .case-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

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

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

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

/* Booking Section Refinements */

/* Booking Section Refinements */
.booking-steps {
    list-style: none;
    margin-top: 2rem;
}

.booking-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.booking-steps li i {
    font-size: 1.5rem;
    color: var(--primary);
}

.booking-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-instruction {
    padding: 3rem;
    border: 2px dashed var(--glass-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.cta-instruction i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-group label .required {
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-family: var(--font-inter);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(138, 79, 255, 0.2);
}

.error-msg {
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group.has-error .error-msg {
    display: block;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--accent);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem;
    margin-top: 1rem;
    border: none;
}

.success-message {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease-in-out;
}

.success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}