/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3b82f6;
    --primary-rgb: 59, 130, 246;
    --accent: #8b5cf6;
 /* Purple */
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --bg-gray: #1d1d1de0;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

html,
body,
#app,
main {
    background-color: transparent !important;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Background Elements */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: #050505;
}

.glow-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 90%);
    filter: blur(120px);
    animation: pulse 10s infinite alternate;
}

.glow-2 {
    position: absolute;
    top: 40%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, transparent 90%);
    filter: blur(120px);
    animation: pulse 12s infinite alternate-reverse;
}

.glow-3 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 90%);
    filter: blur(100px);
}

.glow-4 {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 90%);
    filter: blur(80px);
    opacity: 0.6;
}

.glow-5 {
    position: absolute;
    bottom: 30%;
    left: 20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 90%);
    filter: blur(100px);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .glow-1, .glow-2, .glow-3, .glow-4, .glow-5 {
        width: 120vw;
        height: 120vw;
        filter: blur(80px);
    }

    .glow-1 {
        top: -20%;
        right: -20%;
    }

    .glow-2 {
        top: 30%;
        left: -30%;
    }

    .glow-3 {
        bottom: -20%;
        right: -20%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    border-radius: 14px;
    font-size: 1.15rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 0 40px -5px rgba(var(--primary-rgb), 0.6);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 60px -5px rgba(var(--primary-rgb), 0.8);
    background: #60a5fa;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0 2rem;
}

.mw-text {
    max-width: 700px;
}

/* Logo */
.logo {
    width: 50px;
    height: 50px;
}

/* Nav */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem 0 2rem !important;
}

/* Flex */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero Section */
.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-video {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: var(--bg-card);
    position: relative;
}

.hero-video video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Typography */
h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

span {
    color: inherit;
    font-weight: 900;
}

span.grad {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.txt-center {
    text-align: center;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.disclaimer {
    font-size: .7em;
    color: var(--text-muted)
}

.txt-muted {
    color: var(--text-muted)
}

.txt-white {
    color: #fff;
}

/* Batch */
.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge span {
    color: white !important;
}

/* Box */
.box {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid transparent;
    background-image: linear-gradient(#0a0a0a, #0a0a0a), 
                      linear-gradient(180deg, rgba(var(--primary-rgb), 0.3) 0%, transparent 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    padding: clamp(1.5rem, 8vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

.box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.box > * {
    position: relative;
    z-index: 2;
    margin: 0;
}

.box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    text-align: center;
    line-height: 1.6;
}

.box p span {
    color: #fff;
}

/* Result section */
.result-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .result-card {
        grid-template-columns: 1fr;
    }
}

.result-card-main {
    padding: clamp(1.5rem, 8vw, 3rem);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 4vw, 2rem);
}

.result-card-side {
    padding: clamp(1.5rem, 8vw, 3rem);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 4vw, 1.5rem)
}

.result-card .client-meta {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.result-card .result-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
}

.result-card .result-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.result-card .result-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.result-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(40px, 3vw, 80px);
    height: clamp(40px, 3vw, 80px);
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.5);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
}

.result-card .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.case-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.case-info-box h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-info-box p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.case-info-box.highlight {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 100%);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.case-info-box.highlight p {
    color: white;
    font-weight: 500;
}

/* Transition CTA */
.transition-cta {
    padding-bottom: 3rem;
    padding-top: 3rem;
    text-align: center;
    background-color: var(--bg-gray);
    position: relative;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    margin-top: 4rem;
}

.transition-cta::before,
.transition-cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.transition-cta::before {
    top: 0;
}

.transition-cta::after {
    bottom: 0;
}

.cta-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Our Process Section */
.process-timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 100px;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 122px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), transparent);
    opacity: 0.2;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -100px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-smooth);
}

.process-step:hover .step-marker {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    flex: 1;
    transition: var(--transition-smooth);
}

.process-step:hover .step-content {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.step-time {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.step-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-timeline {
        padding-left: 0;
    }

    .timeline-line {
        display: none;
    }

    .step-marker {
        position: static;
        margin-bottom: 20px;
    }

    .process-step {
        flex-direction: column;
        gap: 0;
    }

    .process-step:hover .step-content {
        transform: translateY(-5px);
    }
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 4rem auto 0;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.faq-question h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item.active {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: start !important;
}

@media (max-width: 600px) {
    .faq-question {
        padding: 1.25rem;
    }
    .faq-answer {
        padding: 0 1.25rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    .faq-answer p {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
}

.social-links a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
}

.disclaimer-border {
    position: relative; 
    margin: 1rem auto;
}

.disclaimer-border::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-muted), var(--text-muted), transparent);
    bottom: 0;
}


/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.video-modal.open .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        border-radius: 16px;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
}

/* Policy list */
.policy-list {
    display: flex; 
    gap: 25px; 
    justify-content: center
}

@media (max-width: 768px) {
    .policy-list {
        display: flex;
        flex-direction: column;
        gap: 5px;
        justify-content: center;
        align-items: center;
    }
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.legal-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--text-main);
}
.legal-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.legal-content ul {
    list-style: none;
    margin-bottom: 2rem;
}
.legal-content li {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}
.legal-content li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.last-updated {
    font-size: 0.875rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

/* Booked Page Styles */
.success-icon {
    width: 70px;
    height: 70px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.checklist-section {
    margin-top: 6rem;
    width: 100%;
    max-width: 800px;
}

.checklist-section h2 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 800;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.checklist-item {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.checklist-item:hover {
    border-color: rgba(232, 198, 124, 0.3);
    background: rgba(255,255,255,0.02);
}

.item-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: transparent;
    border: 1px solid #e8c67c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #e8c67c;
    font-size: 1.1rem;
}

.item-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.item-text p strong {
    color: var(--text-main);
    font-weight: 700;
}

@media (max-width: 768px) {
    .checklist-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .item-text p {
        font-size: 0.95rem;
    }
}

