/**
 * KORIX Landing Page Styles
 * Matching the exact template colors
 */

/* ========================================
   CSS Variables - Exact Template Colors
   ======================================== */
:root {
    /* Background Colors - Reference Site Exact Blue */
    --color-bg-dark: #111A2C;
    --color-bg-gradient: #172645;
    --color-bg-header: rgba(17, 26, 44, 0.95);
    --color-bg-light: #F3F5F6;
    --color-bg-secondary: #172645;
    --color-bg-card-dark: #1D2A42;

    /* Text Colors */
    --color-text-white: #FFFFFF;
    --color-text-light: #E8ECF0;
    --color-text-heading-dark: #1A1D2E;
    --color-text-body-dark: #454D54;
    --color-text-muted: #6B7280;
    --color-text-nav: #A8B3BE;

    /* Accent Colors - Brighter Cyan */
    --color-accent: #29D4FF;
    --color-accent-secondary: #1E83FF;
    --color-success: #39AC69;
    --color-warning: #D48311;

    /* Border Colors */
    --color-border-light: #D0D6DC;
    --color-border-dark: #1D2A42;
    --color-border-accent: #29D4FF;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-bg-header);
    border-bottom: 1px solid var(--color-border-dark);
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-nav);
    font-size: 13px;
    font-weight: 400;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--color-text-white);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text-white);
}


/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 16px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--color-text-nav);
    padding: 8px;
    border-radius: 6px;
    transition: all var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--color-text-white);
    background: rgba(255, 255, 255, 0.05);
}

.globe-icon {
    width: 20px;
    height: 20px;
}

.chevron-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.lang-btn.active .chevron-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--color-bg-card-dark);
    border: 1px solid var(--color-border-dark);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    width: 160px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--color-text-light);
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-accent);
}

.lang-flag {
    font-size: 18px;
}

.lang-name {
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: #24a8d6;
    transform: translateY(-1px);
}

.btn-primary.btn-large {
    padding: 14px 28px;
    font-size: 14px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--color-text-white);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--color-border-dark);
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-badge {
    background: rgba(43, 189, 238, 0.15);
    color: var(--color-accent);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-nav);
    font-size: 14px;
    transition: color var(--transition);
}

.btn-link:hover {
    color: var(--color-accent);
}

.btn-text-light {
    color: var(--color-text-nav);
    font-size: 14px;
    transition: color var(--transition);
}

.btn-text-light:hover {
    color: var(--color-text-white);
}

/* ========================================
   Hero Section (Dark Theme)
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    /* Persistent background acts as a buffer during loop rewind */
    background-image: url('assets/ai_1-poster.png');
    background-size: cover;
    background-position: center;
}

.hero-video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* Default invisible */
    transition: opacity 1s linear;
    /* Smooth crossfade */
}

/* Active class makes video visible */
.hero-video-bg video.active {
    opacity: 1;
    /* Removed opacity to fix shadow issue */
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(41, 212, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--color-text-white);
}

.hero h1 .highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

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

.hero-disclaimer {
    font-size: 13px;
    color: var(--color-text-nav);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   Section Common Styles
   ======================================== */
.section {
    padding: 100px 48px;
}

/* Dark Section */
.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
}

/* Light Section */
.section-light {
    background: var(--color-bg-light);
    color: var(--color-text-heading-dark);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Light section header styles */
.section-light .section-header h2 {
    color: var(--color-text-heading-dark);
}

.section-light .section-header p {
    color: var(--color-text-body-dark);
}

/* Dark section header styles */
.section-dark .section-header h2 {
    color: var(--color-text-white);
}

.section-dark .section-header p {
    color: var(--color-text-light);
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
}

.section-title-center {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
}

/* ========================================
   Why This Matters Section (Light Theme)
   ======================================== */
.why-matters-section {
    background: var(--color-bg-light);
    color: var(--color-text-heading-dark);
}

.why-matters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-matters-text h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--color-text-heading-dark);
}

.why-matters-text p {
    color: var(--color-text-body-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-accent {
    color: var(--color-accent);
    font-weight: 500;
}

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

.metallic-shape {
    width: 320px;
    height: 320px;
    background: linear-gradient(145deg, #3a4a6a 0%, #1A1D2E 50%, var(--color-bg-dark) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    animation: morphShape 10s ease-in-out infinite;
    box-shadow:
        0 0 60px rgba(43, 189, 238, 0.2),
        inset 0 0 100px rgba(255, 255, 255, 0.03);
}

.metallic-shape::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 30%;
    height: 20%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 50%;
    filter: blur(10px);
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Section Images */
.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========================================
   AICT Section (Dark Theme) - Combined Layout
   ======================================== */
.aict-section {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border-dark);
    border-bottom: 1px solid var(--color-border-dark);
    padding: 80px 48px;
}

.aict-main-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text-white);
}

