/* ==========================================================================
   TRIZ ASIA - MAIN STYLESHEET
   Matches Design Reference V4 Pixel-Accurately
   ========================================================================== */

/* --- CSS Variables / Design System Tokens --- */
:root {
    --color-primary: #8B1E2F;
    --color-primary-hover: #721625;
    --color-primary-dark: #5C101D;
    --color-accent-pink: #E05666;
    --color-accent-rose: #FBEBEF;
    --color-border-rose: #F0D5DC;
    --color-badge-rose: #FCECEF;
    
    --color-teal-dark: #014751;
    --color-teal-main: #005965;
    --color-teal-light: #EBF7F9;
    --color-cyan-accent: #7ED3E6;

    --color-charcoal-dark: #222222;
    --color-card-bg-light: #F8F6F6;
    --color-bg-soft: #F7F5F5;
    --color-bg-alt: #FAFAFA;
    --color-bg-white: #FFFFFF;

    --color-text-main: #1E293B;
    --color-text-heading: #111827;
    --color-text-muted: #556070;
    --color-text-light: #64748B;
    --color-text-white: #FFFFFF;

    --font-main: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --container-max-width: 1440px;
    --container-padding: 32px;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 1rem;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* --- Layout Utility Classes --- */
.container {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-narrow {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding-lg {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-center {
    text-align: center;
}

/* --- Section Headers --- */
.section-title-center {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
    line-height: 1.25;
    text-align: center;
}

.section-title-center em {
    font-style: italic;
    color: var(--color-primary);
}

.section-subtitle-center {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
    line-height: 1.65;
}

/* --- Buttons & UI Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary-pill {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-pill);
}

.btn-primary-pill:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 30, 47, 0.25);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: rgba(171, 236, 245, 1);
    border: 1px solid rgba(171, 236, 245, 1);
    border-radius: 10px;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline-teal {
    background: transparent;
    color: var(--color-teal-main);
    border: 1.5px solid var(--color-teal-main);
    border-radius: 10px;
    padding: 10px 24px;
}

.btn-outline-teal:hover {
    background-color: var(--color-teal-main);
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 89, 101, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: rgba(171, 236, 245, 1);
    border: 1.5px solid rgba(171, 236, 245, 1);
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.case-study-cta {
    background: rgba(5, 18, 32, 0.55) !important;
    color: #b9f7ff !important;
    border: 2px solid #a7eff8 !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    gap: 10px !important;
    box-shadow: 0 0 18px rgba(0, 210, 180, 0.24), inset 0 0 18px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.case-study-cta:hover {
    background: rgba(0, 89, 101, 0.55) !important;
    border-color: #c5f8ff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.case-study-cta-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    object-fit: contain;
}

.solution-case-study-cta {
    background: #f8ffff !important;
    color: #0f6b72 !important;
    border: 1.5px solid #0f6b72 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-weight: 500 !important;
}

.solution-case-study-cta:hover {
    background: #eefafa !important;
    border-color: #0b5960 !important;
    color: #0b5960 !important;
}

.contact-us-btn {
    background-color: var(--color-teal-main);
    color: var(--color-text-white);
    border-color: #8FC7CD;
    border-radius: 7px;
}

.contact-us-btn:hover {
    background-color: var(--color-teal-dark);
    border-color: #A7D8DD;
    color: var(--color-text-white);
}

.compact-teal-btn {
    background-color: var(--color-teal-main);
    color: var(--color-text-white);
    border-color: #8FC7CD;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    gap: 8px;
}

.compact-teal-btn:hover {
    background-color: var(--color-teal-dark);
    border-color: #A7D8DD;
    color: var(--color-text-white);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap var(--transition-fast);
}

.link-arrow:hover {
    gap: 10px;
    color: var(--color-primary-hover);
}

.link-arrow-teal {
    color: var(--color-teal-main);
}
.link-arrow-teal:hover {
    color: var(--color-teal-dark);
}

.tag-badge {
    display: inline-block;
    padding: 3px 10px;
    width: max-content;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--color-badge-rose);
    color: var(--color-primary);
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
    background-color: #FFF8F7;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast), backdrop-filter var(--transition-fast);
}

/* --- Figma Typography System --- */
.heading-1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0;
}

.heading-2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0;
}

.heading-2---italic {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0;
}

.heading-3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
}

.heading-4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0;
}

.heading-5 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0;
}

.button {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
}

.body-large---balanced,
.body-large---pretty {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-weight: 400;
    letter-spacing: 0;
}

.body-large---balanced {
    text-wrap: balance;
}

.body-large---pretty {
    text-wrap: pretty;
}

.body-medium {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
    letter-spacing: 0;
}

.body-small {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 400;
    letter-spacing: 0;
}

.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
}

.cta {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0;
}

.number-for-card {
    font-family: var(--font-body);
    font-size: 8rem;
    font-weight: 400;
    letter-spacing: 0;
}

.site-header.header-scrolled {
    background-color: rgba(255, 248, 247, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    max-width: 1820px;
    width: 100%;
    padding-left: clamp(24px, 2.5vw, 48px);
    padding-right: clamp(24px, 2.5vw, 48px);
}

.site-logo img {
    height: 86px;
    width: auto;
    transition: transform var(--transition-fast);
}

.site-logo img:hover {
    transform: scale(1.03);
}

.main-nav {
    margin-left: auto;
    margin-right: 28px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.35vw, 24px);
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #4B5563;
    padding: 6px 4px;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link.active-pill {
    background-color: var(--color-primary);
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}

.nav-link.active-pill .nav-dropdown-icon {
    color: #FFFFFF !important;
}

.nav-link.active-pill:hover {
    color: #FFFFFF !important;
    opacity: 0.95;
}

.nav-dropdown-icon {
    font-size: 0.65rem;
    color: #6B7280;
    transition: transform var(--transition-fast);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta .btn {
    font-size: 1rem;
}

.dropdown {
    position: relative;
}

.dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background-color: var(--color-bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
    z-index: 1010;
}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 9px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-main);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background-color: var(--color-bg-soft);
    color: var(--color-primary);
    padding-left: 22px;
}

.dropdown-menu li a.dropdown-active {
    background-color: #F8F3F4;
    color: var(--color-primary);
    font-weight: 600;
}

.dropdown-menu li a.dropdown-active:hover {
    background-color: #F8F3F4;
    color: var(--color-primary);
    padding-left: 18px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: background-color var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover,
.mobile-toggle:focus-visible {
    background-color: rgba(0, 0, 0, 0.05);
    outline: none;
}

.mobile-toggle span {
    display: block;
    height: 2.5px;
    width: 22px;
    background-color: var(--color-text-heading);
    border-radius: 2px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease,
                background-color 0.25s ease;
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background-color: var(--color-primary);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: var(--color-primary);
}

.mobile-nav-cta,
.mobile-overview-link {
    display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
    background-color: #08121e;
    background-image: url('../images/home/home-hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    padding: 60px 0;
    box-sizing: border-box;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 18, 30, 0.65) 0%, rgba(5, 12, 22, 0.8) 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    /* max-width: 960px; */
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight-pink {
    color: var(--color-accent-pink);
    font-weight: 800;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.95rem;
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtext {
    font-size: 1.125rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.82);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.2rem;
}

.hero-subtitle {
    font-size: 1.125rem;
}

.home-hero .hero-description,
.home-hero .hero-subtext {
    max-width: 1180px;
    line-height: 1.45;
    text-align: center;
    color: #C9C6C5;
}

.home-hero .hero-description {
    margin-bottom: 0.75rem;
    max-width: 1120px;
    white-space: nowrap;
}

.home-hero .hero-subtext {
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   SECTION 2: WHAT ARE YOU TRYING TO ACHIEVE?
   ========================================================================== */
.achieve-section {
    background-color: var(--color-bg-white);
    padding-top: 70px;
    padding-bottom: 54px;
}

.achieve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 5rem;
    max-width: 1320px;
    margin: 2rem auto 0;
}

.achieve-item {
    padding-top: 1rem;
    padding-bottom: 0;
    border-top: 1.5px solid var(--color-teal-main);
    border-bottom: none;
}

.achieve-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-teal-main);
    margin-bottom: 0.55rem;
    line-height: 1.35;
}

.achieve-desc {
    font-size: 0.9rem;
    color: #1C1B1B;
    line-height: 1.5;
    max-width: 420px;
}

/* ==========================================================================
   SECTION 3: STATS & PARTNER STRIP
   ========================================================================== */
.stats-partner-section {
    background-color: var(--color-bg-white);
    padding: 30px 0 36px;
}

.stats-strip {
    background-color: var(--color-accent-rose);
    border-radius: var(--radius-sm);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 18px;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid var(--color-border-rose);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 3px;
}

