/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Disable touch overlay on mobile WebView */
}

input, select, button, a {
    touch-action: manipulation; /* Eliminate double-tap delay on tap targets */
}

.nav-btn, .theme-toggle-btn, .login-trigger-btn, .search-btn, .buy-btn, .plan-btn, .alert-submit-btn, .unified-booking-btn, .swap-btn, .app-store-badge {
    user-select: none;
    -webkit-user-select: none; /* Block selection on touch elements to match native app feel */
}

:root {
    --primary-color: #ffffff; /* White for header/titles */
    --primary-light: #cbd5e1; /* Slate 300 for labels */
    --accent-blue: #06b6d4; /* Neon Teal */
    --accent-blue-hover: #0891b2;
    --accent-purple: #a855f7; /* Vibrant Purple */
    --accent-purple-hover: #9333ea;
    --text-main: #f1f5f9; /* Off-white for main text */
    --text-muted: #94a3b8; /* Slate 400 */
    --bg-app: #080b11; /* Very dark blue-black background */
    --border-color: rgba(255, 255, 255, 0.08); /* Transparent borders */
    
    /* Glassmorphism Design Tokens */
    --glass-bg: rgba(15, 23, 42, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);

    /* Price categories - dark theme glowing neon */
    --price-green-bg: rgba(45, 212, 191, 0.15); /* Teal glow */
    --price-green-text: #2dd4bf;
    --price-yellow-bg: rgba(168, 85, 247, 0.15); /* Purple glow */
    --price-yellow-text: #c084fc;
    --price-red-bg: rgba(248, 113, 113, 0.15); /* Red glow */
    --price-red-text: #f87171;
    --price-none-bg: rgba(30, 41, 59, 0.3);
    --price-none-text: #64748b;
}

/* Light Theme Override Variables */
body.light-theme {
    --primary-color: #0f172a; /* Slate 900 */
    --primary-light: #475569; /* Slate 600 */
    --accent-blue: #0284c7; /* Sky 600 */
    --accent-blue-hover: #0369a1;
    --accent-purple: #7c3aed; /* Violet 600 */
    --accent-purple-hover: #6d28d9;
    --text-main: #334155; /* Slate 700 */
    --text-muted: #64748b; /* Slate 500 */
    --bg-app: #f8fafc; /* Slate 50 */
    --border-color: rgba(15, 23, 42, 0.08);
    
    /* Light Theme Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(15, 23, 42, 0.08);
    --glass-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);

    /* Light Theme Price Categories */
    --price-green-bg: #ccfbf1;
    --price-green-text: #0d9488;
    --price-yellow-bg: #f3e8ff;
    --price-yellow-text: #7c3aed;
    --price-red-bg: #fee2e2;
    --price-red-text: #dc2626;
    --price-none-bg: #e2e8f0;
    --price-none-text: #94a3b8;
}

/* Light Theme Component Tweaks */
body.light-theme {
    background-image: 
        radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.06) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(2, 132, 199, 0.06) 0px, transparent 50%) !important;
}

body.light-theme input[type="text"], 
body.light-theme input[type="number"], 
body.light-theme select,
body.light-theme .modal-form-group input,
body.light-theme .alert-form-group input,
body.light-theme .alert-form-group select {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
    color: var(--primary-color) !important;
}

/* Light Theme Text Contrast Overrides */
body.light-theme .hero-content h2,
body.light-theme .floating-badge h4,
body.light-theme .alerts-intro h2,
body.light-theme .alerts-creator-card h3,
body.light-theme .alerts-list-card h3,
body.light-theme .alert-card-route,
body.light-theme .pricing-intro h2,
body.light-theme .plan-header h3,
body.light-theme .plan-price .currency,
body.light-theme .plan-price .price-val,
body.light-theme .about-text-col h2,
body.light-theme .founder-badge strong,
body.light-theme .modal-header h3,
body.light-theme .section-title,
body.light-theme .step-card h4 {
    color: var(--primary-color) !important;
}

