@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #050608;
    --bg-secondary: #0F1117;
    --bg-card: rgba(15, 17, 23, 0.7);
    --border-color: rgba(255, 255, 255, 0.06);
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --accent-neon: #f5a623;
    --accent-neon-glow: rgba(245, 166, 35, 0.15);
    --accent-charcoal: #1E293B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

/* Typography settings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-neon);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.85rem 4rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: #f5a623;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-neon);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-neon);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s ease;
    position: relative;
}

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

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

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

.nav-cta-btn {
    text-decoration: none;
    background-color: var(--accent-neon);
    color: #050608;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--accent-neon);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

.nav-cta-btn:hover {
    background-color: transparent;
    color: var(--accent-neon);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 10rem 4rem 6rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d97706;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #f5a623;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.hero-title span {
    background: linear-gradient(135deg, #F8FAFC 30%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.primary-btn {
    background-color: var(--accent-neon);
    color: #050608;
    text-decoration: none;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--accent-neon);
    border: 1px solid var(--accent-neon);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: var(--accent-neon);
}

/* Hero Visual / Right Side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-container {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: #0F1117;
    padding: 8px;
    border: 1px solid var(--border-color);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

/* Floating Glassmorphism Widgets */
.floating-widget {
    position: absolute;
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.widget-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
    width: 200px;
}

.widget-2 {
    bottom: 20px;
    left: -30px;
    animation-delay: 1.5s;
    width: 240px;
}

.widget-3 {
    top: 40%;
    left: -50px;
    animation-delay: 3s;
    width: 180px;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.widget-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    font-weight: 700;
}

.widget-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.widget-value span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #f5a623;
}

.widget-graph {
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 0.75rem;
}

.graph-bar {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    transition: height 0.5s ease;
}

.graph-bar.active {
    background: linear-gradient(to top, #d97706, #f5a623);
}

/* Feature grid */
.section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d97706, #f5a623);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 166, 35, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f5a623;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Micro Line Chart within Cards */
.micro-chart {
    height: 60px;
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

/* System Status Bar */
.status-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 1.25rem 2rem;
    border-radius: 100px;
    margin-top: 3rem;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.status-item strong {
    color: var(--text-primary);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--accent-neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-neon);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(245, 166, 35, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--accent-neon);
}

/* Responsive utilities */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 8rem;
        gap: 3rem;
    }

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

    .navbar {
        padding: 1.25rem 2rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(15, 17, 23, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .dropdown-content {
        position: static !important;
        display: none;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        padding: 1rem !important;
        margin-top: 0.5rem !important;
        box-shadow: none !important;
    }

    .nav-links .dropdown.active .dropdown-content {
        display: block !important;
    }

    .nav-links .dropdown-grid {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }

    .nav-links .dropdown-columns {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .nav-links .featured-card {
        display: none !important;
        /* Hide featured card in mobile dropdown for space */
    }

    .nav-cta-btn {
        margin-right: 1.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 5rem 4rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1.5fr 3fr 1.5fr;
    gap: 2rem;
}

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

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--accent-neon);
    color: #050608;
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.footer-column ul a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Inner Page Hero Styles */
.inner-hero {
    position: relative;
    padding: 12rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.inner-hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.inner-hero .hero-badge {
    align-self: center;
}

.inner-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.inner-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.inner-hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
}

.inner-hero-lines svg {
    width: 100%;
    height: 100%;
}


/* FAQ section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(245, 166, 35, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--accent-neon);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 600px;
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 1100;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    pointer-events: none;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
    pointer-events: auto;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dropdown-item {
    display: flex;
}

.dropdown-item a {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    padding: 0.85rem 1.25rem !important;
    border-radius: 10px;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.25s ease !important;
}

.dropdown-item a:hover {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(245, 166, 35, 0.15);
    border-left: 4px solid var(--accent-neon) !important;
    padding-left: calc(1.25rem - 4px) !important;
}

.dropdown-item a::after {
    display: none !important;
}

.dropdown-item .item-title {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    display: block;
}

.dropdown-item .item-desc {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.35;
    display: block;
}

/* Adjust navbar container to prevent clipping */
.navbar {
    overflow: visible !important;
}

.nav-links {
    overflow: visible !important;
}

li {
    position: relative;
}

/* Resources Dropdown Specific Layouts */
.dropdown-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.dropdown-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.featured-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease;
}

.featured-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
}

.featured-card-title {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    display: block;
}

.featured-card-desc {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    display: block;
}

