/* ===================================
   ADONISS.AI - Modern Website Styles
   Dark, Subtle Gold & Black Theme
   ==================================== */

/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Updated to White */
    --black: #000000;
    --gold-dark: #ffffff;
    --gold-darker: #ffffff;
    --gray-text: #999999;
    --gray-subtext: #cccccc;
    --white: #ffffff;

    /* Fonts */
    --font-title: 'Antic Didone', serif;
    --font-body: 'Urbanist', sans-serif;

    /* Spacing */
    --section-padding: 220px;
    --container-max: 1400px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

body::before {
    content: '';
    position: fixed;
    top: -25%;
    left: -25%;
    width: 135%;
    height: 135%;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
    animation: grain-move 0.4s steps(1) infinite;
}

@keyframes grain-move {
    0% { transform: translate(0, 0) scaleX(1); }
    25% { transform: translate(-5%, 5%) scaleX(-1); }
    50% { transform: translate(5%, -5%) scaleX(1); }
    75% { transform: translate(-5%, -5%) scaleX(-1); }
    100% { transform: translate(0, 0) scaleX(1); }
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.015;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 10% 60%, rgba(245, 158, 11, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 90% 40%, rgba(236, 72, 153, 0.07) 0%, transparent 40%);
    animation: blob 30s ease-in-out infinite;
}

@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===================================
   ANIMATED BACKGROUND BLOBS
   ==================================== */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
    will-change: transform;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent);
    top: 5%;
    left: 5%;
    animation: float 30s ease-in-out infinite;
}

.blob-2 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent);
    top: 40%;
    right: 5%;
    animation: float 35s ease-in-out infinite reverse;
}

.blob-3 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent);
    bottom: -15%;
    left: 25%;
    animation: float 40s ease-in-out infinite;
}

.blob-4 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent);
    top: 60%;
    left: 50%;
    animation: float 28s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(80px, -60px) scale(1.15) rotate(90deg);
    }
    50% {
        transform: translate(-50px, 70px) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(60px, 40px) scale(1.05) rotate(270deg);
    }
}

/* ===================================
   GLASSMORPHISM BUTTONS
   ==================================== */
.glass-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-text);
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-darker));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.glass-btn::after {
    content: '→';
    position: absolute;
    left: -24px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.glass-btn:hover {
    color: var(--white);
    padding-left: 44px;
    transform: translateY(-2px);
}

.glass-btn:hover::before {
    opacity: 0.15;
}

.glass-btn:hover::after {
    left: 16px;
    opacity: 1;
}

.glass-btn.primary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: none;
}

.glass-btn.primary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.glass-btn.large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ===================================
   ARROW BUTTONS
   ==================================== */
.arrow-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.arrow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow-btn:hover::before {
    transform: translateX(0);
}

.arrow-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.arrow-btn .arrow-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow-btn:hover .arrow-icon {
    transform: translateX(6px);
}

.arrow-btn span {
    position: relative;
    z-index: 1;
}

.arrow-btn.dark {
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.15);
}

.arrow-btn.dark::before {
    background: rgba(0, 0, 0, 0.05);
}

.arrow-btn.dark:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

.arrow-btn.primary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.arrow-btn.primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.arrow-btn.large {
    padding: 18px 36px;
    font-size: 16px;
}

/* ===================================
   NAVIGATION
   ==================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-title);
    font-size: 32px;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.logo-icon {
    width: 32px;
    height: 32px;
    transition: var(--transition-smooth);
}

.logo-text {
    transition: var(--transition-smooth);
}

.logo:hover {
    color: var(--gold-darker);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
}

.nav-link {
    font-size: clamp(14px, 1.5vw, 15px);
    color: var(--gray-subtext);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--white);
}

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

.nav-cta {
    padding: 12px 28px;
    font-size: clamp(13px, 1.5vw, 14px);
    white-space: nowrap;
}

/* Navigation Dropdown - Advanced Animated */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-direction: row;
    position: relative;
}

.nav-dropdown > .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown > .nav-link:hover::before,
.nav-dropdown.dropdown-open > .nav-link::before {
    width: 100%;
}

.nav-dropdown > .nav-link::after {
    content: '';
    position: static !important;
    transform: none !important;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    background: none !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    flex-shrink: 0;
}

.nav-dropdown:hover > .nav-link::after {
    transform: rotate(180deg) !important;
    opacity: 1;
    width: 0 !important;
}