.stat-logo {
    height: 30px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.partner-summary {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.6;
}

.partner-subtext {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.65;
}

/* ==========================================================================
   SECTION 4: SYSTEMATIC INNOVATION (4 PRINCIPLES GRID)
   ========================================================================== */
.systematic-section {
    background-color: #FBF7F8;
    padding-top: 62px;
    padding-bottom: 84px;
}

.systematic-intro {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    text-align: left;
}

.systematic-intro .section-title-center {
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.systematic-intro .section-subtitle-center {
    max-width: 100%;
    margin: 0;
    color: #5F5F5F;
    font-size: 0.82rem;
    line-height: 1.35;
}

.systematic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: min(895px, 100%);
    margin: 38px auto 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.principle-card {
    min-height: 96px;
    padding: 22px 26px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0;
}

.principle-icon {
    font-size: 0.82rem;
    margin-bottom: 7px;
}

.principle-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.principle-desc {
    font-size: 0.66rem;
    line-height: 1.45;
    max-width: 390px;
}

.principle-card:nth-child(2) {
    margin-top: 46px;
}

.principle-card:nth-child(3) {
    margin-top: -4px;
}

.principle-card:nth-child(4) {
    margin-top: -4px;
}

/* Card 1: Value before ideas (Dark) */
.card-dark-coral {
    background-color: var(--color-charcoal-dark);
    color: var(--color-text-white);
    border-top: 7px solid #F7A4AA;
}
.card-dark-coral .principle-icon,
.card-dark-coral .principle-title {
    color: #F87171;
}
.card-dark-coral .principle-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Card 2: Problem before solution (Light Gray) */
.card-light-gray {
    background-color: #F1EEEE;
    color: var(--color-text-main);
}
.card-light-gray .principle-icon,
.card-light-gray .principle-title {
    color: var(--color-teal-main);
}
.card-light-gray .principle-desc {
    color: var(--color-text-muted);
}

/* Card 3: Evidence before commitment (Light Pink/Cream) */
.card-light-cream {
    background-color: #FFFFFF;
    color: var(--color-text-main);
}
.card-light-cream .principle-icon,
.card-light-cream .principle-title {
    color: var(--color-primary);
}
.card-light-cream .principle-desc {
    color: var(--color-text-muted);
}

/* Card 4: Cross-domain search (Dark) */
.card-dark-cyan {
    background-color: var(--color-charcoal-dark);
    color: var(--color-text-white);
    border-top: 7px solid #66CFD9;
}
.card-dark-cyan .principle-icon,
.card-dark-cyan .principle-title {
    color: var(--color-cyan-accent);
}
.card-dark-cyan .principle-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   SECTION 5: SELECTED CASE-STUDIES
   ========================================================================== */
.case-studies-section {
    background-color: #FBF7F8;
    padding: 0 0 90px;
}

.cases-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 55px;
    align-items: start;
    max-width: 1130px;
    margin: 0 auto;
}

.cases-sidebar-title {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

.cases-sidebar-desc {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.cases-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.case-card {
    background-color: var(--color-bg-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: none;
}

.case-thumb {
    width: 100%;
    height: 145px;
    object-fit: cover;
}

.case-body {
    padding: 12px 14px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.case-body .link-arrow {
    margin-top: auto;
    font-size: 0.68rem;
    gap: 5px;
}

.case-body .tag-badge {
    padding: 0;
    margin-bottom: 5px;
    background-color: transparent;
    border-radius: 0;
    font-size: 0.58rem;
}

/* ==========================================================================
   SECTION 6: SOLUTIONS (SPLIT LAYOUT)
   ========================================================================== */
.solutions-section {
    background-color: var(--color-bg-white);
    padding: 90px 0;
}

.solutions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solutions-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.solutions-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.solutions-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 2rem;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.solution-icon-box {
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.solution-info {
    flex: 1;
}

.solution-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 3px;
}

.solution-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 7: APPROACH TIMELINE (CHALLENGE -> IMPLEMENTATION)
   ========================================================================== */
.approach-section {
    background-color: var(--color-bg-white);
    padding: 30px 0 38px;
}

.approach-intro .section-title-center {
    font-size: 1.72rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.approach-intro .section-subtitle-center {
    max-width: 440px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.35;
    color: #555555;
}

.timeline-cta-wrap {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 46px;
}

.timeline-cta-wrap .link-arrow {
    font-size: 0.86rem;
    font-weight: 800;
    gap: 5px;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 26px;
}

/* Center vertical line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 10px;
    left: 50%;
    width: 3px;
    background: linear-gradient(90deg, #FF96A2 -0.35%, #66001E 100.35%);
    transform: translateX(-50%);
}

.approach-section .timeline-container::before {
    width: 3px;
    background: linear-gradient(90deg, #FF96A2 -0.35%, #66001E 100.35%);
}

/* Timeline arrowhead at bottom */
.timeline-arrow {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
    font-size: 1.35rem;
    line-height: 1;
}

.timeline-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 60px;
    margin-bottom: 0;
}

.timeline-row:last-child {
    margin-bottom: 20px;
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 38px;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border: 0;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: none;
}

.timeline-content {
    width: calc(50% - 14px);
}

.timeline-row.left .timeline-content {
    margin-right: auto;
    padding-right: 0;
    text-align: right;
}

.timeline-row.right .timeline-content {
    margin-left: auto;
    padding-left: 0;
    text-align: left;
}

.timeline-step-title {
    font-size: 1.20rem;
    font-weight: 500;
    color: var(--color-text-heading);
    margin-bottom: 3px;
    line-height: 1.15;
}

.timeline-step-desc {
    font-size: 0.80rem;
    color: var(--color-text-muted);
    line-height: 1.25;
}

/* ==========================================================================
   SECTION 8: WHY TRIZ ASIA
   ========================================================================== */
.why-section {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-img {
    width: 100%;
    height: auto;
    display: block;
}

.why-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 0.45rem;
}

.why-heading em {
    font-style: italic;
    color: var(--color-primary);
}

.why-intro {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.why-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text-heading);
    font-weight: 500;
    line-height: 1.5;
}

.why-bullet-icon {
    color: #4B5563;
    font-size: 0.6rem;
    margin-top: 6px;
}

/* ==========================================================================
   SECTION 9: METALENS™ INTELLIGENCE
   ========================================================================== */
.metalens-section {
    background-color: #FBF7F8;
    padding: 70px 0 82px;
}

.metalens-section .text-center {
    max-width: 820px;
    margin: 0 auto;
}

.metalens-section .section-title-center {
    font-size: 1.68rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.metalens-section .section-subtitle-center {
    max-width: 760px;
    margin-bottom: 36px;
    font-size: 0.95rem;
    line-height: 1.35;
    color: #5F5F5F;
}

.metalens-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-bottom: 36px;
}

.metalens-card {
    background-color: transparent;
    border-radius: 14px;
    padding: 14px 16px 18px;
    min-height: 158px;
    border: 1px solid #E7E0E2;
    box-shadow: none;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.metalens-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.metalens-icon-box {
    width: 30px;
    height: 30px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.metalens-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-teal-main);
    margin-bottom: 26px;
    line-height: 1.18;
}

.metalens-card-desc {
    font-size: 0.74rem;
    color: var(--color-text-muted);
    line-height: 1.38;
}

.metalens-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.metalens-actions .btn-outline-teal {
    border-radius: 8px;
    min-width: 164px;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.92rem;
    font-weight: 600;
}

.metalens-actions .link-arrow {
    font-size: 0.92rem;
    font-weight: 700;
}

/* ==========================================================================
   SECTION 10: WHO WE HELP
   ========================================================================== */
.who-we-help-section {
    background-color: var(--color-bg-white);
    padding: 90px 0;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.who-card {
    position: relative;
    background-color: #F8F6F6;
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    min-height: 194px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.who-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.who-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(18, 53, 60, 0.12);
    line-height: 1;
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
}

.who-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-teal-main);
    min-height: 64px;
    margin: 0 96px 0.25rem 0;
    line-height: 1.35;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.who-card-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   SECTION 11: SPECIALIST KNOWLEDGE & MAP
   ========================================================================== */
.specialist-section {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

.specialist-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.specialist-map-wrap img {
    width: 100%;
    height: auto;
}

.specialist-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.specialist-desc {
    font-size: 0.98rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   SECTION 12: INSIGHTS FROM THE FIELD
   ========================================================================== */
.insights-section {
    background-color: var(--color-bg-white);
    padding: 85px 0 95px;
    overflow: hidden;
}

.insights-scroll-wrap {
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
}

.insights-scroll-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 12px clamp(24px, 5vw, 80px) 24px;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.insights-scroll-track.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

.insights-scroll-track.is-auto-scrolling {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.insights-scroll-track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.insight-card {
    flex: 0 0 255px;
    width: 255px;
    scroll-snap-align: start;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth);
}

.insight-card:hover {
    transform: translateY(-4px);
}

.insight-thumb-wrap {
    width: 100%;
    height: 165px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #E2E8F0;
}

.insight-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

.insight-card:hover .insight-thumb {
    transform: scale(1.04);
}

.insight-body {
    padding: 14px 2px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.4;
    margin-bottom: 14px;
    min-height: 48px;
}

.insight-body .link-arrow {
    margin-top: auto;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.insight-body .link-arrow:hover {
    gap: 10px;
    color: var(--color-primary-hover);
}

.insights-action {
    text-align: center;
}

/* ==========================================================================
   SECTION 13: TRAINING BANNER (IN-HOUSE CAPABILITY)
   ========================================================================== */
.training-section {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

.training-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.training-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.training-img {
    width: 100%;
    height: auto;
    display: block;
}

.training-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.training-heading em {
    font-style: italic;
    color: var(--color-primary);
}

.training-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* ==========================================================================
   SECTION 14: BOTTOM CTA BANNER
   ========================================================================== */
.cta-banner-section {
    padding: 70px 0 80px;
    background-color: var(--color-bg-white);
}

.cta-banner-card {
    max-width: 1320px;
    margin: 0 auto;
    background-color: var(--color-teal-main);
    border-radius: 32px;
    padding: 58px 48px 56px;
    text-align: center;
    color: var(--color-text-white);
    box-shadow: var(--shadow-lg);
}

.cta-banner-box {
    background-color: var(--color-teal-dark);
    border-radius: var(--radius-xl);
    padding: 70px 40px;
    text-align: center;
    color: var(--color-text-white);
    box-shadow: var(--shadow-lg);
}

.cta-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    color: var(--color-text-white);
}

.cta-banner-subtitle {
    max-width: 920px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.45;
}

.cta-banner-desc {
    font-size: 1.05rem;
    max-width: 820px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-bg-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-container {
    padding-top: 75px;
    padding-bottom: 65px;
    max-width: var(--container-max-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(24px, 3vw, 52px);
}

.footer-logo img {
    height: 76px;
    width: auto;
    margin-bottom: 1.25rem;
    transition: transform var(--transition-fast);
}

.footer-logo img:hover {
    transform: scale(1.02);
}

.footer-tagline {
    font-size: 0.92rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 290px;
}

.footer-motto {
    font-size: 0.92rem;
    color: #111827;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-motto strong {
    font-weight: 700;
    color: #111827;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.social-link {
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav li a {
    font-size: 0.92rem;
    color: #222222;
    transition: color var(--transition-fast);
    display: inline-block;
}

.footer-nav li a:hover {
    color: var(--color-primary);
    padding-left: 0;
}

.footer-bottom-bar {
    background-color: #FCECEF;
    padding: 22px 0;
    border-top: none;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #556070;
    max-width: var(--container-max-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-legal-links a {
    color: #556070;
    transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   SOLUTIONS PAGE SPECIFIC STYLES (PAGE 2)
   ========================================================================== */
.hero-section.solutions-hero {
    background-color: #0a1726;
    background-image: url('../images/solutions/solutions-hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
}

.solutions-hero .hero-content {
    max-width: 1280px;
}

.solutions-hero .hero-title {
    white-space: nowrap;
}

.solutions-hero .hero-description,
.solutions-hero .hero-subtext {
    max-width: none;
    white-space: nowrap;
}

.solutions-hero .hero-description {
    margin-bottom: 0.35rem;
}

/* Business Need 3x3 Grid */
.business-need-section {
    background-color: var(--color-bg-white);
    padding: 90px 0 60px;
}

.business-need-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 3rem;
}

.business-need-card {
    border-top: 1.5px solid #CBD5E1;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

.business-need-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-teal-main);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.business-need-subtitle {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 0.85rem;
    line-height: 1.45;
}

.business-need-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Engagement Models 3x2 Grid */
.engagement-section {
    background-color: var(--color-bg-white);
    padding: 60px 0 90px;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.engagement-card {
    position: relative;
    background-color: #F8F6F6;
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.engagement-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0.75rem;
}

.engagement-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-teal-main);
    line-height: 1.35;
    margin: 0;
    flex: 1;
}

.engagement-card-num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(18, 53, 60, 0.12);
    line-height: 1;
    letter-spacing: -0.02em;
    user-select: none;
    flex-shrink: 0;
}

.engagement-card-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   TECHNICAL PROBLEM SOLVING PAGE SPECIFIC STYLES (PAGE 3)
   ========================================================================== */

/* Light Hero Section (Pages 3 to 11) */
.light-hero-section {
    background-color: #FFFFFF;
    min-height: 560px;
    padding: 95px 0 85px;
    display: flex;
    align-items: center;
}

.light-hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.light-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.22;
    color: var(--color-teal-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.light-hero-title .text-maroon {
    color: var(--color-primary);
}

.light-hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.68;
    margin-bottom: 2.2rem;
    max-width: 580px;
}

.light-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-teal {
    background-color: transparent;
    color: var(--color-teal-main);
    border: 1.5px solid var(--color-teal-main);
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-outline-teal:hover {
    background-color: var(--color-teal-main);
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.light-hero-image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    height: 380px;
    width: 100%;
}

.light-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Problem Checklist Section */
.problem-checklist-section {
    background-color: #FFFFFF;
    padding: 70px 0 80px;
}

.problem-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.checklist-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.checklist-box {
    width: 22px;
    height: 22px;
    border: 2px solid #94A3B8;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    background-color: #FFFFFF;
}

.checklist-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-heading);
    line-height: 1.45;
}

.fit-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-teal-main);
}

.fit-banner-title em {
    font-style: italic;
    color: var(--color-primary);
}

/* What TRIZ Asia Does 3x2 Grid */
.what-triz-section {
    background-color: #FFFFFF;
    padding: 85px 0;
}

.what-triz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 36px;
    row-gap: 52px;
}

.what-triz-card {
    background-color: transparent;
    border: none;
    border-top: 2px solid #00545B;
    border-radius: 0;
    padding: 24px 12px 0 12px;
    box-shadow: none;
    display: block;
    min-height: auto;
    text-align: center;
    transition: none;
}

.what-triz-card:hover {
    transform: none;
    box-shadow: none;
}

.what-triz-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #004D54;
    line-height: 1.55;
    text-align: center;
    margin: 0 auto;
    max-width: 360px;
}

/* What You Receive Section */
.receive-section {
    background-color: #FFFFFF;
    padding: 85px 0;
}

.receive-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
}

.receive-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    aspect-ratio: 16 / 10;
    width: 100%;
}

.receive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.receive-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.receive-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.receive-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.receive-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #2D3748;
    line-height: 1.45;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #FFFFFF;
    padding: 85px 0 100px;
}

.container-narrow {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-item {
    background-color: #F8F6F6;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-fast);
}

.faq-item.active {
    background-color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-color: #E2E8F0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 32px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-text-heading);
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: transform var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 32px;
    font-size: 0.98rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 32px 24px 32px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    .site-header {
        position: sticky;
        top: 0;
    }
    .header-container {
        min-height: 64px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .site-logo img {
        height: 64px;
    }
    body.menu-open {
        overflow: hidden;
    }

    .header-cta {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .header-cta .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--site-header-height, 64px);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - var(--site-header-height, 64px));
        height: calc(100dvh - var(--site-header-height, 64px));
        background-color: #FFF8F7;
        margin: 0;
        padding: 16px 20px 36px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .main-nav.nav-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 10px;
        font-size: 1.02rem;
        font-weight: 500;
        color: var(--color-text-main);
        text-decoration: none;
        border-radius: 8px;
        transition: background-color var(--transition-fast), color var(--transition-fast);
        width: 100%;
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: rgba(139, 30, 47, 0.05);
        color: var(--color-primary);
    }

    .nav-link.active-pill {
        background-color: var(--color-primary);
        color: #FFFFFF !important;
        border-radius: 8px;
        padding: 12px 14px;
    }

    .nav-link.active-pill .nav-dropdown-icon {
        color: #FFFFFF !important;
    }

    .dropdown {
        position: static;
    }

    .dropdown:hover .dropdown-menu {
        /* Do not use desktop hover on mobile */
        opacity: inherit;
        visibility: inherit;
        transform: none;
    }

    .nav-dropdown-icon {
        font-size: 0.75rem;
        color: #6B7280;
        transition: transform 0.25s ease, color 0.25s ease;
        padding: 4px;
    }

    .dropdown.mobile-dropdown-open > .nav-link .nav-dropdown-icon {
        transform: rotate(180deg);
        color: #FFFFFF !important;
    }

    .dropdown.mobile-dropdown-open > .nav-link {
        color: #FFFFFF !important;
        font-weight: 600;
        background-color: var(--color-primary);
        border-radius: 8px;
        padding: 12px 14px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
        background-color: #FFFFFF !important;
        border-radius: 10px;
        margin: 6px 0 12px;
        padding: 8px 8px;
        display: none !important;
        opacity: 0;
        visibility: hidden;
        transform: none;
        border: 1px solid rgba(0, 0, 0, 0.07);
        border-left: 4px solid var(--color-primary);
    }

    .dropdown.mobile-dropdown-open > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown.mobile-dropdown-open:hover > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-menu li {
        list-style: none;
        border-bottom: 1px solid #F1F5F9;
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu li a {
        display: block;
        padding: 11px 14px;
        font-size: 0.92rem;
        font-weight: 500;
        color: #1E293B !important;
        text-decoration: none;
        border-radius: 6px;
        transition: all var(--transition-fast);
    }

    .dropdown-menu li a:hover,
    .dropdown-menu li a:focus {
        background-color: rgba(139, 30, 47, 0.06);
        color: var(--color-primary) !important;
        padding-left: 18px;
    }

    .dropdown-menu li a.dropdown-active {
        background-color: var(--color-accent-rose);
        color: var(--color-primary);
        font-weight: 600;
    }

    .mobile-overview-link {
        display: block;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding-bottom: 4px;
    }

    .mobile-overview-link a {
        font-weight: 600 !important;
        color: var(--color-primary) !important;
    }

    .mobile-nav-cta {
        display: block;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-nav-cta .btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.98rem;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .home-hero .hero-description,
    .home-hero .hero-subtext,
    .solutions-hero .hero-title {
        white-space: normal;
    }
    .solutions-hero .hero-description,
    .solutions-hero .hero-subtext {
        white-space: normal;
    }
    .achieve-grid,
    .business-need-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stat-item {
        border-bottom: 1px solid var(--color-border-rose);
        padding-bottom: 15px;
    }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }
    .systematic-grid {
        grid-template-columns: 1fr;
    }
    .principle-card:nth-child(2),
    .principle-card:nth-child(3),
    .principle-card:nth-child(4) {
        margin-top: 0;
    }
    .cases-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cases-cards-row {
        grid-template-columns: 1fr 1fr;
    }
    .solutions-layout,
    .why-layout,
    .specialist-layout,
    .training-layout,
    .light-hero-layout,
    .receive-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .metalens-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .who-grid,
    .engagement-grid,
    .what-triz-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        min-height: 56px;
        padding-left: 14px;
        padding-right: 14px;
    }
    .site-logo img {
        height: 56px;
    }
    .main-nav {
        top: var(--site-header-height, 56px);
        height: calc(100vh - var(--site-header-height, 56px));
        height: calc(100dvh - var(--site-header-height, 56px));
        padding: 12px 16px 28px;
        margin: 0;
    }
    .hero-title,
    .light-hero-title {
        font-size: 2rem;
    }
    .cta-banner-card {
        border-radius: 24px;
        padding: 40px 22px;
    }
    .cta-banner-title {
        font-size: 2rem;
    }
    .cta-banner-subtitle {
        font-size: 1.05rem;
    }
    /* --- Global Mobile Anti-Sliding & Responsive Layout System --- */
    :root {
        --container-padding: 16px;
    }

    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    main, .main-content, section, header, footer,
    .hero-section, .light-hero-section, .stats-partner-section,
    .cta-banner-section, .personas-section, .metalens-section {
        max-width: 100% !important;
        overflow-x: clip !important;
        box-sizing: border-box !important;
    }

    .container, .container-narrow {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Wrap all buttons and constrain to 100% width on mobile */
    .btn,
    .btn-primary-pill,
    .btn-outline-pill,
    .btn-outline-teal,
    .btn-outline-white,
    .btn-outline-glass,
    .contact-us-btn,
    .compact-teal-btn,
    .ml-btn-red-pill,
    .ml-btn-outline-pill,
    .ml-btn-teal-outline,
    .tr-btn-red-pill,
    .tr-btn-outline-pill,
    .in-btn-red-pill,
    .in-btn-outline-pill,
    .in-btn-subscribe,
    .ab-btn-red-pill,
    .ab-btn-outline-pill,
    .ab-btn-maroon-pill,
    .ab-btn-outline-white-pill,
    .co-btn-red-pill,
    .co-btn-outline-pill,
    .co-btn-submit,
    .co-btn-maroon-pill,
    .co-btn-outline-white-pill {
        white-space: normal !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        line-height: 1.35 !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* Heading responsiveness & removal of rigid desktop line breaks on mobile */
    .hero-title,
    .light-hero-title,
    .triz-hero-title,
    .ml-hero-title,
    .tr-hero-title,
    .in-hero-title,
    .ab-hero-title,
    .co-hero-title,
    .who-help-hero .hero-title,
    .approach-hero .hero-title,
    .heading-1 {
        font-size: clamp(1.4rem, 6.2vw, 1.85rem) !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }

    .hero-title br,
    .light-hero-title br,
    .triz-hero-title br,
    .ml-hero-title br,
    .tr-hero-title br,
    .in-hero-title br,
    .ab-hero-title br,
    .co-hero-title br,
    .heading-1 br {
        display: none !important;
    }

    .hero-title span,
    .light-hero-title span,
    .triz-hero-title span,
    .ml-hero-title span,
    .tr-hero-title span,
    .in-hero-title span,
    .ab-hero-title span,
    .co-hero-title span {
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        display: inline !important;
    }

    .hero-description,
    .hero-subtitle,
    .light-hero-desc,
    .cta-banner-subtitle,
    .home-hero .hero-description,
    .home-hero .hero-subtext,
    .solutions-hero .hero-description,
    .solutions-hero .hero-subtext,
    .co-hero-subtitle {
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        font-size: clamp(0.92rem, 3.8vw, 1.05rem) !important;
        line-height: 1.55 !important;
    }

    .hero-actions,
    .light-hero-actions,
    .cta-banner-actions,
    .metalens-actions,
    .co-hero-actions,
    .tr-hero-actions,
    .ab-hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 12px !important;
    }

    .metalens-actions {
        align-items: center !important;
    }

    .metalens-actions .link-arrow {
        justify-content: center !important;
        text-align: center !important;
        width: min(100%, 320px) !important;
    }

    .hero-actions {
        align-items: center !important;
    }

    .hero-actions .btn {
        width: min(100%, 320px) !important;
        min-height: 48px !important;
        padding: 12px 18px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .light-hero-actions,
    .cta-banner-actions {
        align-items: center !important;
    }

    .light-hero-actions .btn,
    .cta-banner-actions .btn {
        width: min(100%, 345px) !important;
        min-height: 44px !important;
        padding: 14px 20px !important;
        border-radius: 8px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .light-hero-actions .solution-case-study-cta {
        width: min(100%, 230px) !important;
    }

    .light-hero-section {
        min-height: auto !important;
        padding: 40px 0 36px !important;
    }

    .light-hero-layout,
    .receive-layout,
    .solutions-layout,
    .why-layout,
    .specialist-layout,
    .training-layout {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .light-hero-image-wrap,
    .receive-image-wrap {
        height: auto !important;
        max-height: 280px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .light-hero-img,
    .receive-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .in-email-wrap {
        min-width: 0 !important;
        width: 100% !important;
    }
    .stats-partner-section {
        padding: 28px 0 44px;
    }
    .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 20px;
        padding: 22px 14px;
    }
    .stat-item {
        border-right: 1px solid var(--color-border-rose);
        border-bottom: 1px solid var(--color-border-rose);
        min-height: 88px;
        padding: 16px 8px;
    }
    .stat-item:nth-child(2),
    .stat-item:nth-child(4) {
        border-right: none;
    }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }
    .stat-item:last-child {
        border-right: none;
        border-bottom: none;
    }
    .stat-value {
        font-size: clamp(1.35rem, 6.5vw, 1.8rem);
    }
    .stat-logo {
        height: auto;
        max-width: min(132px, 86%);
    }
    .stat-label {
        font-size: clamp(0.68rem, 3.1vw, 0.82rem);
    }
    .partner-subtext,
    .partner-summary {
        font-size: 0.98rem;
        line-height: 1.65;
    }
    .cases-cards-row {
        grid-template-columns: 1fr;
    }
    .achieve-grid,
    .business-need-grid,
    .metalens-cards-grid,
    .who-grid,
    .engagement-grid,
    .what-triz-grid,
    .problem-checklist-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .timeline-container::before {
        left: 20px;
    }
    .timeline-node {
        left: 20px;
    }
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        text-align: left !important;
    }
    .timeline-arrow {
        left: 20px;
    }
    .persona-row {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 50px;
    }
    .persona-row-rtl .persona-content {
        text-align: left !important;
        order: 2;
    }
    .persona-row-rtl .persona-image-wrap {
        order: 1;
    }
    .persona-row-rtl .persona-list-rtl .persona-item {
        justify-content: flex-start !important;
        flex-direction: row-reverse;
        justify-content: flex-end !important;
    }
}

/* ==========================================================================
   Who We Help Page (Page 12) Styles
   ========================================================================== */
.who-help-hero {
    background-color: #091624;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
    padding: 60px 0;
}

.who-help-hero .hero-title {
    font-size: 3rem;
}

.who-help-hero .hero-subtitle {
    color: #C9C6C5;
    margin-bottom: 2.8rem;
}

.personas-section {
    background-color: #FFFFFF;
    padding: 95px 0 70px;
}

.persona-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 85px;
}

.persona-row-rtl {
    grid-template-columns: 0.95fr 1.05fr;
}

.persona-row:last-child {
    margin-bottom: 0;
}

.persona-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    aspect-ratio: 16 / 10;
    width: 100%;
}

.persona-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.persona-content {
    display: flex;
    flex-direction: column;
}

.persona-title {
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 1.15rem;
    line-height: 1.25;
}

.persona-desc {
    font-size: 1.05rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.persona-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.persona-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.persona-item-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #2D3748;
    line-height: 1.45;
}

.persona-list-rtl .persona-item {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .personas-section {
        padding: 58px 0 44px;
    }

    .persona-row,
    .persona-row-rtl {
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin-bottom: 58px;
        align-items: stretch;
    }

    .persona-row .persona-image-wrap,
    .persona-row-rtl .persona-image-wrap {
        order: 1 !important;
    }

    .persona-row .persona-content,
    .persona-row-rtl .persona-content {
        order: 2 !important;
    }

    .persona-image-wrap {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 10;
        border-radius: 14px;
    }

    .persona-content,
    .persona-row-rtl .persona-content,
    .persona-content.text-right {
        text-align: left !important;
        width: 100%;
    }

    .persona-title {
        font-size: 1.55rem;
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }

    .persona-desc {
        font-size: 0.98rem;
        line-height: 1.55;
        margin-bottom: 1.3rem;
    }

    .persona-list,
    .persona-list-rtl {
        gap: 12px;
    }

    .persona-item,
    .persona-list-rtl .persona-item,
    .persona-row-rtl .persona-list-rtl .persona-item,
    .persona-item.justify-end {
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: flex-start;
        gap: 12px;
    }

    .persona-item .solution-icon-box {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        margin-top: 2px;
    }

    .persona-item-text {
        font-size: 1rem;
        line-height: 1.35;
        flex: 1;
    }
}

/* ==========================================================================
   Case Studies Page (Page 13) Styles
   ========================================================================== */
.case-studies-hero {
    background-color: #091624;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
    padding: 60px 0;
}

.case-studies-hero .hero-subtitle {
    color: #C9C6C5;
    margin-bottom: 2.8rem;
}

.case-studies-main-section {
    background-color: #FFFFFF;
    padding: 95px 0 100px;
}

.cases-filter-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.cases-search-box {
    flex: 1;
    position: relative;
}

.cases-search-input {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    padding: 0 45px 0 18px;
    font-size: 0.98rem;
    font-family: inherit;
    color: var(--color-text-main);
    background-color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cases-search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(122, 28, 40, 0.1);
}

.cases-search-box .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 1rem;
    pointer-events: none;
}

.cases-filter-actions {
    display: flex;
    gap: 14px;
}

.filter-dropdown-btn {
    height: 48px;
    padding: 0 22px;
    border-radius: 10px;
    border: 1.5px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.filter-dropdown-btn:hover {
    background-color: #FFF0F2;
}

.cases-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
    row-gap: 38px;
}

.case-card {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.case-card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #F1F5F9;
}

.case-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.case-card:hover .case-card-img {
    transform: none;
}

.case-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.case-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 18px;
    min-height: 42px;
}

.case-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.case-card-link:hover {
    gap: 12px;
}

.cases-grid-3x2 .case-card:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 992px) {
    .cases-grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .cases-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .cases-filter-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .cases-grid-3x2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .case-card-title {
        min-height: auto;
    }
}

