/* ===========================
   RESET & BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================
   GLOBAL ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
    background: #0a1818;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.announcement-bar.hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

.announcement-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.announcement-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.announcement-text strong {
    color: #ffffff;
    font-weight: 600;
}

.announcement-link {
    font-size: 13px;
    color: #3a9999;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.announcement-link:hover {
    color: #4db8b8;
}

/* Adjust body padding to account for announcement bar */
body {
    padding-top: 48px;
    margin: 0;
}

/* ===========================
   INVESTOR ACCESS MODAL
   =========================== */
.investor-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.investor-modal {
    background: #142828;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.investor-modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investor-modal-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.investor-modal-body {
    padding: 32px;
}

.investor-modal-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.investor-modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.investor-modal-list li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.investor-modal-list li:before {
    content: '•';
    position: absolute;
    left: 12px;
    color: #3a9999;
    font-size: 20px;
    line-height: 1.5;
}

.jurisdiction-selector {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.jurisdiction-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.jurisdiction-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jurisdiction-select:focus {
    outline: none;
    border-color: #3a9999;
    background: rgba(255, 255, 255, 0.08);
}

.jurisdiction-select option {
    background: #1a2d2d;
    color: #ffffff;
}

.jurisdiction-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 12px 0 0 0;
    font-style: italic;
}

.fraud-notice {
    background: rgba(255, 152, 0, 0.1);
    border-left: 3px solid #ff9800;
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 0;
}

.fraud-notice p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.investor-modal-actions {
    padding: 24px 32px 32px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.investor-btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.investor-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.investor-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.investor-btn-accept {
    background: #3a9999;
    color: #ffffff;
}

.investor-btn-accept:hover {
    background: #2d7a7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58, 153, 153, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .announcement-bar {
        padding: 10px 15px;
    }
    
    .announcement-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .announcement-text {
        font-size: 12px;
    }
    
    body {
        padding-top: 80px;
        margin: 0;
    }
    
    .investor-modal {
        margin: 10px;
    }
    
    .investor-modal-header {
        padding: 24px 20px 20px;
    }
    
    .investor-modal-title {
        font-size: 24px;
    }
    
    .investor-modal-body {
        padding: 24px 20px;
    }
    
    .investor-modal-actions {
        padding: 20px;
        flex-direction: column;
    }
    
    .investor-btn {
        width: 100%;
    }
}

/* ===========================
   RESET & BASE (continued)
   =========================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   GLASS NAVIGATION
   =========================== */
.glass-nav {
    position: fixed;
    top: 63px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    max-width: 1100px;
    z-index: 9998;
    padding: 0;
    transition: top 0.3s ease;
}

.nav-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 12px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: none;
    transition: all 0.3s ease;
}

/* Scrolled state - less opaque with dark text */
.glass-nav.scrolled .nav-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Brand logo switches via JavaScript based on scroll state */

.glass-nav.scrolled .nav-links a {
    color: #4a4a4a;
}

.glass-nav.scrolled .nav-links a:hover {
    color: #1a1a1a;
}

.glass-nav.scrolled .mobile-toggle span {
    background: #1a1a1a;
}

.brand {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand {
    height: 36px;
    width: 200px;
    display: flex;
    align-items: center;
    position: relative;
}

.brand img {
    height: 40px !important;
    width: auto !important;
    display: block;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Scale up the white logo to match colored version and shift left */
.brand img[src*="white"] {
    height: 44px !important;
    left: -8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
    list-style: none !important;
}

.nav-links > li::before,
.nav-links > li::after {
    content: none !important;
    display: none !important;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
    display: block;
}

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

/* Dropdown Menu Styles */
.nav-links .dropdown {
    position: relative;
    list-style: none !important;
    list-style-type: none !important;
}

.nav-links li.dropdown {
    list-style: none !important;
    list-style-type: none !important;
}

.nav-links .dropdown > a::after {
    content: '';
    font-size: 12px;
    margin-left: 4px;
}

/* Desktop mega menu styles (for pages using .dropdown-menu class) */
@media (min-width: 769px) {
    /* Large Super Sub-Menus - Mega Menu Style with Side Tabs (JP Morgan Style) */
    .nav-links .dropdown-menu {
        position: absolute !important;
        top: calc(100% + 15px) !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(-10px) !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-top: 3px solid #3a9999 !important;
        min-width: 220px !important;
        width: auto !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1000 !important;
        padding: 8px 0 !important;
        list-style: none !important;
        margin: 0 !important;
        display: block !important;
    }

    .nav-links .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
    }

    /* Simple dropdown menu items */
    .nav-links .dropdown-menu li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-links .dropdown-menu a {
        display: block !important;
        padding: 14px 24px !important;
        color: #1a1a1a !important;
        text-decoration: none !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        transition: all 0.2s ease !important;
        border-left: 3px solid transparent !important;
    }

    .nav-links .dropdown-menu a:hover {
        background: #f8f9fa !important;
        border-left-color: #3a9999 !important;
        color: #3a9999 !important;
    }

    /* Left sidebar */
    .mega-menu-sidebar {
        min-width: 220px !important;
        width: 220px !important;
        background: #f8f9fa !important;
        padding: 32px 24px !important;
        border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
        flex-shrink: 0 !important;
    }

    .mega-menu-category {
        font-size: 12px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        color: #666 !important;
        line-height: 1.4 !important;
    }

    /* Right content area */
    .mega-menu-content {
        flex: 1 !important;
        padding: 24px 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .mega-menu-item {
        display: flex !important;
        flex-direction: column !important;
        padding: 16px 32px !important;
        color: #1a1a1a !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
        border-left: 3px solid transparent !important;
        background: transparent !important;
    }

    .mega-menu-item strong {
        font-size: 15px !important;
        font-weight: 600 !important;
        margin-bottom: 6px !important;
        color: #1a1a1a !important;
        display: block !important;
        font-family: 'Inter', sans-serif !important;
    }

    .mega-menu-item strong::after {
        content: ' →' !important;
        margin-left: 4px !important;
        opacity: 0 !important;
        transition: all 0.2s ease !important;
        font-weight: 400 !important;
    }

    .mega-menu-item .menu-desc {
        font-size: 13px !important;
        color: #666 !important;
        line-height: 1.6 !important;
        font-weight: 400 !important;
        display: block !important;
    }

    .mega-menu-item:hover {
        background: #fafbfc !important;
        border-left-color: #3a9999 !important;
    }

    .mega-menu-item:hover strong {
        color: #3a9999 !important;
    }

    .mega-menu-item:hover strong::after {
        opacity: 1 !important;
    }
}

/* Submenu styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    position: relative;
}

.dropdown-submenu > a::after {
    content: '›';
    position: absolute;
    right: 24px;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.dropdown-submenu:hover > a::after {
    transform: rotate(90deg);
}

.submenu-items {
    padding-left: 0;
    display: none;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-top: 4px;
    border-left: 2px solid #e1e4e8;
    margin-left: 24px;
}

.dropdown-submenu:hover .submenu-items {
    display: block;
}

.submenu-link {
    padding: 10px 24px 10px 20px !important;
    font-size: 13px !important;
    color: #666 !important;
    display: block;
    text-decoration: none;
}

.submenu-link:hover {
    color: #1a1a1a !important;
    background: #f8f9fa !important;
    padding-left: 24px !important;
}

/* Alternative submenu class names (for MA, Capital Markets pages) */
.dropdown-submenu-items {
    padding-left: 0;
    display: none;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-top: 4px;
    border-left: 2px solid #e1e4e8;
    margin-left: 24px;
}

.dropdown-submenu:hover .dropdown-submenu-items {
    display: block;
}

.dropdown-parent {
    position: relative;
}

.dropdown-parent::after {
    content: '›';
    position: absolute;
    right: 24px;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.dropdown-submenu:hover .dropdown-parent::after {
    transform: rotate(90deg);
}

.submenu-item {
    padding: 10px 24px 10px 20px !important;
    font-size: 13px !important;
    color: #666 !important;
    display: block;
    text-decoration: none;
}

.submenu-item:hover {
    color: #1a1a1a !important;
    background: #f8f9fa !important;
    padding-left: 24px !important;
}

/* Scrolled state dropdown */
.glass-nav.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
}

.glass-nav.scrolled .dropdown > a::after {
    color: #4a4a4a;
}

/* ===========================
   MEGA MENU - JP MORGAN STYLE
   =========================== */
.dropdown-arrow {
    display: none !important;
}

.mega-menu-trigger:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0;
}

.mega-menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 32px 0;
}