body.light-theme .stat-box {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .founder-badge {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .plan-btn:not(.premium-btn) {
    background: rgba(15, 23, 42, 0.04) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    color: var(--text-main) !important;
}

body.light-theme .plan-btn:not(.premium-btn):hover:not(:disabled) {
    background: rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(15, 23, 42, 0.15) !important;
}

body.light-theme .alert-card {
    background: rgba(15, 23, 42, 0.02) !important;
    border-color: rgba(15, 23, 42, 0.06) !important;
}

body.light-theme .alert-card:hover {
    background: rgba(15, 23, 42, 0.04) !important;
    border-color: rgba(2, 132, 199, 0.2) !important;
}

body.light-theme .modal-divider::before, 
body.light-theme .modal-divider::after {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .login-modal-card {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15) !important;
}

body.light-theme .social-login-btn {
    border: 1px solid rgba(15, 23, 42, 0.15) !important;
    background: #ffffff !important;
    color: #000000 !important;
}

body.light-theme .social-login-btn:hover {
    background-color: #f8fafc !important;
}

body.light-theme .modal-close-btn:hover {
    color: var(--primary-color) !important;
}

body.light-theme .nav-btn:hover {
    background: rgba(15, 23, 42, 0.05);
}

body.light-theme .nav-btn.active {
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.15);
}

body.light-theme .login-trigger-btn:hover {
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

body.light-theme .cta-secondary-btn {
    background: rgba(15, 23, 42, 0.04);
    color: var(--text-main);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

body.light-theme .cta-secondary-btn:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.15);
}

body.light-theme .step-card h4 {
    color: var(--primary-color);
}

body.light-theme .suggestions {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body.light-theme .suggestion-item:hover {
    background-color: rgba(15, 23, 42, 0.04);
}

body.light-theme .console-card {
    background: #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .console-header {
    background: #e2e8f0;
}

body.light-theme .console-header h3 {
    color: #334155;
}

body.light-theme .console-logs {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0284c7;
}

body.light-theme .buy-btn,
body.light-theme .route-badge {
    background-color: rgba(2, 132, 199, 0.08) !important;
    border-color: rgba(2, 132, 199, 0.2) !important;
}

/* New Light Theme Contrast and Styling Fixes */
body.light-theme .calendar-header {
    border-bottom-color: rgba(15, 23, 42, 0.06) !important;
}

body.light-theme .calendar-footer {
    border-top-color: rgba(15, 23, 42, 0.06) !important;
    color: var(--primary-light) !important;
}

body.light-theme .clock-icon {
    color: var(--primary-light) !important;
}

body.light-theme .warning-banner {
    background-color: rgba(245, 158, 11, 0.08) !important;
    border-color: rgba(245, 158, 11, 0.25) !important;
    color: #92400e !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
}

body.light-theme .warning-banner svg {
    color: #b45309 !important;
}

body.light-theme .disclaimer-banner {
    background-color: rgba(2, 132, 199, 0.05) !important;
    border-color: rgba(2, 132, 199, 0.15) !important;
    color: var(--text-main) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

body.light-theme .disclaimer-banner svg {
    color: var(--accent-blue) !important;
}

body.light-theme .flight-row {
    background: rgba(15, 23, 42, 0.02) !important;
    border-color: rgba(15, 23, 42, 0.06) !important;
}

body.light-theme .flight-row:hover {
    background-color: rgba(15, 23, 42, 0.04) !important;
}

body.light-theme .flight-section-title {
    background-color: rgba(15, 23, 42, 0.04) !important;
}

body.light-theme .pricing-card:hover {
    border-color: rgba(15, 23, 42, 0.15) !important;
}

body.light-theme .pricing-card.premium {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08) !important;
}

body.light-theme .pricing-card.premium:hover {
    box-shadow: 0 15px 45px rgba(124, 58, 237, 0.15) !important;
    border-color: var(--accent-purple) !important;
}

body.light-theme .about-img {
    border-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .console-desc {
    color: var(--primary-light) !important;
}

body.light-theme .log-line.system {
    color: #475569 !important;
}

body.light-theme .log-line.success {
    color: #15803d !important;
}

body.light-theme .log-line.error {
    color: #b91c1c !important;
}

body.light-theme .log-line.request {
    color: #7c3aed !important;
}

body.light-theme .app-footer {
    border-top-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .swap-btn {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06) !important;
}

body.light-theme .progress-bar-container {
    background: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .hero-section {
    background: rgba(15, 23, 42, 0.02) !important;
    border-color: rgba(15, 23, 42, 0.06) !important;
}

body.light-theme .hero-img {
    border-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .floating-badge {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
}

/* Theme Toggle Button Style */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 8px;
}

.theme-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

body.light-theme .theme-toggle-btn:hover {
    background-color: rgba(15, 23, 42, 0.05);
}

/* Toggle Sun/Moon display depending on active theme class on body */
body:not(.light-theme) .sun-icon {
    display: block;
}
body:not(.light-theme) .moon-icon {
    display: none;
}
body.light-theme .sun-icon {
    display: none;
}
body.light-theme .moon-icon {
    display: block;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-app);
    background-image: 
        radial-gradient(at 0% 0%, rgba(168, 85, 247, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.12) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.5;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.app-container {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: var(--glass-shadow);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    cursor: pointer;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-icon {
    color: var(--accent-blue);
    transform: rotate(45deg);
}

.header-logo h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.header-logo h1 span {
    color: var(--accent-blue);
}

.header-nav {
    display: flex;
    gap: 8px;
}

.nav-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-blue);
}

.nav-btn.active {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.login-trigger-btn {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 8px 16px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.login-trigger-btn:hover {
    background: var(--accent-blue);
    color: #080b11;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

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

/* Search Card Container */
.search-card {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Form Styles */
#search-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.inputs-row {
    align-items: flex-end;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    position: relative;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
}

/* Inputs & Selects */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

input[type="text"], select {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-main);
    background-color: rgba(15, 23, 42, 0.6);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"] {
    padding-left: 44px;
    padding-right: 36px;
    font-weight: 500;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

input[type="text"]:focus, select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1);
}

/* Clear Input button */
.clear-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.clear-btn:hover {
    background-color: var(--bg-app);
}

/* Swap Button */
.swap-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    cursor: pointer;
    margin-bottom: 2px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.swap-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: rotate(180deg);
}

/* Suggestions Autocomplete Dropdown */
.suggestions {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    transition: background-color 0.1s;
}

.suggestion-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.suggestion-item .iata {
    font-weight: 600;
    color: var(--accent-blue);
}

/* Search Submit Row */
.submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.search-btn {
    background-color: var(--accent-blue);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    height: 46px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.search-btn:hover {
    background-color: var(--accent-blue-hover);
}

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

.search-status-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* Calendars Grid Layout */
.calendars-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    min-height: 420px;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 11, 17, 0.85);
    backdrop-filter: blur(4px);
    z-index: 10;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 132, 255, 0.1);
    border-top: 4px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

.loading-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.progress-bar-container {
    width: 250px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 16px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-blue);
    border-radius: 3px;
    transition: width 0.1s ease;
}

.progress-percentage {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

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

/* Calendar Card */
.calendar-card {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
}

.calendar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.program-badge {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.calendar-month-name {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: capitalize;
}

/* Calendar Grid */
.weekdays-grid, .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.weekdays-grid span {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 4px 0;
}

.days-container {
    display: contents; /* Allows grid items to sit directly in grid */
}

/* Day Block styling */
.day-block {
    aspect-ratio: 1.15;
    border-radius: 8px;
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    border: 1.5px solid transparent;
}

.day-number {
    font-weight: 500;
    color: var(--text-muted);
    align-self: flex-start;
    padding-left: 4px;
    font-size: 13px;
}

.day-price {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
}

/* Price Classes - Exact Match to user's screenshot layout */
.day-block.price-green {
    background-color: var(--price-green-bg);
    color: var(--price-green-text);
}
.day-block.price-green .day-number { color: var(--price-green-text); }

.day-block.price-yellow {
    background-color: var(--price-yellow-bg);
    color: var(--price-yellow-text);
}
.day-block.price-yellow .day-number { color: var(--price-yellow-text); }

.day-block.price-red {
    background-color: var(--price-red-bg);
    color: var(--price-red-text);
}
.day-block.price-red .day-number { color: var(--price-red-text); }

.day-block.price-none {
    background-color: var(--price-none-bg);
    color: var(--price-none-text);
    cursor: default;
}
.day-block.price-none .day-number { color: var(--price-none-text); }

/* Empty offset blocks (before month start) */
.day-block.offset-day {
    visibility: hidden;
    pointer-events: none;
}

/* Hover and selection states */
.day-block:not(.price-none):not(.offset-day):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    filter: brightness(0.97);
}

.day-block.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

/* Calendar Footer */
.calendar-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
}

.clock-icon {
    color: #cbd5e1;
}

/* Flight Details Card */
.flight-details-card {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    animation: slideDown 0.3s ease-out;
}

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

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.details-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.route-badge {
    background-color: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue) !important;
}

.route-badge span {
    color: var(--accent-blue) !important;
}

.flight-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flight-row {
    display: grid;
    grid-template-columns: 100px 1.5fr 1fr 1fr 120px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: background-color 0.2s;
    background: rgba(255, 255, 255, 0.02);
}

.flight-row:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.airline-col {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.airline-g3 { color: #ff6600; } /* GOL Orange */
.airline-la { color: #ff007f; } /* Latam Magenta */
.airline-ad { color: #002d72; } /* Azul Dark Blue */

.time-col {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.time-col .hours {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color);
}

.time-col .stops {
    color: var(--text-muted);
    font-size: 11px;
}

.duration-col {
    font-size: 13px;
    color: var(--text-main);
}

.price-col {
    display: flex;
    flex-direction: column;
}

.price-col .miles-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-blue);
}

.price-col .tax-val {
    font-size: 11px;
    color: var(--text-muted);
}

.buy-btn {
    height: 36px;
    background-color: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 6px;
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.buy-btn:hover {
    background-color: var(--accent-blue);
    color: #ffffff !important;
}

/* Console simulator styling */
.console-card {
    display: none !important; /* Hidden from users as requested */
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.console-header {
    background: #1e293b;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.console-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s infinite;
}

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

.console-header h3 {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    font-family: inherit;
}

.console-toggle-btn {
    color: #94a3b8;
}

#console-arrow {
    transition: transform 0.2s ease;
}

.console-card.collapsed #console-arrow {
    transform: rotate(-90deg);
}

.console-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    max-height: 400px;
}

.console-card.collapsed .console-body {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
}

.console-desc {
    font-size: 12px;
    color: #94a3b8;
}

.console-logs {
    background: #020617;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: #38bdf8;
    height: 150px;
    overflow-y: auto;
    border: 1px solid #1e293b;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.log-line {
    word-break: break-all;
    line-height: 1.4;
}

.log-line.system { color: #64748b; }
.log-line.success { color: #4ade80; }
.log-line.error { color: #f87171; }
.log-line.request { color: #e879f9; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .calendars-section {
        grid-template-columns: 1fr;
    }
    
    .filters-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .inputs-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .swap-btn {
        align-self: center;
        transform: rotate(90deg);
    }
    
    .swap-btn:hover {
        transform: rotate(270deg);
    }
    
    .filters-row {
        grid-template-columns: 1fr;
    }
    
    .submit-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .flight-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .buy-btn {
        grid-column: span 2;
    }
}

.flight-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 14px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    margin-top: 14px;
    margin-bottom: 4px;
    border-left: 4px solid var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.flight-row.no-button {
    grid-template-columns: 100px 1.5fr 1fr 1fr;
}

.unified-booking-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
}

.unified-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    height: 50px;
    background-color: var(--accent-blue);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 132, 255, 0.2);
    transition: all 0.2s ease;
}

.unified-booking-btn:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 132, 255, 0.3);
}

