/* Main CSS for Bitvest Global Landing Page */
/* Extracted from index.html for better maintainability */

/* Basic WordPress Styles */
img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

/* Global CSS Variables */
:root {
    /* Primary Blue Color Palette */
    --ast-global-color-0: #5f8ef1;        /* Primary Blue */
    --primary-blue-light: #8db0f5;        /* Lighter Blue (+25% lightness) */
    --primary-blue-lighter: #b8d1f8;      /* Even Lighter Blue (+40% lightness) */
    --primary-blue-lightest: #e3effc;     /* Lightest Blue (+60% lightness) */
    --primary-blue-dark: #4a73d9;         /* Darker Blue (-15% lightness) */
    --primary-blue-darker: #3558c1;       /* Even Darker Blue (-30% lightness) */
    --primary-blue-darkest: #203da9;      /* Darkest Blue (-45% lightness) */
    
    /* Supporting Colors */
    --ast-global-color-1: #1a1a2e;        /* Dark Navy */
    --ast-global-color-2: #16213e;        /* Medium Navy */
    --ast-global-color-3: #0f3460;        /* Blue Navy */
    --ast-global-color-4: #8db0f5;        /* Light Blue (updated to complement primary) */
    --ast-global-color-5: #e5e5e5;        /* Light Gray */
    --ast-global-color-6: #f6f6f6;        /* Very Light Gray */
    --ast-global-color-7: #ffffff;        /* White */
    --ast-global-color-8: #000000;        /* Black */
    
    /* Additional Blue Variations for Gradients and Accents */
    --blue-gradient-start: #5f8ef1;       /* Primary Blue */
    --blue-gradient-end: #8db0f5;         /* Light Blue */
    --blue-gradient-dark: #4a73d9;        /* Dark Blue */
    --blue-accent: #3558c1;               /* Accent Blue */
    --blue-hover: #4a73d9;                /* Hover State Blue */
}

/* Base Styles */
html {
    font-size: 93.75%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--ast-global-color-1);
    background-color: var(--ast-global-color-7);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

p {
    margin: 0 0 1rem 0;
}

/* Links */
a {
    color: var(--ast-global-color-0);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ast-global-color-1);
}

/* Buttons */
.btn, .button, input[type="submit"] {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--ast-global-color-0);
    color: var(--ast-global-color-7);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover, .button:hover, input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--blue-hover) 0%, var(--primary-blue-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(95, 142, 241, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--ast-global-color-0);
    border: 2px solid var(--ast-global-color-0);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--ast-global-color-0) 0%, var(--primary-blue-light) 100%);
    color: var(--ast-global-color-7);
    border-color: var(--primary-blue-light);
    box-shadow: 0 6px 20px rgba(95, 142, 241, 0.25);
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: 180px;
}

/* Form Elements */
input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--ast-global-color-0);
    box-shadow: 0 0 0 2px rgba(95, 142, 241, 0.2);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* Header */
.site-header {
    background-color: var(--ast-global-color-7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.2rem 0;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--ast-global-color-1);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--ast-global-color-0);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ast-global-color-0);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn-nav {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    min-width: auto;
    font-weight: 500;
    border-radius: 6px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue-darkest) 0%, var(--primary-blue-darker) 50%, var(--ast-global-color-1) 100%);
    color: var(--ast-global-color-7);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    will-change: transform;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.8) 0%, 
        rgba(22, 33, 62, 0.8) 50%,
        rgba(15, 52, 96, 0.9) 100%);
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(95, 142, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    margin: 0 auto;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--ast-global-color-7) 0%, var(--ast-global-color-0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-6);
}

.features-visual {
    text-align: center;
    margin-bottom: 3rem;
}

.features-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.features-hero-image:hover {
    transform: scale(1.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--ast-global-color-7);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ast-global-color-0), var(--ast-global-color-4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--ast-global-color-7);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ast-global-color-1);
}

