/* Exploro AI Design System - Vanilla CSS */

@font-face {
    font-family: 'Roobert TRIAL';
    src: url('fonts/RoobertTRIAL-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert TRIAL';
    src: url('fonts/RoobertTRIAL-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert TRIAL';
    src: url('fonts/RoobertTRIAL-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert TRIAL';
    src: url('fonts/RoobertTRIAL-SemiBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert TRIAL';
    src: url('fonts/RoobertTRIAL-SemiBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Color Palette */
    --bg-color: #1c1c1b;
    --bg-lowest: #0e0e0d;
    --bg-container: #20201f;
    --primary-color: #f19919;
    --primary-glow: rgba(241, 153, 25, 0.2);
    --primary-glow-heavy: rgba(241, 153, 25, 0.45);
    --surface-light: #e7e6e1;
    --muted-slate: #848582;
    --card-bg: rgba(231, 230, 225, 0.04);
    --card-border: rgba(231, 230, 225, 0.1);
    
    /* Layout Constants */
    --container-max: 1280px;
    --gutter: 24px;
    --margin-desktop: 48px;
    --margin-mobile: 20px;
    
    /* Typography */
    --font-family: 'Roobert TRIAL', sans-serif;
}

.px-margin-desktop {
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
}

.px-margin-mobile {
    padding-left: var(--margin-mobile);
    padding-right: var(--margin-mobile);
}

@media (max-width: 1024px) {
    :root {
        --margin-mobile: 20px;
    }

    .px-margin-desktop {
        padding-left: var(--margin-mobile);
        padding-right: var(--margin-mobile);
    }

    .container,
    .blueprints-hero,
    .blueprints-filters-container {
        padding-left: var(--margin-mobile);
        padding-right: var(--margin-mobile);
    }
}

@media (max-width: 480px) {
    :root {
        --margin-mobile: 16px;
    }
}

html {
    scroll-behavior: smooth;
}

#how-it-works,
#ready-made-trips,
#for-agents,
#for-influencers,
#how-it-works-mobile,
#ready-made-trips-mobile,
#for-agents-mobile,
#for-influencers-mobile,
#about-us-mobile,
#why-us-mobile {
    scroll-margin-top: 100px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--surface-light);
    font-family: var(--font-family);
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

button {
    font-family: var(--font-family);
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--margin-desktop);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--margin-mobile);
    }
}

/* Responsive Visibility Utilities */
.desktop-only {
    display: block !important;
}
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

.lg-desktop-only {
    display: block !important;
}
.lg-mobile-only {
    display: none !important;
}

@media (max-width: 1024px) {
    .lg-desktop-only {
        display: none !important;
    }
    .lg-mobile-only {
        display: block !important;
    }
}

/* Background Mesh Animation */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(241, 153, 25, 0.06) 1.5px, transparent 0),
        radial-gradient(circle at 20% 30%, rgba(241, 153, 25, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(241, 153, 25, 0.05) 0%, transparent 40%);
    background-size: 40px 40px, cover, cover;
    pointer-events: none;
    animation: mesh-drift 20s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(1.5%, 1.5%); }
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100;
    background: rgba(28, 28, 27, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--surface-light);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.03em;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-slate);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link.active {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
}

.nav-btn {
    background-color: var(--primary-color);
    color: #1c1c1b;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
}

.nav-btn:hover {
    box-shadow: 0 0 20px var(--primary-glow-heavy);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none !important;
    background: transparent;
    color: var(--surface-light);
    font-size: 28px;
    padding: 4px;
}

select.no-native-arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}

select.no-native-arrow::-ms-expand {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .timeline-scroll {
        max-height: 72vh;
        overflow-y: auto;
        padding-right: 8px;
        scrollbar-width: thin;
    }
}

/* Drawer Menu (Mobile Nav) */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85%;
    background: rgba(32, 32, 31, 0.95);
    backdrop-filter: blur(40px);
    z-index: 160;
    border-right: 1px solid var(--card-border);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--muted-slate);
    font-weight: 500;
    transition: all 0.3s ease;
}

