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

:root {
    /* Primary color based on #05232b */
    --primary-color: #05232b;
    --primary-color-light: #0a3d4a;
    --primary-color-lighter: #0d4a5c;
    --primary-color-dark: #031a20;
    /* Accent color - lighter teal derived from primary color (#05232b) for visibility */
    --accent-color: #2a9db0;
    --accent-color-hover: #33b8cc;

    /* Light theme (default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f2f5;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --border-color: #e5e5e5;
    --border-color-light: #f0f0f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.05);
}

/* Dark theme */
[data-theme="dark"] {
    --bg-primary: #0a1f26;
    --bg-secondary: #0d2830;
    --bg-tertiary: #0f2f38;
    --text-primary: #ffffff;
    --text-secondary: #b8c5cc;
    --text-tertiary: #8a9ba3;
    --border-color: #1a3a44;
    --border-color-light: #153036;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.2);
}

/* Legacy variables for backward compatibility */
:root {
    --text-dark: var(--text-primary);
    --text-light: var(--text-secondary);
    --white: var(--bg-primary);
    --bg-light: var(--bg-secondary);
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    padding: 8px 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .top-bar {
    background: var(--bg-primary);
    border-bottom-color: var(--border-color);
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

[data-theme="dark"] .top-bar-text {
    color: var(--text-primary);
}

.top-bar .language-selector {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-bar .current-lang {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .top-bar .current-lang {
    color: var(--text-primary);
}

.top-bar .lang-chevron {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .top-bar .lang-chevron {
    color: var(--text-primary);
}

.top-bar .lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    list-style: none;
    min-width: 150px;
    margin-top: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow);
}

[data-theme="dark"] .top-bar .lang-dropdown {
    background: var(--bg-primary);
    border-color: var(--border-color);
}

.top-bar .language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-bar .lang-dropdown li {
    padding: 0;
}

.top-bar .lang-dropdown a {
    display: block;
    padding: 8px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    transition: background 0.2s;
}

.top-bar .lang-dropdown a:hover {
    background: var(--bg-secondary);
}

[data-theme="dark"] .top-bar .lang-dropdown a:hover {
    background: var(--bg-secondary);
}

/* Utility Bar */
.utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 35, 45, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1002;
    padding: 12px 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.utility-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.utility-bar-left {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.utility-bar-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.utility-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 4px 0;
}

.utility-item:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.utility-item svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.utility-item:hover svg {
    opacity: 1;
}

.utility-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 4px 0;
    position: relative;
}

.utility-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.2s ease;
}

.utility-link:hover {
    color: rgba(255, 255, 255, 1);
}

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

.utility-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.utility-login:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.utility-login svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* Mobile Menu Contact Items - Hidden on desktop */
.mobile-contact-divider {
    display: none;
}

.mobile-contact-separator {
    height: 1px;
    background: var(--border-color);
    margin: 0;
}

.mobile-contact-item {
    display: none;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
}

.mobile-contact-link:hover {
    color: var(--accent-color);
    background: rgba(42, 157, 176, 0.1);
    transform: translateX(4px);
}

.mobile-contact-link svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    opacity: 1;
    color: var(--accent-color);
    transition: transform 0.2s ease;
}

.mobile-contact-link:hover svg {
    transform: scale(1.1);
}

/* Mobile Menu Utility Items - Hidden on desktop */
.mobile-utility-divider {
    display: none;
    margin: 16px 0 8px;
}

.mobile-utility-separator {
    height: 1px;
    background: var(--border-color);
    margin: 0;
}

.mobile-utility-item {
    display: none;
}

.mobile-login-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mobile-login-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Responsive Utility Bar */
@media (max-width: 768px) {

    /* Hide entire utility bar on mobile - all items are in the menu now */
    .utility-bar {
        display: none;
    }

    /* Show mobile contact items in menu */
    .mobile-contact-divider {
        display: block;
    }

    .mobile-contact-item {
        display: block;
        border-bottom: none;
        background: rgba(42, 157, 176, 0.05);
        margin: 0 12px 8px;
        border-radius: 8px;
        overflow: hidden;
    }

    .mobile-contact-item:first-of-type {
        margin-top: 12px;
    }

    .mobile-contact-item:last-of-type {
        margin-bottom: 16px;
    }

    /* Show mobile utility items in menu */
    .mobile-utility-divider {
        display: block;
    }

    .mobile-utility-item {
        display: block;
    }

    /* Header positioned at top since utility bar is hidden */
    .header {
        top: 0 !important;
        margin-top: 0;
    }

    /* Ensure no blank space above header on mobile */
    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Remove any potential spacing from viewport */
    body {
        position: relative;
    }
}

@media (max-width: 480px) {

    /* Utility bar already hidden on mobile */
    .header {
        top: 0;
    }
}

/* Header */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: var(--primary-color);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 0 16px;
    transition: background-color 0.3s ease, border-color 0.3s ease, top 0.3s ease;
    margin: 0;
}

@media (max-width: 768px) {
    .header {
        padding-top: 12px;
        border-top: none;
        top: 0 !important;
        margin-top: 0 !important;
    }

    .header-container {
        padding-top: 0;
    }
}