.mega-menu-column {
    padding: 0 32px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-menu-column:last-child {
    border-right: none;
}

.mega-menu-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

/* Mega Menu Title Link Wrapper */
.mega-menu-title-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 4px;
    padding: 8px 12px;
    margin-left: -12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mega-menu-title-link:hover {
    background: #f0f0f0;
}

.mega-menu-title-link:hover .mega-menu-title {
    color: #3a9999;
    transform: translateX(2px);
}

.mega-menu-title-link .mega-menu-title {
    margin-bottom: 0;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.mega-menu-list a {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    color: #1a1a1a;
}

.mega-menu-list a:hover {
    background: #f8f9fa;
    transform: translateX(4px);
}

.mega-menu-list a strong {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #1a1a1a;
    display: block;
    font-family: 'Inter', sans-serif;
}

.mega-menu-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    font-weight: 400;
}

/* Featured Column */
.mega-menu-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin: -32px 0;
    padding: 32px !important;
    border-radius: 0 12px 12px 0;
}

.mega-menu-featured {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-image {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mega-menu-featured:hover .featured-image img {
    transform: scale(1.05);
}

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

.featured-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}

.featured-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.featured-link {
    font-size: 13px;
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.featured-link:hover {
    color: #0052a3;
    transform: translateX(4px);
}

/* Scrolled state mega menu */
.glass-nav.scrolled .mega-menu {
    background: rgba(255, 255, 255, 0.98);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* ===========================
   NAV ACTIONS (Language & Login)
   =========================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.glass-nav.scrolled .language-btn {
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}

.glass-nav.scrolled .language-btn:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.02);
}

.language-icon {
    font-size: 16px;
}

.language-text {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* Login Button */
.login-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

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

.glass-nav.scrolled .login-btn {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
}

.glass-nav.scrolled .login-btn:hover {
    background: #2d2d2d;
    border-color: #2d2d2d;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
}

/* ===========================
   GLOBAL SECTION EYEBROW
   Reusable across all sections
   =========================== */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.eyebrow-line {
    width: 32px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

.eyebrow-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

.eyebrow-logo {
    height: 20px;
    width: auto;
    display: block;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    height: 60vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-ocean-waves-hq.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.hero-bg {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.35) 0%, 
        rgba(0, 0, 0, 0.25) 50%, 
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 0 80px;
}

.hero-heading {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subheading {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-link {
    display: none;
}

.hero-scroll {
    display: none !important;
}
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: rgba(255, 255, 255, 1);
}

.hero-scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    animation: scrollLineFloat 2s ease-in-out infinite;
}

@keyframes scrollLineFloat {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

.hero-scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #ffffff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Universal Hero Scroll Link */
.hero-scroll-link {
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 4px;
    margin-top: 24px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.hero-scroll-link::after {
    content: ' →';
}

.hero-scroll-link:hover {
    border-bottom-color: #ffffff;
    transform: translateX(3px);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ===========================
   INVEST WITH CONFIDENCE SECTION - ELEGANT PROFESSIONAL
   =========================== */
.confidence-section {
    position: relative;
    z-index: 10;
    margin-top: -85px;
    margin-bottom: -85px;
    padding: 0 70px;
    background: transparent;
}

.confidence-container {
    display: flex;
    align-items: stretch;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Intro section with border accent */
.confidence-intro {
    background: #2c2c2c;
    flex: 0 0 26%;
    display: flex;
    align-items: center;
    position: relative;
    border-left: 4px solid #3a9999;
}

.intro-content {
    padding: 32px 40px;
}

.confidence-title {
    font-family: 'Circular', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.4px;
    color: #ffffff;
}

.confidence-title .desktop-break {
    display: inline;
}

.confidence-text {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Cards section */
.confidence-cards {
    display: flex;
    flex: 1;
    background: #ffffff;
}

.confidence-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 32px 28px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #ffffff;
}

.confidence-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.08) 20%, 
        rgba(0, 0, 0, 0.08) 80%, 
        transparent 100%);
}

.confidence-card:last-child::after {
    display: none;
}

.confidence-card:hover {
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7f8 100%);
}

/* Card top with icon */
.card-top {
    margin-bottom: 20px;
}

.card-icon-bg {
    width: 44px;
    height: 44px;
    background: #f4f5f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.35s ease;
}

.card-icon-bg svg {
    stroke: #4a4a4a;
    transition: stroke 0.35s ease;
}

.card-icon-bg .card-logo {
    width: 24px;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.35s ease;
}

.confidence-card:hover .card-icon-bg {
    background: #3a9999;
    transform: translateY(-2px);
}

.confidence-card:hover .card-icon-bg svg {
    stroke: #ffffff;
}

.confidence-card:hover .card-icon-bg .card-logo {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* Card body */
.card-body {
    flex-grow: 1;
}

.card-title {
    font-family: 'Circular', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.35;
    letter-spacing: -0.2px;
    transition: color 0.35s ease;
}

.confidence-card:hover .card-title {
    color: #3a9999;
}

.card-desc {
    font-size: 12px;
    line-height: 1.6;
    color: #6b6b6b;
    margin: 0;
    transition: color 0.35s ease;
}

.confidence-card:hover .card-desc {
    color: #5a5a5a;
}

/* Card action footer */
.card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eeeeee;
    transition: all 0.35s ease;
}

.confidence-card:hover .card-action {
    border-top-color: rgba(58, 153, 153, 0.2);
}

.card-action span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #4a4a4a;
    transition: color 0.35s ease;
}

.confidence-card:hover .card-action span {
    color: #3a9999;
}

.action-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f4f5f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #4a4a4a;
    transition: all 0.35s ease;
}

.confidence-card:hover .action-icon {
    background: #3a9999;
    color: #ffffff;
    transform: translateX(3px);
}

/* About section padding */
.about-section {
    padding-top: 170px !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-section {
        height: 70vh;
        min-height: 550px;
    }
    
    .confidence-section {
        margin-top: -80px;
        margin-bottom: -80px;
        padding: 0 40px;
        background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%);
    }
    
    .confidence-container {
        flex-direction: column;
        height: auto;
        border-radius: 10px;
    }
    
    .confidence-intro {
        flex: 0 0 auto;
        border-left: none;
        border-top: 4px solid #3a9999;
    }
    
    .intro-content {
        padding: 28px 34px;
    }
    
    .confidence-title {
        font-size: 22px;
    }
    
    .confidence-title .desktop-break {
        display: none;
    }
    
    .confidence-text {
        font-size: 11px;
    }
    
    .confidence-cards {
        flex-direction: column;
    }
    
    .confidence-card {
        padding: 26px 34px 24px;
    }
    
    .confidence-card::after {
        right: 20%;
        left: 20%;
        top: auto;
        bottom: 0;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 0, 0, 0.08) 20%, 
            rgba(0, 0, 0, 0.08) 80%, 
            transparent 100%);
    }
    
    .confidence-card:last-child::after {
        display: none;
    }
    
    .card-top {
        margin-bottom: 16px;
    }
    
    .card-icon-bg {
        width: 40px;
        height: 40px;
    }
    
    .card-icon-bg svg {
        width: 18px;
        height: 18px;
    }
    
    .card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .card-desc {
        font-size: 11px;
    }
    
    .card-action {
        margin-top: 14px;
        padding-top: 14px;
    }
    
    .about-section {
        padding-top: 160px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        height: 65vh;
    }
    
    .confidence-section {
        margin-top: -70px;
        margin-bottom: -70px;
        padding: 0 20px;
        background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%);
    }
    
    .confidence-container {
        border-radius: 8px;
    }
    
    .intro-content {
        padding: 24px 28px;
    }
    
    .confidence-title {
        font-size: 20px;
    }
    
    .confidence-title .desktop-break {
        display: none;
    }
    
    .confidence-text {
        font-size: 11px;
    }
    
    .confidence-card {
        padding: 22px 28px 20px;
    }
    
    .card-icon-bg {
        width: 38px;
        height: 38px;
        border-radius: 6px;
    }
    
    .card-icon-bg svg {
        width: 16px;
        height: 16px;
    }
    
    .card-title {
        font-size: 15px;
    }
    
    .card-desc {
        font-size: 11px;
    }
    
    .card-action {
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .card-action span {
        font-size: 10px;
    }
    
    .action-icon {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
    
    .about-section {
        padding: 150px 20px 50px 20px !important;
    }
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%);
    background-size: cover;
    background-position: center;
    padding: 180px 80px 80px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg-about-dune.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-content {
    flex: 1;
    max-width: 750px;
    text-align: left;
    padding-left: 0;
}

/* About label replaced with section-eyebrow */

.about-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.about-description p {
    margin: 0;
}

/* Sustainability Card - FIXED SIZE, NEVER CHANGES */
.sustainability-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sustainability-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.sustainability-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sustainability-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    color: #1a4d4d;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.sustainability-card-content {
    padding: 20px 20px 24px;
    color: white;
}