.drawer-link:hover, .drawer-link.active {
    background: rgba(241, 153, 25, 0.08);
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-top-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 64px;
    padding: 0 var(--margin-mobile);
    align-items: center;
    justify-content: space-between;
    background: rgba(28, 28, 27, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}

.site-logo {
    display: block;
    height: 28px;
    width: auto;
    max-width: min(132px, 40vw);
    object-fit: contain;
}

.site-logo-desktop {
    height: 34px;
    max-width: 168px;
}

.drawer .site-logo {
    height: 32px;
    max-width: 148px;
}

.drawer-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--primary-color);
    color: #1c1c1b;
    font-size: 0.9375rem;
    font-weight: 700;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.drawer-login-btn:hover {
    opacity: 0.92;
    transform: scale(1.01);
}

@media (max-width: 1024px) {
    .mobile-top-header.lg-mobile-only {
        display: flex !important;
    }

    #how-it-works-mobile,
    #ready-made-trips-mobile,
    #for-agents-mobile,
    #for-influencers-mobile,
    #about-us-mobile,
    #why-us-mobile,
    #itineraries-mobile {
        scroll-margin-top: 80px;
    }
}

/* Glassmorphic Panels */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-panel.interactive:hover {
    border-color: rgba(241, 153, 25, 0.4);
    box-shadow: 0 0 25px var(--primary-glow);
}

/* Glow Border & Pulsing Rings */
.glow-border {
    position: relative;
}

.glow-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(45deg, transparent, #ffbb6b, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    animation: border-glow-rotate 4s linear infinite;
    pointer-events: none;
}

@keyframes border-glow-rotate {
    0% { filter: hue-rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { filter: hue-rotate(360deg); opacity: 0.3; }
}

.ai-pulse-ring {
    position: relative;
}

.ai-pulse-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--primary-color);
    border-radius: inherit;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 0; }
}

/* Custom Buttons & Inputs */
.btn-primary {
    background-color: var(--primary-color);
    color: #1c1c1b;
    font-weight: 700;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    box-shadow: 0 0 25px var(--primary-glow-heavy);
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--surface-light);
    font-weight: 700;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #1c1c1b;
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
}

.badge-active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(241, 153, 25, 0.08);
    border: 1px solid rgba(241, 153, 25, 0.2);
    margin-bottom: 32px;
}

.badge-active .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.badge-active span {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero h1 {
    font-size: 64px;
    line-height: 72px;
    letter-spacing: -0.04em;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 24px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
        line-height: 40px;
    }
}

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

.hero-desc {
    font-size: 20px;
    line-height: 28px;
    color: var(--muted-slate);
    max-width: 768px;
    margin: 0 auto 64px;
}

/* Search widget */
.search-widget {
    max-width: 800px;
    margin: 0 auto;
    padding: 8px;
}

.search-form {
    background: rgba(32, 32, 31, 0.8);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.form-group.small {
    flex: 0 0 160px;
    min-width: 120px;
}

@media (max-width: 600px) {
    .form-group {
        flex: 1 0 100%;
    }
    .form-group.small {
        flex: 1 0 100%;
    }
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-container {
    position: relative;
}

.input-container span {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-slate);
}

.input-container input {
    width: 100%;
    background-color: var(--bg-color);
    border: 1px solid var(--card-border);
    color: var(--surface-light);
    border-radius: 8px;
    padding: 12px 14px 12px 42px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.input-container input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(241, 153, 25, 0.15);
}

.search-form button {
    height: 48px;
    padding: 0 32px;
    white-space: nowrap;
}

/* Timeline Preview Hook */
.preview-section {
    margin-bottom: 120px;
}

.timeline-locked-card {
    position: relative;
    overflow: hidden;
}

.timeline-locked-card-content {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.timeline-locked-card-ghost {
    filter: blur(4px);
    opacity: 0.28;
    user-select: none;
    pointer-events: none;
}

.timeline-paywall-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px 0;
    background: linear-gradient(to top, rgba(28, 28, 27, 0.98) 0%, rgba(28, 28, 27, 0.9) 58%, rgba(28, 28, 27, 0.35) 100%);
}

.timeline-paywall-card {
    width: 100%;
    text-align: center;
}

.timeline-paywall-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--surface-light);
    margin-bottom: 8px;
}

