/* ========================================
   US Investment Community Landing Page
   Color Palette: Lapis Lazuli Blue Theme
   Font: Space Grotesk
   ======================================== */

:root {
    /* Primary Colors - Lapis Lazuli Blue */
    --primary-dark: #1B4F72;
    --primary: #2874A6;
    --primary-light: #D6EAF8;
    
    /* Extended Palette */
    --primary-deep: #0E3254;
    --primary-medium: #3498DB;
    --primary-pale: #EBF5FB;
    
    /* Accents */
    --accent-gold: #F4D03F;
    --accent-success: #27AE60;
    --accent-danger: #E74C3C;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(27, 79, 114, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(27, 79, 114, 0.1), 0 2px 4px -1px rgba(27, 79, 114, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(27, 79, 114, 0.1), 0 4px 6px -2px rgba(27, 79, 114, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(27, 79, 114, 0.1), 0 10px 10px -5px rgba(27, 79, 114, 0.04);
    --shadow-glow: 0 0 40px rgba(40, 116, 166, 0.3);
    
    /* Typography */
    --font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Notification Bubble
   ======================================== */

.notification-bubble {
    position: fixed;
    bottom: 100px;
    left: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 12px 20px;
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--accent-success);
}

.notification-bubble.show {
    transform: translateX(0);
}

.bubble-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.bubble-content i {
    color: var(--accent-success);
    font-size: 18px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14, 50, 84, 0.92) 0%, rgba(27, 79, 114, 0.88) 50%, rgba(40, 116, 166, 0.85) 100%), 
                url('../images/hero-bg.jpg') center/cover no-repeat fixed;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.animated-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float1 15s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float2 12s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 24px;
    max-width: 900px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge i {
    color: var(--accent-gold);
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--white);
}

.title-line {
    display: block;
}

.title-line:first-child {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 8px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F8E473 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--primary-light);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 28px;
}

