/* ============================================
   MODERN TRADING PLATFORM DESIGN SYSTEM
   Professional, Sleek, Trading-Focused
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Trading Color Palette */
    --primary-dark: #0a1929;
    --primary-blue: #0066ff;
    --primary-teal: #00d4ff;
    --accent-gold: #ffb800;
    --accent-cyan: #00f5ff;
    --success-green: #00ff88;
    --warning-orange: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-dark: #0d1b2a;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --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 10px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-dark: linear-gradient(135deg, #0a1929 0%, #0d1b2a 100%);
    --gradient-gold: linear-gradient(135deg, #ffb800 0%, #ff8c00 100%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in {
    animation: slideInRight 0.6s ease-out;
}

/* ============================================
   HEADER - Modern Glassmorphism Design
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: gradientShift 3s infinite;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-blue);
}

nav a:hover::after {
    width: 100%;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.lang-btn:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    min-width: 220px;
    max-width: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 400px;
    animation: fadeInUp 0.3s ease;
}

.dropdown.show {
    display: block;
}

.dropdown-item {
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-blue);
    transform: translateX(4px);
}

.dropdown-item img {
    width: 22px;
    height: 16px;
    border-radius: 3px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.mobile-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.mobile-nav a {
    display: none !important;
    visibility: hidden !important;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: fixed;
        top: 80px;
        right: 0;
        bottom: 0;
        width: 300px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-color);
        z-index: 999;
        padding: 24px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-nav a {
        display: block !important;
        visibility: visible !important;
        padding: 16px 0;
        border-bottom: 1px solid #f3f4f6;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .mobile-nav a:hover {
        color: var(--primary-blue);
        padding-left: 8px;
    }
}

/* ============================================
   HERO SECTION - Trading Platform Style
   ============================================ */
.hero {
    background: var(--gradient-dark);
    color: white;
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    min-height: 63vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 102, 255, 0.05) 25%, rgba(0, 102, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 102, 255, 0.05) 25%, rgba(0, 102, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
}

.hero-content > div:first-child {
    min-width: 0;
}

.hero-content > div:last-child {
    min-width: 0;
    justify-self: end;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffb800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Form Box - Glassmorphism */
.form-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}

.form-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 800;
}

.form-box .subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
}

/* ============================================
   LOGO CLOUD SECTION
   ============================================ */
.logo-cloud-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.logo-cloud-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.logo-cloud-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.logo-cloud-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.logo-cloud-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.logo-cloud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    width: 100%;
    max-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.logo-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.logo-item:hover::before {
    opacity: 0.05;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .logo-cloud-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .logo-cloud-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .logo-cloud-section {
        padding: 60px 0;
    }

    .logo-cloud-header {
        margin-bottom: 40px;
    }

    .logo-cloud-header h2 {
        font-size: 1.8rem;
    }

    .logo-cloud-header p {
        font-size: 1rem;
    }

    .logo-cloud-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .logo-item {
        max-width: 140px;
        height: 80px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .logo-cloud-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo-item {
        max-width: 120px;
        height: 70px;
        padding: 12px;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: gradientShift 3s infinite;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   TRADING STATS SECTION
   ============================================ */
.trading-stats-section {
    position: relative;
    padding: 100px 0;
    background: white;
    overflow: hidden;
    isolation: isolate;
}

.stats-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.08;
    z-index: 0;
}

.stats-blur-1,
.stats-blur-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.stats-blur-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    top: -200px;
    right: 10%;
    transform: translateX(50%);
}

.stats-blur-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warning-orange) 100%);
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.stats-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.stats-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 500;
}

.stats-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.stats-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stats-links a:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--primary-blue);
}

.stats-links a span {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.stats-links a:hover span {
    transform: translateX(4px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    text-align: center;
    padding: 32px 24px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 212, 255, 0.02) 100%);
}

.stat-item dt {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 8px;
}

.stat-item dd {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .stats-header h2 {
        font-size: 2.5rem;
    }

    .stats-header p {
        font-size: 1rem;
    }

    .stats-links {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item dd {
        font-size: 2.2rem;
    }
}

/* ============================================
   CONTENT UNIVERSE / LONG-FORM CONTENT SECTION
   ============================================ */
.content-universe-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.content-universe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.content-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.content-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gradient-dark);
}