.timeline-paywall-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--muted-slate);
    margin-bottom: 18px;
    padding: 0 4px;
}

.timeline-paywall-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    border-radius: 9999px;
    background: var(--primary-color);
    color: #1c1c1b;
    font-size: 0.9375rem;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.timeline-paywall-login-btn:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

@media (min-width: 768px) {
    .timeline-paywall-title {
        font-size: 1.25rem;
    }

    .timeline-paywall-desc {
        font-size: 0.875rem;
    }

    .timeline-paywall-login-btn {
        max-width: 320px;
        padding: 16px 28px;
        font-size: 1rem;
    }
}

.preview-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-content {
    padding: 48px;
    background: rgba(19, 19, 18, 0.6);
    backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
    .preview-content {
        padding: 32px var(--margin-mobile);
    }
}

.preview-header {
    text-align: center;
    margin-bottom: 40px;
}

.preview-badge {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(241, 153, 25, 0.08);
    border: 1px solid rgba(241, 153, 25, 0.2);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.preview-title {
    font-size: 28px;
    font-weight: 700;
}

.timeline {
    position: relative;
    padding-left: 36px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    position: relative;
    transition: opacity 0.5s ease;
}

.timeline-dot {
    position: absolute;
    left: -45px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid #131312;
}

.timeline-day {
    font-weight: 700;
    font-size: 16px;
    color: var(--surface-light);
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--muted-slate);
}

.timeline-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-top: 16px;
    border-radius: 8px;
}

/* Paywall overlay */
.paywall-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #131312 0%, rgba(19, 19, 18, 0.95) 60%, rgba(19, 19, 18, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 48px;
    z-index: 10;
}

.paywall-card {
    width: 100%;
    max-width: 500px;
    padding: 32px;
    text-align: center;
}

.paywall-card p {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
}

.paywall-card button {
    width: 100%;
    margin-bottom: 12px;
}

.paywall-subtext {
    font-size: 12px;
    color: var(--muted-slate);
}

/* Feature grid (Intelligent Core / The Exploro Edge) */
.features-section {
    margin-bottom: 120px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 32px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--surface-light);
}

.feature-card p {
    color: var(--muted-slate);
    font-size: 15px;
    line-height: 1.7;
}