[data-theme="dark"] .header {
    background: var(--bg-primary);
    border-bottom-color: var(--border-color);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .header-container {
        padding-top: 0;
    }
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-item.dropdown.active .nav-link,
.nav-item.dropdown:hover .nav-link {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .nav-link {
    color: var(--text-primary);
}

[data-theme="dark"] .nav-link:hover {
    color: var(--primary-color-light);
}

[data-theme="dark"] .nav-item.dropdown.active .nav-link,
[data-theme="dark"] .nav-item.dropdown:hover .nav-link {
    border-bottom-color: var(--text-primary);
}

.nav-chevron {
    font-size: 10px;
    transition: transform 0.3s;
    color: inherit;
}

.nav-item.dropdown.active .nav-chevron,
.nav-item.dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    border-radius: 8px;
    box-shadow: 0 4px 24px var(--shadow);
    min-width: 280px;
    padding: 24px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    pointer-events: none;
    border: 1px solid var(--border-color);
}

.header .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .header .dropdown-menu {
    background: var(--bg-primary);
    border-color: var(--border-color);
}

.nav-item.dropdown.active .dropdown-menu,
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.header .dropdown-header {
    color: var(--text-primary);
}

[data-theme="dark"] .header .dropdown-header {
    color: var(--text-primary);
}

.dropdown-list {
    list-style: none;
}

.dropdown-list li {
    margin-bottom: 8px;
}

.dropdown-list a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.2s;
}

.dropdown-list a:hover {
    color: var(--primary-color);
}

/* Theme Toggle Button */
.theme-toggle-button {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
    backdrop-filter: blur(10px);
}

.theme-toggle-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.theme-toggle-button:active {
    transform: scale(0.95);
}

[data-theme="dark"] .theme-toggle-button {
    background: #2E363C;
    border-color: #8A9AA6;
    backdrop-filter: none;
}

[data-theme="dark"] .theme-toggle-button:hover {
    background: #3A444C;
    border-color: #9AAAB6;
}

.theme-toggle-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.9);
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

[data-theme="dark"] .theme-toggle-icon {
    color: #FFFFFF;
}

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

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

[data-theme="dark"] .theme-toggle-icon.sun {
    opacity: 0;
    transform: scale(0.8) rotate(90deg);
}

[data-theme="dark"] .theme-toggle-icon.moon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Contact Button */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

[data-theme="dark"] .contact-button {
    background: #2E363C;
    color: #FFFFFF;
    border-color: #8A9AA6;
    backdrop-filter: none;
}

[data-theme="dark"] .contact-button:hover {
    background: #3A444C;
    border-color: #9AAAB6;
    color: #FFFFFF;
}

.contact-button svg {
    width: 16px;
    height: 16px;
}

/* Header Actions Wrapper */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 8px;
    border-top: 1px solid var(--border-color-light);
    display: none;
    background: transparent;
}

.mobile-theme-toggle {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: left;
    border-radius: 8px;
    position: relative;
    margin: 0;
}

.mobile-theme-toggle:hover {
    background: rgba(42, 157, 176, 0.1);
    color: var(--accent-color);
    transform: translateX(4px);
}

.mobile-theme-toggle:active {
    background: var(--bg-tertiary);
}

.theme-toggle-label {
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    text-align: left;
    margin: 0;
    padding: 0;
}

.theme-toggle-icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-theme-toggle .theme-toggle-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-theme-toggle .theme-toggle-icon.sun {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.mobile-theme-toggle .theme-toggle-icon.moon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotate(-90deg);
}

[data-theme="dark"] .mobile-theme-toggle .theme-toggle-icon.sun {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotate(90deg);
}

[data-theme="dark"] .mobile-theme-toggle .theme-toggle-icon.moon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    gap: 4px;
    position: relative;
    visibility: hidden;
    opacity: 0;
    flex-shrink: 0;
    min-width: 24px;
    min-height: 24px;
}

.mobile-menu-toggle:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px;
    transition: all 0.3s ease;
    display: block;
    flex-shrink: 0;
}