.content-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-card:hover .content-image-wrapper img {
    transform: scale(1.15);
}

.content-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    z-index: 2;
}

.content-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.content-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.content-card:hover .content-body h3 {
    color: var(--primary-blue);
}

.content-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.content-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.content-meta i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.content-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.content-excerpt:last-of-type {
    margin-bottom: 24px;
}

.content-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.content-read-more:hover {
    color: var(--primary-teal);
    gap: 14px;
}

.content-read-more i {
    transition: transform 0.3s ease;
}

.content-read-more:hover i {
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .content-universe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .content-universe-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .content-image-wrapper {
        height: 240px;
    }

    .content-body {
        padding: 28px;
    }

    .content-body h3 {
        font-size: 1.3rem;
    }

    .content-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(0, 102, 255, 0.15);
    box-shadow: 0 18px 45px rgba(9, 30, 66, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 60px rgba(9, 30, 66, 0.16);
    border-color: rgba(0, 102, 255, 0.4);
}

.blog-media {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--gradient-dark);
    display: block;
    text-decoration: none;
}

.blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: saturate(1.02);
}

.blog-card:hover .blog-media img {
    transform: scale(1.08);
}

.blog-tag {
    position: absolute;
    left: 20px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 10px 20px rgba(9, 30, 66, 0.15);
}

.blog-body {
    padding: 30px 32px 34px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-meta i {
    color: var(--primary-blue);
    margin-right: 6px;
}

.blog-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-body h3 {
    color: var(--primary-blue);
}

.blog-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 26px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-cta:hover {
    color: var(--primary-teal);
    gap: 14px;
}

.blog-cta i {
    transition: transform 0.3s ease;
}

.blog-cta:hover i {
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-media {
        height: 210px;
    }

    .blog-body {
        padding: 24px;
    }

    .blog-body h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-dark);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER - Modern Dark Design
   ============================================ */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: white;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-teal);
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 1.3rem;
    margin: 0 8px;
}

.footer-bottom a:hover {
    color: var(--primary-teal);
    transform: scale(1.2) translateY(-3px);
}

/* ============================================
   CONTENT PAGES STYLING
   ============================================ */
/* ============================================
   NEW DESIGN SYSTEM FOR CONTENT PAGES
   ============================================ */
:root {
    /* New Color Palette */
    --new-primary: #6366f1;
    --new-primary-dark: #4f46e5;
    --new-primary-light: #818cf8;
    --new-secondary: #8b5cf6;
    --new-accent: #ec4899;
    --new-success: #10b981;
    --new-warning: #f59e0b;
    --new-error: #ef4444;
    
    /* New Gradients */
    --new-gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --new-gradient-soft: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 100%);
    --new-gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    --new-gradient-hero: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    
    /* New Backgrounds */
    --new-bg-primary: #ffffff;
    --new-bg-secondary: #f8fafc;
    --new-bg-tertiary: #f1f5f9;
    --new-bg-dark: #0f172a;
    
    /* New Text Colors */
    --new-text-primary: #0f172a;
    --new-text-secondary: #475569;
    --new-text-tertiary: #64748b;
    --new-text-light: #94a3b8;
    
    /* New Borders */
    --new-border-light: #e2e8f0;
    --new-border-medium: #cbd5e1;
    
    /* New Shadows */
    --new-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --new-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --new-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --new-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --new-shadow-colored: 0 10px 30px -5px rgba(99, 102, 241, 0.3);
}