/* Mobile Logistics List */
.logistics-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.logistics-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.logistics-item .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(241, 153, 25, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.logistics-item-content {
    text-align: left;
}

.logistics-item-content h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.logistics-item-content p {
    font-size: 12px;
    color: var(--muted-slate);
}

/* Video demo container */
.video-section {
    margin-bottom: 120px;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: transform 1s ease;
}

.video-container:hover .video-thumb {
    transform: scale(1.03);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c1c1b;
    font-size: 36px;
    box-shadow: 0 0 30px var(--primary-glow-heavy);
}

.video-info {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.video-badge {
    background: rgba(19, 19, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-badge .label {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.video-badge .title {
    font-size: 18px;
    font-weight: 700;
}

.video-savings {
    text-align: right;
}

.video-savings .label {
    font-size: 12px;
    color: var(--muted-slate);
}

.video-savings .amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

@media (max-width: 600px) {
    .video-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .video-savings {
        text-align: left;
    }
}

/* Step Pipeline works */
.works-section {
    margin-bottom: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-line {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 9999px;
}

.step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.step-num {
    font-size: 64px;
    font-weight: 700;
    color: rgba(241, 153, 25, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--muted-slate);
    font-size: 14px;
}

/* Trust Stats & Network Vector Map */
.trust-section {
    margin-bottom: 120px;
}

.grid-2-val {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2-val {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-size: 80px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--surface-light);
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 14px;
    color: var(--muted-slate);
    max-width: 360px;
}

/* Simulated Vector Map */
.map-container {
    position: relative;
    aspect-ratio: 1000/600;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 28, 27, 0.4);
    border: 1px solid var(--card-border);
}

.map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.map-svg path,
.map-svg .mesh-line {
    pointer-events: none;
}

/* Map Markers */
.map-marker {
    pointer-events: auto;
}

.marker-dot {
    transition: fill 0.3s ease, r 0.3s ease, filter 0.3s ease;
}

.map-marker[data-status="active"] .marker-dot {
    fill: var(--primary-color);
    filter: drop-shadow(0 0 4px var(--primary-color));
}

.map-marker[data-status="active"]:hover .marker-dot {
    fill: #ffbb6b;
    r: 7px;
    filter: drop-shadow(0 0 8px var(--primary-color));
}

.map-marker[data-status="inactive"] .marker-dot {
    fill: #6e2626;
    opacity: 0.6;
}

.map-marker[data-status="inactive"]:hover .marker-dot {
    fill: #ff4a4a;
    opacity: 1;
    r: 6px;
    filter: drop-shadow(0 0 8px #ff4a4a);
}

/* Pulse effect for active markers */
.marker-pulse {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 1.5;
    opacity: 0;
    transform-origin: center;
}

.map-marker[data-status="active"] .marker-pulse {
    animation: svg-pulse 2s infinite;
}

@keyframes svg-pulse {
    0% {
        r: 5px;
        opacity: 0.8;
    }
    100% {
        r: 18px;
        opacity: 0;
    }
}

/* Connection mesh lines animation */
.mesh-line {
    opacity: 0.4;
    stroke-dasharray: 4, 4;
    animation: mesh-dash 30s linear infinite;
}

@keyframes mesh-dash {
    to {
        stroke-dashoffset: -40;
    }
}

.map-text {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 10;
    text-align: left;
}

.map-text h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--surface-light);
    margin-bottom: 4px;
}

.map-text p {
    font-size: 11px;
    color: var(--muted-slate);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Blueprints & Packages */
.blueprints-section {
    margin-bottom: 120px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gutter);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.blueprint-card {
    border-radius: 24px;
    overflow: hidden;
}

.blueprint-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.blueprint-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blueprint-card:hover .blueprint-img img {
    transform: scale(1.08);
}

.blueprint-details {
    padding: 24px;
}

.blueprint-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.blueprint-details p {
    color: var(--muted-slate);
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Call to Action */
.cta-section {
    margin-bottom: 120px;
}

.cta-container {
    background: rgba(32, 32, 31, 0.6);
    border-radius: 40px;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 32px;
    }
}

.cta-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
}

@media (max-width: 480px) {
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Floating Concierge drawer */
.concierge-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 120;
}

.concierge-card {
    padding: 20px;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    width: 320px;
}

.concierge-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.concierge-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(241, 153, 25, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.concierge-header-text .subtitle {
    font-size: 10px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.concierge-header-text .title {
    font-size: 14px;
    font-weight: 700;
}

.concierge-header span.expand-icon {
    margin-left: auto;
    color: var(--muted-slate);
    transition: transform 0.3s ease;
}

.concierge-card.open span.expand-icon {
    transform: rotate(180deg);
}

.concierge-form {
    display: none;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.concierge-card.open .concierge-form {
    display: block;
}

.concierge-form p {
    font-size: 13px;
    color: var(--muted-slate);
    line-height: 1.5;
    margin-bottom: 20px;
}

.concierge-form p .direct-contact {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-top: 8px;
}

.concierge-form .form-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.concierge-form input {
    background: rgba(19, 19, 18, 0.8);
    border: 1px solid var(--card-border);
    color: var(--surface-light);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
}

.concierge-form input:focus {
    border-color: var(--primary-color);
}

.concierge-form button {
    background-color: var(--primary-color);
    color: #1c1c1b;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
}

/* Footer layout */
.footer {
    padding-top: 80px;
    padding-bottom: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info .copyright {
    font-size: 13px;
    color: var(--muted-slate);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 13px;
    color: var(--muted-slate);
}

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

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

/* ================= TYPOGRAPHY HELPERS ================= */
.text-display-xl {
    font-size: 64px;
    line-height: 72px;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.text-headline-lg {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.text-body-lg {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .text-display-xl {
        font-size: 36px;
        line-height: 44px;
    }
    .text-headline-lg {
        font-size: 28px;
        line-height: 36px;
    }
    .text-body-lg {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ================= DESKTOP SEARCH WIDGET PILL ================= */
.search-widget-pill {
    background: rgba(231, 230, 225, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(231, 230, 225, 0.1);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    max-width: 768px;
    margin: 0 auto 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
}

.search-field-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    width: 100%;
}

.search-field-icon {
    color: var(--primary-color);
    font-size: 24px;
}

.search-field-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--surface-light);
    font-size: 20px;
    font-weight: 700;
    width: 100%;
}

.search-field-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.search-field-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.search-widget-pill .btn-submit {
    height: 56px;
    padding: 0 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    background-color: var(--primary-color);
    color: #1c1c1b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-widget-pill .btn-submit:hover {
    box-shadow: 0 0 25px var(--primary-glow-heavy);
    transform: scale(1.02);
}

/* ================= MOBILE SEARCH WIDGET ================= */
.search-widget-mobile {
    padding: 24px;
    text-align: left;
    border-radius: 16px;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.widget-header-icon {
    color: var(--primary-color);
}

.widget-header-title {
    font-weight: 700;
    font-size: 14px;
}

.mobile-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-input-container {
    position: relative;
}

.mobile-input-container span {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-slate);
    font-size: 18px;
}

.mobile-input-container input {
    width: 100%;
    background-color: rgba(32, 32, 31, 0.6);
    border: 1px solid var(--card-border);
    color: var(--surface-light);
    border-radius: 12px;
    padding: 14px 14px 14px 44px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.mobile-input-container input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(241, 153, 25, 0.2);
}

/* ================= TIMELINE PREVIEW BLOCK FLOATING ================= */
.timeline-section-title {
    text-align: center;
    margin-bottom: 64px;
}

.timeline-section-title h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-title-highlight {
    color: var(--primary-color);
    font-style: italic;
}

.timeline-float-container {
    position: relative;
    max-width: 896px;
    margin: 0 auto;
    padding-bottom: 240px; /* Space for absolute floating paywall */
}

.timeline-floating-row {
    display: flex;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
    transition: all 0.5s ease;
}

.timeline-day-badge-card {
    padding: 16px;
    border-radius: 12px;
    flex-shrink: 0;
    min-width: 90px;
    text-align: center;
}

.timeline-day-badge-text {
    font-size: 12px;
    font-weight: 700;
}

.timeline-day-badge-card.active {
    border-color: rgba(241, 153, 25, 0.3);
}

.timeline-day-badge-card.active .timeline-day-badge-text {
    color: var(--primary-color);
}

.timeline-day-badge-card.inactive {
    border-color: rgba(255, 255, 255, 0.1);
}

.timeline-day-badge-card.inactive .timeline-day-badge-text {
    color: var(--muted-slate);
}

.timeline-event-description-card {
    padding: 24px;
    flex-grow: 1;
    border-color: rgba(255, 255, 255, 0.05);
}

.timeline-event-description-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-floating-paywall-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 384px; /* h-96 */
    background: linear-gradient(to top, var(--bg-lowest) 0%, rgba(28, 28, 27, 0.95) 60%, rgba(28, 28, 27, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px; /* pb-20 */
    pointer-events: auto;
}

.timeline-floating-paywall-card {
    width: 100%;
    max-width: 448px; /* max-w-md */
    padding: 32px;
    text-align: center;
    border-color: rgba(241, 153, 25, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
    transform: translateY(40px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.timeline-floating-paywall-card:hover {
    transform: translateY(0);
    border-color: rgba(241, 153, 25, 0.5);
}

.timeline-floating-paywall-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-floating-paywall-card p {
    color: var(--muted-slate);
    margin-bottom: 24px;
}

.timeline-floating-paywall-card button {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
}

/* ================= MOBILE MAP COVERAGE CARD ================= */
.mobile-map-coverage-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    width: 100%;
    padding: 24px;
    text-align: left;
}

.mobile-map-fade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, var(--bg-color) 80%);
    pointer-events: none;
    z-index: 10;
}

.mobile-map-content {
    position: relative;
    z-index: 20;
}

.mobile-map-content h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mobile-map-content p {
    font-size: 12px;
    color: var(--muted-slate);
}

.mobile-map-globe-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
}

.mobile-map-globe-wrapper span {
    font-size: 200px;
    color: rgba(241, 153, 25, 0.15);
}

.mobile-map-ping {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.mobile-map-ping::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

/* ================= HOW IT WORKS LAYOUTS ================= */
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

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

.works-step-col {
    position: relative;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.works-step-col.bordered {
    border-right: 1px solid rgba(132, 133, 130, 0.3);
}

@media (max-width: 768px) {
    .works-step-col.bordered {
        border-right: none;
        border-bottom: 1px solid rgba(132, 133, 130, 0.2);
        padding: 32px 0;
    }
}

.works-step-number {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.works-step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--surface-light);
}

.works-step-desc {
    color: var(--muted-slate);
    font-size: 16px;
    line-height: 1.6;
}

/* ================= FEATURE CARD ICON TINT ================= */
.feature-icon-tinted {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(241, 153, 25, 0.1);
    border: 1px solid rgba(241, 153, 25, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 32px;
}

/* ================= VIDEO DEMO PLAYER ================= */
.video-player-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transition: transform 1s ease;
}

.video-player-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid rgba(241,153,25,0.3);
    background: rgba(231,230,225,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(241,153,25,0.3);
    transition: all 0.3s ease;
}

.video-player-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary-color);
}

.video-player-btn:hover span {
    color: #1c1c1b !important;
}

.video-player-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    text-align: left;
}

/* ================= FOOTER ELEMENTS ================= */
.footer-container-grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 48px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.footer-brand-section {
    max-width: 480px;
    text-align: left;
}

.footer-brand-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer-brand-cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
}

.footer-buttons-group {
    display: flex;
    gap: 16px;
}

.footer-links-grid-wrap {
    display: flex;
    gap: 64px;
    text-align: left;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-col span {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-slate);
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* ================= MOBILE TIMELINE PREVIEW CLASSES ================= */
.mobile-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
    align-items: start;
    margin-bottom: 28px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.mobile-timeline-header {
    display: contents;
}

.mobile-timeline-day-pill {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-timeline-day-pill.is-active {
    background: rgba(241, 153, 25, 0.12);
    border-color: rgba(241, 153, 25, 0.28);
}

.mobile-timeline-day-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--muted-slate);
}

.mobile-timeline-day-pill.is-active .mobile-timeline-day-label,
.mobile-timeline-day-pill.is-active .mobile-timeline-day-number {
    color: var(--primary-color);
}

.mobile-timeline-day-number {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--muted-slate);
}

.mobile-timeline-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    flex: 1;
    min-width: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--surface-light);
    margin: 0;
}

.mobile-timeline-meta {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    margin-bottom: 0;
}

.mobile-timeline-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-slate);
}

.mobile-timeline-meta-item .material-symbols-outlined {
    font-size: 14px;
}

.mobile-timeline-desc {
    grid-column: 1 / -1;
    margin-top: 10px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-slate);
    margin-bottom: 0;
}

.mobile-timeline-item-locked {
    margin-bottom: 40px;
}

.mobile-timeline-ghost-title {
    display: block;
    color: var(--muted-slate);
    opacity: 0.42;
    filter: blur(2px);
    user-select: none;
    pointer-events: none;
}

.mobile-timeline-lock-zone {
    grid-column: 1 / -1;
    position: relative;
    min-height: 132px;
    margin-top: 10px;
    overflow: hidden;
}

.mobile-timeline-ghost-desc {
    filter: blur(3px);
    opacity: 0.24;
    user-select: none;
    pointer-events: none;
}

.mobile-timeline-paywall-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 52px 0 0;
    background: linear-gradient(to top, rgba(28, 28, 27, 0.98) 0%, rgba(28, 28, 27, 0.9) 58%, rgba(28, 28, 27, 0.15) 100%);
    text-align: center;
}