.sustainability-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: white;
}

.rule-label {
    font-weight: 700;
}

.title-accent {
    width: 35px;
    height: 2px;
    background: #3a9999;
    margin-bottom: 12px;
}

.sustainability-card-text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.sustainability-button {
    display: inline-block;
    background: #1a7fb8;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sustainability-button:hover {
    background: #1568a0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 127, 184, 0.3);
}

/* Responsive - Keep card same size, reduce gap */
@media (max-width: 1200px) {
    .about-container {
        gap: 50px;
    }
    
    /* Card size stays 300px - DO NOT CHANGE */
}

@media (max-width: 1024px) {
    .about-section {
        background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%) !important;
        padding: 180px 40px 60px 40px !important;
    }
    
    .about-container {
        gap: 40px;
    }
    
    .about-content {
        max-width: 100%;
        padding-left: 0;
    }
    
    /* Card size stays 300px - DO NOT CHANGE */
}

/* Keep card on left - DO NOT stack yet */
@media (max-width: 900px) {
    .about-container {
        gap: 32px;
    }
    
    /* Card size stays 300px - DO NOT CHANGE */
}

/* MOBILE ONLY - Stack card below text */
@media (max-width: 768px) {
    .about-section {
        background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%) !important;
        padding: 140px 20px 50px 20px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    /* MOBILE: Card stays 300px, centered */
    .sustainability-card {
        margin: 0 auto;
    }
    
    .sustainability-card-image {
        height: 220px;
    }
    
    .sustainability-card-content {
        padding: 28px 25px 35px;
    }
    
    .sustainability-card-title {
        font-size: 19px;
    }
    
    .sustainability-card-text {
        font-size: 14px;
    }
    
    .sustainability-button {
        width: 100%;
        text-align: center;
    }
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stat-item {
    padding: 32px 0;
}

.stat-divider {
    height: 1px;
    background: #e1e4e8;
}

.stat-number {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.stat-description {
    font-size: 12px;
    color: #6a737d;
    line-height: 1.5;
}

/* ===========================
   HOW CAN WE ASSIST SECTION - REFINED
   =========================== */
/* ===========================
   HOW CAN WE ASSIST SECTION
   =========================== */
.assist-section {
    background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.assist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(58, 153, 153, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(58, 153, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.assist-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.assist-header {
    text-align: left;
    margin-bottom: 60px;
}

.assist-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 44px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.assist-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

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

.assist-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.assist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3a9999 0%, #2a8080 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.assist-card:hover::before {
    transform: scaleX(1);
}

.assist-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(58, 153, 153, 0.3);
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(58, 153, 153, 0.1) inset;
}

.assist-card-number {
    font-family: 'Circular', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(58, 153, 153, 0.12);
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.assist-card:hover .assist-card-number {
    color: rgba(58, 153, 153, 0.2);
    transform: translateX(8px);
}

.assist-card-content {
    flex: 1;
    margin-bottom: 24px;
}

.assist-card-title {
    font-family: 'Circular', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.assist-card:hover .assist-card-title {
    color: #3a9999;
}

.assist-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.assist-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.assist-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.assist-card:hover .assist-card-link {
    color: #3a9999;
    letter-spacing: 1px;
}

.assist-card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.assist-card:hover .assist-card-arrow {
    background: #3a9999;
    border-color: #3a9999;
    color: #ffffff;
    transform: translateX(6px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .assist-section {
        padding: 80px 40px;
    }
    
    .assist-header {
        margin-bottom: 50px;
    }
    
    .assist-title {
        font-size: 38px;
    }
    
    .assist-subtitle {
        font-size: 16px;
    }
    
    .assist-grid {
        gap: 20px;
    }
    
    .assist-card {
        padding: 28px;
    }
    
    .assist-card-number {
        font-size: 64px;
    }
    
    .assist-card-title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .assist-section {
        padding: 70px 20px;
    }
    
    .assist-header {
        margin-bottom: 40px;
    }
    
    .assist-title {
        font-size: 32px;
    }
    
    .assist-subtitle {
        font-size: 15px;
    }
    
    .assist-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .assist-card {
        padding: 24px;
    }
    
    .assist-card-number {
        font-size: 56px;
        margin-bottom: 16px;
    }
    
    .assist-card-title {
        font-size: 16px;
    }
    
    .assist-card-description {
        font-size: 13px;
    }
    
    .assist-card-footer {
        padding-top: 16px;
    }
    
    .assist-card-link {
        font-size: 12px;
    }
    
    .assist-card-arrow {
        width: 36px;
        height: 36px;
    }
}

/* ===========================
   TABS SECTION
   =========================== */
.tabs-section {
    background: #0a1818;
    padding: 80px 0;
    min-height: 400px;
}

.tabs-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
}

.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-button.active {
    color: #ffffff;
    font-weight: 400;
}

.tab-button.active::after {
    opacity: 1;
}

.tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
}

.tab-panels {
    padding: 0;
    margin-top: 0;
}

.tab-panel {
    display: none;
    width: 100%;
    background: #142828;
    padding: 36px;
    border-radius: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.tab-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.tab-panel.active .panel-bg {
    opacity: 0.10;
}

.panel-content-wrapper {
    position: relative;
    z-index: 1;
}

.panel-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.panel-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.panel-link {
    display: inline-block;
    color: #3a9999;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #3a9999;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.panel-link:hover {
    transform: translateX(3px);
}

/* ===========================
   CURRENT DEALS SECTION
   Institutional-grade transaction cards
   =========================== */
.current-deals-section {
    background: #0d1f1f;
    padding: 100px 0;
    position: relative;
}

.deals-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.deals-header-content {
    flex: 1;
}

.deals-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.deals-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.deals-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Filters */
.deals-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
    border-color: #3a9999;
    color: #3a9999;
    background: rgba(58, 153, 153, 0.1);
}

.filter-btn.active {
    background: #3a9999;
    border-color: #3a9999;
    color: #ffffff;
}

/* Deals Grid - Changed to Carousel */
.deals-carousel-wrapper {
    position: relative;
    margin-left: 0;
    margin-right: calc(-50vw + 550px); /* Extend to right edge from center */
    padding-left: 0;
    padding-right: 0;
}

.deals-grid-viewport {
    overflow: hidden;
}

.deals-grid {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
    align-items: stretch;
    padding-right: 100px; /* Extra padding for cut-off effect */
}

.deals-grid > * {
    flex: 0 0 340px;
    min-width: 340px;
    max-width: 340px;
}

/* Carousel Navigation */
.deals-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(58, 153, 153, 0.9);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.deals-carousel-btn:hover {
    background: #3a9999;
    transform: translateY(-50%) scale(1.1);
}

.deals-carousel-btn-prev {
    left: -60px;
}

.deals-carousel-btn-next {
    right: 10px;
}

.deals-carousel-btn svg {
    width: 20px;
    height: 20px;
}

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

.deals-carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.deals-carousel-indicator.active {
    background: #3a9999;
    width: 28px;
    border-radius: 5px;
}

/* Loading State */
.deals-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
}

/* Responsive Deals Carousel */
@media (max-width: 1024px) {
    .deals-carousel-wrapper {
        margin-right: 0;
        padding: 0 60px;
    }
    
    .deals-grid {
        padding-right: 0;
    }
    
    .deals-grid > * {
        flex: 0 0 320px;
        min-width: 320px;
        max-width: 320px;
    }
    
    .deals-carousel-btn-prev {
        left: 10px;
    }
    
    .deals-carousel-btn-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .deals-container {
        padding: 0 20px;
    }
    
    .deals-header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .deals-title {
        font-size: 28px;
    }
    
    .deals-carousel-wrapper {
        padding: 0 50px;
    }
    
    .deals-grid > * {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
    
    .deals-carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .deals-carousel-btn svg {
        width: 16px;
        height: 16px;
    }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #3a9999;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Deal Card */
.deal-card {
    background: #142828;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border-color: #3a9999;
}

.deal-card.featured {
    border: 2px solid #3a9999;
    position: relative;
}

.deal-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 16px;
    right: 16px;
    background: #3a9999;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 3px;
    z-index: 10;
}

/* Deal Image */
.deal-image {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: #1a2d2d;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.05);
}

/* Deal Status Badge */
.deal-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(20, 40, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.deal-status.active {
    color: #4db8b8;
    border: 1px solid rgba(77, 184, 184, 0.3);
}

.deal-status.due-diligence {
    color: #ffa726;
    border: 1px solid rgba(255, 167, 38, 0.3);
}

.deal-status.under-review {
    color: #42a5f5;
    border: 1px solid rgba(66, 165, 245, 0.3);
}

.deal-status.closing-soon {
    color: #ef5350;
    border: 1px solid rgba(239, 83, 80, 0.3);
}

/* Deal Content */
.deal-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.deal-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 10px;
}

.deal-sector {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.deal-size {
    font-size: 16px;
    font-weight: 700;
    color: #3a9999;
    white-space: nowrap;
}

.deal-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.deal-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
}

/* Key Highlights */
.deal-highlights {
    margin-bottom: 8px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
    padding-left: 10px;
    position: relative;
}

.highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: #4db8b8;
    border-radius: 50%;
}

/* Deal Footer */
.deal-footer {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.deal-min-investment {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.deal-min-investment span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Progress Bar (for featured deals) */
.deal-progress {
    margin-top: 8px;
    margin-bottom: 6px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #6a737d;
    margin-bottom: 6px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2a6d6d 0%, #3a9999 100%);
    border-radius: 2px;
    transition: width 0.8s ease;
}

/* Empty State */
.deals-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #6a737d;
}

.deals-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

/* ===========================
   FEATURED REPORT SECTION
   Detailed Minimalism with Craft
   =========================== */
.featured-report-section {
    background: #0a1818;
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid texture - invisible but felt */
.featured-report-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.008) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.008) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.3;
}

/* Year watermark */
.report-year-mark {
    position: absolute;
    top: 80px;
    right: 80px;
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 180px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
}

.featured-report-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

/* ===========================
   VISUAL STAGE - Left Side
   Premium document presentation
   =========================== */
.report-visual-stage {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Report cover with architectural frame */
.report-cover-frame {
    position: relative;
    background: #ffffff;
    padding: 24px;
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.04),
        0 2px 4px rgba(0,0,0,0.02),
        0 8px 16px rgba(0,0,0,0.03),
        0 16px 48px rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.report-cover-frame:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.06),
        0 4px 8px rgba(0,0,0,0.04),
        0 12px 24px rgba(0,0,0,0.06),
        0 24px 64px rgba(0,0,0,0.08);
}

/* Precision corner details */
.frame-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    pointer-events: none;
}