/* ==========================================================================
   Case Studies Drawer (PDF Pages 14-19)
   ========================================================================== */
.case-card {
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.case-card-link {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.case-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 15, 29, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.case-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.case-modal-dialog {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 720px;
    height: 100vh;
    max-height: 100vh;
    border-radius: 18px 0 0 18px;
    box-shadow: -24px 0 60px -24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-modal-backdrop.active .case-modal-dialog {
    transform: translateX(0);
}

.case-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #ffffff;
    border-bottom: 1px solid #edf0f5;
    z-index: 2;
    flex-shrink: 0;
}

.case-modal-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.case-modal-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #fff0f3;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
    letter-spacing: -0.01em;
}

.case-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-modal-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #4a5568;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.case-modal-nav-btn:hover:not(:disabled) {
    background: #f7fafc;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.case-modal-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.case-modal-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #334155;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.case-modal-close:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: rotate(90deg);
}

.case-modal-body {
    flex: 1;
    overflow-y: auto;
    background: #ffffff;
    padding: 0;
    display: block;
    -webkit-overflow-scrolling: touch;
}

/* Modal Inner Container */
.case-modal-inner {
    width: 100%;
    background: #ffffff;
}

/* 1. Only Image: The Case Study Photo */
.case-modal-img-container {
    padding: 24px 32px 20px;
    background: #ffffff;
}

