/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* AI Theme Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    /* Color Palette */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #00f2fe;
    --success-color: #43e97b;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-dark: #0f0f23;
    --border-color: #e2e8f0;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px 0;
    --card-padding: 40px;
    
    /* Effects */
    --glow-color: rgba(102, 126, 234, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px var(--glow-color);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-dark);
}

html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Text wrapping */
h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Prevent horizontal scroll */
section {
    overflow-x: hidden;
    width: 100%;
}

/* ===== PARTICLE BACKGROUND ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
    transform: scale(1.05);
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-gradient);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.logo-text {
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.cta-button {
    padding: 10px 24px;
    background: var(--primary-gradient);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title span {
    display: block;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter {
    color: #fff;
    border-right: 3px solid var(--accent-color);
    overflow: hidden;
    animation: typing 3s steps(30) 1s backwards, blink 0.75s step-end infinite;
    max-width: 100%;
}

@media (max-width: 768px) {
    .typewriter {
        white-space: normal;
        border-right: none;
        animation: fadeInUp 0.8s ease 0.4s backwards;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

a.btn {
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeIn 1.2s ease 0.5s backwards;
}

.globe-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.1));
    box-shadow: 0 0 80px rgba(102, 126, 234, 0.5), inset 0 0 60px rgba(102, 126, 234, 0.3);
    animation: rotate 20s linear infinite;
    position: relative;
}

.globe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.orbit {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.orbit-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
}

.orbit-2 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    animation-duration: 25s;
}

.orbit-3 {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(80deg);
    animation-duration: 35s;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: rgba(15, 15, 35, 0.5);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.card-icon {
    margin-bottom: 24px;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== EXPORTS SECTION ===== */
.exports {
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.5) 0%, rgba(26, 26, 62, 0.5) 100%);
}

.exports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.export-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.export-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: all 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.export-card:hover .export-image {
    opacity: 0.25;
    transform: scale(1.1);
}

.export-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.export-card:hover::before {
    opacity: 0.05;
}

