/*
Theme Name: ExpertPress
Theme URI: https://expertdesign.com.br
Author: Expert Design
Author URI: https://expertdesign.com.br
Description: A premium, Awwwards-style WordPress theme for Expert Design.
Version: 1.0.0
Text Domain: expertpress
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;700&display=swap');

/* -------------------------------------------------------------------------- */
/*	Lenis Smooth Scroll
/* -------------------------------------------------------------------------- */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* -------------------------------------------------------------------------- */
/*	1. Variables & Reset
/* -------------------------------------------------------------------------- */
:root {
    --color-bg: #ffffff;
    --color-text: #1A0B0A;
    --color-accent: #1A0B0A;
    --color-primary: #9500FF;
    --color-secondary: #FF005F;
    --color-light: #FEF2ED;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: cubic-bezier(0.77, 0, 0.175, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/*	2. Layout Utility (Fallback for no Tailwind)
/* -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

.fixed {
    position: fixed;
}

.w-full {
    width: 100%;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.z-50 {
    z-index: 50;
}

.z-40 {
    z-index: 40;
}

.hidden {
    display: none;
}

/* Additional Custom Styles for Bootstrap */
.ls-wider {
    letter-spacing: 0.1em;
}

.menu-bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 4px 0;
    transition: all 0.3s ease;
}

#menu-toggle.is-active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

#menu-toggle.is-active .menu-bar:nth-child(2) {
    opacity: 0;
}

#menu-toggle.is-active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

#mobile-menu {
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1040;
}

#mobile-menu.is-open {
    transform: translateX(0) !important;
}

.mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-decoration: none;
    color: #000;
}

#mobile-menu.is-open .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link:hover {
    color: #6c757d !important;
}

/* -------------------------------------------------------------------------- */
/*	3. Header Styles (Merged from header.css)
/* -------------------------------------------------------------------------- */

:root {
    --aw-header-height: 90px;
    --aw-header-height-scrolled: 70px;
    --aw-color-primary: #9500FF;
    --aw-color-secondary: #FF005F;
    --aw-color-dark: #1A0B0A;
    --aw-color-light: #FEF2ED;
    --aw-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Base Header */
.aw-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--aw-header-height);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: transparent;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Scrolled State (Glassmorphism) */
.aw-header.is-scrolled {
    height: var(--aw-header-height-scrolled);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Logo */
.aw-header__logo .custom-logo-link {
    display: block;
    line-height: 0;
}

.aw-header__logo img,
.aw-header__logo .custom-logo {
    height: auto;
    max-height: 40px;
    width: auto;
    display: block;
}

/* Fallback Text Style if no image */
.aw-header__logo a:not(.custom-logo-link) {
    font-family: var(--aw-font-sans);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--aw-color-dark);
    text-decoration: none;
    position: relative;
    z-index: 1002;
}

/* Desktop Navigation */
.aw-nav {
    display: flex;
    align-items: center;
}

.aw-nav ul {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aw-nav li {
    margin: 0;
    position: relative;
    /* For submenu */
}

.aw-nav a,
.aw-nav .aw-menu-link {
    font-family: var(--aw-font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--aw-color-dark);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.aw-nav a::after,
.aw-nav .aw-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--aw-color-primary);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aw-nav a:hover::after,
.aw-nav .aw-menu-link:hover::after {
    width: 100%;
}

/* Submenu Styles (Desktop) */
.aw-nav ul .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 1rem 0;
    flex-direction: column;
    gap: 0.25rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.aw-nav ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aw-nav ul .sub-menu li {
    width: 100%;
}

.aw-nav ul .sub-menu li a {
    padding: 0.8rem 1.5rem;
    color: var(--color-text);
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aw-nav ul .sub-menu li a:hover {
    background: rgba(0, 0, 0, 0.02);
    padding-left: 2rem;
    color: var(--color-primary);
}

.aw-nav ul .sub-menu li a::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    width: auto;
    /* Reset */
    height: auto;
    /* Reset */
    background-color: transparent;
    /* Reset */
    position: static;
    /* Reset */
}

.aw-nav ul .sub-menu li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}