.case-modal-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* 2. Coded Stats Strip */
.modal-stats-strip {
    background: #fdf2f4;
    border-top: 1px solid #fecdd3;
    border-bottom: 1px solid #fecdd3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 16px 24px;
    gap: 12px;
}

.modal-stat-col {
    text-align: center;
    position: relative;
    padding: 4px 8px;
}

.modal-stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: #fbcfe8;
}

.modal-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.modal-partner-logo {
    height: 22px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin: 0 auto 4px;
    display: block;
}

.modal-stat-sub {
    font-size: 0.78rem;
    color: #4b5563;
    line-height: 1.3;
}

/* 3. Coded Content Details */
.modal-content-details {
    padding: 36px 44px 44px;
}

.modal-detail-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin: 0 0 36px 0;
    letter-spacing: -0.02em;
}

.modal-detail-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.modal-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.modal-icon-badge {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    background: #881337;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 2px;
    box-shadow: 0 3px 8px rgba(136, 19, 55, 0.2);
}

.modal-detail-info {
    flex: 1;
}

.modal-item-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.modal-item-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.modal-item-disclaimer {
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.55;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
}

@media (max-width: 768px) {
    .case-modal-backdrop {
        align-items: flex-end;
        justify-content: center;
        padding: 0;
    }
    .case-modal-dialog {
        max-width: 100%;
        height: auto;
        max-height: calc(100dvh - 42px);
        border-radius: 18px 18px 0 0;
        transform: translateY(100%);
    }
    .case-modal-backdrop.active .case-modal-dialog {
        transform: translateY(0);
    }
    .case-modal-header {
        padding: 12px 16px;
    }
    .case-modal-title {
        font-size: 1rem;
    }
    .case-modal-img-container {
        padding: 16px;
    }
    .case-modal-photo {
        height: 240px;
        border-radius: 10px;
    }
    .modal-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px 16px;
        gap: 16px 8px;
    }
    .modal-stat-col:nth-child(2)::after {
        display: none;
    }
    .modal-content-details {
        padding: 24px 20px 32px;
    }
    .modal-detail-title {
        font-size: 1.35rem;
        margin-bottom: 24px;
    }
    .modal-detail-list {
        gap: 20px;
    }
}

/* ==========================================================================
   Our Approach Page (Page 20 of TRIZ Asia Designs v4)
   ========================================================================== */
.approach-hero {
    background-color: #000814;
    background-size: 92% auto !important;
    background-position: center 46% !important;
    background-repeat: no-repeat !important;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
    position: relative;
    padding: 60px 0;
}

.approach-hero .hero-title {
    font-size: 3rem;
}

.approach-hero .hero-subtitle {
    margin-bottom: 1.6rem;
}

@media (max-width: 768px) {
    .approach-hero {
        background-size: cover !important;
        background-position: center center !important;
        min-height: calc(100vh - var(--site-header-height, 56px));
        min-height: calc(100dvh - var(--site-header-height, 56px));
    }

    .approach-hero .hero-overlay {
        background: linear-gradient(180deg, rgba(8, 18, 30, 0.62) 0%, rgba(5, 12, 22, 0.78) 72%);
    }
}

/* 1. The Six Stage Path Section */
.six-stage-section {
    padding: 100px 0 110px;
    background-color: #ffffff;
    position: relative;
}

.timeline-container {
    max-width: 1080px;
    margin: 60px auto 0;
    position: relative;
}

/* Central vertical spine */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 3px;
    background: linear-gradient(90deg, #FF96A2 -0.35%, #66001E 100.35%);
    transform: translateX(-50%);
    z-index: 1;
}

.six-stage-section .timeline-container {
    padding-bottom: 44px;
}

.six-stage-section .timeline-container::before {
    bottom: 44px;
}

.six-stage-section .timeline-container::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 40px;
    width: 18px;
    height: 18px;
    border-right: 5px solid #881337;
    border-bottom: 5px solid #881337;
    border-radius: 2px;
    transform: translateX(-50%) rotate(45deg);
    z-index: 3;
}

.timeline-step {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 56px;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Alternating Left vs Right */
.timeline-step-left {
    flex-direction: row;
}

.timeline-step-right {
    flex-direction: row-reverse;
}

.timeline-content-box {
    width: calc(50% - 40px);
    background: transparent;
}

.timeline-step-left .timeline-content-box {
    text-align: right;
    padding-right: 24px;
}

.timeline-step-right .timeline-content-box {
    text-align: left;
    padding-left: 24px;
}

/* The central dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: #881337;
    border: 3px solid #881337;
    border-radius: 50%;
    z-index: 3;
    /* box-shadow: 0 0 0 2px #f43f5e; */
}

/* Empty half space to keep grid balanced */
.timeline-spacer {
    width: calc(50% - 40px);
}

.stage-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.stage-description {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* 2. Methods Selected Section */
.methods-section {
    padding: 100px 0 110px;
    background-color: #ffffff;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.method-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.method-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.method-desc {
    font-size: 0.93rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* 3. Cross Domain Knowledge Section */
.cross-domain-section {
    padding: 90px 0 110px;
    background-color: #ffffff;
}

.cross-domain-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cross-domain-content {
    max-width: 520px;
}

.cross-domain-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cross-domain-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.cross-domain-img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.cross-domain-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .cross-domain-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cross-domain-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
        transform: none;
    }
    .six-stage-section .timeline-container::after {
        left: 20px;
    }
    .timeline-step,
    .timeline-step-left,
    .timeline-step-right {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 45px;
        margin-bottom: 40px;
    }
    .timeline-content-box {
        width: 100%;
        text-align: left !important;
        padding: 0 !important;
    }
    .timeline-dot {
        left: 20px;
        top: 6px;
        transform: translateX(-50%);
    }
    .timeline-spacer {
        display: none;
    }
    .methods-grid {
        grid-template-columns: 1fr;
    }
    .cross-domain-heading {
        font-size: 1.75rem;
    }
}






/* ============================================================
   OUR APPROACH SUB-PAGES (Pages 21, 22, 23)
   TRIZ Application / Innovation / Technology Scouting
   ============================================================ */

/* Hero for sub-pages */
.approach-sub-hero {
    background: linear-gradient(135deg, #0f1d2e 0%, #1a3a5c 60%, #0d2940 100%);
    min-height: 540px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.approach-sub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(0, 188, 212, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Breadcrumb */
.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: rgba(255,255,255,0.9);
}

.breadcrumb-sep {
    font-size: 1rem;
    opacity: 0.5;
}

/* Sub-section padding */
.approach-sub-section {
    padding: 90px 0 100px;
}

.bg-light-section {
    background-color: #f8fafc;
}

/* Two column layout */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.two-col-left {}
.two-col-right {}

/* Section label tag heading */
.section-label-tag {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.section-body-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 0;
}

.sub-section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

/* Benefit list (checkmark-style) */
.triz-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.triz-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: #334155;
    line-height: 1.55;
    font-weight: 500;
}

.benefit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4, #0288d1);
    flex-shrink: 0;
    margin-top: 7px;
}

/* TRIZ at TRIZ Asia card */
.triz-at-trizasia-card {
    background: linear-gradient(135deg, #0f1d2e 0%, #1a3a5c 100%);
    border-radius: 20px;
    padding: 40px 36px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(15, 29, 46, 0.25);
    position: relative;
    overflow: hidden;
}

.triz-at-trizasia-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(0, 188, 212, 0.1);
    pointer-events: none;
}

.triz-at-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.triz-at-card-desc {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin: 0;
}

/* Core Concepts Grid */
.core-concepts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.concept-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}

.concept-card:hover {
    border-color: #00bcd4;
    box-shadow: 0 12px 32px rgba(0, 188, 212, 0.12);
    transform: translateY(-4px);
}

.concept-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(2, 136, 209, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: #0288d1;
}

.concept-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.concept-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* FOS Steps Grid */
.fos-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fos-step-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.28s ease;
    position: relative;
}

.fos-step-card:hover {
    border-color: #00bcd4;
    box-shadow: 0 12px 32px rgba(0, 188, 212, 0.1);
    transform: translateY(-4px);
}

.fos-step-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(0, 188, 212, 0.15);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.fos-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.fos-step-desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Responsive: Approach Sub-pages */
@media (max-width: 1200px) {
    .core-concepts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .core-concepts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fos-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .approach-sub-hero {
        min-height: 460px;
    }
    .core-concepts-grid {
        grid-template-columns: 1fr;
    }
    .fos-steps-grid {
        grid-template-columns: 1fr;
    }
    .section-label-tag {
        font-size: 1.35rem;
    }
    .approach-sub-section {
        padding: 64px 0 72px;
    }
}


/* ==========================================================================
   METALENS PAGE — DEDICATED STYLES (Faithfully matching PDF Page 24)
   ========================================================================== */

/* --- HERO --- */
.ml-hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
    background-color: #0a1726;
    background-image: url('../images/metalens/meta-lens-hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 60px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.ml-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 20, 32, 0.78) 0%, rgba(1, 45, 52, 0.68) 50%, rgba(5, 12, 22, 0.86) 60%);
}

.ml-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ml-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ml-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.ml-hero-title-accent {
    font-family: inherit;
    font-style: normal;
    font-weight: 800;
    color: #ff7d88;
    display: inline-block;
    letter-spacing: -0.025em;
}