.nav-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    margin-top: 12px;
    background: #000;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px;
    min-width: 280px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%);
    transition: max-height 0s, visibility 0s;
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown.dropdown-open .nav-dropdown-content {
    max-height: 500px;
    visibility: visible;
    pointer-events: all;
    transition: max-height 0.3s ease, visibility 0s;
}

.nav-dropdown-content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    color: var(--gray-subtext);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nav-dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.5));
    transform: translateX(-3px);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-content a::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-content a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    padding-left: 24px;
}

.nav-dropdown-content a:hover::before {
    transform: translateX(0);
}

.nav-dropdown-content a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* No animations on dropdown items */

/* Desktop: hide mobile text and mobile-only links, show desktop text */
.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

.mobile-only-link {
    display: none !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* ===================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(153, 153, 153, 0.1);
    border: 1px solid rgba(153, 153, 153, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-text);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    color: var(--gold-dark);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-subtext);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 48px;
    color: var(--gold-dark);
    margin-bottom: 8px;
    font-weight: 400;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* 3D Object Container */
.hero-3d {
    width: 100%;
    height: 700px;
    position: relative;
}

/* ===================================
   TRUSTED BY SECTION
   ==================================== */
.trusted {
    padding: 80px clamp(24px, 5vw, 64px);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.trusted-header {
    max-width: 800px;
    margin: 0 auto 48px;
}

.trusted-title {
    font-size: 28px;
    color: var(--gray-subtext);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.category-text {
    color: var(--white);
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: opacity 0.3s ease-in-out;
}

.underline-progress {
    height: 3px;
    background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.5));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    margin: 0 auto;
    max-width: 400px;
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    to {
        transform: scaleX(1);
    }
}

.trusted-logos-container {
    position: relative;
    min-height: 200px;
}

.trusted-logos {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.trusted-logos.active {
    opacity: 1;
    pointer-events: auto;
}

.trusted-logos img {
    opacity: 0.6;
    filter: grayscale(100%) drop-shadow(0 4px 8px rgba(204, 204, 204, 0.15));
    transition: all 0.4s ease;
    max-width: 220px;
}

.trusted-logos img:hover {
    opacity: 1;
    filter: grayscale(0%) drop-shadow(0 4px 8px rgba(204, 204, 204, 0.15));
    transform: scale(1.05);
}

/* ===================================
   STATS SECTION
   ==================================== */
.stats-section {
    padding: var(--section-padding) clamp(24px, 5vw, 64px);
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.stat-card {
    text-align: center;
}

.stat-big {
    font-family: var(--font-title);
    font-size: 72px;
    color: var(--gray-subtext);
    margin-bottom: 16px;
    font-weight: 400;
}

.stat-text {
    font-size: 15px;
    color: var(--gray-subtext);
    font-weight: 300;
}

/* ===================================
   SECTION HEADERS
   ==================================== */
.section-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(32px, 4vw, 56px);
    color: var(--gold-dark);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--gray-subtext);
    line-height: 1.8;
    font-weight: 300;
}

/* ===================================
   MODULES SECTION
   ==================================== */
.modules {
    padding: var(--section-padding) clamp(24px, 5vw, 64px);
    position: relative;
    z-index: 1;
}

.modules-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.module-card {
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.module-header {
    margin-bottom: 24px;
}

.module-icon {
    width: 48px;
    height: 48px;
    color: var(--gold-dark);
    transition: var(--transition-smooth);
}

.module-card:hover .module-icon {
    transform: scale(1.1) rotate(5deg);
}

.module-name {
    font-family: var(--font-title);
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 8px;
    font-weight: 400;
}

.module-subtitle {
    font-size: 14px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.module-text {
    font-size: 15px;
    color: var(--gray-subtext);
    line-height: 1.7;
    font-weight: 300;
}

/* ===================================
   GLASSMORPHISM CONTAINERS
   ==================================== */
.glassmorphism-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glassmorphism-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.glassmorphism-card.white-text .container-title,
.glassmorphism-card.white-text .container-description,
.glassmorphism-card.white-text .container-features li {
    color: var(--white);
}

.glassmorphism-card.white-text .container-icon svg {
    color: var(--white);
}

.glassmorphism-card.white-text .container-features li::before {
    background: var(--white);
}

/* ===================================
   MODULE PAGINATION
   ==================================== */
.module-pagination {
    position: fixed;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.module-pagination.visible {
    opacity: 1;
    pointer-events: auto;
}

.pagination-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-num {
    font-weight: 500;
}

.pagination-item:hover .pagination-text {
    color: rgba(255, 255, 255, 0.8);
}

.pagination-item.active .pagination-text {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* ===================================
   FULL-SCREEN MODULE SECTIONS
   ==================================== */
.module-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding) clamp(24px, 5vw, 64px);
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    scroll-margin-top: 0;
}

.module-full-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    width: 100%;
}

.module-full-content {
    position: relative;
}

.module-full-title {
    font-family: var(--font-title);
    font-size: 64px;
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -1px;
}

.module-full-subtitle {
    font-size: 16px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    font-weight: 500;
}

.module-full-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-subtext);
    margin-bottom: 40px;
    font-weight: 300;
}

