/* Vistara Presentation Styles - Dark Minimalist */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #1a1a1a;
    /* Matches Login Page Background */
    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    /* Light Gray for description */
    --gold: #d4af37;
    /* Approximate Gold for potential accents */
    --font-heading: 'Poppins', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* Fix for 3DVista "White Flash" - Ensure canvas is transparent until body loads */
html {
    background-color: transparent !important;
}

/* Global Reset ensures padding doesn't add to width */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-heading);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* TRANSPARENT MODE (Controlled by ?transparent=true) */
body.transparent-mode {
    background: transparent !important;
}

/* Texture Overlay (Subtle) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* --- NAVBAR (Sticky) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

/* Blur on scroll (can be triggered by JS, but subtle gradient default works too) */
.navbar.scrolled {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 32px;
    width: auto;
}

.nav-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
}

/* --- HERO SECTION --- */
/* Changed to 100vh for One-Page feel */
.hero-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.main-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Ensure text centering */
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: var(--text-white);
}

.tagline-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.description-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 0 30px 0; /* Align left to match headers */
    font-weight: 400;
}

/* CTA Button (Now in Nav mainly, but kept class) */
.btn-launch {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-launch:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-gray);
    border-radius: 12px;
    position: relative;
    margin-bottom: 8px;
}

.mouse-icon::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--text-gray);
    border-radius: 50%;
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-5px);
    }

    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* --- VALUE TRIO SECTION (NEW) --- */
.value-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    position: relative;
    z-index: 10;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.value-item {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: 0.3s;
}

.value-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.value-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    /* Subtle gold background */
    color: var(--gold);
    margin-bottom: 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-title {
    font-size: 1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.value-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}


/* --- PROCESS SECTION (TIMELINE) --- */
.process-section {
    padding: 100px 20px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* The Vertical Line */
.timeline-container {
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(212, 175, 55, 0) 0%,
            rgba(212, 175, 55, 0.5) 10%,
            rgba(212, 175, 55, 0.5) 90%,
            rgba(212, 175, 55, 0) 100%);
    z-index: 1;
}

.timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    /* Optional: Fade in on scroll logic would go here via JS class toggling */
}

/* Center Node */
.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.timeline-step.even {
    flex-direction: row-reverse;
}

.step-content {
    width: 42%;
    padding: 20px;
    text-align: right;
}

.timeline-step.even .step-content {
    text-align: left;
}

.step-number {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 4rem;
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 10px;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.step-visual {
    width: 42%;
    position: relative;
}

/* The Screen placeholder */
.screen-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
    transition: 0.3s;
}

.screen-placeholder:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

/* Real Images in Timeline */
.step-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    display: block;
    /* Removes bottom space */
}

.step-img:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Footer (Updated position) */
footer {
    padding: 50px 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .value-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .navbar {
        padding: 15px 20px;
    }

    .navbar .btn-demo[href="#demo"] {
        display: none !important;
    }

    .timeline-container::before {
        left: 20px;
        /* Line moves to left */
    }

    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 50px;
        /* Space for line */
        margin-bottom: 60px;
    }

    .timeline-step.even {
        flex-direction: column;
    }

    .timeline-node {
        left: -30px;
        /* Align with line (20px absolute - 50px margin) */
    }

    .step-content,
    .step-visual {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .step-content {
        order: 1;
        margin-bottom: 20px;
    }

    .timeline-step.even .step-content {
        text-align: left;
    }

    .step-visual {
        order: 2;
    }
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    border-color: var(--gold);
    background: rgba(26, 26, 26, 0.95);
    transform: translateY(-3px);
}

/* --- GLASS LIGHTBOX --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    /* Deep charcoal overlay */
    backdrop-filter: blur(15px);
    /* Heavy blur for focus */
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    /* Removed padding: 20px; to let flex center perfectly without width addition */
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-wrapper {
    position: relative;
    /* Use fit-content to shrink wrap the image exactly */
    width: fit-content;
    height: fit-content;
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    /* Simpler than flex for this wrapping */
    line-height: 0;
    /* Kill space */
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.lightbox-overlay.active .lightbox-wrapper {
    transform: scale(1);
}

.lightbox-content {
    /* Image drives the size, but constrained by viewport */
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
    display: block;
}

.lightbox-overlay.active .lightbox-content {
    /* Removed transform from here, handling on wrapper now */
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: rotate(90deg);
    border-color: var(--gold);
}

/* --- SCALE / MODEL SECTION --- */
.scale-section {
    padding: 100px 20px;
    background: #1a1a1a;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separator */
}

.scale-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.scale-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.scale-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scale-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    margin-bottom: 25px;
}