.ml-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.65;
    color: #C9C6C5;
    max-width: 700px;
    margin: 0 auto 2.2rem;
}

.ml-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ml-hero-actions .btn {
    min-width: 342px;
    min-height: 58px;
}

.ml-btn-red-pill {
    background: #8b1d24;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(139, 29, 36, 0.35);
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
}

.ml-btn-red-pill:hover {
    background: #a8242c;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 29, 36, 0.45);
}

.ml-btn-outline-pill {
    background: rgba(1, 45, 52, 0.4);
    color:rgba(171, 236, 245, 1) !important;
    border: 1.5px solid #00d2b4;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.ml-btn-outline-pill:hover {
    background: rgba(0, 210, 180, 0.2);
    border-color: #00e6c6;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.ml-btn-arrow-down {
    font-size: 0.85rem;
    color: #00d2b4;
}

/* --- COMMON SECTION STYLES --- */
.ml-content-section {
    padding: 85px 0;
    position: relative;
}

.bg-subtle-section {
    background-color: #fbfcfd;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.ml-serif-title {
    font-family: var(--font-heading);
    font-style: italic;
    color: #700c18;
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.35rem;
    letter-spacing: -0.02em;
}

.ml-section-heading-left {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.22;
    margin-bottom: 1.35rem;
    letter-spacing: -0.02em;
}

.ml-section-title-center {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.ml-italic-accent {
    font-family: inherit;
    font-style: italic;
    color: #700c18;
    font-weight: 700;
}

.ml-body-paragraph {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.25rem;
}

.ml-body-paragraph:last-child {
    margin-bottom: 0;
}

.ml-two-col-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.ml-two-col-grid.align-center {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
}

/* --- VIDEO CARD --- */
.ml-video-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid #e2e8f0;
}

.ml-video-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.ml-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #014751;
    font-size: 1.6rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    padding-left: 5px; /* visually center play triangle */
}

.ml-video-card:hover .ml-video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #8b1d24;
    color: #fff;
    border-color: #8b1d24;
}

/* --- WHAT METALENS IS (LOGO CARD) --- */
.ml-mint-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 89, 101, 0.08);
}

.ml-mint-logo-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* --- PRIMARY USE CASES (2x2) --- */
.ml-usecases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}

.ml-usecase-card {
    background: #fff;
    border: 1.5px solid #e8edf2;
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.28s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.ml-usecase-card:hover {
    border-color: #8b1d24;
    box-shadow: 0 12px 32px rgba(139, 29, 36, 0.09);
    transform: translateY(-4px);
}

.ml-usecase-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #8b1d24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    transition: transform 0.25s ease;
}

.ml-usecase-card:hover .ml-usecase-arrow {
    transform: translateX(4px);
    background: #a8242c;
}

.ml-usecase-title {
    font-size: 1.28rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.ml-usecase-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* --- HOW METALENS WORKS (TIMELINE & INFOGRAPHIC) --- */
.ml-timeline-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto 60px;
    padding: 10px 0 44px;
}

.ml-timeline-line {
    position: absolute;
    top: 0;
    bottom: 44px;
    left: 50%;
    width: 3px;
    background: linear-gradient(90deg, #FF96A2 -0.35%, #66001E 100.35%);
    transform: translateX(-50%);
}

.ml-timeline-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 40px;
    width: 18px;
    height: 18px;
    border-right: 5px solid #881337;
    border-bottom: 5px solid #881337;
    border-radius: 2px;
    transform: translateX(-50%) rotate(45deg);
    z-index: 3;
}

.ml-timeline-item {
    position: relative;
    width: 50%;
    padding: 18px 36px;
    box-sizing: border-box;
}

.ml-timeline-left {
    left: 0;
    text-align: right;
}

.ml-timeline-right {
    left: 50%;
    text-align: left;
}

.ml-timeline-dot {
    position: absolute;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #881337;
    border: 2.5px solid #881337;
    /* box-shadow: 0 0 0 2px #c22026; */
    z-index: 2;
}

.ml-timeline-left .ml-timeline-dot {
    right: -6px;
}

.ml-timeline-right .ml-timeline-dot {
    left: -6px;
}

.ml-timeline-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.ml-timeline-step-desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.ml-infographic-card {
    max-width: 1140px;
    margin: 0 auto;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.ml-infographic-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* --- WHAT MAKES METALENS DIFFERENT --- */
.ml-tablet-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
}

.ml-tablet-img {
    width: 100%;
    height: auto;
    display: block;
}

.ml-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ml-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ml-feature-badge {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #8b1d24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.ml-feature-text {
    flex: 1;
}

.ml-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.ml-feature-desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* --- APPLICATIONS ACROSS THE ORGANIZATION --- */
.ml-section-title-stacked {
    text-align: center;
    margin-bottom: 1rem;
}

.ml-accent-large {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 2px;
}

.ml-main-heading-dark {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    display: block;
}

.ml-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ml-app-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 26px 26px;
    overflow: hidden;
    transition: all 0.28s ease;
}

.ml-app-card:hover {
    border-color: #8b1d24;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 29, 36, 0.08);
}

.ml-app-number {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 4.6rem;
    font-weight: 900;
    color: #edf2f7;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.ml-app-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #014751;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
}

.ml-app-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* --- ENGAGEMENT MODELS --- */
.ml-eng-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ml-eng-card {
    background: #fff;
    border: 1.5px solid #e8edf2;
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.28s ease;
}

.ml-eng-card:hover {
    border-color: #014751;
    box-shadow: 0 10px 28px rgba(1, 71, 81, 0.08);
    transform: translateY(-3px);
}

.ml-eng-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid #f1f5f9;
}

.ml-eng-desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* --- RESPONSIBLE USE (SOFT PINK CARD) --- */
.ml-responsible-wrapper {
    padding: 50px 0 60px;
}

.ml-pink-box {
    background: #fdf3f3;
    border: 1.5px solid #f8cfcf;
    border-radius: 14px;
    padding: 36px 40px;
}

.ml-pink-title {
    color: #b91c1c;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.ml-pink-desc {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* --- FREQUENTLY ASKED QUESTIONS --- */
.ml-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ml-faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.ml-faq-item.ml-faq-open {
    border-color: #014751;
    box-shadow: 0 6px 20px rgba(1, 71, 81, 0.06);
}

.ml-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.ml-faq-question:hover {
    color: #014751;
}

.ml-faq-item.ml-faq-open .ml-faq-question {
    color: #014751;
}

.ml-faq-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.ml-faq-item.ml-faq-open .ml-faq-chevron {
    background: #014751;
    border-color: #014751;
    color: #fff;
}

.ml-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 28px;
    font-size: 0.96rem;
    color: #64748b;
    line-height: 1.7;
}

.ml-faq-item.ml-faq-open .ml-faq-answer {
    padding: 0 28px 22px;
}

.ml-faq-answer p {
    margin: 0;
}

/* --- CTA BANNER --- */
.ml-cta-section {
    padding: 40px 0 90px;
}

.ml-cta-card {
    background: #014751;
    border-radius: 20px;
    padding: 64px 48px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(1, 71, 81, 0.22);
}

.ml-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.ml-cta-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.88);
}

.ml-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ml-btn-teal-outline {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.ml-btn-teal-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   METALENS PAGE — RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .ml-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .ml-hero-title {
        font-size: 2.5rem;
    }
    .ml-two-col-grid,
    .ml-two-col-grid.align-center {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ml-apps-grid,
    .ml-eng-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ml-usecases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ml-hero-section {
        min-height: calc(100vh - var(--site-header-height, 56px));
        min-height: calc(100dvh - var(--site-header-height, 56px));
        padding: 56px 0;
        background-position: center center;
    }
    .ml-hero-title {
        font-size: 2rem;
    }
    .ml-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .ml-timeline-line {
        left: 24px;
    }
    .ml-timeline-wrapper::after {
        left: 24px;
    }
    .ml-timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
        padding-right: 20px;
    }
    .ml-timeline-dot {
        left: 18px !important;
        right: auto !important;
    }
    .ml-apps-grid,
    .ml-eng-grid {
        grid-template-columns: 1fr;
    }
    .ml-pink-box {
        padding: 24px 20px;
    }
    .ml-cta-card {
        padding: 40px 24px;
    }
    .ml-cta-title {
        font-size: 1.65rem;
    }
    .ml-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   TRAINING PAGE — DEDICATED STYLES (Faithfully matching PDF Page 25)
   ========================================================================== */

/* --- HERO --- */
.tr-hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
    background-color: #0a1726;
    background-image: url('../images/training/training-hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 60px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.tr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 30, 0.68) 0%, rgba(5, 12, 22, 0.82) 60%);
}

.tr-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.tr-hero-content {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
}

.tr-hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: #ffffff;
    white-space: nowrap;
}

.tr-hero-title-accent {
    font-family: inherit;
    font-style: normal;
    font-weight: 800;
    color: #ff7d88;
    display: inline-block;
}

.tr-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.65;
    color: #C9C6C5;
    max-width: 780px;
    margin: 0 auto 2.2rem;
}

.tr-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tr-btn-red-pill {
    background: #8b1d24;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(139, 29, 36, 0.35);
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
}

.tr-btn-red-pill:hover {
    background: #a8242c;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 29, 36, 0.45);
}

.tr-btn-outline-pill {
    background: rgba(255, 255, 255, 0.15);
    color: #a7eff8 !important;
    border: 2px solid #a7eff8 !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.tr-btn-outline-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* --- COMMON TRAINING SECTION STYLES --- */
.tr-content-section {
    padding: 85px 0;
    position: relative;
}

.tr-section-heading-left {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.22;
    margin-bottom: 1.35rem;
    letter-spacing: -0.02em;
}

.tr-section-title-center {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.tr-italic-accent {
    font-family: inherit;
    font-style: italic;
    color: #700c18;
    font-weight: 700;
}

.tr-body-paragraph {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.25rem;
}

.tr-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.tr-rounded-media-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border: 1.5px solid #e2e8f0;
}

.tr-media-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- LEARNING PATHWAYS (3x2 GRID WITH NUMBERS) --- */
.tr-pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tr-pathway-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 26px 26px;
    overflow: hidden;
    transition: all 0.28s ease;
}

.tr-pathway-card:hover {
    border-color: #8b1d24;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 29, 36, 0.08);
}

.tr-pathway-num {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 4.6rem;
    font-weight: 900;
    color: #edf2f7;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.tr-pathway-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #014751;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    line-height: 1.35;
}

.tr-pathway-desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tr-pathway-card.engagement-card {
    background-color: #F8F6F6;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    min-height: 194px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.tr-pathway-card.engagement-card:hover {
    border-color: rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tr-pathway-card .engagement-card-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 28px;
    align-items: start;
}

.tr-pathway-card .engagement-card-title {
    min-width: 0;
}

.tr-pathway-card .engagement-card-num {
    justify-self: end;
    align-self: start;
}