[data-theme="dark"] .hamburger-line {
    background: var(--text-primary);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    margin-top: 113px;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .hero {
    border-top-color: rgba(5, 35, 43, 0.08);
    border-bottom-color: rgba(5, 35, 43, 0.08);
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

[data-theme="dark"] .hero {
    border-top-color: rgba(255, 255, 255, 0.08);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: #08262e;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(5, 35, 43, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(5, 35, 43, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .hero::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 32px;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
    background: var(--primary-color-light);
    transform: translateY(-2px);
}

[data-theme="dark"] .cta-button {
    background: var(--primary-color-light);
    color: #ffffff;
}

[data-theme="dark"] .cta-button:hover {
    background: var(--primary-color-lighter);
    color: #ffffff;
}

.hero-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 440px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
}

.video-play-pause {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.video-play-pause:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transform: scale(1.05);
}

.video-play-pause .play-icon,
.video-play-pause .pause-icon {
    width: 18px;
    height: 18px;
}

.video-play-pause .play-icon path,
.video-play-pause .pause-icon path {
    fill: var(--text-primary);
}

/* Trusted Clients Section */
.trusted-clients {
    padding: 80px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
}

.trusted-clients .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.clients-carousel {
    display: flex;
    gap: 48px;
    align-items: center;
    width: fit-content;
    animation: scrollClients 40s linear infinite;
}

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

.clients-carousel.animate {
    animation: scrollClients 40s linear infinite;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    min-width: 100px;
}

.client-logo img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    transition: filter 0.2s ease, background 0.3s ease;
    background: var(--bg-secondary);
    display: block;
    padding: 12px;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Win the Moments Section */
.win-moments {
    padding: 100px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.win-moments-title {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.win-moments-title .bold-text {
    font-weight: 700;
}

.win-moments-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 80px;
    font-weight: 400;
    line-height: 1.5;
}

.journey-visualization {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trend-line-container {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 50px;
    overflow: hidden;
}

.trend-line-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.trend-path {
    stroke: #6f00ff;
    stroke-width: 5.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Dotted vertical grid lines — at column boundaries (sixths) */
.grid-line {
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 100%;
    border-left: 1px dashed var(--border-color);
    opacity: 0.5;
    transition: border-color 0.3s ease;
}

.grid-line-1 {
    left: 16.6667%;
}

.grid-line-2 {
    left: 33.3333%;
}

.grid-line-3 {
    left: 50%;
}

.grid-line-4 {
    left: 66.6667%;
}

.grid-line-5 {
    left: 83.3333%;
}

.grid-line-6 {
    display: none;
}

/* Markers */
.marker {
    position: absolute;
    width: 52px;
    height: 52px;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-core {
    width: 9px;
    height: 9px;
    background: #6f00ff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.marker-ring {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 0.5px solid rgba(111, 0, 255, 0.08);
}

.marker-glow {
    width: 46px;
    height: 46px;
    background: #b794f6;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    filter: blur(10px);
    z-index: 1;
}


/* Journey Stages */
.journey-stages {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    padding-top: 10px;
}

.journey-stage {
    text-align: left;
    position: relative;
}

.stage-dotted-line {
    width: 1px;
    height: 45px;
    margin: 0 auto 20px auto;
    border-left: 2px dotted var(--border-color);
    opacity: 1;
    transition: border-color 0.3s ease;
}

.stage-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    opacity: 1;
    line-height: 1.3;
}

.stage-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    opacity: 1;
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Smarter Experiences Section */
.smarter-experiences {
    padding: 120px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

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

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Solutions Section */
.solutions {
    padding: 120px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.solutions-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.solutions-heading {
    position: sticky;
    top: 120px;
}

.solutions-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: left;
    margin: 0;
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.solution-card {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.solution-card:hover {
    box-shadow: 0 4px 12px var(--shadow-light);
}

.solution-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.solution-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.solution-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-links li {
    margin-bottom: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color-light);
}

.solution-links li:last-child {
    border-bottom: none;
}

.solution-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.solution-links a:hover {
    color: var(--primary-color);
}

.solution-links a .arrow-icon {
    flex-shrink: 0;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    color: currentColor;
}

/* Fuel iX Section */
.solutions .fuel-ix {
    padding: 0;
    background: transparent;
    margin-top: 0;
}

.fuel-ix-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.fuel-ix-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.fuel-ix-content:hover {
    box-shadow: 0 4px 12px var(--shadow-light);
}

.fuel-ix-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.fuel-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
}

.fuel-ix-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fuel-ix-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.fuel-ix-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.fuel-ix-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

/* Case Studies Section */
.case-studies {
    padding: 120px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.case-studies .section-title {
    margin-bottom: 48px;
}

.case-studies-carousel {
    position: relative;
    overflow: hidden;
}

.case-study-item {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-study-item.active {
    display: block;
    opacity: 1;
}

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

.case-study-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.case-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.case-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-tags .tag {
    font-size: 12px;
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 20px;
    color: var(--text-secondary);
}

.case-stat {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

[data-theme="dark"] .case-stat {
    color: var(--primary-color-light);
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.case-link:hover {
    color: var(--primary-color-light);
}

[data-theme="dark"] .case-link {
    color: var(--primary-color-light);
}

[data-theme="dark"] .case-link:hover {
    color: var(--primary-color-lighter);
}

.case-study-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-text {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: normal;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.3s;
}

.testimonial-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Innovation Solutions Section */
.innovation-solutions {
    padding: 120px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
}

.innovation-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-align: left;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: stretch;
}

.innovation-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.innovation-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    margin-bottom: 8px;
    flex-shrink: 0;
}

.innovation-icon svg {
    width: 80px;
    height: 80px;
    display: block;
    flex-shrink: 0;
}

.innovation-item-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.innovation-item-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
    min-height: 0;
}

.innovation-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background: transparent;
    transition: all 0.2s ease;
    width: fit-content;
    margin-top: auto;
    flex-shrink: 0;
}

.innovation-link:hover {
    color: #ffffff;
    background: var(--accent-color);
    border-color: var(--accent-color);
    gap: 12px;
}

.innovation-link svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.innovation-link:hover svg {
    transform: translateX(4px);
}

[data-theme="dark"] .innovation-link {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

[data-theme="dark"] .innovation-link:hover {
    color: #ffffff;
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Dark theme adjustments */
[data-theme="dark"] .innovation-solutions {
    background: var(--bg-primary);
}

[data-theme="dark"] .innovation-title {
    color: var(--text-primary);
}

[data-theme="dark"] .innovation-item-title {
    color: var(--text-primary);
}

[data-theme="dark"] .innovation-item-description {
    color: var(--text-secondary);
}

/* Responsive design */
@media (max-width: 1024px) {
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        align-items: stretch;
    }

    .innovation-item {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .innovation-solutions {
        padding: 80px 0;
    }

    .innovation-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: stretch;
    }

    .innovation-item {
        height: auto;
    }

    .innovation-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
    }

    .innovation-icon svg {
        width: 80px;
        height: 80px;
    }

    .innovation-item-title {
        font-size: 20px;
    }

    .innovation-item-description {
        font-size: 15px;
    }
}

/* AI Tabs Navigation */
.ai-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0 32px;
    margin-bottom: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.ai-tab {
    padding: 8px 0;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    text-transform: uppercase;
}

.ai-tab:hover {
    color: var(--text-primary);
}

.ai-tab.active {
    color: var(--text-primary);
}

.ai-tab.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    right: 0;
    height: 3px;
    background: #6f00ff;
    border-radius: 2px 2px 0 0;
}

.ai-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 0;
    padding-top: 32px;
}

/* Featured Card - White card with shadow */
.ai-featured-card {
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 4px 24px var(--shadow);
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ai-tab-panel {
    display: none;
}

.ai-tab-panel.active {
    display: block;
}

.ai-tab-panel[hidden] {
    display: none !important;
}

.ai-featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.ai-featured-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-featured-headline {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0;
}

.ai-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    width: fit-content;
    transition: all 0.2s;
}

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

[data-theme="dark"] .ai-learn-btn {
    color: var(--primary-color-light);
    border-color: var(--primary-color-light);
}

[data-theme="dark"] .ai-learn-btn:hover {
    background: var(--primary-color-light);
    color: #ffffff;
    border-color: var(--primary-color-light);
}

.ai-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.ai-link:hover {
    color: #3d7f3a;
}

.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-tag {
    font-size: 12px;
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 20px;
    color: var(--text-secondary);
}

.ai-featured-image {
    width: 100%;
}

.ai-featured-image img,
.ai-secondary-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.ai-secondary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-secondary-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ai-secondary-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.ai-secondary-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.ai-secondary-image {
    width: 120px;
    flex-shrink: 0;
}

/* Transformation Section */
.transformation {
    padding: 120px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.transformation .section-title {
    margin-bottom: 48px;
}

.transformation-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.tab-button {
    padding: 12px 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-primary);
}

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

.transformation-images {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.transformation-image {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

.transformation-image.active {
    display: block;
}

/* ======================================= */
/* DARK THEME SECTIONS                     */
/* ======================================= */

/* Autonomous Workflows Section */
.autonomous-workflows {
    padding: 220px 0 80px;
    background: linear-gradient(160deg, var(--primary-color-dark) 0%, var(--primary-color) 30%, var(--primary-color-dark) 70%, var(--primary-color-dark) 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

[data-theme="light"] .autonomous-workflows {
    background: linear-gradient(160deg, #0a2e36 0%, #0d3640 30%, #0a2a32 70%, #071e24 100%);
    color: #ffffff;
}

.autonomous-workflows::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 201, 219, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(75, 225, 160, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.aw-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.aw-title-accent {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
}

.aw-title-main {
    display: block;
    color: var(--text-primary);
}

[data-theme="light"] .aw-title-main {
    color: #ffffff;
}

.aw-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    z-index: 1;
}

.infinity-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 2 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infinity-loop {
    position: absolute;
    z-index: 1;
    width: 100%;
    animation: infinityFloat 6s ease-in-out infinite;
}

.infinity-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    filter: drop-shadow(0 0 40px rgba(111, 0, 255, 0.25)) drop-shadow(0 0 80px rgba(0, 201, 219, 0.15));
    animation: infinityPulse 4s ease-in-out infinite;
}

@keyframes infinityFloat {

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

    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

@keyframes infinityPulse {

    0%,
    100% {
        opacity: 0.92;
    }

    50% {
        opacity: 1;
    }
}

/* Glow layers behind infinity */
.infinity-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.infinity-glow-1 {
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(111, 0, 255, 0.15) 0%, rgba(0, 201, 219, 0.08) 40%, transparent 70%);
    animation: glowPulse 5s ease-in-out infinite;
}

.infinity-glow-2 {
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(0, 201, 219, 0.12) 0%, transparent 60%);
    animation: glowPulse 5s ease-in-out infinite 1.5s;
}

@keyframes glowPulse {

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

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Orbiting dots - float on top of infinity */
.infinity-orbit {
    position: absolute;
    width: 110%;
    height: 110%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.infinity-orbit-1 {
    animation: orbitRotate 20s linear infinite;
}

.infinity-orbit-2 {
    width: 90%;
    height: 90%;
    animation: orbitRotate 15s linear infinite reverse;
}

.infinity-orbit-3 {
    width: 125%;
    height: 125%;
    animation: orbitRotate 25s linear infinite 2s;
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 14px rgba(0, 201, 219, 0.8), 0 0 24px rgba(0, 201, 219, 0.4);
    animation: dotGlow 2s ease-in-out infinite;
}

.infinity-orbit-2 .orbit-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 12px rgba(111, 0, 255, 0.8), 0 0 20px rgba(111, 0, 255, 0.4);
    animation-delay: 0.5s;
}

.infinity-orbit-3 .orbit-dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 16px rgba(75, 225, 160, 0.8), 0 0 28px rgba(75, 225, 160, 0.4);
    animation-delay: 1s;
}

@keyframes dotGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Floating sparkles - float on top of infinity */
.infinity-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 20px rgba(0, 201, 219, 0.5);
}

.infinity-sparkle-1 {
    left: 8%;
    top: 28%;
    animation: sparkleFloat 4s ease-in-out infinite;
}

.infinity-sparkle-2 {
    left: 28%;
    top: 8%;
    animation: sparkleFloat 5s ease-in-out infinite 0.5s;
}

.infinity-sparkle-3 {
    right: 18%;
    top: 18%;
    left: auto;
    animation: sparkleFloat 4.5s ease-in-out infinite 1s;
}

.infinity-sparkle-4 {
    right: 8%;
    top: 48%;
    left: auto;
    animation: sparkleFloat 5.5s ease-in-out infinite 1.5s;
}

.infinity-sparkle-5 {
    left: 18%;
    bottom: 22%;
    animation: sparkleFloat 4s ease-in-out infinite 0.3s;
}

.infinity-sparkle-6 {
    right: 28%;
    bottom: 8%;
    left: auto;
    animation: sparkleFloat 5s ease-in-out infinite 0.8s;
}

@keyframes sparkleFloat {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.aw-badge {
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

.aw-badge span {
    display: inline-block;
    padding: 14px 36px;
    background: rgba(10, 30, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

[data-theme="light"] .aw-badge span {
    color: #ffffff;
}

.aw-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.aw-card {
    padding: 32px 24px;
    background: linear-gradient(145deg, rgba(15, 45, 55, 0.9) 0%, rgba(10, 35, 45, 0.95) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.aw-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 201, 219, 0.3);
    transform: translateY(-4px);
}

.aw-card-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    font-family: 'Courier New', monospace;
}

.aw-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

[data-theme="light"] .aw-card-title {
    color: #ffffff;
}

.aw-card-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

[data-theme="light"] .aw-card-description {
    color: rgba(255, 255, 255, 0.75);
}

.aw-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

[data-theme="light"] .aw-card-cta {
    color: #ffffff;
}

[data-theme="dark"] .aw-card-cta {
    color: rgba(255, 255, 255, 0.9);
}

.aw-card-cta:hover {
    color: var(--accent-color);
    gap: 10px;
}

[data-theme="dark"] .aw-card-cta:hover {
    color: var(--accent-color-hover);
}

.aw-card-cta svg {
    flex-shrink: 0;
}

/* Let's Get to Work Section */
.get-to-work {
    padding: 100px 0 120px;
    background: var(--primary-color);
    color: var(--text-primary);
    position: relative;
    transition: background-color 0.3s ease;
}

[data-theme="light"] .get-to-work {
    background: #0d3640;
    color: #ffffff;
}

.gtw-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.gtw-heading {
    position: sticky;
    top: 140px;
}

.gtw-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.gtw-title-accent {
    color: var(--accent-color);
}

.gtw-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 420px;
}

.gtw-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gtw-action-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

[data-theme="light"] .gtw-action-item {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.gtw-action-item:first-child {
    border-top: none;
}

.gtw-action-item:hover {
    padding-left: 8px;
}

.gtw-action-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-color);
    background: rgba(42, 157, 176, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.gtw-action-item:hover .gtw-action-icon {
    background: rgba(42, 157, 176, 0.15);
}

.gtw-action-text {
    flex: 1;
}

.gtw-action-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

[data-theme="light"] .gtw-action-text h3 {
    color: #ffffff;
}

.gtw-action-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

[data-theme="light"] .gtw-action-text p {
    color: rgba(255, 255, 255, 0.85);
}

.gtw-action-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.gtw-action-item:hover .gtw-action-arrow {
    background: rgba(42, 157, 176, 0.1);
    transform: translateX(4px);
}

/* ======================================= */
/* FOOTER RESOURCES SECTION                */
/* ======================================= */

.footer-resources {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
    border-top: 1px solid var(--border-color-light);
}

[data-theme="dark"] .footer-resources {
    background: var(--bg-secondary);
}

.footer-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-resource-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-resource-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.footer-resource-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}

.footer-resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease, gap 0.2s ease;
    width: fit-content;
}

.footer-resource-link:hover {
    color: var(--accent-color-hover);
    gap: 12px;
}

.footer-resource-link svg {
    transition: transform 0.2s ease;
}

.footer-resource-link:hover svg {
    transform: translateX(4px);
}

/* ======================================= */
/* MAIN FOOTER                             */
/* ======================================= */

.site-footer {
    padding: 60px 0 40px;
    background: var(--primary-color-dark);
    color: #ffffff;
    transition: background-color 0.3s ease;
}

[data-theme="light"] .site-footer {
    background: var(--primary-color-dark);
    color: #ffffff;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-link {
    display: inline-block;
    width: fit-content;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.footer-newsletter-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.footer-newsletter-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-newsletter-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.footer-newsletter-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    outline: none;
    transition: all 0.2s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(42, 157, 176, 0.2);
}

.footer-newsletter-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: var(--accent-color);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.footer-newsletter-submit:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 157, 176, 0.3);
}

.footer-newsletter-submit:active {
    transform: translateY(0);
}

.footer-newsletter-submit svg {
    width: 20px;
    height: 20px;
}

.footer-newsletter-message {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 4px;
    display: none;
}

.footer-newsletter-message.success {
    display: block;
    background: rgba(42, 157, 176, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(42, 157, 176, 0.3);
}

.footer-newsletter-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-self: flex-end;
    justify-content: flex-end;
}

.footer-nav a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    align-self: flex-end;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    background: transparent;
    transition: all 0.2s ease;
    width: fit-content;
    text-transform: uppercase;
    align-self: flex-end;
}

.footer-contact-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-copyright {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 800px;
    align-self: flex-end;
    text-align: right;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .footer-newsletter {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-resources {
        padding: 60px 0;
    }

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

    .footer-resource-title {
        font-size: 18px;
    }

    .footer-resource-description {
        font-size: 14px;
    }

    .site-footer {
        padding: 40px 0 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }

    .footer-newsletter-title {
        font-size: 16px;
    }

    .footer-newsletter-description {
        font-size: 13px;
    }

    .footer-newsletter-input-wrapper {
        flex-direction: column;
    }

    .footer-newsletter-submit {
        width: 100%;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* Responsive Design */

@media (max-width: 1024px) {
    .header-container {
        flex-wrap: nowrap;
        position: relative;
        overflow: visible;
    }

    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
        margin-left: 8px;
        visibility: visible !important;
        opacity: 1 !important;
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        position: relative;
        z-index: 1002;
        align-items: center;
        justify-content: center;
        min-width: 28px;
        min-height: 28px;
    }

    .mobile-menu-toggle .hamburger-line {
        background: rgba(255, 255, 255, 1) !important;
        height: 2.5px;
        width: 22px;
    }

    [data-theme="dark"] .mobile-menu-toggle .hamburger-line {
        background: var(--text-primary) !important;
    }

    .header-actions {
        order: 2;
        gap: 8px;
        margin-left: auto;
        flex-shrink: 1;
        min-width: 0;
    }

    .contact-button {
        flex-shrink: 1;
        min-width: 0;
        white-space: nowrap;
    }

    /* Hide theme toggle in header on mobile/tablet */
    .header-actions .theme-toggle-button {
        display: none;
    }

    /* Show mobile theme toggle and footer */
    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        padding: 20px 12px;
        border-top: 2px solid var(--border-color-light);
        background: rgba(42, 157, 176, 0.05);
        margin-top: auto;
    }

    .mobile-theme-toggle {
        display: flex;
        border-radius: 8px;
    }

    .theme-toggle-icon {
        width: 18px;
        height: 18px;
    }

    .contact-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .contact-button svg {
        width: 14px;
        height: 14px;
    }

    /* Hide navigation by default on tablet and mobile */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--bg-primary);
        z-index: 1000;
        overflow-y: auto;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    [data-theme="dark"] .main-nav {
        background: var(--bg-primary);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
    }

    .main-nav.active {
        right: 0;
    }

    /* Mobile menu header */
    .main-nav::before {
        content: '';
        display: block;
        height: 80px;
        background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
        border-bottom: 1px solid var(--border-color-light);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        flex: 1;
        padding: 24px 0;
        overflow-y: auto;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color-light);
    }

    /* Mobile contact separator */
    .mobile-contact-divider {
        border-bottom: none;
        margin: 20px 0 0;
    }

    .mobile-contact-separator {
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
        margin: 0 24px;
        opacity: 0.3;
    }

    /* Mobile contact items styling - handled in responsive section */

    /* Mobile utility separator */
    .mobile-utility-divider {
        border-bottom: none;
        margin: 24px 0 12px;
    }

    .mobile-utility-separator {
        height: 1px;
        background: var(--border-color);
        margin: 0 24px;
    }

    [data-theme="dark"] .mobile-utility-separator {
        background: var(--border-color);
    }

    /* Mobile utility items styling */
    .mobile-utility-item {
        border-bottom: 1px solid var(--border-color-light);
    }

    .mobile-utility-item .nav-link {
        color: var(--text-primary);
        font-weight: 500;
    }

    .mobile-login-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-login-link svg {
        width: 16px;
        height: 16px;
        opacity: 0.8;
    }

    .nav-link {
        width: 100%;
        padding: 18px 24px;
        color: var(--text-primary);
        font-size: 16px;
        font-weight: 500;
        justify-content: space-between;
        transition: all 0.2s ease;
        border-radius: 0;
    }

    .nav-link:hover {
        background: rgba(42, 157, 176, 0.08);
        color: var(--accent-color);
        padding-left: 28px;
    }

    /* Special styling for contact links */
    .mobile-contact-item .mobile-contact-link {
        border-radius: 8px;
    }

    .mobile-contact-item .mobile-contact-link:hover {
        padding-left: 24px;
        transform: translateX(0);
    }

    [data-theme="dark"] .nav-link {
        color: var(--text-primary);
    }

    .nav-item.dropdown .nav-link {
        padding-right: 0;
    }

    .nav-chevron {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown.active .nav-chevron {
        transform: rotate(180deg);
    }

    /* Mobile dropdown menu */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    }

    .nav-item.dropdown.active .dropdown-menu {
        max-height: 1000px;
        padding: 12px 0 12px 16px;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .dropdown-header {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 12px;
        padding-left: 0;
    }

    .dropdown-list {
        list-style: none;
        padding: 0;
    }

    .dropdown-list li {
        margin-bottom: 12px;
    }

    .dropdown-list a {
        color: var(--text-primary);
        font-size: 15px;
        padding: 8px 0;
        display: block;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .dropdown-list a:hover {
        color: var(--primary-color-light);
    }

    [data-theme="dark"] .dropdown-list a:hover {
        color: var(--primary-color-light);
    }

    .mobile-menu-overlay {
        display: block;
    }

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

    .hero-title {
        font-size: 48px;
    }

    /* AI Tabs for tablets */
    .ai-tabs {
        display: flex;
        flex-wrap: nowrap;
        gap: 0 20px;
        padding-bottom: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(111, 0, 255, 0.3) transparent;
    }

    .ai-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .ai-tabs::-webkit-scrollbar-track {
        background: transparent;
    }

    .ai-tabs::-webkit-scrollbar-thumb {
        background: rgba(111, 0, 255, 0.3);
        border-radius: 2px;
    }

    .ai-tabs::-webkit-scrollbar-thumb:hover {
        background: rgba(111, 0, 255, 0.5);
    }

    .ai-tab {
        font-size: 13px;
        padding: 12px 0;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
        font-weight: 600;
    }

    .ai-tab.active::after {
        bottom: -17px;
        height: 2px;
    }

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

    .solutions-heading {
        position: static;
    }

    .solutions-title {
        font-size: 36px;
        text-align: center;
    }

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

    .fuel-ix-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .fuel-ix-arrow {
        align-self: flex-end;
    }

    /* Hide trend line on tablets */
    .trend-line-container {
        display: none !important;
    }

    /* Timeline design for tablets */
    .journey-visualization {
        padding: 0;
        max-width: 100%;
    }

    .journey-stages {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 20px;
        padding-left: 0;
        position: relative;
        margin-top: 40px;
    }

    .journey-stages::before {
        content: '';
        position: absolute;
        left: 13px;
        top: 8px;
        bottom: 8px;
        width: 2px;
        background: linear-gradient(to bottom,
                rgba(111, 0, 255, 0.2) 0%,
                rgba(111, 0, 255, 0.6) 25%,
                rgba(111, 0, 255, 0.6) 75%,
                rgba(111, 0, 255, 0.2) 100%);
        z-index: 0;
        transform-origin: top;
        transform: scaleY(0);
        animation: drawTimeline 1.5s ease-out forwards;
    }

    @keyframes drawTimeline {
        from {
            transform: scaleY(0);
        }

        to {
            transform: scaleY(1);
        }
    }

    .journey-stage {
        position: relative;
        padding-left: 48px;
        padding-bottom: 32px;
        padding-top: 0;
        padding-right: 0;
        text-align: left;
        margin-bottom: 0;
        opacity: 0;
        transform: translateX(-20px);
        animation: fadeInTimelineItem 0.6s ease-out forwards;
    }

    .journey-stage:nth-child(1) {
        animation-delay: 0.2s;
    }

    .journey-stage:nth-child(2) {
        animation-delay: 0.4s;
    }

    .journey-stage:nth-child(3) {
        animation-delay: 0.6s;
    }

    .journey-stage:nth-child(4) {
        animation-delay: 0.8s;
    }

    .journey-stage:nth-child(5) {
        animation-delay: 1.0s;
    }

    .journey-stage:nth-child(6) {
        animation-delay: 1.2s;
    }

    @keyframes fadeInTimelineItem {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

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

    .journey-stage:last-child {
        padding-bottom: 0;
    }

    .journey-stage::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 6px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 3px solid #6f00ff;
        box-shadow: 0 0 0 3px rgba(111, 0, 255, 0.15),
            0 0 0 6px rgba(111, 0, 255, 0.08),
            0 4px 12px rgba(111, 0, 255, 0.3);
        z-index: 2;
        transition: all 0.3s ease;
        transform: scale(0);
        animation: popInNode 0.5s ease-out forwards;
    }

    .journey-stage:nth-child(1)::before {
        animation-delay: 0.3s;
    }

    .journey-stage:nth-child(2)::before {
        animation-delay: 0.5s;
    }

    .journey-stage:nth-child(3)::before {
        animation-delay: 0.7s;
    }

    .journey-stage:nth-child(4)::before {
        animation-delay: 0.9s;
    }

    .journey-stage:nth-child(5)::before {
        animation-delay: 1.1s;
    }

    .journey-stage:nth-child(6)::before {
        animation-delay: 1.3s;
    }

    @keyframes popInNode {
        0% {
            transform: scale(0);
            opacity: 0;
        }

        50% {
            transform: scale(1.2);
        }

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

    .journey-stage:hover::before {
        transform: scale(1.15);
        box-shadow: 0 0 0 3px rgba(111, 0, 255, 0.25),
            0 0 0 6px rgba(111, 0, 255, 0.12),
            0 6px 20px rgba(111, 0, 255, 0.4);
    }

    .stage-dotted-line {
        display: none;
    }

    .stage-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text-primary);
        position: relative;
        line-height: 1.3;
    }

    .stage-description {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-secondary);
        margin: 0;
    }

    .journey-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .case-study-content {
        grid-template-columns: 1fr;
    }

    .ai-content-grid {
        grid-template-columns: 1fr;
    }

    .ai-featured-inner {
        grid-template-columns: 1fr;
    }

    .transformation-tabs {
        gap: 8px;
    }

    /* Dark sections responsive - 1024px */
    .aw-title {
        font-size: 40px;
    }

    .aw-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gtw-heading {
        position: static;
        text-align: center;
    }

    .gtw-subtitle {
        max-width: none;
    }

    .footer-cta-title {
        font-size: 44px;
    }

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

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {

    /* Adjust hero margin for utility bar + header on mobile */
    .hero {
        margin-top: 173px;
        padding-top: 80px;
    }

    /* Ensure hamburger menu is visible on mobile */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 28px;
        height: 28px;
        margin-left: 8px;
        min-width: 28px;
        min-height: 28px;
    }

    .mobile-menu-toggle .hamburger-line {
        width: 22px;
        height: 2.5px;
    }

    .header-container {
        padding: 0 16px;
    }

    /* Mobile-specific menu width adjustment */
    .main-nav {
        max-width: 320px;
    }

    /* Logo adjustments for mobile */
    .logo-image {
        max-height: 32px;
    }

    /* Make contact button smaller on very small screens */
    .contact-button {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {

    /* Adjust header position for smaller utility bar on very small screens */
    .header {
        top: 110px;
    }

    /* Adjust hero padding for smaller screens */
    .hero {
        margin-top: 183px;
        padding-top: 60px;
    }

    .mobile-menu-toggle {
        width: 24px;
        height: 24px;
        margin-left: 4px;
        min-width: 24px;
        min-height: 24px;
    }

    .mobile-menu-toggle .hamburger-line {
        width: 18px;
        height: 2px;
    }

    .header-container {
        padding: 0 12px;
    }

    .contact-button {
        padding: 6px 10px;
        font-size: 12px;
    }

    .contact-button svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .win-moments-title {
        font-size: 36px;
    }

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

    /* Hide trend line on mobile/tablet */
    .trend-line-container {
        display: none !important;
    }

    /* Timeline design for mobile/tablet */
    .journey-visualization {
        padding: 0;
        max-width: 100%;
    }

    .journey-stages {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 20px;
        padding-left: 0;
        position: relative;
        margin-top: 40px;
    }

    .journey-stages::before {
        content: '';
        position: absolute;
        left: 13px;
        top: 8px;
        bottom: 8px;
        width: 2px;
        background: linear-gradient(to bottom,
                rgba(111, 0, 255, 0.2) 0%,
                rgba(111, 0, 255, 0.6) 25%,
                rgba(111, 0, 255, 0.6) 75%,
                rgba(111, 0, 255, 0.2) 100%);
        z-index: 0;
        transform-origin: top;
        transform: scaleY(0);
        animation: drawTimeline 1.5s ease-out forwards;
    }

    .journey-stage {
        position: relative;
        padding-left: 48px;
        padding-bottom: 32px;
        padding-top: 0;
        padding-right: 0;
        text-align: left;
        margin-bottom: 0;
        opacity: 0;
        transform: translateX(-20px);
        animation: fadeInTimelineItem 0.6s ease-out forwards;
    }

    .journey-stage:nth-child(1) {
        animation-delay: 0.2s;
    }

    .journey-stage:nth-child(2) {
        animation-delay: 0.4s;
    }

    .journey-stage:nth-child(3) {
        animation-delay: 0.6s;
    }

    .journey-stage:nth-child(4) {
        animation-delay: 0.8s;
    }

    .journey-stage:nth-child(5) {
        animation-delay: 1.0s;
    }

    .journey-stage:nth-child(6) {
        animation-delay: 1.2s;
    }

    .journey-stage:last-child {
        padding-bottom: 0;
    }

    .journey-stage:last-child::after {
        display: none;
    }

    .journey-stage::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 6px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 3px solid #6f00ff;
        box-shadow: 0 0 0 3px rgba(111, 0, 255, 0.15),
            0 0 0 6px rgba(111, 0, 255, 0.08),
            0 4px 12px rgba(111, 0, 255, 0.3);
        z-index: 2;
        transition: all 0.3s ease;
        transform: scale(0);
        animation: popInNode 0.5s ease-out forwards;
    }

    .journey-stage:nth-child(1)::before {
        animation-delay: 0.3s;
    }

    .journey-stage:nth-child(2)::before {
        animation-delay: 0.5s;
    }

    .journey-stage:nth-child(3)::before {
        animation-delay: 0.7s;
    }

    .journey-stage:nth-child(4)::before {
        animation-delay: 0.9s;
    }

    .journey-stage:nth-child(5)::before {
        animation-delay: 1.1s;
    }

    .journey-stage:nth-child(6)::before {
        animation-delay: 1.3s;
    }

    .journey-stage:hover::before {
        transform: scale(1.15);
        box-shadow: 0 0 0 3px rgba(111, 0, 255, 0.25),
            0 0 0 6px rgba(111, 0, 255, 0.12),
            0 6px 20px rgba(111, 0, 255, 0.4);
    }

    .stage-dotted-line {
        display: none;
    }

    .stage-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text-primary);
        position: relative;
        line-height: 1.3;
    }

    .stage-description {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-secondary);
        margin: 0;
    }

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

    .solutions-layout {
        gap: 32px;
    }

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

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fuel-ix-content {
        padding: 24px;
    }

    .case-study-content {
        gap: 32px;
    }

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

    .testimonial-text {
        font-size: 20px;
    }

    .ai-secondary-item {
        grid-template-columns: 1fr;
    }

    .ai-secondary-image {
        width: 100%;
        max-width: 200px;
    }

    .ai-tabs {
        display: flex;
        flex-wrap: nowrap;
        gap: 0 20px;
        padding-bottom: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(111, 0, 255, 0.3) transparent;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .ai-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .ai-tabs::-webkit-scrollbar-track {
        background: transparent;
    }

    .ai-tabs::-webkit-scrollbar-thumb {
        background: rgba(111, 0, 255, 0.3);
        border-radius: 2px;
    }

    .ai-tabs::-webkit-scrollbar-thumb:hover {
        background: rgba(111, 0, 255, 0.5);
    }

    .ai-tab {
        font-size: 13px;
        padding: 12px 0;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
        font-weight: 600;
    }

    .ai-tab.active::after {
        bottom: -17px;
        height: 2px;
    }

    .ai-featured-inner {
        padding: 24px;
        gap: 24px;
    }

    .ai-featured-headline {
        font-size: 20px;
    }

    .tab-button {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* Dark sections responsive - 768px */
    .autonomous-workflows {
        padding: 160px 0 60px;
    }

    .aw-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .aw-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aw-card {
        padding: 24px 20px;
    }

    .aw-card-title {
        font-size: 24px;
    }

    .aw-badge span {
        font-size: 14px;
        padding: 10px 20px;
    }

    .infinity-wrapper {
        max-width: 440px;
    }

    .get-to-work {
        padding: 60px 0 80px;
    }

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

    .gtw-action-item {
        padding: 24px 0;
        gap: 16px;
    }

    .gtw-action-icon {
        width: 48px;
        height: 48px;
    }

    .gtw-action-text h3 {
        font-size: 18px;
    }

    .footer-cta {
        padding: 80px 0;
    }

    .footer-cta-title {
        font-size: 36px;
    }

    .footer-cta-subtitle {
        font-size: 18px;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 15px;
        min-width: 160px;
    }

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

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .footer-col-title {
        font-size: 13px;
    }

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

/* Desktop - ensure trend line and journey stages are visible (must be last to override mobile styles) */
@media (min-width: 1025px) {

    /* Show trend line container and all its elements */
    .trend-line-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        width: 100% !important;
        height: 180px !important;
        margin-bottom: 50px !important;
        overflow: hidden !important;
    }

    .trend-line-svg {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    .trend-path {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        stroke: #6f00ff !important;
        stroke-width: 3.5 !important;
    }

    .marker {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .grid-line {
        display: block !important;
        visibility: visible !important;
        opacity: 0.5 !important;
    }

    .journey-visualization {
        padding: 0 20px !important;
        max-width: 1200px !important;
    }

    .journey-stages {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 20px !important;
        padding-top: 10px !important;
        padding-left: 0 !important;
        margin-top: 0 !important;
    }

    .journey-stage {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        padding-left: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        padding-right: 0 !important;
    }

    .journey-stages::before {
        display: none !important;
        content: none !important;
    }

    .journey-stage::before {
        display: none !important;
        content: none !important;
    }

    .stage-dotted-line {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}