.feature-description {
    color: var(--ast-global-color-2);
    line-height: 1.6;
}

/* Pricing Highlights Section */
.pricing-highlights-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-7);
}

.pricing-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-highlight-card {
    background: var(--ast-global-color-7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--ast-global-color-0);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ast-global-color-0), var(--ast-global-color-4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--ast-global-color-7);
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--ast-global-color-1);
}

.highlight-subtitle {
    font-size: 0.9rem;
    color: var(--ast-global-color-2);
    margin-bottom: 0.5rem;
}

.highlight-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ast-global-color-0);
    margin-bottom: 0.25rem;
}

.highlight-unit {
    font-size: 1rem;
    color: var(--ast-global-color-2);
    margin-bottom: 1rem;
}

.highlight-description {
    color: var(--ast-global-color-2);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing Highlights Section */
.pricing-highlights-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-7);
}

.pricing-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-highlight-card {
    background: var(--ast-global-color-7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--ast-global-color-0);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ast-global-color-0), var(--ast-global-color-4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--ast-global-color-7);
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--ast-global-color-1);
}

.highlight-subtitle {
    font-size: 0.9rem;
    color: var(--ast-global-color-2);
    margin-bottom: 0.5rem;
}

.highlight-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ast-global-color-0);
    margin-bottom: 0.25rem;
}

.highlight-unit {
    font-size: 1rem;
    color: var(--ast-global-color-2);
    margin-bottom: 1rem;
}

.highlight-description {
    color: var(--ast-global-color-2);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-6);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--ast-global-color-7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ast-global-color-0), var(--ast-global-color-4));
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--ast-global-color-0);
}

.pricing-card.featured {
    border-color: var(--ast-global-color-0);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(95, 142, 241, 0.2);
}

.pricing-card.featured::before {
    height: 6px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ast-global-color-1);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ast-global-color-0);
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 1rem;
    color: var(--ast-global-color-2);
    margin-bottom: 2rem;
}



.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--ast-global-color-2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--ast-global-color-0);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Market Analysis Section */
.market-analysis-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-7);
}

.market-analysis-content {
    padding-right: 2rem;
}

.analysis-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ast-global-color-0), var(--ast-global-color-4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--ast-global-color-7);
}

.analysis-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.analysis-feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--ast-global-color-6);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.analysis-feature:hover {
    transform: translateY(-5px);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: var(--ast-global-color-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: var(--ast-global-color-7);
}

.market-analysis-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: linear-gradient(135deg, var(--ast-global-color-1), var(--ast-global-color-2));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ast-global-color-7);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--ast-global-color-0);
}

/* Platform Features Section */
.platform-features-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-6);
}

.platform-features-content {
    padding-right: 2rem;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.download-option {
    text-align: center;
    padding: 1.5rem;
    background: var(--ast-global-color-7);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.download-option:hover {
    transform: translateY(-5px);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: var(--ast-global-color-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--ast-global-color-7);
}

.download-option h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ast-global-color-1);
    line-height: 1.4;
}

.platform-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.device {
    position: absolute;
    background: var(--ast-global-color-7);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.device-laptop {
    width: 300px;
    height: 200px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.device-tablet {
    width: 120px;
    height: 160px;
    top: 120px;
    left: 20%;
}

.device-mobile {
    width: 80px;
    height: 120px;
    top: 200px;
    right: 20%;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ast-global-color-1), var(--ast-global-color-2));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ast-global-color-7);
    font-size: 0.8rem;
}

/* Financial Ticker Section */
.financial-ticker-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-7);
}

.ticker-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.ticker-item {
    background: var(--ast-global-color-6);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.ticker-item:hover {
    transform: translateY(-3px);
}

.ticker-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ast-global-color-7);
    font-size: 0.9rem;
}

.ticker-icon.sp500 {
    background: var(--danger-color);
}

