/*
Theme Name: Homepage Theme
Theme URI: https://skeptichub.com
Author: Skeptic Hub
Author URI: https://skeptichub.com
Description: A custom dark-theme WordPress theme for Skeptic Hub crypto analysis platform. Features glass morphism UI, GSAP animations, Three.js globe, and responsive design.
Version: 1.0.0
Tested up to: 6.7
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: homepage-theme
Tags: custom-menu, custom-logo, one-column, dark, crypto, trading
*/

/* ==================== SKEPTIC HUB BRAND PALETTE (DARK THEME) ==================== */
:root {
    /* 1. Structural & Main Sections (Light Mode) */
    --bg-main: #F8F9FB; 
    --bg-secondary: #EEF1F6; 
    --bg-header-anchor: #DCE6F6; 

    /* 2. Typography & Content Hierarchy */
    --text-primary: #111827; 
    --text-secondary: #6B7280; 

    /* 3. CTAs, Interactions & Charts */
    --cta-primary-link: #2563EB; 
    --alert-highlight: #EA580C; 
    --accent-secondary-tag: #7C3AED; 

    /* Base UI Colors (Derived) */
    --border-color: rgba(17, 24, 39, 0.12); 
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl:30rem;
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==================== CANDLESTICK BACKGROUND ==================== */
.candlesticks-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* place above globe but below content */
    pointer-events: none;
    opacity: 0.3; /* slightly more visible for wider candles */
}

.candlestick {
    position: absolute;
    animation: floatCandle 4s ease-in-out infinite;
    min-width: 16px; /* make candles naturally plumper */
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(2,6,23,0.06);
}

.candlestick:nth-child(odd) {
    animation-duration: 5s;
    animation-delay: 0.5s;
}

.candlestick:nth-child(even) {
    animation-duration: 6s;
    animation-delay: 1s;
}

@keyframes floatCandle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Upper wick (shadow) */
.candlestick::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    width: 3px;
    height: 32px;
    background: rgba(156, 163, 175, 0.7);
}

/* Lower wick (shadow) */
.candlestick::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 3px;
    height: 32px;
    background: rgba(156, 163, 175, 0.7);
}

/* Filled (bearish) candle */
.candlestick.filled {
    background: rgba(107, 114, 128, 0.8);
    border-radius: 1px;
}

/* Hollow (bullish) candle */
.candlestick.hollow {
    background: rgba(229, 231, 235, 0.9);
    border: 2px solid rgba(107, 114, 128, 0.8);
    border-radius: 1px;
    box-sizing: border-box;
    transition: all var(--transition-base);
}

.candlestick.hollow::before,
.candlestick.hollow::after {
    background: rgba(107, 114, 128, 0.8);
}

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== GLOBAL FONT SYSTEM (excludes hero) ==================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Large titles (Inter Tight - Extra Bold) */
.about-title,
.analysis-title,
.pricing-big-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
}

/* Description / body text (Inter - Regular) */
.about-description,
.about-footer,
.about-quote,
.about-features li,
.analysis-subtitle,
.analysis-card-excerpt,
.pricing-subtitle,
.pricing-features li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Data labels & small text (Space Mono) */
.about-label,
.analysis-label,
.analysis-card-tag,
.pricing-plan-label,
.pricing-amount,
.pricing-period,
.ticker-item {
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    text-transform: uppercase;
}

/* ==================== GLASS HEADER ==================== */
.site-header {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 0.75rem 2rem 1.2rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.site-header.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-bar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Logo */
.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
    background: linear-gradient(135deg, #111827 0%, #6B7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-base);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    color: #4B5563;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-item:hover {
    color: #111827;
    background: rgba(17, 24, 39, 0.05);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: var(--cta-primary-link);
    transition: transform 0.25s ease;
}

.nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Auth Section */
.nav-auth {
    flex-shrink: 0;
}

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    background: #111827;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-login-btn:hover {
    background: #1F2937;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.nav-login-btn svg {
    width: 15px;
    height: 15px;
    opacity: 0.8;
}