/* Actions */
.aw-header__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.aw-btn-contact {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--aw-color-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--aw-color-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.aw-btn-contact:hover {
    background-color: var(--aw-color-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile Toggle (Hamburger) */
.aw-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.aw-toggle__line {
    width: 100%;
    height: 2px;
    background-color: var(--aw-color-dark);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

/* Mobile Menu Overlay */
.aw-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    /* Allow scroll */
}

.aw-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    /* Fix full width */
    padding: 2rem 0;
    /* Add padding */
}

.aw-mobile-menu.is-open {
    opacity: 1;
    pointer-events: all;
    background-color: #fff;
    /* Ensure bg */
    transform: translateX(0) !important;
    /* Ensure override */
}

/* Mobile Links - Target the WP Menu Items */
.aw-mobile-menu li a,
.aw-mobile-menu li .aw-menu-link {
    font-family: var(--aw-font-sans);
    font-size: 1.5rem;
    /* Reduced from clamp to match user request */
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--aw-color-dark);
    text-decoration: none;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: block;
}

/* Reset ::after for mobile menu to avoid the line */
.aw-mobile-menu .aw-menu-link::after {
    display: none;
}

.aw-mobile-menu.is-open a,
.aw-mobile-menu.is-open .aw-menu-link {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger Animations (Generic for first 5 items) */
.aw-mobile-menu.is-open li:nth-child(1) a {
    transition-delay: 0.1s;
}

.aw-mobile-menu.is-open li:nth-child(2) a {
    transition-delay: 0.2s;
}

.aw-mobile-menu.is-open li:nth-child(3) a {
    transition-delay: 0.3s;
}

.aw-mobile-menu.is-open li:nth-child(4) a {
    transition-delay: 0.4s;
}

.aw-mobile-menu.is-open li:nth-child(5) a {
    transition-delay: 0.5s;
}

/* Toggle Active State */
.aw-toggle.is-active .aw-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.aw-toggle.is-active .aw-toggle__line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.aw-toggle.is-active .aw-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Force Header Elements Dark when Menu is Open */
body.menu-open .aw-header__logo a,
body.menu-open .aw-toggle__line {
    color: var(--aw-color-dark) !important;
    background-color: var(--aw-color-dark) !important;
    border-color: var(--aw-color-dark) !important;
    z-index: 1005;
    /* Ensure above everything */
}

body.menu-open .aw-toggle {
    z-index: 1005;
    /* Ensure button clickable */
}

body.menu-open .aw-header__logo {
    z-index: 1005;
}


/* Mobile Submenus (Dropdown logic) */
.aw-mobile-menu .menu-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aw-mobile-menu .sub-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    min-width: 0 !important;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;

    /* Accordion Logic */
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Open State for Submenu */
.aw-mobile-menu .menu-item.dropdown-active>.sub-menu {
    display: flex;
    animation: fadeInDown 0.3s ease-out forwards;
}

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

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

/* Submenu Links styling on Mobile */
.aw-mobile-menu .sub-menu a {
    font-size: 1.25rem !important;
    font-weight: 400;
    color: #555 !important;
    text-transform: none;
    padding: 0.25rem 0;
}

.aw-mobile-menu .sub-menu a:hover {
    color: var(--color-primary) !important;
}

/* Dropdown Indicator */
.aw-mobile-menu .menu-item-has-children>a::after {
    content: '+';
    display: inline-block;
    margin-left: 10px;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    background: none;
    /* Reset line */
    height: auto;
    width: auto;
    position: static;
}

.aw-mobile-menu .menu-item-has-children.dropdown-active>a::after {
    transform: rotate(45deg);
}


/* Responsive */
@media (max-width: 992px) {

    .aw-nav,
    .aw-btn-contact {
        display: none;
    }

    .aw-toggle {
        display: flex;
    }

    .aw-header {
        padding: 0 1.5rem;
    }
}

/* Single Project Override (White Text on Dark Hero) */
body.single-project .aw-header:not(.is-scrolled) .aw-header__logo,
body.single-project .aw-header:not(.is-scrolled) .aw-nav a,
body.single-project .aw-header:not(.is-scrolled) .aw-btn-contact,
body.single-project .aw-header:not(.is-scrolled) .aw-toggle__line {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

body.single-project .aw-header:not(.is-scrolled) .aw-toggle__line {
    background-color: #fff;
}

body.single-project .aw-header:not(.is-scrolled) .aw-nav a::after,
body.single-project .aw-header:not(.is-scrolled) .aw-menu-link::after {
    background-color: #fff;
}

body.single-project .aw-header:not(.is-scrolled) .aw-btn-contact:hover {
    background-color: #fff;
    color: var(--aw-color-dark);
}

/* -------------------------------------------------------------------------- */
/*	Hero Section (Merged from hero.css)
/* -------------------------------------------------------------------------- */

/* Container */
.aw-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--aw-color-light);
    padding: 0 2rem;
}

/* Background Effects */
.aw-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aw-hero__blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobFloat 10s infinite alternate ease-in-out;
}

.aw-hero__blob--1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--aw-color-primary) 0%, rgba(255, 255, 255, 0) 70%);
}

.aw-hero__blob--2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--aw-color-secondary) 0%, rgba(255, 255, 255, 0) 70%);
    animation-delay: -5s;
}

/* Content */
.aw-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