.featured-card-btn {
    align-self: flex-start;
    background: var(--accent-neon);
    color: #050608 !important;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.25s ease;
    border: 1px solid var(--accent-neon);
    display: inline-block;
    text-align: center;
}

.featured-card-btn:hover {
    background: transparent !important;
    color: var(--accent-neon) !important;
    transform: translateY(-1px);
}

.featured-card-btn::after {
    display: none !important;
}

/* ==========================================================================
   MWH Corporate Repositioning Styles
   ========================================================================== */

/* Gold Token Refinements */
:root {
    --mwh-gold: #D4AF37;
    --mwh-gold-glow: rgba(212, 175, 55, 0.2);
    --navy-deep: #050B14;
    --navy-secondary: #0C1220;
    --navy-card: rgba(12, 18, 32, 0.7);
    --border-mwh: rgba(212, 175, 55, 0.12);
}

.gold-text {
    color: var(--mwh-gold);
}

.gold-accent-label {
    font-family: 'Outfit', sans-serif;
    color: var(--mwh-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.75rem;
}

.premium-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-mwh);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--mwh-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Corporate Hero Section */
.corporate-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    background-image: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 40%, rgba(12, 18, 32, 0.8) 100%), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.index-hero {
    background-image: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 40%, rgba(12, 18, 32, 0.8) 100%), url('https://images.unsplash.com/photo-1540959733332-eab4deceeaf7?q=80&w=1920&auto=format&fit=crop');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Hero Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(5, 6, 8, 0.4) 100%);
    pointer-events: none;
}

.hero-image-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -10px rgba(245, 166, 35, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrap:hover .hero-image {
    transform: scale(1.03);
}

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

.hero-content-wrap .hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-content-wrap .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.gold-btn {
    background-color: var(--mwh-gold) !important;
    color: #050608 !important;
    border: 1px solid var(--mwh-gold) !important;
    box-shadow: 0 4px 15px var(--mwh-gold-glow) !important;
}

.gold-btn:hover {
    background-color: transparent !important;
    color: var(--mwh-gold) !important;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.3) !important;
}

/* Grids & Layouts */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-grid-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.split-grid-40-60 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.split-grid-60-40 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.center-align .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Premium Card Designs */
.premium-card {
    background: var(--navy-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-mwh);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 1px var(--mwh-gold);
}

.premium-card .card-icon {
    font-size: 2rem;
    color: var(--mwh-gold);
    margin-bottom: 1.5rem;
}