/* Logged-in User */
.nav-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    border-radius: 10px;
    background: rgba(17, 24, 39, 0.05);
    transition: all 0.25s ease;
    cursor: pointer;
}

.nav-user:hover {
    background: rgba(17, 24, 39, 0.1);
}

.nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.nav-username {
    font-size: 0.82rem;
    font-weight: 600;
    color: #111827;
}

/* ---- SCROLLED STATE (on dark bg) ---- */
.site-header.is-scrolled .nav-bar {
    background: rgba(11, 15, 20, 0.45);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled .nav-logo-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #9CA3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-header.is-scrolled .nav-item {
    color: #9CA3AF;
}

.site-header.is-scrolled .nav-item:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav-login-btn {
    background: #FFFFFF;
    color: #111827;
}

.site-header.is-scrolled .nav-login-btn:hover {
    background: #F3F4F6;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .nav-username {
    color: #F3F4F6;
}

.site-header.is-scrolled .nav-user {
    background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav-user:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* ---- HIDDEN on scroll down, shown on scroll up ---- */
.site-header.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

/* ---- ON LIGHT BACKGROUND (white sections) ---- */
.site-header.on-light .nav-bar {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(17, 24, 39, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.site-header.on-light .nav-logo-text {
    background: linear-gradient(135deg, #111827 0%, #6B7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-header.on-light .nav-item {
    color: #4B5563;
}

.site-header.on-light .nav-item:hover {
    color: #111827;
    background: rgba(17, 24, 39, 0.05);
}

.site-header.on-light .nav-login-btn {
    background: #111827;
    color: #FFFFFF;
    border-color: transparent;
}

.site-header.on-light .nav-login-btn:hover {
    background: #1F2937;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.site-header.on-light .nav-username {
    color: #111827;
}

.site-header.on-light .nav-user {
    background: rgba(17, 24, 39, 0.05);
}

.site-header.on-light .nav-user:hover {
    background: rgba(17, 24, 39, 0.1);
}

/* ==================== RESPONSIVE HEADER ==================== */
@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 1rem;
    }

    .nav-bar {
        padding: 0.5rem 0.75rem;
    }

    .nav-links {
        display: none;
    }

    .nav-login-btn {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }
}

/* نمونه بخش‌های سفید و مشکی */
.section-white {
    height: 100vh;
    background: #ffffff;
}

.section-black {
    height: 100vh;
    background: #0B0F14;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: var(--bg-main); 
    background-image:
        linear-gradient(90deg, rgba(156, 163, 175, 0.25) 1px, transparent 1px),
        linear-gradient(0deg, rgba(156, 163, 175, 0.25) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0;
    z-index: 1;
}

/* Hero Brand - Logo and Name */
.hero-brand {
    position: absolute;
    top: var(--spacing-xl);
    left: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 30;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.brand-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.brand-logo svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Canvas Background Layer */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Globe Background Layer */
.hero-globe {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-globe canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* Content Overlay Layer */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    /* Subtle overlay for better text readability on light background */
    background: radial-gradient(circle at center, rgba(248, 249, 251, 0.2) 0%, rgba(248, 249, 251, 0.6) 100%);
}

.hero-container {
    max-width: 100%;
    width: 100%;
    text-align: left;
}

/* ==================== TYPOGRAPHY ==================== */
.hero-title {
    font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(40px, 12vw, 180px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: -0.1em;
    width: 100%;
    /* Subtle text shadow for light background */
    text-shadow: 0 2px 8px rgba(17, 24, 39, 0.08);
}

.hero-line-1 {
    display: block;
    color: var(--text-primary);
    text-align: left;
    width: 100%;
}

.hero-line-2 {
    display: block;
    color: var(--text-primary);
    text-align: right;
    width: 100%;
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--cta-primary-link) 20%, var(--accent-secondary-tag) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 0.95rem; 
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
    /* Subtle readability enhancement for light background */
    text-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
}

/* ==================== CALL TO ACTION BUTTONS ==================== */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--cta-primary-link);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(2, 133, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(2, 133, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--cta-primary-link);
    color: var(--cta-primary-link);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}


.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.stat-value {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    font-weight: 700;
}

.stat-divider {
    display: none;
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* ==================== LOADING INDICATOR ==================== */
.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
}

.loading-spinner {
    border-top-color: var(--cta-primary-link);
    height: 40px;
    border: 3px solid rgba(17, 24, 39, 0.12);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ==================== LIVE CRYPTO TICKER ==================== */
.crypto-ticker-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(248, 249, 251, 0.9); 
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: tickerScroll 40s linear infinite;
    padding-left: 100%; 
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: var(--spacing-2xl);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-secondary);
}

.ticker-symbol {
    color: var(--text-primary);
    margin-right: var(--spacing-xs);
}

.ticker-price {
    margin-right: var(--spacing-xs);
}

.ticker-change {
    font-size: 0.75rem;
}

.ticker-change.up {
    color: var(--cta-primary-link); 
}

.ticker-change.down {
    color: var(--alert-highlight); 
}

/* Pause animation on hover */
.crypto-ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}


/* ==================== SCROLL DOWN INDICATOR ==================== */
.scroll-down-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: fadeInUp 1s ease-out 1.5s forwards;
    opacity: 0;
}

