/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== Color Variables ===== */
:root {
    --primary-blue: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --primary-gold: #d4af37;
    --accent-blue: #0ea5e9;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-card: #ffffff;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --danger-red: #dc2626;
    --success-green: #16a34a;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ===== Highlight Text ===== */
.highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

.hero .highlight {
    color: #1e3a8a;
}

.highlight-warning {
    color: var(--danger-red);
    font-weight: 700;
}

.highlight-large {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== Logo Styles ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: var(--shadow-md);
}

.logo-w {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
}

.logo-q {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: -2px;
    margin-left: -5px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.search-box input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: var(--text-dark);
    font-size: 0.9rem;
    width: 160px;
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: transparent;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-signup {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding-top: 80px;
    padding-bottom: 30px;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(148, 163, 184, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.hero-overlay {
    display: none;
}

/* Hero Main Content Layout */
.hero-main-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 60px;
    gap: 60px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out 2s forwards;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1.2s ease-out 1s forwards;
}

/* Logo Animation */
.hero-logo-container {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-30px);
    animation: logoAppear 0.8s ease-out 2.5s forwards;
}

.logo-animation {
    display: flex;
    align-items: center;
}

/* Hero Logo Image Style */
.hero-logo-image {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(76, 175, 80, 0.3));
}

/* MT5 Logo Container */
.mt5-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mt5Float 6s ease-in-out infinite;
}

.mt5-logo-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes mt5Float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes mt5Rotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Hero Text Content */
.hero-text-content {
    text-align: left;
}

/* 3D Globe - Premium Glossy Style */
.globe-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.globe-3d-new {
    position: relative;
    width: 100%;
    height: 100%;
    animation: globeFloat 6s ease-in-out infinite;
}

/* Main Globe Sphere */
.globe-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #1e90ff 0%, 
        #0066cc 25%, 
        #003d99 50%, 
        #002266 75%, 
        #001a4d 100%);
    box-shadow: 
        inset -40px -40px 80px rgba(0, 0, 0, 0.5),
        inset 30px 30px 60px rgba(255, 255, 255, 0.15),
        0 0 60px rgba(30, 144, 255, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Glossy Shine Effect */
.globe-shine {
    position: absolute;
    top: 5%;
    left: 15%;
    width: 45%;
    height: 35%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.4) 30%, 
        transparent 70%);
    border-radius: 50%;
    transform: rotate(-30deg);
    filter: blur(2px);
}

/* Continents */
.globe-continents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(ellipse 35% 25% at 25% 35%, rgba(0, 100, 0, 0.5) 0%, transparent 100%),
        radial-gradient(ellipse 20% 30% at 70% 45%, rgba(0, 100, 0, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 25% 20% at 55% 70%, rgba(0, 100, 0, 0.35) 0%, transparent 100%),
        radial-gradient(ellipse 15% 15% at 30% 65%, rgba(0, 100, 0, 0.3) 0%, transparent 100%);
    animation: continentsRotate 30s linear infinite;
}

/* Grid Overlay */
.globe-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.08) 25px,
            rgba(255, 255, 255, 0.08) 26px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.08) 25px,
            rgba(255, 255, 255, 0.08) 26px
        );
    opacity: 0.6;
}

/* Silver Orbit Ring Wrapper */
.globe-orbit-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
}

/* Silver Orbit Ring */
.globe-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(-20deg);
    width: 420px;
    height: 420px;
    border: 8px solid transparent;
    border-radius: 50%;
    background: linear-gradient(90deg, 
        rgba(200, 200, 200, 0.1) 0%, 
        rgba(255, 255, 255, 0.8) 25%, 
        rgba(200, 200, 200, 0.3) 50%, 
        rgba(255, 255, 255, 0.8) 75%, 
        rgba(200, 200, 200, 0.1) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: orbitSpin 20s linear infinite;
}

/* Silver Arrow */
.globe-orbit-arrow {
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 80px;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(220, 220, 220, 0.9) 0%, 
        rgba(180, 180, 180, 0.8) 50%, 
        rgba(150, 150, 150, 0.7) 100%);
    clip-path: polygon(50% 0%, 100% 40%, 75% 40%, 75% 100%, 25% 100%, 25% 40%, 0% 40%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(30deg);
}

/* Outer Glow */
.globe-outer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(30, 144, 255, 0.3) 0%, 
        rgba(30, 144, 255, 0.1) 40%, 
        transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

.globe-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@keyframes continentsRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(-20deg); }
    to { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(340deg); }
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes globePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes arrowAppear {
    to {
        opacity: 1;
    }
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes globeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes globeRotate {
    from { background-position: 0 0; }
    to { background-position: 100px 0; }
}

@keyframes gridMove {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg); }
}

@keyframes orbitDot {
    from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #475569;
}