.stat-label {
    font-size: 14px;
    color: var(--primary-light);
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.hero-cta.large {
    padding: 22px 48px;
    font-size: 20px;
}

.cta-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cta-icon-small {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ========================================
   Stock Ticker
   ======================================== */

.stock-ticker {
    background: var(--primary-deep);
    padding: 16px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrap {
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    white-space: nowrap;
}

.ticker-symbol {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.ticker-price {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-300);
}

.ticker-change {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ticker-item.positive .ticker-change {
    color: var(--accent-success);
}

.ticker-item.negative .ticker-change {
    color: var(--accent-danger);
}

/* ========================================
   Content Sections
   ======================================== */

.content-section {
    padding: var(--section-padding);
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: var(--gray-900);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--gray-300);
}

.section-gradient {
    background: linear-gradient(180deg, var(--primary-pale) 0%, var(--white) 100%);
}

.section-cta-final {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 120px 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-column.right-image {
    direction: ltr;
}

.two-column.right-image .column-text {
    order: 1;
}

.two-column.right-image .column-image {
    order: 2;
}

.column-image {
    display: flex;
    justify-content: center;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
}

.section-cta-final .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.section-subtitle.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta-final .section-subtitle {
    color: var(--primary-light);
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--gray-600);
}

.feature-list li i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-list li strong {
    color: var(--gray-800);
}

.section-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.section-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Image Cards */
.image-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

/* Photo Image Cards */
.image-card-photo {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: none;
}

.card-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.image-card-photo:hover .card-photo {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(14, 50, 84, 0.95) 0%, rgba(14, 50, 84, 0.7) 60%, transparent 100%);
    padding: 60px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.overlay-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F8E473 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
}

.overlay-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.overlay-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-indicator .live-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    margin-left: 0;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon i {
    font-size: 28px;
    color: var(--white);
}

.guide-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.guide-item:hover {
    background: var(--primary-light);
    transform: translateX(8px);
}

.guide-item i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.guide-item span {
    font-weight: 600;
    color: var(--gray-700);
}

/* Schedule Card */
.schedule-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
}

.schedule-header i {
    font-size: 24px;
    color: var(--accent-gold);
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.schedule-day {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.schedule-info {
    flex: 1;
}

.schedule-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.schedule-time {
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.schedule-time i {
    font-size: 12px;
}

/* News Card */
.news-card {
    background: var(--white);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
}

.news-header i {
    color: var(--accent-gold);
    font-size: 22px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-danger);
    border-radius: 50%;
    margin-left: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: 10px;
}

.news-badge {
    padding: 4px 10px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.news-badge.urgent {
    background: var(--accent-danger);
}

.news-text {
    font-size: 14px;
    color: var(--gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   Audience Cards
   ======================================== */

.centered-content {
    margin-bottom: 60px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.audience-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid var(--primary-light);
}

.audience-icon i {
    font-size: 32px;
    color: var(--primary);
}

.audience-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.audience-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-pale) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 22px;
    color: var(--primary);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 16px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray-400);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
}

/* ========================================
   Final CTA Section
   ======================================== */

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
    font-size: 16px;
    font-weight: 500;
}

.cta-benefit i {
    color: var(--accent-success);
    font-size: 18px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--gray-900);
    padding: 60px 0 30px;
    color: var(--gray-400);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-700);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h3 i {
    color: var(--primary);
}

.footer-brand p {
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* ========================================
   Fixed Bottom CTA
   ======================================== */

.fixed-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
  
    z-index: 999;
    display: flex;
    justify-content: center;
}

.fixed-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.fixed-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.fixed-cta-btn .cta-icon {
    width: 26px;
    height: 26px;
}

.bottom-spacer {
    height: 90px;
}

/* ========================================
   Modal Styles
   ======================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 50, 84, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-normal);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2 i {
    color: var(--accent-gold);
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
    overflow-y: auto;
    max-height: calc(80vh - 90px);
}

.modal-updated {
    color: var(--gray-400);
    font-size: 13px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 24px 0 12px;
}

.modal-body h3:first-of-type {
    margin-top: 0;
}

.modal-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
}

/* ========================================
   Highlight Box
   ======================================== */

.highlight-box {
    background: linear-gradient(135deg, rgba(40, 116, 166, 0.1) 0%, rgba(27, 79, 114, 0.15) 100%);
    border-left: 4px solid var(--accent-gold);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
}

.highlight-box p {
    color: var(--primary-dark);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Problems Section
   ======================================== */

.problems-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.problem-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.problem-card.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.problem-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.problem-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: all var(--transition-normal);
}

.problem-card:hover .problem-img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.problem-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.problem-content p {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ========================================
   Steps Grid (Solution Section)
   ======================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-gold) 100%);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(40, 116, 166, 0.4);
}

.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   Trust Features Section
   ======================================== */

.trust-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.trust-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.trust-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--primary-light);
}

.trust-icon i {
    font-size: 28px;
    color: var(--primary);
}

.trust-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   Celebrity Testimonials
   ======================================== */