.frame-corner-tl {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.frame-corner-tr {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.frame-corner-bl {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
}

.frame-corner-br {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

.report-cover-wrapper {
    position: relative;
    overflow: hidden;
}

.report-cover-img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.02) saturate(1.05);
}

/* Subtle reflection effect */
.cover-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.report-cover-frame:hover .cover-reflection {
    opacity: 1;
}

/* Floating volume badge */
.floating-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.badge-icon {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

.badge-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
}

/* Formal download link - directly below cover, right-aligned */
.report-download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    margin-left: auto;
    padding: 14px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.report-download-link:hover {
    padding-left: 8px;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.download-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.download-arrow {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.report-download-link:hover .download-arrow {
    transform: translateX(4px);
}

/* ===========================
   CONTENT AREA - Right Side
   Typography-forward, refined
   =========================== */
.report-content-area {
    padding-top: 12px;
}

/* Eyebrow with extending line */
.report-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.eyebrow-line {
    width: 32px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

.eyebrow-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

/* Sophisticated title treatment */
.report-title {
    margin-bottom: 32px;
}

.title-year {
    display: block;
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    font-variant-numeric: lining-nums;
}

.title-main {
    display: block;
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

/* Dual-weight introduction */
.report-intro {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.intro-lead {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.intro-body {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Insights grid and action styles removed - simplified to link */

/* Decorative elements - subtle depth */
.section-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    overflow: visible;
    pointer-events: none;
}

.deco-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
    opacity: 0.5;
}

.deco-line-1 {
    bottom: 80px;
    left: 10%;
    width: 30%;
}

.deco-line-2 {
    bottom: 120px;
    right: 15%;
    width: 25%;
}

/* Old report form styles removed - section redesigned */

.mockup-text {
    text-align: center;
    color: #ffffff;
}

.mockup-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mockup-logo {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===========================
   SUSTAINABILITY HERO SECTION
   =========================== */
.sustainability-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), 
                url('../images/hero-mountains-range.jpg') center center/cover no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.sustainability-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 80px;
}

.sustainability-content {
    max-width: 100%;
    color: white;
}

.sustainability-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.sustainability-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.sustainability-button {
    display: inline-block;
    background: #3a9999;
    color: white;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(58, 153, 153, 0.4);
}

.sustainability-button:hover {
    background: #2d7a7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58, 153, 153, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .sustainability-hero-section {
        padding: 80px 0;
        min-height: 350px;
    }
    
    .sustainability-hero-container {
        padding: 0 40px;
    }
    
    .sustainability-title {
        font-size: 36px;
    }
    
    .sustainability-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .sustainability-hero-section {
        padding: 70px 0;
        min-height: 320px;
    }
    
    .sustainability-hero-container {
        padding: 0 20px;
    }
    
    .sustainability-title {
        font-size: 28px;
    }
    
    .sustainability-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .sustainability-button {
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   INSIGHTS SECTION
   =========================== */
.insights-section {
    background: #0d1f1f !important;
    background-image: none !important;
    padding: 80px 80px;
}

.insights-container {
    max-width: 1100px;
    margin: 0 auto;
}

.insights-header {
    margin-bottom: 40px;
}

/* Insights label replaced with section-eyebrow */

.insights-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-template-rows: auto auto auto;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.insight-featured {
    grid-column: 1;
    grid-row: 1 / 3;
    background: linear-gradient(rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.85)), url('../images/insights-mountains-golden.jpg') center center/cover no-repeat;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.insight-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.insight-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.insight-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.insight-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.insight-featured .insight-category {
    color: rgba(255, 255, 255, 0.6);
}

.insight-featured .insight-heading {
    color: #ffffff;
}

.insight-featured .insight-excerpt {
    color: rgba(255, 255, 255, 0.8);
}

.insight-featured .insight-date,
.insight-featured .insight-read,
.insight-featured .insight-divider {
    color: rgba(255, 255, 255, 0.5);
}

.insight-featured:hover {
    background: linear-gradient(rgba(45, 45, 45, 0.75), rgba(45, 45, 45, 0.85)), url('../images/insights-mountains-golden.jpg') center center/cover no-repeat;
    border-color: #3d3d3d;
}

.insight-card:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
}

.insight-cta {
    background: #1a4d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 40px;
    transition: all 0.3s ease;
    grid-column: 2 / 4;
    grid-row: 3;
}

.insight-cta:hover {
    background: #2a6060;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.insight-cta-content {
    text-align: center;
}

.insight-cta-icon {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 300;
}

.insight-cta-heading {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.insight-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.insight-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insight-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.insight-heading {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.insight-featured .insight-heading {
    font-size: 26px;
    margin-bottom: 16px;
    letter-spacing: -0.4px;
}

.insight-excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: auto;
}

.insight-featured .insight-excerpt {
    font-size: 14px;
    line-height: 1.7;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.insight-date,
.insight-read {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.insight-divider {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===========================
   CULTURE / CAREERS SECTION
   =========================== */
.culture-section {
    background: linear-gradient(135deg, #0d3d3d 0%, #0a2f2f 50%, #08252d 100%);
    background-size: cover;
    background-position: center;
    padding: 80px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

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

/* Culture label replaced with section-eyebrow */

/* Eyebrow styling for dark background (culture section) */
.culture-section .eyebrow-line {
    background: linear-gradient(to right, rgba(255,255,255,0.6), rgba(255,255,255,0));
}

.culture-section .eyebrow-text {
    color: rgba(255,255,255,0.6);
}

.culture-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.culture-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
    padding-top: 32px;
    border-top: 1px solid #2a2a2a;
}

.value-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.value-item p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.culture-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.culture-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
}

.cta-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.culture-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.culture-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.culture-stat-item {
    padding: 28px 0;
}

.culture-stat-divider {
    height: 1px;
    background: #2a2a2a;
}

.culture-stat-number {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.culture-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.culture-stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* LinkedIn Follow Button */
.linkedin-follow-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.linkedin-follow-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.linkedin-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.linkedin-follow-link:hover .linkedin-icon {
    background: #0077B5;
}

.linkedin-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.linkedin-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.linkedin-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.linkedin-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ===========================
   FOOTER
   =========================== */
/* ===========================
   FOOTER
   =========================== */
.footer {
    background: #fafbfc;
    border-top: 1px solid #e1e4e8;
    padding: 80px 80px 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/mountain-grayscale.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: grayscale(100%);
    z-index: 0;
    pointer-events: none;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e1e4e8;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin: 0 0 12px 0;
}

.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    color: #6a737d;
    line-height: 1.6;
    margin: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    font-size: 14px;
    color: #6a737d;
    line-height: 1.5;
}

.footer-list a {
    color: #6a737d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 12px;
    color: #8b949e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #1a1a1a;
}

.footer-divider {
    color: #d1d5db;
    font-size: 12px;
}

.footer-copyright {
    font-size: 12px;
    color: #8b949e;
    margin: 0;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 32px auto 0;
    padding-top: 32px;
    border-top: 1px solid #e1e4e8;
    font-size: 11px;
    color: #8b949e;
    line-height: 1.6;
    text-align: center;
}

/* ===========================
   COOKIE CONSENT POPUP
   =========================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a2d2d;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 400px;
    padding: 24px;
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.4s ease;
    display: none;
}

.cookie-consent.show {
    display: block;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    margin-bottom: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.cookie-description {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-btn-accept {
    background: #3a9999;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: #2d7a7a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(58, 153, 153, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 20px;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

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

/* Tablet and smaller desktop */
@media (max-width: 1200px) {
    .glass-nav {
        top: 15px;
        margin-top: 0;
        width: calc(100% - 60px);
        max-width: 100%;
    }
    
    .nav-content {
        padding: 12px 20px;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .glass-nav {
        top: 15px;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .hero-heading {
        font-size: 44px;
        line-height: 1.2;
    }
    
    .hero-subheading {
        font-size: 20px;
        margin-top: 16px;
    }
    
    .tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-button {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .tabs-container {
        padding: 0 30px;
    }
    
    .about-section {
        background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%) !important;
        padding: 120px 30px 60px 30px;
    }
    
    .about-container {
        gap: 60px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .news-section {
        padding: 60px 30px;
    }
    
    .report-download-section {
        padding: 60px 30px;
    }
    
    .featured-report-section {
        padding: 60px 30px 60px 30px;
    }
    
    .tabs-section {
        padding: 60px 0;
    }
    
    .report-year-mark {
        font-size: 140px;
        right: 30px;
    }
    
    .featured-report-container {
        gap: 60px;
        grid-template-columns: 440px 1fr;
    }
    
    .title-main {
        font-size: 42px;
    }
    
    .intro-lead {
        font-size: 17px;
    }
    
    .insights-section {
        padding: 80px 30px;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .insight-featured {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
    
    .insight-card:nth-child(2),
    .insight-card:nth-child(3),
    .insight-card:nth-child(4),
    .insight-card:nth-child(5),
    .insight-card:nth-child(6) {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    .insight-cta {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
    
    .culture-section {
        padding: 60px 30px;
    }
    
    .culture-container {
        gap: 60px;
    }
    
    .culture-values {
        gap: 24px;
    }
    
    /* Deals Section Responsive */
    .current-deals-section {
        padding: 60px 0;
    }
    
    .deals-container {
        padding: 0 30px;
    }
    
    .deals-header {
        flex-direction: column;
        gap: 32px;
    }
    
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        top: 92px;
        margin-top: 0;
        width: calc(100% - 24px);
    }
    
    .nav-content {
        padding: 14px 20px;
    }
    
    .brand {
        font-size: 18px;
    }
    
    .nav-links {
        position: fixed;
        top: 155px;
        left: 12px;
        right: 12px;
        max-height: calc(100vh - 175px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.08);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        padding: 0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        color: #1a1a1a;
    }
    
    .nav-links a:hover {
        color: #1a1a1a;
    }
    
    .nav-actions {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Hide desktop mega menu on mobile */
    .WORKING-dropdown-menu,
    .dropdown .WORKING-dropdown-menu,
    .nav-links .WORKING-dropdown-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Mobile dropdown styling - accordion style */
    .nav-links .dropdown > a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }
    
    /* Show dropdown arrow on mobile */
    .dropdown-arrow {
        display: inline-block !important;
        margin-left: 8px;
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    /* Mobile submenu */
    .mobile-submenu {
        display: none;
        background: #f8f9fa;
        border-radius: 6px;
        margin: 4px 0 8px 0;
        padding: 2px 0;
        overflow: hidden;
    }
    
    .mobile-submenu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-submenu a {
        display: block;
        padding: 8px 14px !important;
        font-size: 13px !important;
        color: #4a4a4a !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-align: left;
    }
    
    .mobile-submenu a:last-child {
        border-bottom: none;
    }
    
    .mobile-submenu a:hover {
        background: #ffffff;
        color: #3a9999 !important;
    }
    
    /* Rotate arrow when dropdown is active */
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-section {
        min-height: 600px;
        height: 70vh;
    }
    
    .hero-video {
        /* Video continues to work on mobile */
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-heading {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero-subheading {
        font-size: 18px;
        margin-top: 16px;
    }
    
    .hero-scroll {
        bottom: 40px;
    }
    
    .hero-scroll-text {
        font-size: 12px;
    }
    
    .about-section {
        background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%) !important;
        padding: 140px 20px 50px 20px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .stat-item {
        padding: 24px 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stat-description {
        font-size: 12px;
    }
    
    .tabs-nav {
        padding-top: 28px;
    }
    
    .tab-button {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .tab-panel {
        padding: 32px 24px;
    }
    
    .panel-title {
        font-size: 22px;
    }
    
    .panel-text {
        font-size: 14px;
    }
    
    .tabs-container {
        padding: 0 20px;
    }
    
    .insights-section {
        padding: 60px 20px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .insight-featured {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .insight-card:nth-child(2),
    .insight-card:nth-child(3),
    .insight-card:nth-child(4),
    .insight-card:nth-child(5),
    .insight-card:nth-child(6) {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .insight-cta {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .report-download-section {
        padding: 60px 20px;
    }
    
    .featured-report-section {
        padding: 60px 20px;
    }
    
    .report-year-mark {
        font-size: 100px;
        top: 40px;
        right: 20px;
    }
    
    .featured-report-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .report-visual-stage {
        order: 2;
    }
    
    .report-content-area {
        order: 1;
    }
    
    .report-cover-frame {
        padding: 16px;
    }
    
    .frame-corner {
        width: 12px;
        height: 12px;
    }
    
    .title-year {
        font-size: 20px;
    }
    
    .title-main {
        font-size: 36px;
    }
    
    .intro-lead {
        font-size: 16px;
    }
    
    .intro-body {
        font-size: 14px;
    }
    
    .report-download-link {
        margin-top: 20px;
        margin-left: 0;
        align-self: flex-start;
    }
    
    .deco-line {
        display: none;
    }
    
    .mockup-globe {
        width: 160px;
        height: 160px;
    }
    
    .mockup-divider {
        width: 60px;
        bottom: 90px;
        left: 28px;
    }
    
    .culture-section {
        padding: 60px 20px;
        background-attachment: scroll; /* Fixed doesn't work well on mobile iOS */
    }
    
    .culture-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .culture-title {
        font-size: 24px;
    }
    
    .culture-description {
        font-size: 14px;
    }
    
    .culture-values {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 24px;
    }
    
    .footer {
        padding: 60px 20px 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-bottom: 48px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-legal {
        gap: 12px;
    }
    
    .page-header {
        height: 70vh;
        min-height: 500px;
    }
    
    .page-header h1 {
        font-size: 28px;
        white-space: normal;
    }
    
    /* Deals Section Mobile */
    .current-deals-section {
        padding: 50px 0;
    }
    
    .deals-container {
        padding: 0 20px;
    }
    
    .deals-title {
        font-size: 32px;
    }
    
    .deals-filters {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .deal-image {
        height: 200px;
    }
    
    .deal-content {
        padding: 20px;
    }
    
    .deal-name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-heading {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-subheading {
        font-size: 16px;
        margin-top: 12px;
    }
    
    .about-section {
        background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%) !important;
        padding: 50px 20px;
    }
    
    .about-title {
        font-size: 22px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .stat-item {
        padding: 20px 0;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .tab-button {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .tab-panel {
        padding: 28px 20px;
    }
    
    .panel-title {
        font-size: 20px;
    }
    
    .news-section h2 {
        font-size: 26px;
        margin-bottom: 32px;
    }
    
    .report-title {
        font-size: 24px;
    }
    
    .report-description {
        font-size: 13px;
        margin-bottom: 24px;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .download-button {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .report-mockup {
        width: 320px;
        height: 180px;
    }
    
    .mockup-cover {
        padding: 32px 24px;
    }
    
    .mockup-title {
        font-size: 18px;
    }
    
    .mockup-globe {
        width: 140px;
        height: 140px;
    }
    
    .mockup-divider {
        width: 50px;
        height: 2px;
        bottom: 75px;
        left: 24px;
    }
    
    .mockup-logo {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .mockup-subtitle {
        font-size: 8px;
    }
    
    .culture-section {
        padding: 40px 20px;
        background-attachment: scroll; /* Fixed doesn't work well on mobile iOS */
    }
    
    .culture-title {
        font-size: 22px;
    }
    
    .culture-description {
        font-size: 13px;
        margin-bottom: 32px;
    }
    
    .culture-values {
        margin-bottom: 32px;
    }
    
    .value-item h3 {
        font-size: 13px;
    }
    
    .value-item p {
        font-size: 12px;
    }
    
    .culture-cta {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .culture-stat-number {
        font-size: 28px;
    }
    
    .culture-stat-label {
        font-size: 13px;
    }
    
    .culture-stat-desc {
        font-size: 11px;
    }
    
    .footer {
        padding: 48px 20px 24px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
}

/* ===========================
   ADDITIONAL PAGES STYLES
   =========================== */
.page-header {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: url('../images/hero-wave-golden.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.insights-header {
    background: none;
}

.contact-header {
    background: url('../images/hero-contact-new.jpg') center center/cover no-repeat;
    background-attachment: fixed;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px 80px;
}

.page-header h1 {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin: 0 0 24px 0;
    white-space: nowrap;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.insights-content {
    background: #ffffff;
    position: relative;
    padding: 100px 20px;
}

.insights-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.insights-content .content-grid {
    position: relative;
    z-index: 1;
}

.contact-content {
    background: #ffffff;
    position: relative;
    padding: 100px 20px;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.contact-content .content-grid {
    position: relative;
    z-index: 1;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto 100px;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 2px;
    padding: 64px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-form-header h2 {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: -0.8px;
}

.contact-form-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6a737d;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 14px 18px;
    border: 1px solid #e1e4e8;
    border-radius: 2px;
    background: #fafbfc;
    color: #1a1a1a;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a4d4d;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.contact-form-submit:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-form-submit .submit-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-form-submit:hover .submit-arrow {
    transform: translateX(4px);
}

.office-locations-section {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 40px 24px;
    }
    
    .contact-form-header h2 {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .contact-form-submit {
        width: 100%;
    }
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.content-card {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.content-card h3 {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.content-card p {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 18px;
}

.card-link {
    display: inline-block;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.card-link:hover {
    transform: translateX(3px);
}

.category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.date-tag {
    font-size: 13px;
    color: #8b949e;
    margin-bottom: 12px;
    display: block;
}

/* ===========================
   GLOBAL PRESENCE SECTION
   =========================== */
.global-presence {
    padding: 120px 80px;
    background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
    position: relative;
}

.global-container {
    max-width: 1400px;
    margin: 0 auto;
}

.global-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.global-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a4d4d;
    margin-bottom: 16px;
}

.global-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 52px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.global-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.global-map-wrapper {
    position: relative;
    margin: 80px 0;
    padding: 60px 0;
}

.global-map {
    position: relative;
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.03) 0%, transparent 70%);
    border-radius: 8px;
}

.map-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke-dasharray: 5, 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.location-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: #1a4d4d;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.4);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.location-marker:hover .marker-dot {
    transform: scale(1.3);
    transition: transform 0.3s ease;
}

.global-locations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.location-card {
    text-align: center;
    padding: 40px 24px;
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.location-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.location-city {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.location-country {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a4d4d;
    margin: 0 0 16px 0;
}

.location-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6a737d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .global-presence {
        padding: 80px 40px;
    }
    
    .global-title {
        font-size: 42px;
    }
    
    .global-locations {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .global-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .global-presence {
        padding: 60px 20px;
    }
    
    .global-header {
        margin-bottom: 50px;
    }
    
    .global-title {
        font-size: 36px;
    }
    
    .global-subtitle {
        font-size: 16px;
    }
    
    .global-locations {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .global-map-wrapper {
        margin: 50px 0;
        padding: 40px 0;
    }
    
    .global-map {
        height: 250px;
    }
    
    .location-card {
        padding: 32px 20px;
    }
    
    .location-city {
        font-size: 24px;
    }
}