.export-card:hover {
    transform: translateY(-12px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 24px 80px rgba(102, 126, 234, 0.3);
}

.export-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.export-icon svg {
    position: relative;
    z-index: 1;
    stroke: var(--accent-color);
}

.export-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.export-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* ===== GLOBAL PRESENCE ===== */
.global-presence {
    background: rgba(15, 15, 35, 0.7);
}

.presence-content {
    max-width: 1000px;
    margin: 0 auto;
}

.large-text {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    text-align: center;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 60px;
}

.country-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.flag-icon {
    width: 24px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.country-badge:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    transition: all 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 30px 90px rgba(102, 126, 234, 0.3);
}

.mission-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.mission-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.mission-card p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== WHY CHOOSE DMAX ===== */
.why-choose {
    background: rgba(15, 15, 35, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    padding: 140px 0;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.3;
}

.cta-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.cta-highlight {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 16px;
    font-style: italic;
}

.cta-tagline {
    font-size: 28px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 10, 25, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.3));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 8px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== TELEGRAM SECTION ===== */
.telegram-section {
    background: linear-gradient(135deg, rgba(42, 171, 238, 0.1) 0%, rgba(34, 158, 217, 0.1) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.telegram-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 171, 238, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.telegram-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.telegram-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(42, 171, 238, 0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.telegram-icon {
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 40px rgba(42, 171, 238, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.telegram-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(42, 171, 238, 0.15);
    border: 1px solid rgba(42, 171, 238, 0.4);
    border-radius: 50px;
    color: #2AABEE;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: slideInRight 0.8s ease;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #2AABEE;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.telegram-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInRight 0.8s ease 0.2s backwards;
}

.telegram-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    animation: slideInRight 0.8s ease 0.4s backwards;
}

.telegram-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    animation: slideInRight 0.8s ease 0.6s backwards;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(42, 171, 238, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(42, 171, 238, 0.1);
    border-color: #2AABEE;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42, 171, 238, 0.3);
}

.feature-badge svg {
    color: #2AABEE;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(42, 171, 238, 0.4);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.8s ease 0.8s backwards;
}

.telegram-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.telegram-button:hover::before {
    left: 100%;
}

.telegram-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 60px rgba(42, 171, 238, 0.6);
}

.telegram-button .arrow-icon {
    transition: transform 0.3s ease;
}

.telegram-button:hover .arrow-icon {
    transform: translateX(5px);
}

.telegram-stats {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    animation: slideInRight 0.8s ease 1s backwards;
}

.stat-highlight {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.stat-separator {
    color: rgba(42, 171, 238, 0.5);
}

/* ===== TRADING WIDGETS ===== */
.trading-widgets {
    background: rgba(15, 15, 35, 0.8);
    padding: var(--section-padding);
}

.widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.widget-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.widget-container.full-width {
    grid-column: 1 / -1;
}

.widget-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tradingview-widget-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.tradingview-widget-container__widget {
    width: 100%;
    height: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .exports-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .widgets-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .globe {
        width: 300px;
        height: 300px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .widgets-grid {
        grid-template-columns: 1fr;
    }
    
    .widget-container.full-width {
        grid-column: 1;
    }
    
    .telegram-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .telegram-icon-container {
        justify-content: center;
    }
    
    .telegram-icon {
        width: 150px;
        height: 150px;
    }
    
    .telegram-text h2 {
        font-size: 38px;
    }
    
    .telegram-features {
        justify-content: center;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Container and spacing */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    /* Navigation */
    .navbar {
        padding: 15px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero section */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 16px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .globe {
        width: 250px;
        height: 250px;
    }
    
    /* Section headers */
    .section-title {
        font-size: 32px;
        text-align: center;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    /* About section */
    .about-text p {
        font-size: 16px;
    }
    
    /* Exports grid */
    .exports-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .export-card {
        padding: 30px 20px;
    }
    
    .export-image {
        height: 120px;
    }
    
    .export-icon {
        width: 60px;
        height: 60px;
    }
    
    .export-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .export-card h3 {
        font-size: 22px;
    }
    
    .export-card p {
        font-size: 15px;
    }
    
    /* Global presence */
    .large-text {
        font-size: 16px;
        text-align: center;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .country-badge {
        padding: 12px 16px;
        font-size: 13px;
        flex-direction: column;
        gap: 6px;
    }
    
    .flag-icon {
        width: 28px;
    }
    
    /* Mission cards */
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card {
        padding: 40px 30px;
    }
    
    .mission-card h3 {
        font-size: 28px;
    }
    
    .mission-card p {
        font-size: 16px;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    /* Trading widgets */
    .trading-widgets {
        padding: 80px 0;
    }
    
    .widget-container {
        padding: 20px;
    }
    
    .widget-title {
        font-size: 18px;
    }
    
    /* Telegram section */
    .telegram-section {
        padding: 80px 0;
    }
    
    .telegram-content {
        gap: 30px;
    }
    
    .telegram-icon {
        width: 120px;
        height: 120px;
    }
    
    .telegram-text h2 {
        font-size: 28px;
    }
    
    .telegram-description {
        font-size: 16px;
    }
    
    .telegram-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .telegram-button {
        width: 100%;
        justify-content: center;
        padding: 18px 40px;
        font-size: 16px;
    }
    
    .telegram-stats {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* CTA section */
    .final-cta {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-highlight {
        font-size: 18px;
    }
    
    .cta-tagline {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-buttons .btn {
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Sections */
    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    /* Logo */
    .logo-image,
    .footer-logo-img {
        height: 35px;
    }
    
    /* Export cards */
    .export-card {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .export-image {
        height: 100px;
        border-radius: 16px 16px 0 0;
    }
    
    .export-card h3 {
        font-size: 20px;
    }
    
    .export-card p {
        font-size: 14px;
    }
    
    /* About cards */
    .about-card {
        padding: 24px;
    }
    
    .about-card h3 {
        font-size: 20px;
    }
    
    .about-card p {
        font-size: 14px;
    }
    
    /* Countries */
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .country-badge {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .flag-icon {
        width: 22px;
    }
    
    /* Mission cards */
    .mission-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .mission-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .mission-card h3 {
        font-size: 24px;
    }
    
    .mission-card p {
        font-size: 14px;
    }
    
    /* Features */
    .feature-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-item p {
        font-size: 14px;
    }
    
    /* Trading widgets */
    .widget-container {
        padding: 16px;
        border-radius: 16px;
    }
    
    .widget-title {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    /* Telegram section */
    .telegram-section {
        padding: 60px 0;
    }
    
    .telegram-icon {
        width: 100px;
        height: 100px;
    }
    
    .telegram-text h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .telegram-description {
        font-size: 14px;
    }
    
    .telegram-features {
        gap: 8px;
    }
    
    .feature-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .feature-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .telegram-button {
        padding: 16px 32px;
        font-size: 14px;
    }
    
    .telegram-button svg {
        width: 20px;
        height: 20px;
    }
    
    .telegram-stats {
        font-size: 12px;
    }
    
    /* CTA */
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .cta-highlight {
        font-size: 16px;
    }
    
    .cta-tagline {
        font-size: 18px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-brand p {
        font-size: 13px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column a,
    .footer-column p {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .telegram-icon-container {
        display: none;
    }
}

/* ===== VERY SMALL SCREENS ===== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn {
        font-size: 13px;
        padding: 12px 20px;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .telegram-text h2 {
        font-size: 20px;
    }
    
    .cta-content h2 {
        font-size: 20px;
    }
}
/* ===== NEW SECTIONS STYLES ===== */

/* ===== IMAGE SHOWCASE SECTION ===== */
.image-showcase {
    padding: 60px 0;
    background: rgba(15, 15, 35, 0.3);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.showcase-item.large {
    grid-row: span 2;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover .showcase-image {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
    transform: translateY(0);
}

.showcase-overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.showcase-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.showcase-item.placeholder::after {
    content: '📷 Image Placeholder';
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 500;
}

/* ===== WIDGET SECTION (SCATTERED) ===== */
.widget-section {
    padding: 60px 0;
    background: rgba(15, 15, 35, 0.5);
}

.widget-section.ticker-section {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
}

.widget-with-image {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.widget-with-image.reverse {
    grid-template-columns: 1fr 1.5fr;
}

.widget-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 400px;
}

.widget-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-image-wrapper.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.widget-image-wrapper.placeholder::after {
    content: '📷 Image Placeholder';
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 500;
}

/* ===== CORE VALUES SECTION ===== */
.core-values {
    background: linear-gradient(180deg, rgba(26, 26, 62, 0.5) 0%, rgba(15, 15, 35, 0.5) 100%);
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.value-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.values-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    margin-top: 40px;
}

.values-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-image-wrapper.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.values-image-wrapper.placeholder::after {
    content: '📷 Image Placeholder';
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 500;
}

/* ===== TRADING ALGORITHM SECTION ===== */
.trading-algorithm {
    background: rgba(15, 15, 35, 0.8);
    padding: var(--section-padding);
}

.algorithm-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.algorithm-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.algo-feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.algo-feature:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(10px);
}

.algo-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.algo-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.algo-info p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.algorithm-visual {
    position: sticky;
    top: 120px;
}

.algo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.algo-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.algo-stat:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.algo-image {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.algorithm-visual.placeholder {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.algorithm-visual.placeholder .algo-image {
    display: none;
}

.algorithm-visual.placeholder::after {
    content: '📷 Image Placeholder';
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 500;
}

/* ===== ABOUT IMAGE ===== */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    margin-top: 40px;
}

.about-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-wrapper.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.about-image-wrapper.placeholder::after {
    content: '📷 Image Placeholder';
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 500;
}

/* ===== MISSION IMAGE ===== */
.mission-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    margin-top: 60px;
}

.mission-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-image-wrapper.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
}

.mission-image-wrapper.placeholder::after {
    content: '📷 Image Placeholder';
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 500;
}

/* ===== CTA IMAGE ===== */
.cta-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-image-wrapper.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.cta-image-wrapper.placeholder::after {
    content: '📷 Image Placeholder';
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 500;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    
    .showcase-item {
        height: 200px;
    }
    
    .showcase-item.large {
        grid-row: span 1;
        grid-column: span 2;
        height: 300px;
    }
    
    .widget-with-image,
    .widget-with-image.reverse {
        grid-template-columns: 1fr;
    }
    
    .widget-image-wrapper {
        min-height: 300px;
    }
    
    .algorithm-content {
        grid-template-columns: 1fr;
    }
    
    .algorithm-visual {
        position: static;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .showcase-item,
    .showcase-item.large {
        height: 200px;
        grid-column: span 1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px;
    }
    
    .value-card h3 {
        font-size: 20px;
    }
    
    .value-card p {
        font-size: 14px;
    }
    
    .algo-feature {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .algo-number {
        font-size: 28px;
    }
    
    .algo-info h4 {
        font-size: 18px;
    }
    
    .algo-info p {
        font-size: 14px;
    }
    
    .algo-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .values-image-wrapper,
    .about-image-wrapper,
    .mission-image-wrapper,
    .cta-image-wrapper,
    .widget-image-wrapper {
        height: 250px;
    }
    
    .widget-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .showcase-item,
    .showcase-item.large {
        height: 180px;
    }
    
    .showcase-overlay span {
        font-size: 14px;
    }
    
    .value-card {
        padding: 24px;
    }
    
    .value-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .algo-feature {
        padding: 16px;
    }
    
    .algo-stat {
        padding: 16px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .values-image-wrapper,
    .about-image-wrapper,
    .mission-image-wrapper,
    .cta-image-wrapper,
    .widget-image-wrapper {
        height: 200px;
    }
}

/* ===== LIGHTWEIGHT WIDGET STYLES ===== */

/* Ticker Tape */
.ticker-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    padding: 15px 0;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.ticker-symbol {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.ticker-price {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.ticker-change {
    font-weight: 600;
    font-size: 13px;
    padding: 2px 8px;
    border-radius: 4px;
}

.ticker-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.ticker-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Market Overview Grid */
.market-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.market-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.market-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.market-icon {
    font-size: 32px;
}

.market-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.market-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.market-price .positive {
    color: #10b981;
    font-weight: 600;
}

.market-price .negative {
    color: #ef4444;
    font-weight: 600;
}

/* Chart Placeholder */
.chart-placeholder {
    background: rgba(15, 15, 35, 0.8);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.chart-symbol {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.chart-price {
    font-size: 24px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-change {
    font-size: 16px;
    font-weight: 600;
}

.chart-change.positive {
    color: #10b981;
}

.chart-change.negative {
    color: #ef4444;
}

.chart-visual {
    height: 200px;
    margin: 20px 0;
}

.simple-chart {
    width: 100%;
    height: 100%;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Currency Grid */
.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.currency-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.currency-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.currency-pair {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.currency-rate {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
}

/* Calendar List */
.calendar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calendar-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.calendar-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.calendar-date {
    background: var(--primary-gradient);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
}

.calendar-event {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-country {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.event-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Heatmap Grid */
.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.heatmap-item {
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.heatmap-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.heatmap-item.positive-strong {
    background: rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.5);
}

.heatmap-item.positive {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.heatmap-item.negative {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.heatmap-item.negative-strong {
    background: rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(239, 68, 68, 0.5);
}

.heatmap-name {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.heatmap-change {
    font-size: 20px;
    font-weight: 800;
}

.positive-strong .heatmap-change,
.positive .heatmap-change {
    color: #10b981;
}

.negative-strong .heatmap-change,
.negative .heatmap-change {
    color: #ef4444;
}

/* Responsive for lightweight widgets */
@media (max-width: 768px) {
    .ticker-content {
        gap: 30px;
    }
    
    .ticker-symbol,
    .ticker-price {
        font-size: 12px;
    }
    
    .market-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .currency-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .chart-symbol {
        font-size: 16px;
    }
    
    .chart-price {
        font-size: 20px;
    }
    
    .chart-visual {
        height: 150px;
    }
    
    .heatmap-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .heatmap-item {
        padding: 16px;
    }
    
    .heatmap-name {
        font-size: 14px;
    }
    
    .heatmap-change {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .currency-grid {
        grid-template-columns: 1fr;
    }
    
    .heatmap-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}