/* --- METHODS COVERED (3-COLUMN CHECKMARKS) --- */
.tr-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tr-methods-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tr-method-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tr-method-badge {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #8b1d24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.tr-method-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

/* --- WHO SHOULD ATTEND (3x2 ARROW CARDS) --- */
.tr-attendees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tr-attendee-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 22px;
    transition: all 0.28s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tr-attendee-card:hover {
    border-color: #8b1d24;
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(139, 29, 36, 0.08);
}

.tr-attendee-badge {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #8b1d24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.tr-attendee-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #014751;
    margin: 0;
    line-height: 1.35;
}

/* --- FAQ ACCORDION --- */
.tr-faq-list {
    max-width: 920px;
    margin: 0 auto;
}

.tr-faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.tr-faq-question {
    width: 100%;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.tr-faq-question:hover {
    color: #8b1d24;
}

.tr-faq-chevron {
    color: #0f172a;
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.2s ease;
    flex-shrink: 0;
}

.tr-faq-open .tr-faq-chevron {
    transform: rotate(180deg);
    color: #8b1d24;
}

.tr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.tr-faq-answer p {
    padding-bottom: 22px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* --- BOTTOM CTA --- */
.tr-cta-section {
    padding: 70px 0 90px;
}

.tr-cta-card {
    background: #005965;
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 89, 101, 0.18);
}

.tr-cta-title {
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.tr-cta-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.88);
}

.tr-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* --- RESPONSIVE FOR TRAINING PAGE --- */
@media (max-width: 992px) {
    .tr-hero-title {
        font-size: 2.4rem;
        white-space: normal;
    }
    .tr-two-col-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tr-pathways-grid,
    .tr-methods-grid,
    .tr-attendees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tr-hero-section {
        min-height: calc(100vh - var(--site-header-height, 56px));
        min-height: calc(100dvh - var(--site-header-height, 56px));
        padding: 56px 0;
        background-position: center center;
    }
    .tr-hero-title {
        font-size: 1.95rem;
    }
    .tr-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .tr-pathways-grid,
    .tr-methods-grid,
    .tr-attendees-grid {
        grid-template-columns: 1fr;
    }
    .tr-cta-card {
        padding: 40px 24px;
    }
    .tr-cta-title {
        font-size: 1.65rem;
    }
    .tr-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   INSIGHTS PAGE — DEDICATED STYLES (Faithfully matching PDF Page 26)
   ========================================================================== */

/* --- HERO --- */
.in-hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
    background-color: #091624;
    background-image: url('../images/insights/insight-hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 60px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.in-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 30, 0.68) 0%, rgba(5, 12, 22, 0.82) 20%);
}

.in-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.in-hero-content {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.in-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.in-hero-title-accent {
    font-family: inherit;
    font-style: normal;
    font-weight: 800;
    color: #ff7d88;
    display: inline-block;
}

.in-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.65;
    color: #C9C6C5;
    max-width: 820px;
    margin: 0 auto 2.2rem;
}

.in-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.in-btn-red-pill {
    background: #8b1d24;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(139, 29, 36, 0.35);
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
}

.in-btn-red-pill:hover {
    background: #a8242c;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 29, 36, 0.45);
}

.in-btn-outline-pill {
    /* background: rgba(255, 255, 255, 0.15); */
    color: #a7eff8 !important;
    border: 2px solid #a7eff8 !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.in-btn-outline-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* --- ARTICLES SECTION --- */
.in-articles-section {
    padding: 85px 0 95px;
    background-color: #ffffff;
}

.in-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.in-search-box {
    position: relative;
    flex: 1;
    max-width: 820px;
}

.in-search-input {
    width: 100%;
    padding: 12px 42px 12px 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
    color: #1e293b;
    background: #ffffff;
}

.in-search-input:focus {
    border-color: #700c18;
}

.in-search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
}

.in-filter-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.in-dropdown-btn {
    padding: 10px 22px;
    border: 1.5px solid #700c18;
    color: #700c18;
    background: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.in-dropdown-btn:hover {
    background: #fdf2f4;
}

/* --- ARTICLES SCROLLER --- */
.in-articles-grid {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 12px clamp(24px, 5vw, 80px) 24px;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.in-articles-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.in-articles-grid.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

.in-articles-grid.is-auto-scrolling {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.in-article-card {
    flex: 0 0 255px;
    width: 255px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.28s ease;
    display: flex;
    flex-direction: column;
}

.in-article-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 14px;
    background: #f1f5f9;
}

.in-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.in-article-card:hover .in-article-img {
    transform: scale(1.05);
}

.in-article-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.in-article-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #fdf2f4;
    color: #700c18;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.in-article-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 14px;
    flex: 1;
}

.in-article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.in-article-title a:hover {
    color: #700c18;
}

.in-article-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #700c18;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.in-article-card:hover .in-article-link {
    gap: 10px;
}

/* --- STAY CONNECTED NEWSLETTER CARD --- */
.in-newsletter-section {
    padding: 0 0 90px;
}

.in-newsletter-card {
    border: 1.5px solid #005965;
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    max-width: 1140px;
    margin: 0 auto;
    background: #ffffff;
}

.in-newsletter-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.in-newsletter-desc {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 28px;
}

.in-newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 580px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.in-email-wrap {
    position: relative;
    flex: 1;
    min-width: 260px;
}

.in-email-input {
    width: 100%;
    padding: 12px 42px 12px 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    color: #1e293b;
    background: #ffffff;
}

.in-email-input:focus {
    border-color: #005965;
}

.in-email-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
}

.in-btn-subscribe {
    background: #8b1d24;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(139, 29, 36, 0.35);
}

.in-btn-subscribe:hover {
    background: #a8242c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 29, 36, 0.45);
}

/* --- BOTTOM CTA --- */
.in-cta-section {
    padding: 0 0 90px;
}

.in-cta-card {
    background: #005965;
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 89, 101, 0.18);
}

.in-cta-title {
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.in-cta-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.88);
}

.in-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* --- RESPONSIVE FOR INSIGHTS PAGE --- */
@media (max-width: 1200px) {
    .in-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .in-hero-title {
        font-size: 2.4rem;
    }
    .in-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .in-hero-section {
        min-height: calc(100vh - var(--site-header-height, 56px));
        min-height: calc(100dvh - var(--site-header-height, 56px));
        padding: 56px 0;
        background-position: center center;
    }
    .in-hero-title {
        font-size: 1.95rem;
    }
    .in-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .in-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .in-search-box {
        max-width: 100%;
    }
    .in-articles-grid {
        grid-template-columns: 1fr;
    }
    .in-newsletter-card {
        padding: 40px 20px;
    }
    .in-newsletter-title {
        font-size: 1.8rem;
    }
    .in-newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .in-email-wrap {
        width: 100%;
    }
    .in-btn-subscribe {
        width: 100%;
        justify-content: center;
    }
    .in-cta-card {
        padding: 40px 24px;
    }
    .in-cta-title {
        font-size: 1.65rem;
    }
    .in-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   ABOUT US PAGE (Page 27 of Design PDF)
   ========================================================================== */

/* 1. HERO SECTION */
.ab-hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
    background-color: #0b1828;
    background-image: url('../images/about/about-us-hero-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 26, 0.85) 0%, rgba(0, 0, 0) 60%);
    z-index: 1;
}

.ab-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.ab-hero-content {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.ab-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
    white-space: nowrap;
}

.ab-hero-title-accent {
    color: #ff7d88;
    font-weight: 800;
}

.ab-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.68;
    color: #C9C6C5;
    margin: 0 auto 36px;
    max-width: 860px;
}

.ab-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ab-btn-red-pill {
    background-color: #7a1727;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(122, 23, 39, 0.35);
}

.ab-btn-red-pill:hover {
    background-color: #5f111e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(122, 23, 39, 0.45);
}

.ab-btn-outline-pill {
    background: transparent;
    color: #a7eff8 !important;
    border: 2px solid #a7eff8 !important;
    border-radius: 50px;
    padding: 13px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.ab-btn-outline-pill:hover {
    background-color: rgba(0, 89, 101, 0.25);
    border-color: #007a8a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Shared Maroon Accent */
.ab-maroon-accent {
    color: #7a1727;
    font-style: italic;
    font-weight: 800;
}

/* 2. WHAT TRIZ ASIA STANDS FOR */
.ab-stands-section {
    padding: 95px 0 85px;
    background-color: #ffffff;
}

.ab-stands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ab-stands-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    display: block;
}

.ab-stands-title {
    font-size: 2.45rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 36px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.ab-stands-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ab-stand-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.ab-stand-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #7a1727;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-top: 3px;
    box-shadow: 0 2px 8px rgba(122, 23, 39, 0.25);
}

.ab-stand-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #005965;
    margin: 0 0 4px 0;
}

.ab-stand-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #4b5563;
    margin: 0;
}

/* 3. HOW TRIZ ASIA CREATES VALUE */
.ab-value-section {
    padding: 85px 0 95px;
    background-color: #ffffff;
}

.ab-value-title {
    font-size: 2.45rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

.ab-value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.ab-value-card {
    border-top: 2px solid #005965;
    padding-top: 24px;
}

.ab-value-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #005965;
    margin: 0 0 12px 0;
}

.ab-value-desc {
    font-size: 0.96rem;
    line-height: 1.62;
    color: #4b5563;
    margin: 0;
}

/* 4. LEADERSHIP SECTION */
.ab-leadership-section {
    padding: 95px 0 105px;
    background-color: #ffffff;
}

.ab-leadership-title {
    font-size: 2.45rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

.ab-leaders-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 36px;
}

.ab-leaders-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 390px));
    justify-content: center;
    gap: 32px;
}

.ab-leader-card {
    background-color: #f6f3ee;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ab-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.ab-leader-img-wrapper {
    width: 100%;
    height: 330px;
    overflow: hidden;
    background: #e8e4df;
}

.ab-leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ab-leader-info {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ab-leader-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 4px 0;
}

.ab-leader-role {
    font-size: 0.88rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 14px;
}

.ab-leader-bio {
    font-size: 0.86rem;
    line-height: 1.55;
    color: #4b5563;
    margin: 0;
}

/* 5. GLOBAL COLLABORATION */
.ab-collab-section {
    padding: 85px 0 100px;
    background-color: #ffffff;
}

.ab-collab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ab-collab-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab-collab-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.ab-collab-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #374151;
    margin: 0;
}

.ab-collab-quote {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
    padding-left: 0;
    border: none;
    font-style: normal;
}

.ab-collab-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    display: block;
}

/* 6. BOTTOM CTA BANNER */
.ab-cta-section {
    padding: 30px 0 90px;
    background-color: #ffffff;
}

.ab-cta-banner {
    background-color: #005965;
    border-radius: 28px;
    padding: 68px 48px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 89, 101, 0.22);
}

.ab-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.ab-cta-desc {
    font-size: 1.02rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.9);
    max-width: 880px;
    margin: 0 auto 36px;
}

.ab-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ab-btn-maroon-pill {
    background-color: #7a1727;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.ab-btn-maroon-pill:hover {
    background-color: #5f111e;
    color: #ffffff;
    transform: translateY(-2px);
}

.ab-btn-outline-white-pill {
    background: transparent;
    color: rgba(171, 236, 245, 1);
    border: 1.5px solid rgba(171, 236, 245, 1);
    border-radius: 50px;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.ab-btn-outline-white-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .ab-hero-title {
        font-size: 2.8rem;
        white-space: normal;
    }
}

@media (max-width: 992px) {
    .ab-hero-title {
        font-size: 2.4rem;
    }
    .ab-stands-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ab-value-grid {
        column-gap: 40px;
        row-gap: 36px;
    }
    .ab-leaders-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .ab-leaders-grid-2 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .ab-collab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ab-hero-section {
        min-height: calc(100vh - var(--site-header-height, 56px));
        min-height: calc(100dvh - var(--site-header-height, 56px));
        padding: 56px 0;
        background-position: center center;
    }
    .ab-hero-title {
        font-size: 1.95rem;
    }
    .ab-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .ab-stands-title,
    .ab-value-title,
    .ab-leadership-title,
    .ab-collab-title,
    .ab-cta-title {
        font-size: 1.85rem;
    }
    .ab-value-grid {
        grid-template-columns: 1fr;
    }
    .ab-leaders-grid-3 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 32px;
    }
    .ab-cta-banner {
        padding: 40px 24px;
    }
    .ab-cta-actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   CONTACT / DISCUSS A CHALLENGE PAGE (Page 28 of Design PDF)
   ========================================================================== */

/* 1. HERO SECTION */
.co-hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height, 85px));
    height: auto;
    background-color: #091624;
    background-image: url('../images/contact/discuss-challenge-hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.co-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 26, 0.82) 0%, rgba(6, 14, 22, 0.90) 60%);
    z-index: 1;
}

.co-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.co-hero-content {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.co-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
}

.co-hero-title-accent {
    color: #ff7d88;
    font-weight: 800;
}

.co-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.68;
    color: #C9C6C5;
    margin: 0 auto 40px;
    max-width: 1080px;
    white-space: nowrap;
}

.co-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.co-btn-red-pill {
    background-color: #7a1727;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(122, 23, 39, 0.35);
}

.co-btn-red-pill:hover {
    background-color: #5f111e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(122, 23, 39, 0.45);
}