.aict-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.8;
}

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

/* Left: Image Container */
.aict-visual-container {
    display: flex;
    justify-content: center;
}

.aict-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #1D2A42 0%, #111A2C 100%);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.aict-main-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

.aict-image-label {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
}

.aict-label-text {
    display: block;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.aict-label-reflection {
    display: block;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.2);
    transform: scaleY(-1);
    mask-image: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
    margin-top: 4px;
}

/* Right: Getting Started Steps */
.aict-getting-started {
    padding-left: 20px;
}

.getting-started-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 36px;
    color: var(--color-text-white);
}

.getting-started-steps-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(41, 212, 255, 0.1);
    border: 1px solid rgba(41, 212, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.step-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
}

.step-item:hover .step-icon-box {
    background: rgba(41, 212, 255, 0.2);
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.step-content h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text-white);
}

.step-content p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* Responsive: AICT Combined Section */
@media (max-width: 900px) {
    .aict-combined-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .aict-getting-started {
        padding-left: 0;
    }

    .aict-main-title {
        font-size: 32px;
    }

    .getting-started-title {
        text-align: center;
    }
}

/* ========================================
   How It Works Section (Light Theme)
   ======================================== */
.how-it-works-section {
    background: var(--color-bg-light);
}

.how-it-works-section .section-header h2 {
    color: var(--color-text-heading-dark);
}

.how-it-works-section .section-header p {
    color: var(--color-text-body-dark);
}

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

/* New Phase Card Design - Two Column Layout */
.phase-card-new {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #FFFFFF;
    border: 1px solid #E5E8EB;
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition);
}

.phase-card-new:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Left Column - Icon and Number */
.phase-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 56px;
}

.phase-icon {
    width: 52px;
    height: 52px;
    background: rgba(41, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-accent);
}

.phase-number-large {
    font-size: 38px;
    font-weight: 700;
    color: #D0D6DC;
    line-height: 1;
    letter-spacing: -2px;
}

/* Right Column - Content */
.phase-right {
    flex: 1;
}

.phase-right h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-heading-dark);
    margin-bottom: 12px;
}

.phase-right p {
    color: var(--color-text-body-dark);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive: How It Works */
@media (max-width: 768px) {
    .phases-grid {
        grid-template-columns: 1fr;
    }

    .phase-card-new {
        padding: 24px;
        gap: 20px;
    }
}

/* ========================================
   Bot Network Section - New Dark Theme
   ======================================== */
.network-section-new {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border-dark);
}

.network-section-new .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.network-section-new .section-header h2 {
    color: var(--color-text-white);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.network-section-new .section-header p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

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

.network-visual {
    display: flex;
    justify-content: center;
}

.network-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.network-info {
    padding-left: 20px;
}

.network-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 20px;
}

.network-info p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.network-info .network-highlight {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 0;
}

/* Responsive: Network Section */
@media (max-width: 900px) {
    .network-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .network-info {
        padding-left: 0;
        text-align: center;
    }

    .network-section-new .section-header h2 {
        font-size: 32px;
    }
}

/* Bot Type Cards Grid */
.bot-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.bot-type-card {
    background: rgba(29, 42, 66, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all var(--transition);
}

.bot-type-card:hover {
    border-color: rgba(41, 212, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.bot-type-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.bot-type-icon {
    width: 44px;
    height: 44px;
    background: rgba(41, 212, 255, 0.1);
    border: 1px solid rgba(41, 212, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-type-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-accent);
}

.bot-type-title h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-white);
    margin: 0 0 4px 0;
}

.bot-count-badge {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 500;
}

.bot-type-card p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}

/* Responsive: Bot Types Grid */
@media (max-width: 1024px) {
    .bot-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .bot-types-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Why Different Section - New Light Theme
   ======================================== */
.different-section-new {
    background: var(--color-bg-light);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    position: relative;
}

.different-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(243, 245, 246, 0) 0%,
            rgba(243, 245, 246, 0.8) 50%,
            rgba(243, 245, 246, 0) 100%);
    pointer-events: none;
}