/* Label */
.aw-hero__label {
    display: inline-block;
    font-family: var(--aw-font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--aw-color-dark);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

/* Title */
.aw-hero__title {
    font-family: var(--aw-font-sans);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--aw-color-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.aw-hero__title-line {
    display: block;
    overflow: hidden;
}

.aw-hero__title-text {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    animation: revealText 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.aw-hero__title-text--1 {
    animation-delay: 0.3s;
}

.aw-hero__title-text--2 {
    animation-delay: 0.45s;
}

/* Highlight */
.aw-hero__highlight {
    color: var(--aw-color-primary);
    position: relative;
    display: inline-block;
}

.aw-hero__highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: var(--aw-color-secondary);
    z-index: -1;
    transform-origin: left;
    transform: scaleX(0);
    animation: lineGrow 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.2s;
}

/* Description */
.aw-hero__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--aw-color-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

/* Actions */
.aw-hero__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

/* Unified Button Style */
.aw-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.aw-btn--primary {
    background-color: var(--aw-color-dark);
    color: #fff;
    border: 1px solid var(--aw-color-dark);
}

.aw-btn--primary:hover {
    background-color: transparent;
    color: var(--aw-color-dark);
    transform: translateY(-3px);
}

.aw-btn--outline {
    background-color: transparent;
    color: var(--aw-color-dark);
    border: 1px solid var(--aw-color-dark);
}

.aw-btn--outline:hover {
    background-color: var(--aw-color-dark);
    color: #fff;
    transform: translateY(-3px);
}


/* Scroll Indicator */
.aw-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    animation: fadeUpCentered 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.5s;
}

.aw-hero__scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--aw-color-dark);
    opacity: 0.6;
}

.aw-hero__scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--aw-color-dark);
    border-radius: 12px;
    position: relative;
}

.aw-hero__scroll-wheel {
    width: 2px;
    height: 6px;
    background-color: var(--aw-color-dark);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

/* Animations Keyframes */
@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

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

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

@keyframes fadeUpCentered {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(100%) rotate(2deg);
    }

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

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .aw-hero {
        padding: 0 1.5rem;
    }

    .aw-hero__content {
        padding-top: 60px;
    }

    .aw-hero__label {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .aw-hero__title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .aw-hero__description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .aw-hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .aw-btn {
        width: 100%;
        max-width: 320px;
        padding: 0.875rem 2rem;
    }
}

/* -------------------------------------------------------------------------- */
/*	Custom Sections (Merged from custom.css)
/* -------------------------------------------------------------------------- */
.institutional-section {
    position: relative;
}

/* Headline */
.institutional-headline h2 {
    color: var(--color-text);
    line-height: 1.2;
}

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

/* Stat Card */
.stat-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9500FF, #FF005F);
    border-radius: 1rem 1rem 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Stat Icon */
.stat-icon {
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

/* Stat Number */
.stat-number {
    color: var(--color-accent);
    line-height: 1;
}

/* Stat Label */
.stat-label {
    color: #6b7280;
}

/* Fade In Animation */
.institutional-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: institutionalFadeIn 0.8s ease-out forwards;
}

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

.stat-card:nth-child(1) .institutional-fade-in {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) .institutional-fade-in {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) .institutional-fade-in {
    animation-delay: 0.3s;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 3rem !important;
    }

    .stat-card {
        margin-bottom: 1rem;
    }
}

/* CTA Marquee Section */
.cta-marquee-section {
    background-color: #000000;
    color: #ffffff;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-text {
    display: inline-block;
    padding-right: 2rem;
}

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

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

/* -------------------------------------------------------------------------- */
/*	Footer Styles (Merged from footer.css)
/* -------------------------------------------------------------------------- */
.aw-footer {
    background-color: var(--aw-color-dark);
    color: #ffffff;
    padding: 8rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.aw-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Big CTA */
.aw-footer__cta {
    margin-bottom: 8rem;
    text-align: center;
}

.aw-footer__title {
    font-family: var(--aw-font-sans);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

.aw-footer__btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #fff;
    color: var(--aw-color-dark);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.aw-footer__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Grid Links */
.aw-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aw-footer__logo {
    margin-bottom: 1.5rem;
}

.aw-footer__logo .custom-logo-link img,
.aw-footer__logo .custom-logo {
    max-width: 150px;
    height: auto;
}

.aw-footer__col-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    display: block;
}

.aw-footer__nav {
    display: flex;
    flex-direction: column;
}

.aw-footer__menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aw-footer__link,
.aw-footer__menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.aw-footer__link:hover,
.aw-footer__menu-list a:hover {
    opacity: 0.7;
}

.aw-footer__brand-desc {
    max-width: 300px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Bottom Bar */
.aw-footer__bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.aw-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.aw-footer__sitelock {
    margin-top: 2rem;
    max-width: 150px;
}

/* Responsive */
@media (max-width: 992px) {
    .aw-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .aw-footer__col--brand {
        grid-column: 1 / -1;
        margin-bottom: 2rem;
    }
}

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

    .aw-footer__cta {
        margin-bottom: 5rem;
    }

    .aw-footer__grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .aw-footer__bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}