.ticker-icon.nasdaq {
    background: var(--ast-global-color-3);
}

.ticker-icon.forex {
    background: var(--success-color);
}

.ticker-icon.bitcoin {
    background: var(--warning-color);
}

.ticker-icon.ethereum {
    background: var(--ast-global-color-4);
}

.ticker-info {
    flex: 1;
}

.ticker-name {
    font-size: 0.9rem;
    color: var(--ast-global-color-2);
    margin-bottom: 0.25rem;
}

.ticker-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ast-global-color-1);
    margin-bottom: 0.25rem;
}

.ticker-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.ticker-change.positive {
    color: var(--success-color);
}

.ticker-change.negative {
    color: var(--danger-color);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-feature {
    text-align: center;
    padding: 2rem;
    background: var(--ast-global-color-6);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trust-feature:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ast-global-color-0), var(--ast-global-color-4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--ast-global-color-7);
}

.trust-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ast-global-color-1);
}

.trust-feature p {
    color: var(--ast-global-color-2);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ast-global-color-0) 0%, var(--primary-blue-light) 50%, var(--ast-global-color-4) 100%);
    text-align: center;
    color: var(--ast-global-color-7);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ast-global-color-0) 0%, var(--primary-blue-light) 50%, var(--ast-global-color-4) 100%);
    text-align: center;
    color: var(--ast-global-color-7);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    background-color: var(--ast-global-color-1);
    color: var(--ast-global-color-7);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--ast-global-color-7);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ast-global-color-5);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ast-global-color-1);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--ast-global-color-2);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Market Analysis Section */
.market-analysis-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-7);
}

.market-analysis-content {
    padding-right: 2rem;
}

.analysis-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ast-global-color-0), var(--ast-global-color-4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--ast-global-color-7);
}

.analysis-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.analysis-feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--ast-global-color-6);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.analysis-feature:hover {
    transform: translateY(-5px);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: var(--ast-global-color-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: var(--ast-global-color-7);
}

.market-analysis-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: linear-gradient(135deg, var(--ast-global-color-1), var(--ast-global-color-2));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ast-global-color-7);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--ast-global-color-0);
}

/* Platform Features Section */
.platform-features-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-6);
}

.platform-features-content {
    padding-right: 2rem;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.download-option {
    text-align: center;
    padding: 1.5rem;
    background: var(--ast-global-color-7);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.download-option:hover {
    transform: translateY(-5px);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: var(--ast-global-color-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--ast-global-color-7);
}

.download-option h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ast-global-color-1);
    line-height: 1.4;
}

.platform-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.device {
    position: absolute;
    background: var(--ast-global-color-7);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.device-laptop {
    width: 300px;
    height: 200px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.device-tablet {
    width: 120px;
    height: 160px;
    top: 120px;
    left: 20%;
}

.device-mobile {
    width: 80px;
    height: 120px;
    top: 200px;
    right: 20%;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ast-global-color-1), var(--ast-global-color-2));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ast-global-color-7);
    font-size: 0.8rem;
}

/* Financial Ticker Section */
.financial-ticker-section {
    padding: 6rem 0;
    background-color: var(--ast-global-color-7);
}

.ticker-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.ticker-item {
    background: var(--ast-global-color-6);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.ticker-item:hover {
    transform: translateY(-3px);
}

.ticker-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ast-global-color-7);
    font-size: 0.9rem;
}

.ticker-icon.sp500 {
    background: #dc3545;
}

.ticker-icon.nasdaq {
    background: var(--ast-global-color-3);
}

.ticker-icon.forex {
    background: #28a745;
}

.ticker-icon.bitcoin {
    background: #ffc107;
}

.ticker-icon.ethereum {
    background: var(--ast-global-color-4);
}

.ticker-info {
    flex: 1;
}

.ticker-name {
    font-size: 0.9rem;
    color: var(--ast-global-color-2);
    margin-bottom: 0.25rem;
}