.mobile-timeline-item-locked .timeline-paywall-desc {
    margin-bottom: 14px;
    padding: 0 4px;
    font-size: 0.8125rem;
}

.mobile-timeline-item-locked .timeline-paywall-login-btn {
    width: 100%;
    max-width: 100%;
}

.mobile-timeline-card {
    padding: 20px;
    border-radius: 16px;
}

.mobile-timeline-locked-card {
    padding: 20px;
    position: relative;
    filter: grayscale(1);
    overflow: hidden;
}

.marker-target {
    cursor: pointer;
    pointer-events: all !important;
    fill: rgba(0, 0, 0, 0) !important;
}

.hidden {
    display: none !important;
}

/* Blueprints view styles */
.blueprints-hero {
    max-width: var(--container-max);
    margin: 48px auto 32px;
    padding: 0 var(--margin-desktop);
    padding-top: 48px;
}

@media (max-width: 768px) {
    .blueprints-hero {
        padding: 0 var(--margin-mobile);
        margin: 32px auto 24px;
        padding-top: 32px;
    }
}

.blueprints-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.02em;
    color: var(--surface-light);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .blueprints-hero h1 {
        font-size: 32px;
        line-height: 40px;
    }
}

.blueprints-hero p {
    font-size: 20px;
    line-height: 28px;
    color: var(--muted-slate);
    max-width: 768px;
}