.unified-booking-btn:active {
    transform: translateY(1px);
}

.calendars-section.single-calendar {
    display: flex;
    justify-content: center;
}

.calendars-section.single-calendar .calendar-card {
    width: 100%;
    max-width: 540px;
}

/* Warning Banner for multiple passengers */
.warning-banner {
    display: flex;
    align-items: center;
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 14px;
    color: #fef08a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.warning-banner svg {
    color: #d97706; /* Amber 600 */
    margin-right: 10px;
}

/* SPA Views Visibility */
.spa-view {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.spa-view.active {
    display: block;
}

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

/* Hero Section Styles */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 24px;
    padding: 32px;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.hero-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.hero-content h2 span {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-visual {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.hero-visual:hover .hero-img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--accent-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    align-self: flex-start;
}

.pulse-indicator-neon {
    width: 8px;
    height: 8px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-blue);
    animation: pulse 2s infinite;
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
    min-width: 140px;
}

.badge-left {
    left: -10px;
    bottom: 20px;
    animation-delay: 0.5s;
}

.badge-right {
    right: -10px;
    top: 20px;
    animation-delay: 1.5s;
}

.floating-badge h4 {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.floating-badge p {
    font-size: 10px;
    color: var(--text-muted);
    margin: 0;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Alerts Section Layout */
.alerts-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alerts-intro h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.alerts-intro p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.alerts-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    align-items: start;
}

.alerts-creator-card, .alerts-list-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--glass-shadow);
}