.different-section-new .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.different-section-new .section-header h2 {
    color: var(--color-text-heading-dark);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.different-section-new .section-header p {
    color: var(--color-text-body-dark);
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.different-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.different-card-new {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #FFFFFF;
    border: 1px solid #E5E8EB;
    border-radius: 16px;
    padding: 28px 32px;
    transition: all var(--transition);
}

.different-card-new:hover {
    border-color: #39AC69;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.check-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(57, 172, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 16px;
    height: 16px;
    stroke: #39AC69;
}

.different-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text-heading-dark);
}

.different-content p {
    color: var(--color-text-body-dark);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive: Different Section */
@media (max-width: 768px) {
    .different-grid-new {
        grid-template-columns: 1fr;
    }

    .different-section-new .section-header h2 {
        font-size: 32px;
    }
}

/* ========================================
   KORIX Meaning Section - New Dark Theme
   ======================================== */
.korix-meaning-section-new {
    background: var(--color-bg-dark);
    padding: 100px 48px;
}

.korix-meaning-section-new .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.korix-meaning-section-new .section-header h2 {
    color: var(--color-text-white);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.korix-meaning-section-new .section-header p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Top Row: K, O, R */
.korix-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Bottom Row: I, X (centered) */
.korix-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 66.666%;
    margin: 0 auto;
}

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

.korix-letter-big {
    display: block;
    font-size: 72px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 16px;
}

.korix-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text-white);
}

.korix-item p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

/* Responsive: KORIX Meaning */
@media (max-width: 900px) {
    .korix-grid-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .korix-grid-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .korix-meaning-section-new .section-header h2 {
        font-size: 32px;
    }

    .korix-letter-big {
        font-size: 56px;
    }
}

/* ========================================
   Transparency Section (Dark Theme)
   ======================================== */
.transparency-section {
    background: var(--color-bg-dark);
}

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

.transparency-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text-white);
}

.transparency-intro {
    color: var(--color-text-light);
    font-size: 16px;
    margin-bottom: 28px;
}

.transparency-list {
    list-style: none;
    margin-bottom: 32px;
}

.transparency-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--color-text-white);
}

.transparency-list svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    flex-shrink: 0;
}

.dashboard-mockup {
    background: var(--color-bg-header);
    border: 1px solid var(--color-border-dark);
    border-radius: 12px;
    overflow: hidden;
}

.mockup-header {
    background: var(--color-bg-secondary);
    padding: 12px 16px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-muted);
}

.mockup-dots span:first-child {
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #27ca40;
}

.mockup-content {
    padding: 32px;
    min-height: 250px;
}

.mockup-chart {
    height: 180px;
    background: linear-gradient(180deg, rgba(43, 189, 238, 0.15) 0%, transparent 100%);
    border-radius: 8px;
    position: relative;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
}

/* ========================================
   Trading Modes Section - Light Theme
   ======================================== */
.modes-section-new {
    background: var(--color-bg-light);
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    position: relative;
}

.modes-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
            rgba(41, 212, 255, 0.03) 0%,
            transparent 70%);
    pointer-events: none;
}

.modes-section-new .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.modes-section-new .section-header h2 {
    color: var(--color-text-heading-dark);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.modes-section-new .section-header p {
    color: var(--color-text-body-dark);
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.modes-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mode-card-new {
    background: #FFFFFF;
    border: 1px solid #E5E8EB;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

.mode-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Mode-specific colored borders */
.mode-momentum {
    border-color: var(--color-accent);
    border-width: 2px;
}

.mode-pinnacle {
    border-color: #F59E0B;
    border-width: 2px;
}

.mode-icon {
    width: 56px;
    height: 56px;
    background: rgba(41, 212, 255, 0.1);
    border: 1px solid rgba(41, 212, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mode-pinnacle .mode-icon {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

.mode-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent);
}

.mode-pinnacle .mode-icon svg {
    stroke: #F59E0B;
}

.mode-card-new h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-heading-dark);
}

.mode-card-new .mode-subtitle {
    display: block;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mode-pinnacle .mode-subtitle {
    color: #F59E0B;
}

.mode-description {
    color: var(--color-text-body-dark);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mode-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-body-dark);
    font-size: 14px;
    margin-bottom: 10px;
}

.mode-features li:last-child {
    margin-bottom: 0;
}

.feature-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--color-text-muted);
    border-radius: 50%;
}

.feature-dot.cyan {
    background: var(--color-accent);
}

.feature-dot.orange {
    background: #F59E0B;
}

/* Responsive: Trading Modes */
@media (max-width: 900px) {
    .modes-grid-new {
        grid-template-columns: 1fr;
    }

    .modes-section-new .section-header h2 {
        font-size: 32px;
    }
}