.ticker-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ast-global-color-1);
    margin-bottom: 0.25rem;
}

.ticker-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.ticker-change.positive {
    color: #28a745;
}

.ticker-change.negative {
    color: #dc3545;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-feature {
    text-align: center;
    padding: 2rem;
    background: var(--ast-global-color-6);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trust-feature:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ast-global-color-0), var(--ast-global-color-4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--ast-global-color-7);
}

.trust-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ast-global-color-1);
}

.trust-feature p {
    color: var(--ast-global-color-2);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        min-width: 250px;
    }
    
    .features-grid,
    .pricing-grid,
    .pricing-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .row {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ticker-container {
        grid-template-columns: 1fr;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
    }
    
    .market-analysis-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .platform-features-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .features-section,
    .pricing-section,
    .pricing-highlights-section,
    .market-analysis-section,
    .platform-features-section,
    .financial-ticker-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .ticker-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-content {
        will-change: auto;
        transform: none !important;
    }
    
    .hero-section {
        will-change: auto;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--ast-global-color-7);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--ast-global-color-0);
    box-shadow: 0 4px 15px rgba(95, 142, 241, 0.2);
}

.testimonial-rating {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--ast-global-color-3);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    color: var(--ast-global-color-1);
    font-weight: 600;
    margin: 0;
}

/* Video Testimonials */
.video-testimonials {
    margin-top: 3rem;
}

.video-testimonials-title {
    text-align: center;
    color: var(--ast-global-color-1);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.video-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .video-grid {
        flex-direction: column;
        align-items: center;
    }
}

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

.video-thumbnail {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.video-poster {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ast-global-color-0) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(95, 142, 241, 0.3);
}

.video-play-button:hover {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--ast-global-color-0) 100%);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(95, 142, 241, 0.4);
}

.video-play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 0.2rem;
}

.video-caption {
    margin-top: 1rem;
    color: var(--ast-global-color-1);
    font-weight: 500;
}

/* Market Video Thumbnail Styles */
.market-video-thumbnail {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.market-video-thumbnail:hover {
    transform: scale(1.02);
}

.market-video-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.market-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ast-global-color-0) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(95, 142, 241, 0.35);
}

.market-video-play-button:hover {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--ast-global-color-0) 100%);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(95, 142, 241, 0.45);
}

.market-video-play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 0.3rem;
}

/* Video Overlay Player */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.video-overlay.active {
    display: flex;
}

.video-player-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: 100%;
    max-height: 80vh;
}

.video-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.video-close-btn:hover {
    transform: scale(1.2);
}

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
}

/* Platform Mockup Image Styles */
.platform-mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.platform-mockup-image:hover {
    transform: translateY(-2px);
}

/* Enhanced CTA Section Styles */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.1rem;
    color: var(--primary-blue-lightest);
}

/* Footer Logo Styles */
.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand {
    max-width: 350px;
}

/* Enhanced Footer Styles */
.footer-section h3 {
    color: var(--ast-global-color-7);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--ast-global-color-7);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-info a:hover {
    color: var(--ast-global-color-7);
}

.contact-info i {
    font-size: 1rem;
}

/* Footer Disclaimer */
.footer-disclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

/* TradingView Header Widget */
.tradingview-header-ticker {
    background: var(--ast-global-color-1);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tradingview-header-ticker .tradingview-widget-container__widget {
    height: 35px;
}

/* TradingView Footer Widget */
.tradingview-footer-ticker {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.tradingview-footer-ticker .tradingview-widget-container__widget {
    height: 60px;
}

/* TradingView Section Widget */
.financial-ticker-section .tradingview-widget-container {
    margin-bottom: 3rem;
}

.financial-ticker-section .tradingview-widget-container__widget {
    height: 400px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ast-global-color-6);
}

::-webkit-scrollbar-thumb {
    background: var(--ast-global-color-0);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ast-global-color-4);
}