.alerts-creator-card h3, .alerts-list-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.alerts-list-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.alert-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    position: relative;
}

.alert-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
}

.alert-form-group input, .alert-form-group select {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    height: 44px;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.alert-form-group input:focus, .alert-form-group select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.alert-input-suffix-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.alert-input-suffix-wrapper input {
    width: 100%;
    padding-right: 90px;
}

.input-suffix {
    position: absolute;
    right: 12px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.alert-submit-btn {
    width: 100%;
    height: 46px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
    font-family: inherit;
    font-size: 14px;
}

.alert-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
}

.alerts-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.alert-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.alert-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(6, 182, 212, 0.2);
}

.alert-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.alert-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-card-route {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.alert-card-program {
    font-size: 11px;
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.alert-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

.alert-card-target strong {
    color: var(--accent-blue);
}

.alert-card-contact {
    font-size: 11px;
}

.alert-card-delete-btn {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
    color: #f87171;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alert-card-delete-btn:hover {
    background: rgba(248, 113, 113, 0.2);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.3);
}

/* Pricing Section Styles */
.pricing-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-intro h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.pricing-intro p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

/* Billing Toggle Slider Switch Styles */
.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    margin-top: 10px;
}

.billing-toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.billing-toggle-label.active {
    color: var(--primary-color);
}