.hero-description {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: #ffffff;
    border: none;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #3b82f6, transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-subtitle-en {
    color: var(--primary-blue-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-subtitle-en.red {
    color: var(--danger-red);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.4;
    color: var(--text-dark);
}

.section-title.center {
    text-align: center;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 50px;
    line-height: 1.8;
}

.section-description.center {
    text-align: center;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 2px;
    margin: 30px 0;
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 16px;
    padding: 100px 40px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.about-text {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.9;
}

/* ===== Products Section ===== */
.products-section {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-gray);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Warning Section ===== */
.warning-section {
    background: var(--bg-white);
}

.warning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.warning-subtitle {
    color: var(--text-medium);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-warning {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid var(--danger-red);
    color: var(--danger-red);
    padding: 14px 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.btn-warning:hover {
    background: var(--danger-red);
    color: #ffffff;
}

.warning-text {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.9;
}

.phone-mockup {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 30px;
    padding: 20px;
    max-width: 280px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
}

.chat-warning {
    color: var(--danger-red);
    font-weight: 700;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* ===== Comparison Section ===== */
.comparison-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comparison-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.comparison-card.danger {
    border-top: 4px solid var(--danger-red);
}

.comparison-card.success {
    border-top: 4px solid var(--success-green);
}

.comparison-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-x {
    color: var(--danger-red);
    font-size: 1.5rem;
    font-weight: 800;
}

.icon-check {
    color: var(--success-green);
    font-size: 1.5rem;
    font-weight: 800;
}

.comparison-card.danger .comparison-title {
    color: var(--danger-red);
}

.comparison-card.success .comparison-title {
    color: var(--success-green);
}

.comparison-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.comparison-list li:last-child {
    border-bottom: none;
}

/* ===== Features Section ===== */
.features-section {
    background: var(--bg-white);
}

.features-header {
    margin-bottom: 60px;
}

.features-desc {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.9;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-phone {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: #ffffff;
    padding: 18px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-chat {
    background: var(--bg-white);
    border: 2px solid var(--primary-blue);
    color: var(--text-dark);
    padding: 18px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.btn-chat:hover {
    background: var(--bg-light);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    text-align: left;
    font-size: 0.85rem;
}

.btn-text strong {
    font-size: 1.1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-number {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-text {
    color: var(--text-medium);
    line-height: 1.9;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 16px;
    padding: 100px 40px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

/* ===== Steps Section ===== */
.steps-section {
    background: var(--bg-light);
}

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

.step-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-label {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.step-icon {
    font-size: 2.5rem;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.step-desc {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.gallery-slider {
    overflow: hidden;
    margin-top: 40px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: slideGallery 20s linear infinite;
}

@keyframes slideGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    flex-shrink: 0;
    width: 250px;
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-medium);
    border: 1px solid var(--border-light);
    font-weight: 600;
}

/* ===== MT5 Section ===== */
.mt5-section {
    background: var(--bg-light);
}

.mt5-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mt5-desc {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.9;
}

.mt5-features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium);
    line-height: 1.7;
}

.mt5-features li strong {
    color: var(--text-dark);
}

.mt5-placeholder {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 100px 40px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.mt5-logo {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    border: 4px solid var(--primary-blue);
    padding: 20px 40px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* ===== Promotion Section ===== */
.promotion-section {
    background: var(--bg-white);
}

.promotion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.promo-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-blue-light);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.promo-badge {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.promo-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 600;
}

.btn-promo {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 22px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.promo-icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 4rem;
    opacity: 0.2;
}

.promo-note {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

.promo-disclaimer {
    text-align: right;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 20px;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.faq-desc {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.faq-note {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white);
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 24px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-blue);
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-desc {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.9;
}

.contact-form {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 16px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 50px 0;
    color: #ffffff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer .logo-icon-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.footer .logo-main {
    color: #ffffff;
}

.footer .logo-sub {
    color: var(--primary-gold);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-info {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-info a {
    color: var(--primary-blue-light);
}

.footer .highlight {
    color: var(--primary-blue-light);
}

/* ===== Floating Elements ===== */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: transform 0.3s;
}

.floating-chat:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .about-grid,
    .warning-grid,
    .comparison-grid,
    .feature-item,
    .mt5-grid,
    .promotion-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header-right {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .gallery-track {
        animation-duration: 10s;
    }
    
    .logo-main {
        font-size: 0.95rem;
    }
    
    .logo-w, .logo-q {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}


/* ===== Enhanced Mobile Responsive ===== */
@media (max-width: 1024px) {
    .hero-main-content {
        flex-direction: column;
        padding: 0 30px;
        gap: 30px;
    }
    
    .hero-left {
        align-items: center;
        text-align: center;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .hero-logo-container {
        margin-bottom: 20px;
    }
    
    .hero-logo-image {
        max-width: 300px;
    }
    
    .mt5-container {
        width: 300px;
        height: 300px;
    }
    
    .globe-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-main-content {
        padding: 0 20px;
        gap: 20px;
    }
    
    .hero-logo-container {
        margin-bottom: 15px;
    }
    
    .hero-logo-image {
        max-width: 250px;
    }
    
    .mt5-container {
        width: 200px;
        height: 200px;
    }
    
    .globe-container {
        width: 200px;
        height: 200px;
    }
    
    .globe-main {
        width: 150px;
        height: 150px;
    }
    
    .globe-orbit-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .globe-orbit-ring {
        width: 180px;
        height: 180px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .hero-main-content {
        padding: 0 15px;
    }
    
    .hero-logo-image {
        max-width: 200px;
    }
    
    .mt5-container {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .logo-icon-wrapper {
        padding: 6px 10px;
    }
    
    .logo-w, .logo-q {
        font-size: 1.2rem;
    }
    
    .logo-main {
        font-size: 0.85rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
}