@media (max-width: 768px) {
    .blueprints-hero p {
        font-size: 16px;
        line-height: 24px;
    }
}

.blueprints-filters-container {
    max-width: var(--container-max);
    margin: 0 auto 48px;
    padding: 16px var(--margin-desktop);
    position: sticky;
    top: 80px;
    z-index: 20;
    background: rgba(28, 28, 27, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .blueprints-filters-container {
        padding: 16px var(--margin-mobile);
        top: 0;
    }
}

.filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(231, 230, 225, 0.04);
    border: 1px solid rgba(231, 230, 225, 0.1);
    color: var(--muted-slate);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: rgba(241, 153, 25, 0.4);
    color: var(--surface-light);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: #1c1c1b;
    border-color: var(--primary-color);
    font-weight: 700;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

@media (max-width: 480px) {
    .masonry-grid {
        grid-template-columns: 1fr;
    }
}

/* Card layout extensions */
.card-tags-container {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.card-tag {
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.card-tag.primary {
    background-color: var(--primary-color);
    color: #1c1c1b;
}

.card-tag.secondary {
    background-color: rgba(28, 28, 27, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--surface-light);
}

.blueprint-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.blueprint-duration {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.blueprint-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(132, 133, 130, 0.1);
}

.blueprint-price-info {
    display: flex;
    flex-direction: column;
}

.blueprint-price-info .price-label {
    font-size: 10px;
    color: var(--muted-slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.blueprint-price-info .price-val {
    font-size: 24px;
    font-weight: 700;
    color: var(--surface-light);
}

.blueprint-price-info .price-unit {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted-slate);
}

.blueprint-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-slate);
    transition: all 0.3s ease;
}

.blueprint-card:hover .blueprint-arrow-btn {
    background: var(--primary-color);
    color: #1c1c1b;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow-heavy);
}

/* Trip Details Modal Styles */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 250;
    background-color: rgba(14, 14, 13, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.modal-dialog {
    background-color: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 1120px;
    max-height: 85vh;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
    padding: 32px;
    border-bottom: 1px solid rgba(132, 133, 130, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.modal-header-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.modal-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.modal-subtitle-badge {
    background-color: rgba(241, 153, 25, 0.15);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-duration-label {
    font-size: 13px;
    color: var(--muted-slate);
    font-weight: 500;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--surface-light);
    letter-spacing: -0.01em;
}

.modal-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-action-btn {
    border-radius: 9999px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
}

.modal-close-btn {
    background: transparent;
    color: var(--muted-slate);
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.modal-close-btn:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 0;
    overflow-y: auto;
    flex: 1;
}

.modal-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.modal-timeline-col {
    padding: 40px;
    border-right: 1px solid rgba(132, 133, 130, 0.1);
    text-align: left;
}

.modal-side-col {
    padding: 40px;
    background-color: rgba(231, 230, 225, 0.01);
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
}

.modal-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--surface-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.modal-timeline-list {
    position: relative;
    padding-left: 28px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.modal-timeline-list::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background-color: rgba(132, 133, 130, 0.2);
}

.modal-timeline-item {
    position: relative;
}

.modal-timeline-bullet {
    position: absolute;
    left: -28px;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--muted-slate);
    border: 2px solid var(--bg-color);
}

.modal-timeline-item:first-child .modal-timeline-bullet {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow-heavy);
    width: 11px;
    height: 11px;
    left: -29px;
}

.modal-timeline-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--surface-light);
    margin-bottom: 6px;
}

.modal-timeline-item p {
    font-size: 14px;
    color: var(--muted-slate);
    line-height: 1.6;
}

.modal-price-card {
    background: rgba(231, 230, 225, 0.03);
    border: 1px solid rgba(231, 230, 225, 0.05);
    border-radius: 16px;
    padding: 24px;
}

.modal-price-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--muted-slate);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.modal-price-val {
    font-size: 40px;
    font-weight: 700;
    color: var(--surface-light);
}