.save-badge {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 6px;
    box-shadow: 0 4px 10px rgba(168, 85, 247, 0.25);
    letter-spacing: 0.3px;
    display: inline-block;
    vertical-align: middle;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    transition: .3s ease;
    border-radius: 34px;
}

body.light-theme .slider {
    background-color: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.08);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--primary-color);
    transition: .3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
}

body.light-theme input:checked + .slider {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
}

input:checked + .slider:before {
    transform: translateX(24px);
    background-color: #ffffff;
}

.savings-highlight {
    animation: pulseText 2s infinite;
}

@keyframes pulseText {
    0% { opacity: 0.9; }
    50% { opacity: 1; filter: brightness(1.2); }
    100% { opacity: 0.9; }
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.premium {
    border: 2px solid var(--accent-purple);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, rgba(15, 23, 42, 0.7) 100%);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.pricing-card.premium:hover {
    box-shadow: 0 15px 45px rgba(168, 85, 247, 0.35);
    border-color: #c084fc;
}

.premium-badge-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-purple), #c084fc);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(168, 85, 247, 0.4);
    letter-spacing: 0.5px;
}

.plan-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.plan-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    min-height: 38px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 12px;
}

.plan-price .currency {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-right: 4px;
}

.plan-price .price-val {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.plan-price .period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.plan-price-billed {
    font-size: 11px;
    color: var(--accent-purple);
    font-weight: 600;
    margin-top: 4px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: auto;
}

.plan-features li {
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-main);
    line-height: 1.4;
    text-align: left;
}

.plan-features li svg {
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.plan-features li.disabled svg {
    color: #f87171;
}

.plan-btn {
    width: 100%;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.plan-btn.premium-btn {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-hover));
    border: none;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
}

.plan-btn.premium-btn:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    transform: translateY(-1px);
}

/* About Us Section Styles */
.about-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
}

.about-columns {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-text-col h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.about-text-col h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-blue);
    line-height: 1.5;
    font-style: italic;
    border-left: 3px solid var(--accent-blue);
    padding-left: 16px;
    margin: 8px 0;
}

.about-text-col p {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    text-align: justify;
}

.about-image-col {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
}

.about-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founder-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 80%;
}

.founder-badge strong {
    color: #ffffff;
    font-size: 14px;
}

.founder-badge span {
    color: var(--text-muted);
    font-size: 11px;
}

/* Login Modal Overlay Styles */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.login-modal-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: #ffffff;
}

.modal-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
}

.modal-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.social-login-btn {
    width: 100%;
    height: 46px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: inherit;
    font-size: 14px;
}

.social-login-btn:hover {
    background-color: #f1f5f9;
}

.modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

.modal-divider::before, .modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-divider:not(:empty)::before {
    margin-right: .5em;
}

.modal-divider:not(:empty)::after {
    margin-left: .5em;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    text-align: left;
}

.modal-form-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-light);
}

.modal-form-group input {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    height: 44px;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.modal-form-group input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.modal-submit-btn {
    width: 100%;
    height: 46px;
    background: var(--accent-blue);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 14px;
}

.modal-submit-btn:hover {
    background: var(--accent-blue-hover);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

/* Responsive Overrides for new elements */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text-col {
        order: 2;
    }
    
    .about-image-col {
        order: 1;
    }
    
    .alerts-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 24px;
    }
    
    .hero-content {
        align-items: center;
    }
}