.module-full-features {
    list-style: none;
    margin-bottom: 48px;
}

.module-full-features li {
    font-size: 16px;
    color: var(--gray-subtext);
    padding: 16px 0;
    padding-left: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    font-weight: 300;
}

.module-full-features li:last-child {
    border-bottom: none;
}

.module-full-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold-dark);
    border-radius: 1px;
}

.module-full-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.module-3d-container {
    width: 100%;
    height: 500px;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.module-3d-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.module-full-icon-large {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.module-full-icon-large::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.module-full-icon-large svg {
    width: 100%;
    height: 100%;
    color: var(--gold-dark);
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}

/* ===================================
   PROCESS SECTION
   ==================================== */
.process {
    padding: var(--section-padding) clamp(24px, 5vw, 64px);
    position: relative;
    z-index: 1;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-item {
    padding: 48px;
    position: relative;
}

.process-number {
    font-family: var(--font-title);
    font-size: 72px;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 24px;
    left: 0;
    font-weight: 400;
}

.process-name {
    font-family: var(--font-title);
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 16px;
    padding-left: 120px;
    font-weight: 400;
}

.process-text {
    font-size: 16px;
    color: var(--gray-subtext);
    line-height: 1.8;
    padding-left: 120px;
    font-weight: 300;
}

.process-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 0 48px;
}

/* ===================================
   DUAL CONTAINER SECTION
   ==================================== */
.dual-container-section {
    padding: var(--section-padding) clamp(24px, 5vw, 64px);
    position: relative;
    z-index: 1;
}

.dual-container-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.dual-container {
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
}

.container-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
}

.container-icon svg {
    width: 100%;
    height: 100%;
    color: var(--black);
    stroke-width: 1.5;
}

.container-title {
    font-family: var(--font-title);
    font-size: 36px;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.container-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.container-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.container-features li {
    font-size: 15px;
    color: #666;
    padding: 12px 0;
    padding-left: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    font-weight: 400;
}

.container-features li:last-child {
    border-bottom: none;
}

.container-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 1px;
}

/* ===================================
   CASE STUDIES SECTION WITH CAROUSEL
   ==================================== */
.case-studies {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 32px;
    animation: scroll-carousel 60s linear infinite;
    will-change: transform;
    padding: 48px;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-420px * 11 - 32px * 11));
    }
}