.price-unit-total {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted-slate);
}

.modal-price-note {
    font-size: 12px;
    color: var(--muted-slate);
    font-style: italic;
    margin-top: 12px;
    line-height: 1.5;
}

.modal-inclusions-list,
.modal-exclusions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--surface-light);
}

.modal-list-item span.icon-check {
    color: var(--primary-color);
    font-size: 18px;
}

.modal-list-item span.icon-cancel {
    color: var(--muted-slate);
    font-size: 18px;
}

.modal-list-item.excluded {
    opacity: 0.6;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(231, 230, 225, 0.1);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(231, 230, 225, 0.25);
}

/* Hide scrollbar for Chrome, Safari, Opera, Firefox, IE and Edge */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Responsive Modal Styling */
@media (max-width: 992px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-timeline-col {
        border-right: none;
        border-bottom: 1px solid rgba(132, 133, 130, 0.1);
    }
}

@media (max-width: 768px) {
    .modal-backdrop {
        padding: 16px;
    }
    .modal-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .modal-header-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 16px;
    }
    .modal-timeline-col,
    .modal-side-col {
        padding: 24px;
    }
    .modal-title {
        font-size: 24px;
    }
}

/* Mobile Bottom Sheet Modal Transitions */
@media (max-width: 1024px) {
    #blueprint-modal-mobile {
        align-items: flex-end !important;
        justify-content: center !important;
        padding: 0 !important;
        transition: opacity 0.3s ease;
        opacity: 0;
    }
    
    #blueprint-modal-mobile.open {
        opacity: 1;
    }
    
    #blueprint-modal-mobile > div {
        max-height: 100vh !important;
        height: 85vh;
        width: 100% !important;
        max-width: 100% !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        border-top-left-radius: 2.5rem !important;
        border-top-right-radius: 2.5rem !important;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.4s ease;
    }
    
    #blueprint-modal-mobile.open > div {
        transform: translateY(0);
    }
    
    #blueprint-modal-mobile.expanded > div {
        height: 100vh;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
}

/* ================= LEGAL PAGES (Privacy, Terms) ================= */
.legal-page {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 760px;
    margin: 0 auto;
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
}

.legal-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.legal-title {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--surface-light);
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 14px;
    color: var(--muted-slate);
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--card-border);
}

.legal-prose {
    color: var(--muted-slate);
    font-size: 15px;
    line-height: 1.75;
}

.legal-prose h2 {
    color: var(--surface-light);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-prose h3 {
    color: var(--surface-light);
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-prose p {
    margin-bottom: 16px;
}

.legal-prose ul {
    margin: 0 0 16px 1.25rem;
    padding: 0;
}

.legal-prose li {
    margin-bottom: 8px;
}

.legal-prose a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-prose a:hover {
    text-decoration: underline;
}

.legal-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--card-border);
    font-size: 14px;
}

.legal-nav-links a {
    color: var(--primary-color);
    font-weight: 500;
}

.legal-header-minimal .nav-links {
    display: none;
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }

    .legal-container {
        padding-left: var(--margin-mobile);
        padding-right: var(--margin-mobile);
    }
}