.content-wrapper {
    padding: 0;
    background: var(--new-bg-secondary);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 0;
    padding: 120px 20px 80px;
    background: var(--new-gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 63vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.content-box {
    background: var(--new-bg-primary);
    padding: 48px;
    border-radius: 24px;
    margin-bottom: 32px;
    box-shadow: var(--new-shadow-md);
    border: 1px solid var(--new-border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--new-gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-box:hover {
    box-shadow: var(--new-shadow-xl);
    transform: translateY(-6px);
    border-color: var(--new-primary-light);
}

.content-box:hover::before {
    transform: scaleY(1);
}

.content-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--new-text-primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.5px;
}

.content-box h2 i {
    color: var(--new-primary);
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.content-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin: 32px 0 16px 0;
    color: var(--new-text-primary);
    font-weight: 700;
}

.content-box p {
    color: var(--new-text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.content-box ul, .content-box ol {
    color: var(--new-text-secondary);
    line-height: 1.8;
    margin: 16px 0;
    padding-left: 24px;
}

.content-box li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.content-box h3 {
    font-size: 1.4rem;
    margin: 24px 0 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.content-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.content-box ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-box li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem;
}

.content-box .highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

.warning-box {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--warning-orange);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.contact-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-card .subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-card .contact-info {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
}

.contact-card .contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card .contact-info a:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

.info-box {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============================================
   FAQ STYLING
   ============================================ */
/* ============================================
   FAQ SECTION - CENTERED ACCORDION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.faq-toggle {
    width: 100%;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: left;
    margin-bottom: 16px;
}

.faq-toggle:hover {
    color: var(--primary-blue);
}

.faq-toggle span {
    flex: 1;
    padding-right: 20px;
}

.faq-toggle i {
    transition: transform 0.3s ease;
    color: var(--primary-blue);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle {
    color: var(--primary-blue);
}

.faq-content {
    display: none;
    padding: 0 32px 28px 32px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    animation: fadeInUp 0.3s ease;
}

.faq-content.active {
    display: block;
}

@media (max-width: 768px) {
    .faq-accordion {
        max-width: 100%;
        gap: 16px;
    }

    .faq-toggle {
        padding: 24px 20px;
        font-size: 1rem;
    }

    .faq-content {
        padding: 0 20px 24px 20px;
        font-size: 0.95rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content > div:last-child {
        justify-self: center;
    }

    .form-box {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-box {
        padding: 28px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .page-header {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .page-header {
        min-height: 50vh;
        padding: 100px 20px 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .content-box {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .content-box h2 {
        font-size: 1.6rem;
    }

    .content-box h2 i {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}

/* ============================================
   INTL-TEL-INPUT STYLING
   ============================================ */
.iti {
    width: 100%;
}

.iti input {
    padding-left: 75px !important;
    height: auto;
    border: 2px solid var(--border-color) !important;
    background: var(--bg-light) !important;
    border-radius: 12px !important;
    font-family: inherit !important;
}

.iti input:focus {
    border-color: var(--primary-blue) !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1) !important;
}

.iti__country-list {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    box-shadow: var(--shadow-lg) !important;
    border-radius: 12px !important;
}

.iti__country {
    padding: 14px 18px !important;
    color: var(--text-dark) !important;
    border-bottom: 1px solid #f3f4f6 !important;
    transition: all 0.2s ease !important;
}

.iti__country:hover,
.iti__country.iti__preferred {
    background: rgba(0, 102, 255, 0.05) !important;
    color: var(--primary-blue) !important;
}

.iti__country-name {
    color: var(--text-dark) !important;
    font-weight: 600 !important;
}

.iti__country:hover .iti__country-name,
.iti__country.iti__preferred .iti__country-name {
    color: var(--primary-blue) !important;
}

.iti__dial-code {
    color: var(--text-light) !important;
    font-weight: 500 !important;
}

.iti__country:hover .iti__dial-code,
.iti__country.iti__preferred .iti__dial-code {
    color: var(--primary-teal) !important;
}

.iti__flag {
    margin-right: 12px !important;
    border-radius: 3px !important;
}

/* ============================================
   COOKIE TYPE STYLING
   ============================================ */
.cookie-type {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-blue);
}

.cookie-type strong {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.cookie-type strong i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.cookie-type p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .content-box,
    .contact-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .feature-card.visible,
    .content-box.visible,
    .contact-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ADDITIONAL ENHANCEMENTS
   ============================================ */
.highlight {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

a.highlight {
    color: var(--primary-blue);
}

a.highlight:hover {
    color: var(--primary-teal);
}

/* Responsive FAQ Grid */
@media (max-width: 768px) {
    #faq > div > div {
        grid-template-columns: 1fr !important;
    }
}