.co-btn-outline-pill {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid #005965;
    border-radius: 50px;
    padding: 13px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.co-btn-outline-pill:hover {
    background-color: rgba(0, 89, 101, 0.25);
    border-color: #007a8a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* 2. FORM SECTION */
.co-form-section {
    padding: 70px 0 85px;
    background-color: #ffffff;
}

.co-success-alert {
    max-width: 1100px;
    margin: 0 auto 30px;
    background-color: #ecfdf5;
    border: 1.5px solid #a7f3d0;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #065f46;
}

.co-success-alert i {
    font-size: 1.8rem;
    color: #059669;
}

.co-alert-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.co-alert-text {
    font-size: 0.92rem;
    margin: 0;
    color: #047857;
}

.co-form-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 52px 56px 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.co-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 24px;
}

.co-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.co-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.co-required {
    color: #dc2626;
    font-weight: 700;
}

.co-input,
.co-textarea,
.co-select {
    width: 100%;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    padding: 13px 18px;
    font-size: 0.95rem;
    color: #111827;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.co-input::placeholder,
.co-textarea::placeholder {
    color: #9ca3af;
    font-size: 0.92rem;
}

.co-input:focus,
.co-textarea:focus,
.co-select:focus {
    border-color: #005965;
    box-shadow: 0 0 0 3px rgba(0, 89, 101, 0.12);
}

.co-select-wrapper {
    position: relative;
    width: 100%;
}

.co-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.co-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
    font-size: 0.95rem;
}

.co-textarea {
    resize: vertical;
    min-height: 85px;
}

.co-consent-row {
    margin-top: 26px;
    display: flex;
    align-items: center;
}

.co-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #4b5563;
    cursor: pointer;
    user-select: none;
}

.co-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #5C101D;
    cursor: pointer;
    border-radius: 4px;
}

.co-submit-row {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.co-btn-submit {
    background-color: #7a1727;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 42px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(122, 23, 39, 0.32);
}

.co-btn-submit:hover {
    background-color: #5f111e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(122, 23, 39, 0.45);
}

/* 3. DISCLAIMER BOX */
.co-disclaimer-box {
    max-width: 1100px;
    margin: 32px auto 0;
    background-color: #fbf3f3;
    border: 1px solid #f2d2d6;
    border-radius: 14px;
    padding: 18px 28px;
    text-align: center;
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.55;
}

/* 4. WHAT HAPPENS NEXT SECTION */
.co-next-section {
    padding: 75px 0 95px;
    background-color: #ffffff;
}

.co-next-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.co-next-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.co-next-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    letter-spacing: -0.01em;
}

.co-next-desc {
    font-size: 1.05rem;
    line-height: 1.68;
    color: #4b5563;
    margin: 0;
}

.co-next-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    display: block;
}

/* 5. BOTTOM CTA BANNER */
.co-cta-section {
    padding: 30px 0 90px;
    background-color: #ffffff;
}

.co-cta-banner {
    background-color: #005965;
    border-radius: 28px;
    padding: 68px 48px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 89, 101, 0.22);
}

.co-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.co-cta-desc {
    font-size: 1.02rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.9);
    max-width: 880px;
    margin: 0 auto 36px;
}

.co-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.co-btn-maroon-pill {
    background-color: #7a1727;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.co-btn-maroon-pill:hover {
    background-color: #5f111e;
    color: #ffffff;
    transform: translateY(-2px);
}

.co-btn-outline-white-pill {
    background: transparent;
    color: rgba(171, 236, 245, 1);
    
    border: 1.5px solid rgba(171, 236, 245, 1);
    border-radius: 50px;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.co-btn-outline-white-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .co-hero-title {
        font-size: 2.8rem;
    }
    .co-hero-subtitle {
        font-size: 1.25rem;
        white-space: normal;
    }
}

@media (max-width: 992px) {
    .co-hero-title {
        font-size: 2.4rem;
    }
    .co-form-grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
    .co-form-card {
        padding: 40px 32px;
    }
    .co-next-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .co-hero-section {
        min-height: calc(100vh - var(--site-header-height, 56px));
        min-height: calc(100dvh - var(--site-header-height, 56px));
        padding: 56px 0;
        background-position: center center;
    }
    .co-hero-title {
        font-size: 1.95rem;
    }
    .co-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .co-form-card {
        padding: 30px 18px;
    }
    .co-next-title,
    .co-cta-title {
        font-size: 1.85rem;
    }
    .co-cta-banner {
        padding: 40px 24px;
    }
    .co-cta-actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   PAGE 29: 404 NOT FOUND STYLES
   ========================================================================== */
.not-found-page-main {
    background-color: var(--color-bg-white);
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.not-found-section {
    width: 100%;
    padding: 60px 0 100px;
}

.not-found-container {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.not-found-illustration-wrapper {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 36px;
    display: flex;
    justify-content: center;
}

.not-found-illustration {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.03));
    transition: transform 0.4s ease;
}

.not-found-illustration:hover {
    transform: translateY(-4px);
}

.not-found-content {
    max-width: 820px;
    margin: 0 auto;
}

.not-found-title {
    font-family: var(--font-main);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-heading);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.not-found-subtitle {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.not-found-description {
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 34px;
}

.not-found-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-404-primary {
    background-color: #861C33;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #861C33;
    box-shadow: 0 4px 14px rgba(134, 28, 51, 0.2);
    transition: all 0.25s ease;
}

.btn-404-primary:hover {
    background-color: #6E1428;
    border-color: #6E1428;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(134, 28, 51, 0.3);
}

.btn-404-secondary {
    background-color: #FFFFFF;
    color: #296D75;
    font-weight: 600;
    font-size: 1rem;
    padding: 11px 26px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #296D75;
    transition: all 0.25s ease;
}

.btn-404-secondary:hover {
    background-color: #EBF7F9;
    color: #1E575E;
    border-color: #1E575E;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .not-found-title {
        font-size: 1.85rem;
    }
    .not-found-subtitle,
    .not-found-description {
        font-size: 1.05rem;
    }
    .not-found-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .btn-404-primary,
    .btn-404-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   PAGE 30: THANK YOU / SUBMISSION CONFIRMATION MODAL & PAGE
   ========================================================================== */
body.modal-open {
    overflow: hidden;
}

.ty-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.ty-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.ty-modal-card {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05);
    max-width: 840px;
    width: 100%;
    max-height: 94vh;
    overflow-y: auto;
    padding: 50px 48px 48px;
    text-align: center;
    animation: tyModalPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tyModalPopIn {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.ty-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    font-size: 1.35rem;
    cursor: pointer;
    background: #F3F4F6;
    border: none;
    transition: all 0.2s ease;
}

.ty-modal-close:hover {
    background: #E5E7EB;
    color: #111827;
    transform: rotate(90deg);
}

.ty-illustration-wrapper {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
}

.ty-illustration {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ty-modal-card:hover .ty-illustration {
    transform: scale(1.02);
}

.ty-content {
    max-width: 720px;
    margin: 0 auto;
}

.ty-title {
    font-family: var(--font-main);
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--color-text-heading);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 16px;
}

.ty-desc {
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.ty-subheading {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 26px;
}

.ty-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-ty-primary {
    background-color: #861C33;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #861C33;
    box-shadow: 0 4px 14px rgba(134, 28, 51, 0.2);
    transition: all 0.25s ease;
}

.btn-ty-primary:hover {
    background-color: #6E1428;
    border-color: #6E1428;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(134, 28, 51, 0.3);
}

.btn-ty-secondary {
    background-color: #EBF7F9;
    color: #296D75;
    font-weight: 600;
    font-size: 1rem;
    padding: 11px 26px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #296D75;
    transition: all 0.25s ease;
}

.btn-ty-secondary:hover {
    background-color: #D6F1F5;
    color: #1E575E;
    border-color: #1E575E;
    transform: translateY(-2px);
}

/* Standalone Page Styles */
.thank-you-page-main {
    background-color: var(--color-bg-white);
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.thank-you-standalone-section {
    width: 100%;
    padding: 60px 0 100px;
}

.ty-standalone-card {
    max-width: 860px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 28px;
    border: 1px solid #F0D5DC;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    padding: 50px 40px 48px;
    text-align: center;
}

@media (max-width: 768px) {
    .ty-modal-card,
    .ty-standalone-card {
        padding: 40px 20px 32px;
        border-radius: 20px;
    }
    .ty-title {
        font-size: 1.75rem;
    }
    .ty-desc,
    .ty-subheading {
        font-size: 1.05rem;
    }
    .ty-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .btn-ty-primary,
    .btn-ty-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   TRIZ Application Page (Page 21 from PDF)
   ========================================================================== */

/* Hero Section */
.triz-hero-section {
    background-color: #FFFFFF;
    padding: 75px 0 65px;
}

.triz-hero-layout {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 4rem;
    align-items: center;
}

.triz-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.triz-hero-title .text-maroon {
    color: var(--color-primary);
}

.triz-hero-desc {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.68;
    margin-bottom: 2.2rem;
    max-width: 580px;
}

.triz-hero-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.triz-hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* What TRIZ Helps Teams Do Section */
.triz-helps-section {
    background-color: #FFFFFF;
    padding: 85px 0 90px;
}

.triz-helps-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.triz-helps-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.triz-helps-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.triz-helps-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.triz-helps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.triz-helps-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.triz-check-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: 2px;
}

.triz-helps-text {
    font-size: 1.02rem;
    font-weight: 500;
    color: #1F2937;
    line-height: 1.45;
}

/* Core Concepts Section */
.triz-concepts-section {
    background-color: #FFFFFF;
    padding: 85px 0 95px;
}

.triz-concepts-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

.triz-concepts-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 3rem;
    margin-bottom: 3.5rem;
}

.triz-concepts-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 820px;
    margin: 0 auto;
}

.concept-item {
    display: flex;
    flex-direction: column;
}

.concept-teal-line {
    width: 100%;
    height: 1.5px;
    background-color: var(--color-teal-main);
    margin-bottom: 16px;
}

.concept-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-teal-main);
    margin-bottom: 10px;
}

.concept-item-desc {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
}

/* TRIZ at TRIZ Asia Section */
.triz-at-asia-section {
    padding-top: 6rem;
}

.triz-at-asia-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.triz-at-asia-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
}

.triz-at-asia-title .italic-maroon {
    font-style: italic;
    color: var(--color-primary);
}

.triz-at-asia-desc {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.7;
    max-width: 540px;
}

.triz-at-asia-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.triz-at-asia-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .triz-hero-layout,
    .triz-helps-layout,
    .triz-at-asia-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .triz-hero-title {
        font-size: 2.4rem;
    }
    .triz-concepts-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .triz-concepts-grid-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .triz-hero-section {
        padding: 40px 0 0;
    }

    .triz-hero-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .triz-hero-content {
        display: contents;
        text-align: left;
    }

    .triz-hero-title {
        order: 1;
        margin-bottom: 1.2rem;
    }

    .triz-hero-image-wrap {
        order: 4;
    }

    .triz-hero-title .text-maroon br {
        display: block !important;
    }

    .triz-hero-desc {
        order: 2;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .triz-hero-content > .light-hero-actions {
        order: 3;
        margin-bottom: 2.4rem;
    }

    .triz-hero-image-wrap,
    .triz-hero-img {
        border-radius: 18px;
    }

    .triz-concepts-grid-top {
        grid-template-columns: 1fr;
    }
    .triz-hero-title {
        font-size: 2rem;
    }
}

/* Reusable Approach Sub-page Sections (Pages 22 & 23) */
.approach-content-section {
    background-color: #FFFFFF;
    padding: 75px 0 85px;
}

.approach-two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.approach-two-col-layout.image-left {
    grid-template-columns: 0.95fr 1.05fr;
}

.approach-two-col-layout.image-right {
    grid-template-columns: 1.05fr 0.95fr;
}

.approach-section-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.35rem;
    letter-spacing: -0.01em;
}

.approach-section-title .italic-maroon {
    font-style: italic;
    color: var(--color-primary);
}

.approach-section-desc {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.72;
    max-width: 540px;
}

.approach-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.approach-section-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* FOS Process Step Cards (Page 23) */
.fos-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.fos-step-card {
    background-color: #FAFAFA;
    border: 1px solid #EAEAEA;
    border-radius: 18px;
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.fos-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.fos-step-num-watermark {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 4.2rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.07);
    line-height: 1;
    pointer-events: none;
    font-family: var(--font-heading);
}

.fos-step-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-teal-main);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.fos-step-card-desc {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Analogue Check List (Page 23) */
.analogue-list {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.analogue-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    text-align: right;
}

.analogue-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1F2937;
}