.premium-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.premium-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.count-badge {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-mwh);
    color: var(--mwh-gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* 4 Things count cards */
.count-card {
    display: flex;
    gap: 1.5rem;
    background: var(--navy-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.count-card:hover {
    border-color: var(--border-mwh);
}

.count-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.25);
    line-height: 1;
}

.count-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.count-body p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Services and Scope styling */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-icon-box {
    background: var(--navy-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-icon-box:hover {
    border-color: var(--border-mwh);
    transform: translateY(-3px);
}

.service-icon-box i {
    font-size: 2.2rem;
    color: var(--mwh-gold);
    margin-bottom: 1.25rem;
    display: block;
}

.service-icon-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* How It Works Stepper (Process Graphic) */
.stepper-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 3rem;
}

.step-card {
    flex: 1;
    background: var(--navy-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    z-index: 2;
    transition: border-color 0.3s ease;
}

.step-card:hover {
    border-color: var(--border-mwh);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border-mwh);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--mwh-gold);
    font-size: 1.25rem;
}

.step-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    margin: 0 -10px;
    z-index: 1;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Human Support Proof Points */
.proof-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.proof-card {
    background: var(--navy-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.proof-card i {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.proof-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.proof-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Technology Capabilities List */
.tech-capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    gap: 1.5rem;
    background: var(--navy-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    align-items: center;
}

.tech-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--mwh-gold);
}

.tech-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.4;
}

.premium-visual-card {
    background: radial-gradient(100% 100% at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 100%), var(--navy-card);
    border: 1px solid var(--border-mwh);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    text-align: center;
}

/* Use cases grid cards */
.use-case-card {
    background: var(--navy-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: var(--border-mwh);
    transform: translateY(-3px);
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.use-case-header i {
    font-size: 1.5rem;
}

.use-case-header h3 {
    font-size: 1.15rem;
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Verified checklist items */
.verified-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    color: var(--mwh-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.feature-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.feature-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Enquiry Form styling */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--navy-card);
    border: 1px solid var(--border-mwh);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.mwh-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(5, 11, 20, 0.5);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mwh-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-actions-submit {
    margin-top: 1rem;
    text-align: center;
}

.submit-btn {
    cursor: pointer;
    border: none;
    padding: 1.1rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.success-box {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px dashed var(--border-mwh);
    background: rgba(212, 175, 55, 0.04);
    border-radius: 16px;
}

.success-box p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Responsive CSS Media Queries */
@media (max-width: 1024px) {
    .hero-content-wrap .hero-title {
        font-size: 3.5rem;
    }

    .split-grid,
    .split-grid-50-50,
    .split-grid-40-60,
    .split-grid-60-40 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .stepper-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-step-card {
        display: flex;
        gap: 1.25rem;
        background: var(--navy-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 12px;
        align-items: center;
    }

    .step-num {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 2rem;
        color: var(--mwh-gold);
        opacity: 0.6;
    }

    .mobile-step-card h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .mobile-step-card p {
        color: var(--text-secondary);
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 2rem;
    }

    .corporate-hero {
        min-height: 75vh;
        padding: 7rem 2rem 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content-wrap .hero-title {
        font-size: 2.75rem;
    }

    .hero-content-wrap .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .grid-3,
    .grid-4,
    .grid-2,
    .proof-points-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .submit-btn {
        width: 100%;
    }
}

/* =========================================
   MWH PREMIUM MOTION SYSTEM
   Midnight Executive / Black + Gold
   ========================================= */

:root {
    --mwh-gold: #D6A84F;
    --mwh-gold-light: #F0D18A;
    --mwh-black: #080808;
    --mwh-navy: #101820;
}

.mwh-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.mwh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mwh-hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: mwhHeroIn 1.1s cubic-bezier(.22, 1, .36, 1) forwards;
}

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

.mwh-gold {
    color: var(--mwh-gold);
}

.mwh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--mwh-gold);
    color: #080808;
    border: 1px solid var(--mwh-gold);
    text-decoration: none;
    font-weight: 600;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.mwh-btn:hover {
    transform: translateY(-3px);
    background: var(--mwh-gold-light);
    box-shadow: 0 12px 30px rgba(214, 168, 79, .25);
}

.mwh-card {
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease !important;
}

.mwh-card:hover {
    transform: translateY(-6px) !important;
    border-color: var(--mwh-gold) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25) !important;
}

/* Connect why-businesses-choose-mwh and solutions premium-cards to mwh-card behaviors */
.premium-card,
.count-card,
.service-icon-box,
.glass-card,
.outcome-item {
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.premium-card:hover,
.count-card:hover,
.service-icon-box:hover,
.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--mwh-gold);
    box-shadow: 0 15px 40px rgba(214, 168, 79, 0.15);
}

.mwh-gold-line {
    width: 0;
    height: 2px;
    background: var(--mwh-gold);
    transition: width .8s ease;
}

.mwh-reveal.is-visible .mwh-gold-line {
    width: 70px;
}

.mwh-image {
    overflow: hidden;
}

.mwh-image img {
    transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.mwh-image:hover img {
    transform: scale(1.04);
}

.mwh-ownership {
    display: inline-block;
    opacity: 0;
    animation: ownershipIn .8s ease forwards;
    animation-delay: .7s;
}

@keyframes ownershipIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.mwh-flight-path {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
}

.mwh-flight-path svg {
    width: 100%;
    height: 180px;
}

.mwh-route {
    fill: none;
    stroke: #D6A84F;
    stroke-width: 2;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
}

.mwh-reveal.is-visible .mwh-route {
    animation: mwhRoute 2.5s ease forwards;
}

.mwh-dot {
    fill: #D6A84F;
}

@keyframes mwhRoute {
    to {
        stroke-dashoffset: 0;
    }
}

.mwh-process {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
}

.mwh-step {
    padding: 25px 15px;
    border-top: 1px solid rgba(214, 168, 79, .25);
    transition: all .35s ease;
}

.mwh-step span {
    color: #D6A84F;
    font-size: 13px;
}

.mwh-step h3 {
    color: white;
    margin-top: 12px;
}

.mwh-step:hover {
    transform: translateY(-5px);
    border-top-color: #D6A84F;
}

@media (max-width: 768px) {
    .mwh-process {
        grid-template-columns: 1fr 1fr;
    }
}


/* Style for Outcome Items as boxes with hover effect */
.problem-outcomes {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

.outcome-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.25rem 2rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
}

.outcome-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d97706, #f5a623);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.outcome-item:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 166, 35, 0.35);
    background: rgba(245, 166, 35, 0.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.outcome-item:hover::before {
    opacity: 1;
}

.outcome-icon {
    font-size: 2.25rem;
    line-height: 1;
}

.outcome-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.outcome-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .problem-outcomes {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}