/* ========================================
   Fees Section (Dark Theme)
   ======================================== */
.fees-section {
    background: var(--color-bg-dark);
}

.fees-section .section-title-center {
    color: var(--color-text-white);
}

.fees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 24px;
}

.fee-main-card {
    background: linear-gradient(135deg, rgba(43, 189, 238, 0.15) 0%, var(--color-bg-light) 100%);
    border: 1px solid var(--color-accent);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.fee-percentage {
    font-size: 72px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.fee-main-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-white);
}

.fee-main-card p {
    color: var(--color-text-light);
    font-size: 14px;
}

.fee-info-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 32px;
}

.fee-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.fee-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent);
}

.fee-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-heading-dark);
}

.fee-info-card p {
    color: var(--color-text-body-dark);
    font-size: 14px;
}

.fee-example-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 32px;
}

.fee-example-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text-heading-dark);
}

.fee-table {
    margin-bottom: 16px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 14px;
    color: var(--color-text-body-dark);
}

.fee-row span:last-child {
    color: var(--color-text-heading-dark);
    font-weight: 500;
}

.fee-row-highlight {
    border-bottom: none;
}

.fee-row-highlight span {
    color: var(--color-accent) !important;
    font-weight: 600 !important;
}

.fee-note {
    color: var(--color-text-muted);
    font-size: 13px;
    font-style: italic;
}

/* ========================================
   FAQ Section (Light Theme)
   ======================================== */
.faq-section {
    background: #FFFFFF;
}

.faq-section .section-title-center {
    color: var(--color-text-heading-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-light);
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #E8ECF0;
    border-color: rgba(41, 212, 255, 0.3);
}

.faq-item.active {
    background: #F0F9FF;
    /* Very light blue tint */
    border-color: var(--color-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--color-text-heading-dark);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    transition: color var(--transition);
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-body-dark);
    transition: transform var(--transition), stroke var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--color-accent);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--color-text-body-dark);
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   CTA Section (Dark Theme)
   ======================================== */
.cta-section {
    background: var(--color-bg-dark);
    text-align: center;
    padding: 120px 48px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--color-text-white);
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

/* ========================================
   Footer (Dark Theme)
   ======================================== */
.footer {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border-dark);
    padding: 60px 48px 40px;
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--color-text-nav);
    font-size: 13px;
    max-width: 300px;
}

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

.footer-links a {
    color: var(--color-text-nav);
    font-size: 13px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-text-white);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-header);
    border: 1px solid var(--color-border-dark);
    border-radius: 50%;
    color: var(--color-text-nav);
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--color-border-dark);
    text-align: center;
}

.footer-bottom>p:first-child {
    color: var(--color-text-nav);
    font-size: 13px;
    margin-bottom: 16px;
}

