/* ==========================================
   CSS Reset & Variables
   ========================================== */
:root {
    /* Color Palette */
    --bg-color: #050505;
    --surface-color: #111111;
    --surface-glass: rgba(17, 17, 17, 0.68);
    --surface-glass-border: rgba(255, 255, 255, 0.08);
    --secondary-btn-bg-color: transparent;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    
    --primary-color: #0759ee;
    --primary-gradient: #0759ee;
    --secondary-color: #ff7a00;
    --secondary-gradient: #ff7a00;
    --accent-glow: radial-gradient(circle, rgba(7, 89, 238, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
    
    --success-color: #22c55e;
    --danger-color: #ef4444;
    
    /* Layout Variables */
    --container-width: 1200px;
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --border-radius-sm: 6px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="light"] {
    --bg-color: #f6f9ff;
    --surface-color: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.75);
    --surface-glass-border: rgba(0, 0, 0, 0.08);
    --secondary-btn-bg-color: #000;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --primary-gradient: #0759ee;
    --secondary-gradient: #ff7a00;
    --accent-glow: radial-gradient(circle, rgba(7, 89, 238, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

html[data-theme="light"] .glow-orb {
    opacity: 0.15;
}

html[data-theme="light"] .theme-switcher-btn {
    background: rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .theme-switcher-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .nav-item:hover,
html[data-theme="light"] .btn-text:hover {
    color: #000;
}

/* Keep light surfaces legible while the footer remains intentionally dark. */
html[data-theme="light"] .main-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .nav-item,
html[data-theme="light"] .btn-text {
    color: #1e293b;
}

html[data-theme="light"] .nav-item:hover {
    color: #0759ee;
}

html[data-theme="light"] .btn-secondary {
    background: #0759ee;
    border-color: #0759ee;
    color: #fff;
}

html[data-theme="light"] .btn-secondary:hover {
    background: #064aca;
    border-color: #064aca;
}

html[data-theme="light"] .theme-switcher-btn {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

html[data-theme="light"] .hamburger-menu span {
    background: #0f172a;
}

html[data-theme="light"] .faq-question {
    color: #0f172a;
}

html[data-theme="light"] .faq-answer p {
    color: #334155;
}

html[data-theme="light"] .main-footer {
    color: #fff;
}

html[data-theme="light"] .main-footer .logo-icon-dark {
    display: block !important;
}

html[data-theme="light"] .main-footer .logo-icon-light {
    display: none !important;
}

html[data-theme="light"] .main-footer .logo-text,
html[data-theme="light"] .main-footer .footer-description,
html[data-theme="light"] .main-footer .footer-col h4,
html[data-theme="light"] .main-footer .footer-col a,
html[data-theme="light"] .main-footer .footer-bottom,
html[data-theme="light"] .main-footer .footer-socials a {
    color: #fff;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--surface-glass-border);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ==========================================
   Utility Classes & Layout
   ========================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.gradient-text {
    background: none;
    color: var(--primary-bright);
    -webkit-text-fill-color: currentColor;
}

.glass-panel {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--border-radius-lg);
}

.hidden {
    display: none !important;
}

.muted {
    opacity: 0.5;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    gap: 8px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 20px rgba(7, 89, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(7, 89, 238, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid var(--surface-glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--secondary-btn-bg-color);
    color: #fff;
    border: 1px solid var(--surface-glass-border);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(7, 89, 238, 0.08);
}

.btn-text {
    background: transparent;
    color: var(--text-secondary);
    padding: 8px 16px;
}

.btn-text:hover {
    color: #fff;
}

/* Section Header styling */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    background: rgba(7, 89, 238, 0.1);
    border: 1px solid rgba(7, 89, 238, 0.3);
    color: #ff7a00;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Header / Navigation
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(8, 7, 17, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-glass-border);
    z-index: 1000;
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.5rem;
    background: none;
    color: var(--primary-bright);
    -webkit-text-fill-color: currentColor;
}

.logo-icon img {
    display: block;
    height: 30px;
    object-fit: contain;
    width: 30px;
}

.logo-icon-light { display: none !important; }
html[data-theme="light"] .logo-icon-dark { display: none !important; }
html[data-theme="light"] .logo-icon-light { display: block !important; }

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-item:hover {
    color: #fff;
}

.highlight-item {
    color: var(--secondary-color);
    font-weight: 600;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-switcher-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--surface-glass-border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    margin-left: 15px;
}

.theme-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.orb-1 {
    top: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: rgba(7, 89, 238, 0.4);
}

.orb-2 {
    bottom: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(0, 223, 216, 0.3);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge-container {
    margin-bottom: 25px;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.promo-badge i {
    color: #ff7a00;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid var(--surface-glass-border);
    padding-top: 30px;
    display: inline-flex;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -12px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: left;
}

.trust-text strong {
    color: #fff;
}

/* ==========================================
   Trust Logos / Marquee
   ========================================== */
.trust-logos-section {
    padding: 40px 0;
    background: rgba(15, 13, 31, 0.2);
    border-top: 1px solid var(--surface-glass-border);
    border-bottom: 1px solid var(--surface-glass-border);
}

.section-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 25px;
}

.logo-marquee {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.logo-marquee:hover {
    opacity: 0.9;
}

.logo-item {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.logo-item i {
    font-size: 1.5rem;
}

/* ==========================================
   Interactive AI Playground
   ========================================== */
.playground-section {
    padding: 100px 0;
    position: relative;
}

.playground-container {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 40px;
    padding: 40px;
    overflow: hidden;
}

.playground-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pg-form-group {
    margin-bottom: 30px;
}

.pg-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.pg-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--surface-glass-border);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.pg-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(7, 89, 238, 0.25);
}

.niche-selector {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.niche-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--border-radius-md);
    padding: 12px 18px;
    color: var(--text-secondary);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.niche-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    transform: translateX(4px);
}

.niche-btn.active {
    background: rgba(7, 89, 238, 0.1);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(7, 89, 238, 0.15);
}

.niche-icon {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.niche-btn.active .niche-icon {
    color: #ff7a00;
}

.niche-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
}

.niche-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.btn-generate {
    margin-top: 10px;
}

/* Playground Right (Mock Screens) */
.playground-right {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--border-radius-md);
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Idle State */
.preview-idle-state {
    text-align: center;
    max-width: 320px;
    padding: 30px;
}

.idle-illustration {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px auto;
}

.central-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    animation: pulseGlow 3s infinite alternate;
}

.floating-box-1, .floating-box-2, .floating-box-3 {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--surface-color);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.floating-box-1 {
    top: 0;
    left: 0;
    animation: float1 4s infinite alternate;
}
.floating-box-2 {
    bottom: 5px;
    right: 0;
    animation: float2 5s infinite alternate;
}
.floating-box-3 {
    top: 20px;
    right: -10px;
    animation: float3 4.5s infinite alternate;
}

.preview-idle-state h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.preview-idle-state p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Loading State */
.preview-loading-state {
    text-align: center;
    width: 80%;
    max-width: 400px;
    padding: 20px;
}

.loading-spinner-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
}

.loading-ring {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(7, 89, 238, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

.loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.progress-bar-outer {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 20px auto;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    width: 0%;
    background: var(--primary-gradient);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.loading-steps {
    list-style: none;
    text-align: left;
    margin-top: 25px;
    font-size: 0.85rem;
}

.step-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.step-item i {
    width: 16px;
    font-size: 0.9rem;
}

.step-item.muted {
    color: var(--text-muted);
}

.step-item.done {
    color: var(--success-color);
}

/* Mockup State Browser */
.preview-mockup-state {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 12px;
}

.browser-header {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--surface-glass-border);
    border-bottom: none;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.browser-address {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--border-radius-sm);
    padding: 4px 16px;
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--text-secondary);
    text-align: center;
    flex-grow: 1;
    max-width: 400px;
}

.browser-actions {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.browser-content {
    background: #0d0c15;
    border: 1px solid var(--surface-glass-border);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    flex-grow: 1;
    min-height: 350px;
    overflow-y: auto;
    position: relative;
}

.preview-mock-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7, 89, 238, 0.08);
    border: 1px solid rgba(7, 89, 238, 0.25);
    border-radius: var(--border-radius-md);
    padding: 12px 20px;
    margin-top: 15px;
}

.cta-message {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-message i {
    color: var(--success-color);
}

/* Mock Site Inside Styles */
.mock-site-content {
    font-size: 14px;
    padding: 15px;
}

.mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.mock-logo {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.mock-nav-links {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    gap: 12px;
}

.mock-hero {
    text-align: center;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
}

.mock-hero h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.mock-hero p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.mock-btn-buy {
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.mock-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mock-prod-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 10px;
}

.mock-prod-img {
    height: 90px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    margin-bottom: 8px;
    background-size: cover;
    background-position: center;
}

/* Using CSS backgrounds for mockups to load instantly */
.mock-img-1 { background-image: linear-gradient(135deg, #3a1c71, #d76d77); }
.mock-img-2 { background-image: linear-gradient(135deg, #1f4068, #162447); }
.mock-img-3 { background-image: linear-gradient(135deg, #11998e, #38ef7d); }

.mock-prod-card h5 {
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.mock-prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.mock-price {
    font-weight: 700;
    color: var(--secondary-color);
}

.mock-badge-cart {
    background: rgba(255, 255, 255, 0.08);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Hotel Preview */
.mock-hero-hotel {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), linear-gradient(135deg, #0f2027, #203a43);
    padding: 30px 15px;
    text-align: center;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
}

.mock-hero-hotel h4 { font-size: 1.1rem; margin-bottom: 5px;}
.mock-hero-hotel p { font-size: 0.75rem; color: var(--text-secondary); }

.mock-hotel-booking-bar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    margin-bottom: 20px;
    font-size: 0.7rem;
}

.booking-input span {
    display: block;
}
.booking-input span:first-child {
    font-weight: 600;
    color: var(--text-muted);
}

.mock-btn-book {
    background: var(--secondary-color);
    border: none;
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.room-row {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 10px;
}

.room-img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.room-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-details h5 {
    font-size: 0.8rem;
}

.room-details p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 4px 0;
}

.room-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-btn-mini-book {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

/* LMS Preview */
.mock-hero-lms {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 25px 15px;
    text-align: center;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
}
.mock-hero-lms h4 { font-size: 1.1rem; margin-bottom: 5px; }
.mock-hero-lms p { font-size: 0.75rem; color: var(--text-secondary); }

.mock-courses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.course-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 3px;
    align-self: flex-start;
    margin-bottom: 6px;
}

.course-card h5 {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.course-card p {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-btn-enroll {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--surface-glass-border);
    color: #fff;
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* vCard Preview */
.vcard-mobile-frame {
    max-width: 240px;
    margin: 0 auto;
    background: #141324;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 15px;
}

.vcard-banner {
    height: 70px;
    background: var(--primary-gradient);
}

.vcard-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    margin: -30px auto 10px auto;
    border: 3px solid #141324;
}

.vcard-profile-info {
    text-align: center;
    padding: 0 10px;
}

.vcard-profile-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.vcard-profile-info p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.vcard-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.vcard-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.btn-vcard-save, .btn-vcard-share {
    flex-grow: 1;
    font-family: inherit;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 6px 0;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.btn-vcard-save {
    background: var(--secondary-color);
    color: #000;
}

.btn-vcard-share {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vcard-services {
    padding: 0 15px;
}

.vcard-srv-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 0.65rem;
}

.vcard-srv-item i {
    color: var(--secondary-color);
}

.vcard-srv-item h6 {
    font-size: 0.7rem;
}

.vcard-srv-item p {
    color: var(--text-muted);
}

/* Donation Preview */
.mock-hero-dn {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    padding: 25px 15px;
    text-align: center;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
}
.mock-hero-dn h4 { font-size: 1.1rem; margin-bottom: 5px; }
.mock-hero-dn p { font-size: 0.75rem; color: #fff; }

.donation-progress-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 15px;
}

.dn-target-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.dn-progress-outer {
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.dn-progress-inner {
    height: 100%;
    background: var(--success-color);
    border-radius: 10px;
}

.dn-actions {
    text-align: center;
}

.mock-btn-donate {
    background: var(--success-color);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* ==========================================
   Core Features Section
   ========================================== */
.features-section {
    padding: 100px 0;
    position: relative;
    background: rgba(15, 13, 31, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px;
    transition: all var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(7, 89, 238, 0.15);
}

.feat-icon {
    font-size: 2.2rem;
    background: none;
    color: var(--primary-bright);
    -webkit-text-fill-color: currentColor;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

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

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works-section {
    padding: 100px 0;
}

.how-it-works-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
}

.flow-step {
    flex-grow: 1;
    max-width: 320px;
    position: relative;
}

.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: none;
    color: rgba(255, 255, 255, 0.28);
    -webkit-text-fill-color: currentColor;
    margin-bottom: 15px;
}

.flow-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.flow-connector {
    color: var(--text-muted);
    font-size: 1.5rem;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing-section {
    padding: 100px 0;
    background: rgba(15, 13, 31, 0.15);
}

.pricing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--surface-glass-border);
    padding: 6px 14px;
    border-radius: 30px;
    margin-top: 30px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.toggle-label.active {
    color: #fff;
}

html[data-theme="light"] .toggle-label,
html[data-theme="light"] .toggle-label.active {
    color: #000;
}

.pricing-toggle-btn {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--primary-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.toggle-dot {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: var(--transition-smooth);
}

.pricing-toggle-btn.yearly .toggle-dot {
    left: 27px;
}

.discount-badge {
    background: var(--secondary-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 4px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
}

.pricing-card {
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Enterprise is a dedicated, full-row consultation offer rather than a fifth narrow tier. */
.enterprise-plan {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(360px, 1.6fr) minmax(180px, 0.55fr);
    align-items: center;
    gap: 32px;
    padding: 36px 40px;
}

.enterprise-plan .plan-header p,
.enterprise-plan .plan-features {
    margin-bottom: 0;
}

.enterprise-plan .plan-features {
    columns: 2;
    column-gap: 36px;
}

.enterprise-plan .plan-features li {
    break-inside: avoid;
}

.enterprise-plan .plan-action {
    min-width: 180px;
}

.featured-plan {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(7, 89, 238, 0.2);
    transform: scale(1.03);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.plan-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.price-currency {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-val {
    font-family: 'Outfit', sans-serif;
    font-size: 35px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.price-prefix {
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 6px;
    color: var(--text-secondary);
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-note {
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    font-size: 1.1rem;
}

.plan-features li i.fa-circle-check {
    color: var(--secondary-color);
}

.plan-features li i.fa-circle-xmark.disabled {
    color: var(--text-muted);
    opacity: 0.4;
}

.plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 40px;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.user-meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-meta h4 {
    font-size: 1.05rem;
}

.user-meta p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    padding: 100px 0;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--surface-glass-border);
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ==========================================
   Final CTA Section
   ========================================== */
.final-cta-section {
    position: relative;
    padding: 100px 0;
    background: rgba(15, 13, 31, 0.2);
    border-top: 1px solid var(--surface-glass-border);
    overflow: hidden;
}

.orb-cta {
    bottom: -150px;
    left: calc(50% - 250px);
    width: 500px;
    height: 300px;
    background: rgba(7, 89, 238, 0.25);
    filter: blur(120px);
}

.cta-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: 110px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}

.contact-intro h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin: 14px 0 18px;
}

.contact-intro > p {
    color: var(--text-secondary);
    max-width: 520px;
}

.contact-note {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
    font-size: 0.9rem;
}

.contact-note i { color: var(--secondary-color); }

.contact-form { padding: 32px; }
.contact-form label { display: block; color: var(--text-primary); font-size: 0.86rem; font-weight: 600; }
.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--border-radius-sm);
    font: inherit;
}
.contact-form textarea { resize: vertical; min-height: 126px; }
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--primary-color); outline-offset: 1px; }
.contact-form > label + label { margin-top: 18px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.contact-captcha { display: flex; align-items: end; gap: 10px; margin: 18px 0; }
.contact-captcha label { flex: 1; }
.captcha-refresh { width: 44px; height: 44px; border: 1px solid var(--surface-glass-border); border-radius: var(--border-radius-sm); color: var(--text-primary); background: rgba(255, 255, 255, 0.05); cursor: pointer; }
.captcha-refresh:hover { color: #fff; background: var(--primary-color); }
.contact-honeypot { position: absolute; left: -9999px; }
.contact-status { min-height: 1.5em; margin-top: 14px; font-size: 0.9rem; color: var(--text-secondary); }
.contact-status.is-success { color: var(--success-color); }
.contact-status.is-error { color: var(--danger-color); }

/* ==========================================
   Footer
   ========================================== */
.main-footer {
    border-top: 1px solid var(--surface-glass-border);
    padding: 80px 0 30px 0;
    background: #04030a;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-left .logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--surface-glass-border);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--surface-glass-border);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   Legal Pages
   ========================================== */
.legal-page { padding: calc(var(--header-height) + 76px) 0 96px; min-height: 70vh; }
.legal-hero { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.legal-eyebrow { color: var(--primary-color); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.legal-hero h1 { margin: 12px 0; font-size: clamp(2.35rem, 5vw, 4rem); }
.legal-hero p { color: var(--text-secondary); }
.legal-content { max-width: 860px; margin: 0 auto; padding: clamp(26px, 5vw, 56px); }
.legal-content section + section { margin-top: 34px; }
.legal-content h2 { font-size: 1.35rem; margin-bottom: 12px; }
.legal-content p, .legal-content li { color: var(--text-secondary); }
.legal-content p + p, .legal-content p + ul { margin-top: 14px; }
.legal-content ul { padding-left: 22px; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { color: var(--primary-bright, var(--primary-color)); text-decoration: underline; }

/* ==========================================
   Animations Keyframes
   ========================================== */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px rgba(7, 89, 238, 0.4);
    }
    100% {
        box-shadow: 0 0 45px rgba(7, 89, 238, 0.8);
    }
}

@keyframes float1 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes float2 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(-8deg); }
}

@keyframes float3 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px) translateX(6px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   Responsive Design Media Queries
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .playground-container {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 60px auto 0 auto;
    }
    .featured-plan {
        transform: scale(1);
    }
    .enterprise-plan {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .enterprise-plan .plan-features {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Hamburguer handles mobile menu */
    }
    .hamburger-menu {
        display: flex;
    }
    .header-ctas {
        display: none;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 80%;
        max-width: 320px;
    }
    .how-it-works-flow {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .flow-connector {
        transform: rotate(90deg);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-right {
        grid-template-columns: 1fr 1fr;
    }
    .contact-section { padding: 80px 0; }
    .contact-container { grid-template-columns: 1fr; gap: 36px; }
    .contact-form-grid { grid-template-columns: 1fr; }
    
    /* Mobile Menu Activated Class */
    .nav-menu.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--bg-color);
        border-bottom: 1px solid var(--surface-glass-border);
        padding: 30px;
        gap: 20px;
        z-index: 999;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .playground-container {
        padding: 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-right {
        grid-template-columns: 1fr;
    }
    .contact-form { padding: 22px; }
}