.testimonial-avatar.celebrity {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.testimonial-avatar.celebrity i {
    color: var(--white);
    font-size: 26px;
}

.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .testimonial-name {
    color: var(--white);
}

.section-dark .testimonial-role {
    color: var(--gray-400);
}

.section-dark .testimonial-text {
    color: var(--gray-300);
}

/* ========================================
   Statistics Section
   ======================================== */

.stats-list {
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.stat-label-big {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-value.highlight {
    color: var(--accent-success);
}

.stat-value.warning {
    color: var(--accent-danger);
}

/* ========================================
   Partner Logos
   ======================================== */

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-600);
}

.partner-logo i {
    font-size: 24px;
    color: var(--primary);
}

/* ========================================
   Mobile Animations
   ======================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Animation Classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-up.animated {
    animation-name: slideInUp;
}

.animate-slide-left.animated {
    animation-name: slideInLeft;
}

.animate-slide-right.animated {
    animation-name: slideInRight;
}

.animate-scale.animated {
    animation-name: scaleIn;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .two-column.right-image .column-text,
    .two-column.right-image .column-image {
        order: unset;
    }
    
    .audience-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 48px auto 0;
    }
    
    .problem-card,
    .problem-card.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .problem-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    /* Hero Mobile Centering & Animation */
    .hero {
        min-height: 100svh;
        padding: 80px 0;
    }
    
    .hero-content {
        padding: 20px 16px;
    }
    
    .hero-title {
        font-size: 38px;
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .hero-subtitle {
        font-size: 15px;
        padding: 0 8px;
        animation: fadeInUp 0.8s ease 0.2s forwards;
        opacity: 0;
    }
    
    .badge {
        animation: scaleIn 0.5s ease forwards;
    }
    
    .hero-stats {
        gap: 16px;
        animation: fadeInUp 0.8s ease 0.4s forwards;
        opacity: 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta {
        padding: 16px 28px;
        font-size: 16px;
        animation: fadeInUp 0.8s ease 0.6s forwards;
        opacity: 0;
        width: 100%;
        justify-content: center;
    }
    
    /* Section Mobile Styles */
    .content-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 15px;
        text-align: center;
    }
    
    .column-text {
        text-align: center;
    }
    
    .feature-list {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }
    
    .feature-list li {
        justify-content: flex-start;
    }
    
    .section-cta {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .image-card {
        padding: 24px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .image-card-photo {
        padding: 0;
        max-width: 100%;
    }
    
    .card-photo {
        height: 280px;
    }
    
    .card-overlay {
        padding: 40px 20px 20px;
    }
    
    .overlay-icon {
        width: 48px;
        height: 48px;
    }
    
    .overlay-icon i {
        font-size: 20px;
    }
    
    .overlay-text {
        font-size: 17px;
    }
    
    /* Audience Cards Mobile */
    .audience-card {
        padding: 32px 24px;
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .audience-icon {
        width: 70px;
        height: 70px;
    }
    
    .audience-icon i {
        font-size: 28px;
    }
    
    .audience-card h3 {
        font-size: 22px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .testimonial-info {
        flex: unset;
    }
    
    .testimonial-text {
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand h3 {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    /* Notification Bubble Mobile */
    .notification-bubble {
        left: 16px;
        right: 16px;
        bottom: 100px;
        padding: 10px 16px;
    }
    
    .bubble-content {
        font-size: 13px;
        justify-content: center;
    }
    
    /* Fixed CTA Mobile */
    .fixed-bottom-cta {
        padding: 12px 16px;
    }
    
    .fixed-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 320px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-benefit {
        font-size: 14px;
    }
    
    /* Modal Mobile */
    .modal-overlay {
        padding: 16px;
        align-items: flex-end;
    }
    
    .modal-content {
        max-height: 85vh;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-body h3 {
        font-size: 16px;
    }
    
    .modal-body p {
        font-size: 14px;
    }
    
    /* Final CTA Section Mobile */
    .section-cta-final {
        padding: 80px 0;
    }
    
    .final-cta-content {
        padding: 0 8px;
    }
    
    .hero-cta.large {
        padding: 16px 24px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    /* Steps Grid Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 24px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .step-card h4 {
        font-size: 18px;
    }
    
    /* Problems Grid Mobile */
    .problems-grid {
        gap: 40px;
    }
    
    .problem-content h3 {
        font-size: 22px;
        text-align: center;
    }
    
    .problem-content p {
        font-size: 15px;
        text-align: center;
    }
    
    .problem-img {
        height: 200px;
    }
    
    /* Trust Features Mobile */
    .trust-card {
        padding: 24px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon i {
        font-size: 24px;
    }
    
    .trust-card h4 {
        font-size: 18px;
    }
    
    /* Stats List Mobile */
    .stats-list {
        padding: 0 16px;
    }
    
    .stat-row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px;
    }
    
    .stat-label-big {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    /* Partner Logos Mobile */
    .partner-logos {
        gap: 24px;
    }
    
    .partner-logo {
        font-size: 14px;
    }
    
    .partner-logo i {
        font-size: 20px;
    }
    
    /* Highlight Box Mobile */
    .highlight-box {
        padding: 16px 20px;
    }
    
    .highlight-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .guide-item {
        padding: 12px;
    }
    
    .guide-item span {
        font-size: 14px;
    }
    
    .schedule-item {
        padding: 12px;
    }
    
    .schedule-day {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }
    
    .schedule-title {
        font-size: 14px;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .news-text {
        white-space: normal;
    }
    
    .fixed-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .fixed-cta-btn .cta-icon {
        width: 22px;
        height: 22px;
    }
}