.scroll-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.scroll-link:hover {
    color: var(--text-primary);
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition-base);
}

.scroll-link:hover .scroll-icon {
    border-color: var(--cta-primary-link);
}

.scroll-icon svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(10deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (min-width: 768px) {
    :root {
        --font-size-3xl: 2.5rem;
        --font-size-4xl: 3rem;
    }
    
    .hero-content {
        padding: var(--spacing-xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
  
    .stat-divider {
        display: block;
        width: 1px;
        height: 40px;
        background: rgba(17, 24, 39, 0.12);
    }
    
    .btn {
        min-width: 180px;
    }
}

/* ==================== RESPONSIVE - DESKTOP ==================== */
@media (min-width: 1024px) {
    :root {
        --font-size-4xl: 3.5rem;
        --font-size-5xl: 4rem;
    }
}

/* ==================== RESPONSIVE - LARGE DESKTOP ==================== */
@media (min-width: 1440px) {
    .hero-content {
        padding: var(--spacing-2xl);
    }
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: #0B0F14;
    color: #FFFFFF;
    padding: 4rem 2rem;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    max-width: 600px;
    direction: ltr;
    text-align: left;
}

.about-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: #6B7280;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.about-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #F3F4F6;
    margin: 2rem 0;
    line-height: 1.6;
    padding: 0;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.about-features li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cta-primary-link);
    font-size: 1.5rem;
    line-height: 1;
}

.about-features strong {
    color: #FFFFFF;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.about-footer {
    font-size: 1rem;
    line-height: 1.8;
    color: #F3F4F6;
    font-weight: 500;
    margin-top: 2rem;
}

.about-image {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .about-content {
        order: 1;
    }

    .about-image {
        order: 2;
        height: 600px;
    }

    .about-image img {
        height: 100%;
        object-fit: cover;
    }
}

/* ==================== MARKET ANALYSIS SECTION ==================== */
.analysis-section {
    background: #FAFAFA;
    color: #111827;
    padding: 7rem 2rem 8rem;
    position: relative;
    z-index: 10;
    direction: ltr;
}

.analysis-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ---- Section Header (left-aligned for LTR) ---- */
.analysis-header {
    margin-bottom: 4rem;
    text-align: left;
    max-width: 640px;
    margin-right: auto;
}

.analysis-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 20px;
}

.analysis-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #111827;
    letter-spacing: -0.02em;
    text-align: left;
}

.analysis-subtitle {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.75;
    text-align: left;
}

/* ---- Divider line ---- */
.analysis-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    border-radius: 2px;
    margin-top: 2rem;
}