@media (max-width: 1024px) {
    .approach-two-col-layout,
    .approach-two-col-layout.image-left,
    .approach-two-col-layout.image-right {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .fos-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .analogue-item {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row-reverse;
    }
}

@media (max-width: 640px) {
    .fos-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BUTTON RADIUS NORMALIZATION
   ========================================================================== */
.btn,
.btn-primary-pill,
.btn-outline-glass,
.btn-outline-teal,
.btn-outline-white,
.contact-us-btn,
.compact-teal-btn,
.ml-btn-red-pill,
.ml-btn-outline-pill,
.ml-btn-teal-outline,
.tr-btn-red-pill,
.tr-btn-outline-pill,
.in-btn-red-pill,
.in-btn-outline-pill,
.ab-btn-red-pill,
.ab-btn-outline-pill,
.ab-btn-maroon-pill,
.ab-btn-outline-white-pill,
.co-btn-red-pill,
.co-btn-outline-pill,
.co-btn-maroon-pill,
.co-btn-outline-white-pill,
.nav-link.active-pill {
    border-radius: 10px;
}

/* ==========================================================================
   FIGMA TYPOGRAPHY ROLE MAPPING
   Keeps current markup/design while applying the shared type system.
   ========================================================================== */

/* Heading 1 */
.hero-title,
.light-hero-title,
.who-help-hero .hero-title,
.approach-hero .hero-title,
.ml-hero-title,
.tr-hero-title,
.in-hero-title,
.ab-hero-title,
.co-hero-title,
.triz-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0;
}

/* Heading 2 */
.section-title-center,
.approach-intro .section-title-center,
.systematic-intro .section-title-center,
.metalens-section .section-title-center,
.ml-section-heading,
.ml-section-heading-left,
.ml-section-title-center,
.ml-section-title-stacked,
.ml-main-heading-dark,
.tr-section-heading-left,
.tr-section-title-center,
.in-newsletter-title,
.in-cta-title,
.ab-section-heading,
.ab-values-title,
.ab-collab-title,
.ab-cta-title,
.co-form-title,
.co-next-title,
.co-cta-title,
.approach-section-title,
.section-label-tag,
.not-found-title,
.ty-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0;
}

/* Heading 2 italic accents */
.section-title-center em,
.ml-section-heading em,
.ml-section-title-center em,
.tr-section-title-center em,
.approach-section-title .italic-maroon,
.triz-hero-title .text-maroon,
.light-hero-title .text-maroon,
.ml-hero-title-accent,
.tr-hero-title-accent,
.in-hero-title-accent,
.ab-hero-title-accent,
.co-hero-title-accent {
    font-family: var(--font-heading);
    font-size: inherit;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0;
}

/* Heading 3 */
.cta-banner-title,
.ml-cta-title,
.tr-cta-title,
.in-cta-title,
.ab-cta-title,
.co-cta-title,
.cross-domain-title,
.specialist-title,
.training-title,
.solutions-title,
.triz-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
}

/* Heading 4 */
.achieve-title,
.solution-title,
.business-need-title,
.engagement-card-title,
.who-card-title,
.persona-title,
.stage-title,
.method-title,
.metalens-card-title,
.ml-usecase-title,
.ml-feature-title,
.ml-eng-title,
.tr-method-label,
.tr-pathway-card .engagement-card-title,
.tr-detail-title,
.in-article-title,
.case-card-title,
.case-title,
.ab-stand-title,
.ab-value-title,
.co-method-title,
.fos-step-card-title,
.concept-title,
.triz-at-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0;
}

/* Heading 5 */
.faq-question,
.case-modal-title,
.campaign-faq-question,
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0;
}

/* Buttons */
.btn,
.contact-us-btn,
.compact-teal-btn,
.ml-btn-red-pill,
.ml-btn-outline-pill,
.ml-btn-teal-outline,
.tr-btn-red-pill,
.tr-btn-outline-pill,
.in-btn-red-pill,
.in-btn-outline-pill,
.in-btn-subscribe,
.ab-btn-red-pill,
.ab-btn-outline-pill,
.ab-btn-maroon-pill,
.ab-btn-outline-white-pill,
.co-btn-red-pill,
.co-btn-outline-pill,
.co-btn-submit,
.co-btn-maroon-pill,
.co-btn-outline-white-pill,
.btn-404-primary,
.btn-404-secondary,
.btn-ty-primary,
.btn-ty-secondary,
.filter-dropdown-btn,
.in-dropdown-btn,
.case-modal-nav-btn {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
}

/* Large body */
.hero-description,
.hero-subtitle,
.light-hero-desc,
.ml-hero-subtitle,
.tr-hero-subtitle,
.in-hero-subtitle,
.ab-hero-subtitle,
.co-hero-subtitle,
.triz-hero-desc,
.cta-banner-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-weight: 400;
    letter-spacing: 0;
}

/* Medium body */
.section-subtitle-center,
.section-body-text,
.approach-section-desc,
.ml-body-paragraph,
.tr-body-paragraph,
.ml-cta-desc,
.tr-cta-desc,
.in-newsletter-desc,
.in-cta-desc,
.ab-collab-desc,
.ab-cta-desc,
.co-next-desc,
.co-cta-desc,
.cta-banner-desc,
.partner-summary,
.case-modal-body,
.not-found-description,
.not-found-subtitle,
.ty-desc,
.campaign-network-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
    letter-spacing: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
    letter-spacing: 0;
}

/* Small body */
.achieve-desc,
.solution-desc,
.business-need-desc,
.engagement-card-desc,
.who-card-desc,
.persona-desc,
.stage-description,
.method-desc,
.metalens-card-desc,
.ml-usecase-desc,
.ml-feature-desc,
.ml-eng-desc,
.ml-pink-desc,
.ml-timeline-step-desc,
.tr-pathway-card .engagement-card-desc,
.tr-pathway-desc,
.tr-detail-desc,
.insight-body,
.case-body,
.case-card-excerpt,
.case-modal-desc,
.ab-stand-desc,
.ab-value-desc,
.concept-desc,
.concept-item-desc,
.triz-at-card-desc,
.fos-step-card-desc,
.fos-step-desc,
.timeline-step-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 400;
    letter-spacing: 0;
}

/* Labels and captions */
.stat-label,
.tag-badge,
.case-body .tag-badge,
.in-article-tag,
.co-label,
.camp-label,
.section-eyebrow,
.case-category,
.ml-eyebrow,
.tr-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
}

/* Card numbers */
.engagement-card-num,
.who-num,
.tr-pathway-num,
.ml-app-number,
.fos-step-num,
.fos-step-num-watermark {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0;
}

@media (max-width: 1024px) {
    .heading-1,
    .hero-title,
    .light-hero-title,
    .who-help-hero .hero-title,
    .approach-hero .hero-title,
    .ml-hero-title,
    .tr-hero-title,
    .in-hero-title,
    .ab-hero-title,
    .co-hero-title,
    .triz-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .heading-1,
    .hero-title,
    .light-hero-title,
    .who-help-hero .hero-title,
    .approach-hero .hero-title,
    .ml-hero-title,
    .tr-hero-title,
    .in-hero-title,
    .ab-hero-title,
    .co-hero-title,
    .triz-hero-title {
        font-size: 2rem;
    }

    .heading-2,
    .heading-2---italic,
    .section-title-center,
    .approach-intro .section-title-center,
    .systematic-intro .section-title-center,
    .metalens-section .section-title-center,
    .ml-section-heading,
    .ml-section-heading-left,
    .ml-section-title-center,
    .ml-section-title-stacked,
    .ml-main-heading-dark,
    .tr-section-heading-left,
    .tr-section-title-center,
    .in-newsletter-title,
    .in-cta-title,
    .ab-section-heading,
    .ab-values-title,
    .ab-collab-title,
    .ab-cta-title,
    .co-form-title,
    .co-next-title,
    .co-cta-title,
    .approach-section-title,
    .section-label-tag,
    .not-found-title,
    .ty-title {
        font-size: 1.75rem;
    }

    .body-large---balanced,
    .body-large---pretty,
    .hero-description,
    .hero-subtitle,
    .light-hero-desc,
    .ml-hero-subtitle,
    .tr-hero-subtitle,
    .in-hero-subtitle,
    .ab-hero-subtitle,
    .co-hero-subtitle,
    .triz-hero-desc,
    .cta-banner-subtitle {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    .cta {
        font-size: 1.875rem;
    }

    .number-for-card {
        font-size: 5.5rem;
    }
}

@media (max-width: 480px) {
    .heading-1,
    .hero-title,
    .light-hero-title,
    .who-help-hero .hero-title,
    .approach-hero .hero-title,
    .ml-hero-title,
    .tr-hero-title,
    .in-hero-title,
    .ab-hero-title,
    .co-hero-title,
    .triz-hero-title {
        font-size: 1.875rem;
    }

    .heading-2,
    .heading-2---italic {
        font-size: 1.625rem;
    }
}

/* ==========================================================================
   INTERACTIVE SELECT FILTERS & RESPONSIVE CUSTOM DROPDOWNS
   ========================================================================== */
.in-filter-bar,
.cases-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    width: 100%;
}

.in-search-box,
.cases-search-box {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 520px;
}

.in-search-input,
.cases-search-input {
    width: 100%;
    height: 48px;
    padding: 10px 46px 10px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background-color: #ffffff;
    color: #1e293b;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.in-search-input:focus,
.cases-search-input:focus {
    border-color: #8b1e2f;
    box-shadow: 0 0 0 3px rgba(139, 30, 47, 0.15);
}

.in-search-icon,
.cases-search-box .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
}

.in-filter-actions,
.cases-filter-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.select-filter {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 40px 10px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f2b48;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238b1e2f'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.select-filter:focus, .select-filter:hover {
    border-color: #8b1e2f;
    background-color: #fbebef;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 30, 47, 0.15);
}

.select-filter option {
    background-color: #ffffff;
    color: #1e293b;
    padding: 10px;
}

.select-filter option:hover,
.select-filter option:focus,
.select-filter option:checked {
    background-color: #fbebef !important;
    color: #8b1e2f !important;
}

/* CUSTOM DROPDOWN COMPONENT (#fbebef theme) */
.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-dropdown-btn {
    height: 48px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f2b48;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    min-width: 220px;
    text-align: left;
    white-space: nowrap;
}

.custom-dropdown-btn:hover,
.custom-dropdown-btn:focus,
.custom-dropdown.open .custom-dropdown-btn {
    border-color: #8b1e2f;
    background-color: #fbebef;
    color: #8b1e2f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 30, 47, 0.15);
}

.custom-dropdown-icon {
    font-size: 0.75rem;
    color: #8b1e2f;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.custom-dropdown.open .custom-dropdown-icon {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 260px;
    background-color: #ffffff;
    border: 1px solid #f0d5dc;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(139, 30, 47, 0.15);
    z-index: 1000;
    padding: 6px 0;
    display: none;
    margin: 0;
    list-style: none;
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
}

.custom-dropdown.open .custom-dropdown-menu {
    display: block;
    animation: fadeInDropdown 0.2s ease;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-dropdown-item {
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* User requested theme color #fbebef for hovered/selected state */
.custom-dropdown-item:hover,
.custom-dropdown-item.selected {
    background-color: #fbebef !important;
    color: #8b1e2f !important;
    font-weight: 600;
}

.custom-dropdown-item.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: #8b1e2f;
    flex-shrink: 0;
}

/* RESPONSIVE MEDIA QUERIES FOR MOBILE DEVICES */
@media (max-width: 768px) {
    .in-filter-bar,
    .cases-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 2rem;
    }

    .in-search-box,
    .cases-search-box {
        max-width: 100%;
        width: 100%;
    }

    .in-filter-actions,
    .cases-filter-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .custom-dropdown {
        width: 100%;
        display: block;
    }

    .custom-dropdown-btn {
        width: 100%;
        min-width: 100%;
        justify-content: space-between;
        font-size: 0.95rem;
    }

    .custom-dropdown-menu {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }

    .custom-dropdown-item {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
}

/* MetaLens Video Modal */
.ml-video-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.ml-video-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.ml-video-modal-dialog {
    background-color: #0f2b48;
    border-radius: 16px;
    width: 100%;
    max-width: 920px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.ml-video-modal-backdrop.active .ml-video-modal-dialog {
    transform: scale(1);
}

.ml-video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background-color: #0b1f35;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ml-video-modal-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.ml-video-modal-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.4rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background-color 0.2s;
}

.ml-video-modal-close:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.ml-video-modal-body {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.ml-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