.case-card {
    min-width: 420px;
    max-width: 420px;
    height: 560px;
    flex-shrink: 0;
    padding: 56px 48px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.case-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.case-title {
    font-family: var(--font-title);
    font-size: 30px;
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.case-text {
    font-size: 15px;
    color: var(--gray-subtext);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 300;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.metric {
    text-align: center;
}

.metric-value {
    font-family: var(--font-title);
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 8px;
    font-weight: 400;
    line-height: 1;
}

.metric-label {
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 400;
    line-height: 1.3;
}

/* ===================================
   PRICING SECTION
   ==================================== */
.pricing {
    padding: var(--section-padding) clamp(24px, 5vw, 64px);
    position: relative;
    z-index: 1;
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing-name {
    font-family: var(--font-title);
    font-size: 28px;
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-weight: 400;
}

.pricing-amount {
    margin-bottom: 16px;
}

.currency {
    font-size: 24px;
    color: var(--gray-text);
    vertical-align: top;
}

.price {
    font-family: var(--font-title);
    font-size: 56px;
    color: var(--gold-dark);
    font-weight: 400;
}

.period {
    font-size: 16px;
    color: var(--gray-text);
}

.price-custom {
    font-family: var(--font-title);
    font-size: 48px;
    color: var(--gold-dark);
    font-weight: 400;
}

.pricing-desc {
    font-size: 15px;
    color: var(--gray-subtext);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 300;
}

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

.pricing-features li {
    font-size: 15px;
    color: var(--gray-subtext);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 300;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .glass-btn {
    width: 100%;
    justify-content: center;
}

/* ===================================
   CTA SECTION
   ==================================== */
.cta {
    padding: var(--section-padding) clamp(24px, 5vw, 64px);
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 64px;
}

.cta-title {
    font-family: var(--font-title);
    font-size: 48px;
    color: var(--gold-dark);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-subtext);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-subtext);
}

.cta-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===================================
   CONTACT
   ==================================== */
.contact {
    padding: var(--section-padding) clamp(24px, 5vw, 64px);
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-title);
    font-size: 48px;
    color: var(--gold-dark);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.contact-description {
    font-size: 18px;
    color: var(--gray-subtext);
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-label {
    font-size: 13px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-value {
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--gold-dark);
}

.contact-form {
    padding: 48px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    color: var(--gray-subtext);
    margin-bottom: 10px;
    font-weight: 300;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    background: rgba(255, 255, 255, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-text);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.full-width {
    width: 100%;
}

/* ===================================
   FOOTER
   ==================================== */
.footer {
    padding: 80px clamp(24px, 5vw, 64px) 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 24px;
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-weight: 400;
}

.footer-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    font-weight: 300;
}

.footer-heading {
    font-family: var(--font-title);
    font-size: 16px;
    color: var(--gold-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 300;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 300;
}

/* ===================================
   RESPONSIVE DESIGN
   ==================================== */

/* Tablet Landscape */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }

    .hero-container {
        gap: 60px;
        padding: 0 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .modules-grid {
        gap: 28px;
    }

    .module-full-title {
        font-size: clamp(40px, 5vw, 56px);
    }

    .case-grid {
        gap: 28px;
    }
}

/* Tablet Portrait & Small Laptops */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .nav-wrapper {
        padding: 0 clamp(24px, 4vw, 32px);
    }

    .nav-menu {
        gap: clamp(28px, 3vw, 40px);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 0 clamp(24px, 4vw, 40px);
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(42px, 6vw, 64px);
    }

    .hero-3d {
        order: 2;
        height: 420px;
        margin: 0 auto;
        max-width: 540px;
    }

    .hero-description {
        font-size: clamp(16px, 2vw, 18px);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .glass-btn {
        padding: 13px 30px;
        font-size: clamp(13px, 1.5vw, 14px);
    }

    .trusted {
        padding: 70px clamp(24px, 4vw, 32px);
    }

    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }


    .modules,
    .process,
    .case-studies {
        padding: 80px clamp(24px, 4vw, 32px);
    }

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

    .module-card,
    .case-card {
        padding: 40px 32px;
    }

    .module-name,
    .case-title {
        font-size: clamp(26px, 3.5vw, 34px);
    }

    .module-full {
        padding: 80px clamp(24px, 4vw, 32px);
        min-height: auto;
    }

    .module-full-container {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .module-full-icon-large {
        width: clamp(220px, 45vw, 340px);
        height: clamp(220px, 45vw, 340px);
    }

    .module-full-visual {
        order: -1;
    }

    .process-timeline {
        padding: 0 24px;
    }

    .process-item {
        padding-left: 56px;
    }

    .cta {
        padding: 80px clamp(24px, 4vw, 32px);
    }

    .cta-content {
        padding: 64px 40px;
    }

    .footer {
        padding: 64px clamp(24px, 4vw, 32px) 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .glassmorphism-card {
        padding: 56px 40px;
    }

    .dual-container-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dual-container {
        padding: 48px 36px;
    }

    .module-full-container {
        margin-left: 5%;
        width: calc(100% - 5%);
    }

    .module-pagination {
        left: 2%;
        gap: 10px;
    }

    .pagination-text {
        font-size: 13px;
    }

    .module-3d-container {
        height: 400px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav {
        padding: 16px 0;
    }

    .nav.scrolled {
        padding: 12px 0;
    }

    .nav-wrapper {
        padding: 0 24px;
    }

    .logo {
        font-size: 20px;
        gap: 10px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(85vw, 400px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 20px;
        padding: 20px 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--gray-text);
    }

    .nav-link::after {
        display: none !important;
    }

    .nav-link:hover {
        color: var(--white);
        padding-left: 8px;
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-dropdown > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
        padding: 20px 0;
    }

    .nav-dropdown > .nav-link::after {
        display: block !important;
        position: static !important;
        transform: rotate(0deg) !important;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.mobile-open > .nav-link::after {
        transform: rotate(180deg) !important;
    }

    .nav-dropdown-content {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown-content::before {
        display: none !important;
    }

    .nav-dropdown.mobile-open .nav-dropdown-content {
        max-height: 500px;
        padding-bottom: 10px !important;
    }

    .nav-dropdown-content a {
        font-size: 18px;
        padding: 16px 0 16px 24px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        background: transparent !important;
        border-radius: 0 !important;
        color: var(--gray-text) !important;
        opacity: 0.8;
    }

    .nav-dropdown-content a::before,
    .nav-dropdown-content a::after {
        display: none !important;
    }

    .nav-dropdown-content a:hover {
        color: var(--white) !important;
        opacity: 1;
        padding-left: 32px !important;
    }

    /* Mobile-only navigation links */
    .mobile-only-link {
        font-weight: 600 !important;
        opacity: 1 !important;
    }

    /* Show mobile text, hide desktop text on mobile */
    .desktop-text {
        display: none !important;
    }

    .mobile-text {
        display: inline !important;
    }

    .nav-cta {
        margin-top: 32px;
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        font-size: 16px;
        border-bottom: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Why Adoniss Mobile Styles */
    #why-adoniss > div > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    #why-adoniss > div > div:last-child > div:last-child {
        display: none !important;
    }

    .why-accordion-item {
        padding: 24px !important;
        position: relative !important;
    }

    .why-accordion-item h3 {
        font-size: 1.2rem !important;
    }

    .why-accordion-item.active::after {
        display: none !important;
    }

    .why-accordion-item.active .accordion-content {
        max-height: 800px !important;
    }

    .mobile-3d-container {
        display: block !important;
    }

    /* Mission Section Mobile Styles */
    .mission-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .mission-card {
        padding: 40px 30px !important;
    }

    .mission-card h3 {
        font-size: 1.5rem !important;
    }

    .mission-card p {
        font-size: 1rem !important;
    }

    .mission-card ul {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 16px !important;
    }

    .mission-card ul li {
        font-size: 0.9rem !important;
    }

    .mission-card ul li svg {
        width: 16px !important;
        height: 16px !important;
    }

    .mission-extra {
        max-height: 60px !important;
        opacity: 1 !important;
        padding: 12px 0 !important;
    }

    /* How It Works Mobile Styles */
    .timeline-step {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
        position: relative !important;
        padding-top: 80px !important;
        margin-bottom: 40px !important;
    }

    .timeline-content {
        text-align: center !important;
    }

    .timeline-number {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 0 !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 1.3rem !important;
    }

    .timeline-line {
        display: none !important;
    }

    /* Compliance Section Mobile Styles */
    #compliance .compliance-card {
        pointer-events: none !important;
        perspective: none !important;
    }

    #compliance .card-inner {
        transform: none !important;
    }

    #compliance .card-front {
        position: static !important;
    }

    #compliance .card-back {
        display: none !important;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 24px;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        font-size: clamp(10px, 2vw, 11px);
        padding: 7px 18px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: clamp(36px, 9vw, 52px);
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-3d {
        height: clamp(280px, 50vw, 340px);
        max-width: 100%;
    }

    .hero-description {
        font-size: clamp(15px, 3vw, 17px);
        margin-bottom: 32px;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .hero-actions .glass-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 15px 28px;
        font-size: 15px;
    }

    .trusted {
        padding: 56px 24px;
    }

    .trusted-title {
        font-size: clamp(11px, 2.5vw, 13px);
        margin-bottom: 36px;
    }

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

    .trusted-logos img {
        max-width: clamp(90px, 20vw, 120px);
    }


    .modules,
    .process,
    .case-studies,
    .module-full,
    .cta {
        padding: 64px 24px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .section-subtitle {
        font-size: clamp(14px, 3vw, 16px);
    }

    .modules-grid,
    .case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .module-card,
    .case-card {
        padding: 36px 28px;
    }

    .module-icon {
        width: clamp(34px, 8vw, 40px);
        height: clamp(34px, 8vw, 40px);
    }

    .module-name,
    .case-title {
        font-size: clamp(24px, 6vw, 30px);
    }

    .module-subtitle,
    .case-tag {
        font-size: clamp(10px, 2.5vw, 12px);
    }

    .module-text,
    .case-text {
        font-size: clamp(13px, 3vw, 15px);
        line-height: 1.7;
    }

    .case-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .metric-value {
        font-size: clamp(22px, 5vw, 28px);
    }

    .metric-label {
        font-size: clamp(9px, 2vw, 11px);
    }

    .module-full {
        min-height: auto;
    }

    .module-full-container {
        gap: 40px;
    }

    .module-full-number {
        font-size: 64px;
        top: -30px;
        left: -10px;
    }

    .module-full-title {
        font-size: 32px;
    }

    .module-full-subtitle {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .module-full-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .module-full-features {
        margin-bottom: 32px;
    }

    .module-full-features li {
        font-size: 14px;
        padding: 12px 0 12px 24px;
    }

    .module-full-features li::before {
        width: 5px;
        height: 5px;
    }

    .module-full-icon-large {
        width: 220px;
        height: 220px;
    }

    .process-number {
        font-size: 40px;
        left: 0;
    }

    .process-name {
        font-size: 20px;
        padding-left: 60px;
    }

    .process-text {
        font-size: 14px;
        padding-left: 60px;
        line-height: 1.6;
    }

    .process-item {
        padding: 32px 24px;
    }

    .process-line {
        margin: 0 24px;
    }

    .cta-content {
        padding: 48px 24px;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .cta-actions .glass-btn {
        width: 100%;
    }

    .footer {
        padding: 50px 20px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-desc,
    .footer-links a {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 24px;
    }

    .modules-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }

    .process-number {
        font-size: 48px;
    }

    .process-name {
        font-size: 24px;
        padding-left: 80px;
    }

    .process-text {
        padding-left: 80px;
    }

    .module-full-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .module-full-number {
        font-size: 80px;
        top: -40px;
    }

    .module-full-title {
        font-size: 40px;
    }

    .module-full-icon-large {
        width: 250px;
        height: 250px;
    }

    .cta-title {
        font-size: 32px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .glassmorphism-card {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .module-3d-container {
        height: 300px;
    }

    .arrow-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    .dual-container-section {
        padding: 64px 24px;
    }

    .dual-container-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dual-container {
        padding: 40px 28px;
    }

    .module-full-container {
        margin-left: 24px;
        width: calc(100% - 48px);
        gap: 48px;
    }

    .module-pagination {
        display: none;
    }

    .carousel-track {
        padding: 24px;
    }

    .case-card {
        min-width: 320px;
        max-width: 320px;
        height: 426px;
        padding: 40px 32px;
    }

    .case-title {
        font-size: 24px;
    }

    .case-text {
        font-size: 13px;
    }

    .case-tag {
        font-size: 9px;
        padding: 6px 14px;
    }

    .metric-value {
        font-size: 24px;
    }

    .metric-label {
        font-size: 10px;
    }

    .container-icon {
        width: 48px;
        height: 48px;
    }

    .container-title {
        font-size: 28px;
    }

    .container-description {
        font-size: 14px;
    }

    .trusted-title {
        font-size: 20px;
    }

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

    .trusted-logos-container {
        min-height: 240px;
    }

    .cta-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cta-feature {
        font-size: 14px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .nav {
        padding: 14px 0;
    }

    .nav.scrolled {
        padding: 10px 0;
    }

    .nav-wrapper {
        padding: 0 20px;
    }

    .logo {
        font-size: 18px;
        gap: 8px;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .nav-menu {
        padding: 80px 24px 32px;
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        padding: 18px 0;
    }

    .nav-cta {
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero {
        padding: 90px 0 48px;
    }

    .hero-container {
        padding: 0 20px;
        gap: 32px;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 44px);
    }

    .hero-3d {
        height: clamp(240px, 55vw, 300px);
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 14px;
    }

    .hero-3d {
        height: 260px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions .glass-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .trusted {
        padding: 40px 16px;
    }

    .trusted-logos {
        gap: 16px;
    }

    .trusted-logos img {
        max-width: 90px;
    }


    .modules,
    .process,
    .case-studies,
    .module-full,
    .cta {
        padding: 48px 16px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .modules-grid,
    .case-grid {
        gap: 14px;
    }

    .module-card,
    .case-card {
        padding: 28px 20px;
    }

    .module-icon {
        width: 32px;
        height: 32px;
    }

    .module-name {
        font-size: 22px;
    }

    .module-subtitle,
    .case-tag {
        font-size: 10px;
    }

    .module-text,
    .case-text {
        font-size: 13px;
    }

    .case-title {
        font-size: 20px;
    }

    .case-metrics {
        gap: 12px;
    }

    .metric-value {
        font-size: 20px;
    }

    .metric-label {
        font-size: 9px;
    }

    .module-full-container {
        gap: 28px;
    }

    .module-full-number {
        font-size: 56px;
        top: -24px;
    }

    .module-full-title {
        font-size: 28px;
    }

    .module-full-subtitle {
        font-size: 11px;
    }

    .module-full-description {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .module-full-features {
        margin-bottom: 28px;
    }

    .module-full-features li {
        font-size: 13px;
        padding: 10px 0 10px 20px;
    }

    .module-full-icon-large {
        width: 180px;
        height: 180px;
    }

    .process-item {
        padding: 28px 16px;
    }

    .process-number {
        font-size: 36px;
    }

    .process-name {
        font-size: 18px;
        padding-left: 52px;
    }

    .process-text {
        font-size: 13px;
        padding-left: 52px;
    }

    .process-line {
        margin: 0 16px;
    }

    .cta-content {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-actions .glass-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .footer {
        padding: 40px 16px 28px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-logo {
        font-size: 18px;
    }

    .footer-desc,
    .footer-links a {
        font-size: 12px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .glassmorphism-card {
        padding: 32px 20px;
    }

    .module-3d-container {
        height: 240px;
    }

    .dual-container-section {
        padding: 48px 16px;
    }

    .dual-container {
        padding: 32px 20px;
    }

    .case-card {
        min-width: 160px;
        max-width: 160px;
        height: 213px;
        padding: 24px 18px;
    }

    .case-title {
        font-size: 13px;
    }

    .case-text {
        font-size: 9px;
    }

    .metric-value {
        font-size: 14px;
    }

    .metric-label {
        font-size: 6px;
    }

    .container-title {
        font-size: 24px;
    }

    .container-icon {
        width: 40px;
        height: 40px;
    }

    .trusted-title {
        font-size: 18px;
    }

    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .arrow-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   ==================================== */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.scroll-to-top:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(0);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--white);
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.light-mode .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.light-mode .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 24px;
        right: 80px;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }

    .theme-toggle {
        bottom: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
    }

    .theme-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   LIGHT MODE STYLES
   ==================================== */
body.light-mode {
    --black: #f5f5f0;
    --gold-dark: #000000;
    --gold-darker: #000000;
    --gray-text: #666666;
    --gray-subtext: #333333;
    --white: #000000;
    background-color: #f5f5f0;
    color: #000000;
}

body.light-mode canvas {
    filter: invert(1) brightness(0.95);
}

body.light-mode .blob {
    opacity: 0.02;
}

body.light-mode .glassmorphism-card {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .glass-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #666666;
}

body.light-mode .glass-btn:hover {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .glass-btn.primary {
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
}

body.light-mode .arrow-btn {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

body.light-mode .module-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .nav {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .scroll-to-top,
body.light-mode .theme-toggle {
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

body.light-mode .scroll-to-top svg,
body.light-mode .theme-toggle svg {
    color: #000000;
}

body.light-mode .dual-container {
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .trusted {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .trusted-logos img {
    filter: invert(1) grayscale(100%) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

body.light-mode .trusted-logos img:hover {
    filter: invert(1) grayscale(0%) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

body.light-mode .footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .process-number {
    color: rgba(0, 0, 0, 0.12);
}

body.light-mode .case-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

body.light-mode .case-tag {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

body.light-mode .form-input,
body.light-mode .form-textarea {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #000000;
}

body.light-mode .form-input:focus,
body.light-mode .form-textarea:focus {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
body.light-mode .hero-badge {
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
}

body.light-mode .hero-title {
    color: #000000;
}

body.light-mode .hero-description {
    color: #333333;
}

/* Section Typography */
body.light-mode .section-title {
    color: #000000;
}

body.light-mode .section-subtitle {
    color: #333333;
}

/* Mission Cards */
body.light-mode .mission-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .mission-card h3 {
    color: #000000;
}

body.light-mode .mission-card p {
    color: #666666;
}

body.light-mode .mission-card li {
    color: #666666;
}

body.light-mode .mission-card svg {
    color: #000000;
}

/* Accordion Section */
body.light-mode .why-accordion-item {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .why-accordion-item h3 {
    color: #000000;
}

body.light-mode .expand-icon {
    color: #000000;
}

body.light-mode .accordion-content p {
    color: #666666;
}

body.light-mode #why-images-container {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Chat Overlays */
body.light-mode .chat-message {
    color: #000000;
}

body.light-mode .prev-message {
    background: rgba(0, 0, 0, 0.05) !important;
}

body.light-mode .mobile-3d-container {
    background: rgba(0, 0, 0, 0.03) !important;
}

body.light-mode .module-3d-container {
    background: rgba(0, 0, 0, 0.03);
}

/* Module Pagination */
body.light-mode .pagination-item {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

body.light-mode .pagination-text {
    color: #666666;
}

body.light-mode .pagination-num {
    color: #333333;
}

body.light-mode .pagination-item.active .pagination-text {
    color: #000000;
}

body.light-mode .pagination-item:hover .pagination-text {
    color: #000000;
}

/* Module Full Sections */
body.light-mode .module-full {
    background: #f5f5f0;
}

body.light-mode .module-full-title {
    color: #000000;
}

body.light-mode .module-full-subtitle {
    color: #666666;
}

body.light-mode .module-full-description {
    color: #333333;
}

body.light-mode .module-full-features {
    color: #333333;
}

body.light-mode .module-full-features li::before {
    color: #000000;
}

/* Case Studies */
body.light-mode .case-title {
    color: #000000;
}

body.light-mode .case-text {
    color: #666666;
}

body.light-mode .metric-value {
    color: #000000;
}

body.light-mode .metric-label {
    color: #666666;
}

/* Timeline Section */
body.light-mode .timeline-line {
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.15), transparent);
}

body.light-mode .timeline-number {
    background: #ffffff;
    border: 3px solid #000000;
    color: #000000;
}

body.light-mode .timeline-content {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .timeline-content h3 {
    color: #000000;
}

body.light-mode .timeline-content p {
    color: #666666;
}

/* Module Cards (in integrations section) */
body.light-mode .module-name {
    color: #000000;
}

body.light-mode .module-subtitle {
    color: #666666;
}

body.light-mode .module-text {
    color: #666666;
}

body.light-mode .module-icon {
    color: #000000;
    stroke: #000000;
}

body.light-mode .module-header {
    background: rgba(0, 0, 0, 0.05);
}

/* CTA Section */
body.light-mode .cta {
    background: rgba(0, 0, 0, 0.02);
}

body.light-mode .cta-title {
    color: #000000;
}

body.light-mode .cta-subtitle {
    color: #333333;
}

body.light-mode .cta-feature {
    color: #333333;
}

body.light-mode .cta-icon {
    color: #000000;
    stroke: #000000;
}

/* Contact Section */
body.light-mode .contact-title {
    color: #000000;
}

body.light-mode .contact-description {
    color: #666666;
}

body.light-mode .contact-label {
    color: #666666;
}

body.light-mode .contact-value {
    color: #000000;
}

body.light-mode .contact-icon {
    color: #000000;
}

body.light-mode .form-label {
    color: #666666;
}

/* Navigation */
body.light-mode .logo-text {
    color: #000000;
}

body.light-mode .nav-link {
    color: #000000;
}

body.light-mode .nav-link::after {
    background: #000000;
}

body.light-mode .nav-dropdown-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .nav-dropdown-content a {
    color: #333333;
}

body.light-mode .nav-dropdown-content a:hover {
    color: #000000;
}

body.light-mode .mobile-toggle span {
    background: #000000;
}

/* Footer */
body.light-mode .footer-logo {
    color: #000000;
}

body.light-mode .footer-desc {
    color: #666666;
}

body.light-mode .footer-heading {
    color: #000000;
}

body.light-mode .footer-links a {
    color: #666666;
}

body.light-mode .footer-links a:hover {
    color: #000000;
}

body.light-mode .footer-bottom {
    color: #666666;
}

/* Loading Screen */
body.light-mode #loading-screen {
    background: #f5f5f0 !important;
}

body.light-mode #loading-bar {
    background: linear-gradient(90deg, #000000 0%, #666666 100%) !important;
}

body.light-mode #loading-screen p {
    color: rgba(0, 0, 0, 0.6) !important;
}

/* Temporarily hide Why Adoniss 3D canvases */
#transparency-canvas,
#speed-canvas,
#modularity-canvas,
#intelligence-canvas,
#transparency-canvas-mobile,
#speed-canvas-mobile,
#modularity-canvas-mobile,
#intelligence-canvas-mobile {
    display: none !important;
}

/* ===================================
   UTILITY CLASSES
   ==================================== */
.parallax {
    will-change: transform;
}

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

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

/* Selection */
::selection {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

::-moz-selection {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* ===================================
   LOGO CAROUSEL ANIMATIONS
   (Moved from inline style in index.html)
   ==================================== */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 60px));
    }
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.logo-carousel img:hover {
    opacity: 1 !important;
}