/* ---- Cards Grid ---- */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ---- Single Card ---- */
.analysis-card {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.analysis-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(37, 99, 235, 0.04);
}

/* ---- Card Image ---- */
.analysis-card-image {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.analysis-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.analysis-card:hover .analysis-card-image img {
    transform: scale(1.06);
}

/* Image overlay gradient */
.analysis-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
}

.analysis-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Card Body ---- */
.analysis-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.analysis-card-title {
    font-size: 1.2rem;
    font-weight: 650;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.analysis-card-excerpt {
    font-size: 0.88rem;
    color: #6B7280;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.analysis-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2563EB;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: auto;
}

.analysis-card-link svg {
    transition: transform 0.25s ease;
}

.analysis-card-link:hover {
    color: #1D4ED8;
    gap: 0.65rem;
}

.analysis-card-link:hover svg {
    transform: translateX(4px);
}

/* ---- Responsive Analysis ---- */
@media (max-width: 1024px) {
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .analysis-section {
        padding: 4rem 1.25rem 5rem;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
    }

    .analysis-card-image {
        height: 200px;
    }
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    background: #000000;
    color: #FFFFFF;
    padding: 10rem 2rem 8rem;
    position: relative;
    z-index: 10;
    direction: ltr;
    overflow: hidden;
}

/* Background elements for glass blur to work on */
.pricing-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* ---- Section Header ---- */


.pricing-big-title {
    margin-top: 5%;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(5rem, 14vw, 13rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    opacity: 1;
    user-select: none;
    position: absolute;
    top: -8.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
    margin: 0;
}

/* Grid wrapper to position title behind cards */
.pricing-grid-wrapper {
    position: relative;
}



/* ---- Cards Grid ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ---- Single Glass Card ---- */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem 2.25rem 2.5rem;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03) inset,
        0 4px 24px rgba(0, 0, 0, 0.15);
    /* Entrance animation */
    opacity: 0.1;
    transform: translateY(60px);
}

.pricing-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-card:nth-child(2) { transition-delay: 0.12s; }
.pricing-card:nth-child(3) { transition-delay: 0.24s; }

/* Top glass shine reflection */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 32px 80px rgba(0, 0, 0, 0.25);
}

.pricing-card.is-visible:hover {
    transform: translateY(-6px);
}

/* Featured card (middle) - more glass prominence */
.pricing-card--featured {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-card--featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

/* ---- Card Top ---- */
.pricing-card-top {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-plan-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #9CA3AF;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.pricing-amount {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    line-height: 1;
}

.pricing-period {
    font-size: 1.25rem;
    font-weight: 400;
    color: #6B7280;
    font-style: italic;
}

/* ---- Feature List ---- */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #D1D5DB;
    line-height: 1.5;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: #9CA3AF;
    margin-top: 1px;
}

/* ---- CTA Button ---- */
.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.01em;
    margin-top: auto;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Featured card button */
.pricing-card--featured .pricing-btn {
    background: #FFFFFF;
    color: #0B0F14;
    border-color: transparent;
}

.pricing-card--featured .pricing-btn:hover {
    background: #F3F4F6;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* ---- Responsive Pricing ---- */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-section {
        padding: 4rem 1.25rem 5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .pricing-big-title {
        font-size: 4rem;
        margin-bottom: -0.5rem;
    }
}


/* ==================== PAGE / SINGLE / 404 TEMPLATES ==================== */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
}

.page-content .entry-title,
.page-content .page-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-content .entry-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.page-content .entry-content {
    font-size: 1.05rem;
}

.page-content .entry-content p {
    margin-bottom: 1.25rem;
}

.page-content .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.back-home-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: var(--text-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.back-home-btn:hover {
    opacity: 0.85;
}

/* Footer Menu */
.footer-nav .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav .footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav .footer-menu li a:hover {
    color: #fff;
}

/* Elementor Overrides - Prevent conflicts */
.elementor-page .site-header {
    z-index: 999;
}

.elementor-page .hero-section {
    position: relative;
}