.scale-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.scale-metric {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.scale-desc {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-container {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* --- NAV BUTTONS & CTAs --- */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-demo {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-demo:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* --- HERO BUTTONS --- */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.hero-actions .btn-launch {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
    padding: 12px 32px;
    font-size: 0.85rem;
}

.hero-actions .btn-launch:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.hero-actions .btn-demo {
    padding: 12px 32px;
    font-size: 0.85rem;
}

/* --- PRICING GRID --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.04);
    transform: scale(1.03);
}

.pricing-card.popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 12px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.pricing-tier {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-white);
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
    display: flex;
    align-items: baseline;
}

.pricing-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
}

.pricing-card .btn-pricing {
    width: 100%;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.pricing-card .btn-pricing:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card.popular .btn-pricing {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.pricing-card.popular .btn-pricing:hover {
    background: transparent;
    color: var(--gold);
}

/* --- BOOKING & CONTACT LAYOUT --- */
.booking-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.booking-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

@media (max-width: 950px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
}

.calendly-wrapper {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    font-weight: 500;
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--bg-dark);
    padding: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    margin-top: 10px;
}

.btn-submit:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-success-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.form-success-overlay.active {
    display: flex;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.success-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- BETA STYLING --- */
.beta-badge {
    font-size: 0.55rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2;
}

.hero-pretitle {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-weight: 600;
    opacity: 0.8;
}

/* --- HERO RE-LAYOUT (SIDE-BY-SIDE) --- */
.hero-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Expand video column size */
    gap: 50px;
    align-items: center;
    max-width: 1300px; /* Wider content wrapper */
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    z-index: 10;
}

@media (max-width: 950px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }
    .main-content {
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto;
    }
}

.main-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.hero-video-wrapper {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding: 20px;
}

.hero-video-placeholder svg {
    margin-bottom: 15px;
    color: var(--gold);
    opacity: 0.8;
}

.hero-video-placeholder span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
}

.hero-video-placeholder p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 5px 0 0 0;
}

/* --- STATEMENT SECTION --- */
.statement-section {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(26,26,26,0) 0%, rgba(0,0,0,0.3) 100%);
}

.statement-text {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.5;
    color: var(--text-white);
    font-weight: 500;
}

.statement-text span {
    background: linear-gradient(90deg, #ffffff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .statement-text {
        font-size: 1.6rem;
    }
}

/* --- PAINKILLER SECTION --- */
.painkiller-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.painkiller-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 850px) {
    .painkiller-grid {
        grid-template-columns: 1fr;
    }
}

.painkiller-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.painkiller-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.painkiller-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.painkiller-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-white);
    margin: 0;
}

.painkiller-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.painkiller-badge.challenge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.painkiller-badge.cure {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.painkiller-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 600px) {
    .painkiller-body {
        grid-template-columns: 1fr;
    }
}

.painkiller-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.painkiller-col h4 {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 600;
}

.painkiller-col p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.painkiller-col.cure-col p {
    color: var(--text-white);
}

.painkiller-col.cure-col h4 {
    color: var(--gold);
}

/* --- DUAL DASHBOARDS SECTION --- */
.dashboards-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .dashboards-container {
        grid-template-columns: 1fr;
    }
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.dashboard-card.agency::before {
    background: var(--gold);
}

.dashboard-card.client::before {
    background: var(--text-gray);
}

.dashboard-card:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-header-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.dashboard-card.client .dashboard-header-text {
    color: var(--text-gray);
}

.dashboard-card-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    color: var(--text-white);
}

.dashboard-card-desc {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.dashboard-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.dashboard-feature-icon {
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 2px;
}

.dashboard-feature-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-feature-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
}

.dashboard-feature-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.45;
}

/* --- FOOTER --- */
.main-footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px 30px 40px;
    font-family: var(--font-heading);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 28px;
    width: auto;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.footer-col h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    color: var(--text-gray);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link:hover {
    color: var(--gold);
}

/* --- VISTARA ADVANTAGE OVERLAY MODAL --- */
.painkiller-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Darker blurred backdrop */
    backdrop-filter: blur(12px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center; /* Center modal card on screen */
    padding: 20px;
}

.painkiller-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.painkiller-overlay-content {
    background: linear-gradient(135deg, #151515 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    width: 90%;
    max-width: 1100px;
    max-height: 85vh; /* 10% vertical/horizontal margin buffer */
    overflow-y: auto; /* Local vertical scrollbar */
    padding: 40px;
    position: relative;
}

.painkiller-overlay-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    line-height: 1;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 2100;
    user-select: none;
}

.painkiller-overlay-close:hover {
    color: var(--text-white);
}

/* --- ADVANTAGE COMPARISON TABLE --- */
.advantage-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 0.92rem;
}