/* Hero CTA Buttons */
.hero-actions-row {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.cta-primary-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #ffffff;
    border: none;
    border-radius: 8px;
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    font-family: inherit;
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.45);
}

.cta-secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Como Funciona Section */
.how-it-works-section {
    margin-top: 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.2);
}

.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    opacity: 0.8;
}

.step-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.step-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats Highlight Row */
.stats-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 24px;
}

.stat-box {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-purple);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive steps-grid */
@media (max-width: 768px) {
    .steps-grid, .stats-highlight-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-actions-row {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Disclaimer e Banners */
.disclaimer-banner {
    display: flex;
    align-items: center;
    background-color: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 24px;
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.disclaimer-banner svg {
    color: var(--accent-blue);
    flex-shrink: 0;
}

/* Compliance LGPD no Modal */
.modal-compliance-text {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: center;
    margin-top: 14px;
}

.modal-form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-align: left;
}

.modal-form-checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
}

.modal-form-checkbox-group label {
    cursor: pointer;
    user-select: none;
    line-height: 1.3;
}

/* Footer Copyright Font Adjustments */
.app-footer {
    text-align: center;
    padding: 24px 0 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.app-footer p {
    font-size: 11px;
    color: var(--text-muted);
}

/* App Download Banner Styles */
.app-download-section {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
}

body.light-theme .app-download-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, rgba(2, 132, 199, 0.04) 100%) !important;
    border-color: rgba(15, 23, 42, 0.06) !important;
}

.app-download-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.app-download-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.app-download-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.app-download-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.app-badges-row {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.app-store-badge {
    display: block;
    transition: transform 0.2s ease;
}

.app-store-badge:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .app-download-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .app-download-text {
        text-align: center;
    }
    
    .app-badges-row {
        justify-content: center;
    }
}

/* ==========================================
   VIEW: MINHA CONTA & STRIPE MODAL STYLES
   ========================================== */

.minhaconta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.minhaconta-header {
    margin-bottom: 32px;
}

.minhaconta-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .minhaconta-header h2 {
    background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.minhaconta-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.minhaconta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    align-items: start;
}

.minhaconta-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.minhaconta-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

body.light-theme .minhaconta-card h3 {
    color: #0f172a;
}

.minhaconta-card .card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.form-group-profile {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group-profile label {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-light);
}

.form-group-profile input {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    height: 40px;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: all 0.2s;
}

body.light-theme .form-group-profile input {
    background-color: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
}

.form-group-profile input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.profile-save-btn {
    background: var(--accent-blue);
    border: none;
    color: #ffffff;
    height: 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
}

.profile-save-btn:hover {
    opacity: 0.9;
}

.plan-status-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

body.light-theme .plan-status-box {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.plan-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.plan-status-row .label {
    font-size: 13px;
    color: var(--primary-light);
}

.badge-plan-explorer {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

body.light-theme .badge-plan-explorer {
    background: rgba(0, 0, 0, 0.08);
    color: #334155;
}

.badge-plan-vip {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.payment-card-status {
    font-size: 13px;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.light-theme .payment-card-status {
    color: #0f172a;
    border-top-color: rgba(0, 0, 0, 0.08);
}

.stripe-actions-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stripe-add-card-btn {
    background: transparent;
    border: 1px dashed var(--accent-blue);
    color: var(--accent-blue);
    height: 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stripe-add-card-btn:hover {
    background: rgba(6, 182, 212, 0.05);
}

.stripe-upgrade-btn {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    border: none;
    color: #ffffff;
    height: 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.stripe-upgrade-btn:hover {
    opacity: 0.9;
}

.account-actions-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
}

body.light-theme .account-actions-box {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.account-logout-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    height: 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.account-logout-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

/* Stripe elements modal styling */
.stripe-card-modal {
    max-width: 450px !important;
}

.stripe-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

body.light-theme .stripe-header {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.stripe-badge-secured {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    line-height: 1.4;
}

body.light-theme .stripe-badge-secured {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 0, 0, 0.05);
}

.stripe-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.stripe-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: stripe-spin 0.8s linear infinite;
}

@keyframes stripe-spin {
    to { transform: rotate(360deg); }
}