.footer-disclaimer {
    color: var(--color-text-muted);
    font-size: 11px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .bot-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 16px 24px;
    }

    .section {
        padding: 80px 24px;
    }

    .why-matters-grid,
    .transparency-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-matters-visual {
        order: -1;
    }

    .phases-grid,
    .different-grid,
    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fees-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fee-main-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    
    .nav button.btn-primary {
        white-space: nowrap;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-right: 10px;
    }
    
    .language-selector {
        margin-right: 10px;
    }

    .nav {
        gap: 0px;
    }

    .logo {
        margin: -60px;
    }

    .lang-btn {
        padding: 0px;
    }

    .header {
        padding: 12px 20px;
        height: 72px;
    }

    .logo-img {
        height: 48px;
        /* Larger logo for mobile */
    }

    .nav-links {
        display: none;
    }

    .nav {
        margin-left: auto;
        margin-right: 12px;
    }

    .btn-primary {
        padding: 6px 14px;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.1;
        text-align: center;
        width: min-content;
        white-space: normal;
        border-radius: 6px;
        min-width: 60px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .footer-brand {
        align-items: center;
    }

    .hero {
        padding: 120px 20px 60px;
        /* Increased top padding to clear header */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        overflow-wrap: break-word;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-subtitle {
        font-size: 15px;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        align-items: center;
    }

    .hero-buttons .btn-primary {
        min-width: 200px;
        width: auto;
        white-space: normal;
        height: auto;
        padding: 12px 24px;
    }

    .getting-started-grid,
    .phases-grid,
    .different-grid,
    .modes-grid,
    .bot-cards-grid {
        grid-template-columns: 1fr;
    }

    .fees-grid {
        grid-template-columns: 1fr;
    }

    .fee-main-card {
        grid-column: span 1;
    }

    .korix-letter-item {
        gap: 20px;
    }

    .korix-letter {
        font-size: 48px;
        min-width: 48px;
    }

    .footer-main {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 16px;
    }

    .section-header h2,
    .section-title-center,
    .why-matters-text h2 {
        font-size: 28px;
    }

    .fee-percentage {
        font-size: 56px;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

/* ========================================
   Enhanced Animations
   ======================================== */

/* Floating animation for images and icons */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Pulse glow animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(41, 212, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(41, 212, 255, 0.6);
    }
}

/* Gradient shift animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Scale in animation */
@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Slide up animation */
@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slide in from left */
@keyframes slideInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide in from right */
@keyframes slideInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Rotate animation */
@keyframes rotateIn {
    0% {
        transform: rotate(-10deg) scale(0.9);
        opacity: 0;
    }

    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

/* Apply floating to images */
.network-image,
.aict-main-image,
.section-image {
    animation: floatSlow 6s ease-in-out infinite;
}

/* Pulse glow for accent elements */
.mode-momentum,
.fee-main-card {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Gradient background animation for hero */
.hero {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Shimmer effect for badges */
.bot-count-badge,
.mode-featured-badge {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

/* Animate scroll indicators */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grids */
.phase-card-new,
.bot-type-card,
.different-card-new,
.mode-card-new,
.korix-item {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Icon hover animations */
.phase-icon,
.mode-icon,
.check-icon,
.bot-type-icon {
    transition: all 0.3s ease;
}

.phase-card-new:hover .phase-icon,
.mode-card-new:hover .mode-icon,
.different-card-new:hover .check-icon,
.bot-type-card:hover .bot-type-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Number counter pulse */
.phase-number-large,
.korix-letter-big {
    transition: all 0.3s ease;
}

.phase-card-new:hover .phase-number-large {
    transform: scale(1.05);
    color: #C0C8D0;
}

.korix-item:hover .korix-letter-big {
    text-shadow: 0 0 30px rgba(41, 212, 255, 0.5);
}

/* Feature dot animation on hover */
.mode-features li:hover .feature-dot {
    transform: scale(1.5);
}

.mode-features li:hover .feature-dot.cyan {
    box-shadow: 0 0 10px var(--color-accent);
}

.mode-features li:hover .feature-dot.orange {
    box-shadow: 0 0 10px #F59E0B;
}

/* Button gradient animation */
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary), var(--color-accent));
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* Smooth card hover lift */
.phase-card-new:hover,
.mode-card-new:hover,
.bot-type-card:hover,
.different-card-new:hover {
    transform: translateY(-8px);
}

/* Image zoom on hover */
.network-visual:hover .network-image,
.aict-image-wrapper:hover .aict-main-image {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

/* Step item animations */
.step-item {
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
}

.step-item:hover .step-icon-box {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(41, 212, 255, 0.4);
}

/* FAQ item animation */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    border-left-color: var(--color-accent);
}

/* Footer social icons */
.footer a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
    display: inline-block;
    transition: all 0.3s ease;
}

/* CTA section animation */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 212, 255, 0.1) 0%, transparent 50%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Header logo animation */
.logo {
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(41, 212, 255, 0.5);
    letter-spacing: 4px;
}

/* Nav link underline animation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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


/* BOF Popup */
.pop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 50px 0;
}

/* Popup Box */
.pop-box {
    background: #fff;
    padding: 20px;
    width: 650px;
    max-width: 85% ;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.pop-box h2 {
    margin-bottom: 10px;
}

.pop-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Buttons */
.pop-actions {
    display: flex;
    justify-content: space-between;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn.ok {
    background: #28a745;
    color: #fff;
}

.btn.cancel {
    background: #dc3545;
    color: #fff;
}


@media (max-width: 991px) {
    .pop-overlay {
        align-items: flex-start;
        overflow: auto;
    }
}

/* Animation */
@keyframes scaleIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.pop-close-btn {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #fff;
    border: none;
    font-size: 24px;
    z-index: 9;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 2px;
}
.pop-close-btn::before {
    position: absolute;
    content: "";
    right: 9px;
    top: 2px;
    width: 2px;
    height: 80%;
    background: #333;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    pointer-events: none;
}
.pop-close-btn::after {
    position: absolute;
    content: "";
    left: 9px;
    top: 2px;
    width: 2px;
    height: 80%;
    background: #333;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    pointer-events: none;
}
/* EOF Popup */