.advantage-table th {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Header Columns */
.advantage-table th:first-child {
    color: #ff6b6b; /* Crimson for Challenges */
    background: rgba(255, 107, 107, 0.03);
}

.advantage-table th:last-child {
    color: #4ecdc4; /* Emerald for Solutions */
    background: rgba(78, 205, 196, 0.03);
}

.advantage-table td {
    padding: 22px 20px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.6;
}

.advantage-table tr:last-child td {
    border-bottom: none;
}

.advantage-table tr {
    transition: background-color 0.2s ease;
}

.advantage-table tr:hover {
    background-color: rgba(255, 255, 255, 0.015);
}

.pain-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.cure-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 6px;
}

.advantage-table p {
    color: var(--text-gray);
    margin: 0;
}

/* Mobile Responsive Stacking */
@media (max-width: 768px) {
    .advantage-table, 
    .advantage-table tbody, 
    .advantage-table tr, 
    .advantage-table td, 
    .advantage-table th {
        display: block;
        width: 100%;
    }
    
    .advantage-table th {
        display: none; /* Hide header row on stacked mobile view */
    }
    
    .advantage-table tr {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 0;
    }
    
    .advantage-table tr:last-child {
        border-bottom: none;
    }
    
    .advantage-table td {
        padding: 12px 0;
        border-bottom: none;
    }
    
    .pain-label::before {
        content: "Challenge: ";
        color: #ff6b6b;
        font-weight: bold;
    }
    
    .cure-label::before {
        content: "Solution: ";
        color: #4ecdc4;
        font-weight: bold;
    }
}

/* --- BROWSER MOCKUP FRAME --- */
.browser-mockup {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.browser-header {
    background: #252525;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 20px;
    flex-shrink: 0;
}

.browser-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dots .dot.red { background: #ff5f56; }
.browser-dots .dot.yellow { background: #ffbd2e; }
.browser-dots .dot.green { background: #27c93f; }

.browser-address {
    background: #181818;
    color: var(--text-gray);
    font-size: 0.72rem;
    padding: 4px 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-grow: 1;
    max-width: 320px;
    text-align: center;
    font-family: var(--font-heading);
}

.browser-content {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9; /* Set strict 16:9 ratio to prevent cropping */
}

.browser-content img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Full image visible, no crop */
    transition: opacity 0.2s ease;
}

/* Feature Item Interaction */
/* Unified Accordion Collapsible Logic (Desktop and Mobile) */
.dashboard-features-list .dashboard-feature-item {
    cursor: pointer;
    border: 1px solid transparent;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.dashboard-features-list .dashboard-feature-item:hover {
    background: rgba(255, 255, 255, 0.015);
    border-color: rgba(255, 255, 255, 0.04);
}

.dashboard-features-list .dashboard-feature-item.active {
    background: rgba(212, 175, 55, 0.04);
    border-color: rgba(212, 175, 55, 0.25);
}

.dashboard-features-list .dashboard-feature-item.active .dashboard-feature-icon {
    color: var(--gold);
}

.dashboard-feature-icon svg {
    stroke: currentColor;
    transition: color 0.3s ease;
}

.dashboard-features-list .dashboard-feature-item .dashboard-feature-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.dashboard-features-list .dashboard-feature-item.active .dashboard-feature-description {
    max-height: 800px; /* High enough to contain desc and screenshot */
    margin-top: 10px;
}

/* 16:9 Screenshot Wrapper - visible inside active item on both viewports */
.mobile-screenshot-wrapper {
    display: block;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    aspect-ratio: 16/9; /* Force 16:9 scaling */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    background: #181818;
    width: 100%;
    cursor: zoom-in; /* Zoom indication on hover */
}

.mobile-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Full screenshot visible, no cropping */
    display: block;
}

/* Mobile responsive styling adjustments */
@media (max-width: 950px) {
    .dashboard-features-list .dashboard-feature-item {
        border: 1px solid rgba(255, 255, 255, 0.03);
        background: rgba(255, 255, 255, 0.005);
        margin-bottom: 12px;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
    }
    
    .dashboard-features-list .dashboard-feature-item.active {
        background: rgba(212, 175, 55, 0.02);
        border-color: rgba(212, 175, 55, 0.15);
    }
}

/* --- COOKIE CONSENT TOAST BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -180px; /* Hidden offscreen by default */
    right: 24px;
    width: calc(100% - 48px);
    max-width: 420px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    z-index: 2500;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-banner.visible {
    bottom: 24px;
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.cookie-btn {
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-link {
    font-size: 0.82rem;
    color: var(--text-gray);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: var(--text-white);
}

/* --- FOOTER LEGAL LINKS --- */
.footer-legal-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 0.82rem;
}

.footer-legal-links a {
    color: var(--text-gray);
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--gold);
}

@media (max-width: 480px) {
    .cookie-banner {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: -200px;
    }
    .cookie-banner.visible {
        bottom: 12px;
    }
    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}



