/* ==========================================================================
   Bexen - custom styles (Bootstrap 5 + custom CSS)
   Reproduces the original Tailwind design 1:1.
   ========================================================================== */

:root {
    --brand-50: #fdf2f5;
    --brand-100: #fbe5eb;
    --brand-200: #f6ced8;
    --brand-300: #f0aab9;
    --brand-400: #e77c95;
    --brand-500: #C73A61;
    --brand-600: #b82952;
    --brand-700: #9b1e42;
    --brand-800: #831c3a;
    --brand-900: #701b35;

    --navy: #0F172A;
    --light: #F8FAFC;
    --earth-teal: #C73A61;   /* primary brand color */
    --moss-green: #A82E50;   /* darker shade */
    --warm-sand: #E67A96;    /* lighter brand tint */
    --dark-slate: #2A2E3A;   /* premium dark background */
    --soft-cream: #F8F9FB;   /* light neutral background */

    --gray-50: #f9fafb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--navy);
}



/* Match the original Tailwind reset: no default margins on text elements */
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

ul {
    margin: 0;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* --------------------------------------------------------------------------
   Layout helpers (page wrappers that Bootstrap container can't match exactly)
   -------------------------------------------------------------------------- */
.wrap-7xl {
    max-width: 80rem;          /* max-w-7xl */
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.wrap-1400 {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.wrap-1440 {
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.wrap-5xl {
    max-width: 64rem;          /* max-w-5xl */
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.wrap-10xl {
    /* original used a non-existent max-w-10xl, so it stayed full-width */
    width: 100%;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
    .wrap-7xl { padding-inline: 2rem; }
    .wrap-1400 { padding-inline: 3rem; }
    .wrap-5xl { padding-inline: 2rem; }
    .wrap-10xl { padding-inline: 2rem; }
}

.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }

/* Spacing helpers for values outside Bootstrap's 0-5 scale (matches Tailwind) */
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.gap-10 { gap: 2.5rem; }
.gap-16 { gap: 4rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

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

/* Bootstrap row gutter overrides to match Tailwind gap values */
.g-2rem { --bs-gutter-x: 2rem; --bs-gutter-y: 2rem; }
.g-4rem { --bs-gutter-x: 4rem; --bs-gutter-y: 4rem; }
.g-2-5rem { --bs-gutter-x: 2.5rem; --bs-gutter-y: 2.5rem; }

.flex-1 { flex: 1 1 0%; }
.mt-8 { margin-top: 2rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.mt-n12 { margin-top: -3rem; }

.section-py {
    padding-top: 8rem;         /* py-32 */
    padding-bottom: 8rem;
}

.section-py-24 {
    padding-top: 6rem;         /* py-24 */
    padding-bottom: 6rem;
}

/* --------------------------------------------------------------------------
   Color helpers
   -------------------------------------------------------------------------- */
.text-brand { color: var(--brand-500); }
.text-navy { color: var(--navy); }
.text-earth-teal { color: var(--earth-teal); }
.text-moss-green { color: var(--moss-green); }
.text-warm-sand { color: var(--warm-sand); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-600 { color: var(--gray-600); }

.bg-brand { background-color: var(--brand-500); }
.bg-navy { background-color: var(--navy); }
.bg-light-custom { background-color: var(--light); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-900 { background-color: var(--gray-900); }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
.fw-black { font-weight: 900; }

/* --------------------------------------------------------------------------
   Shared section head + title system (used by every page — edit here once)
   - .eyebrow        : small kicker label above a title
   - .section-title  : standard section title (responsive 32px -> 48px)
   - .section-title-xl : large variant, used together with .section-title
   -------------------------------------------------------------------------- */
.eyebrow {
    display: block;
    color: var(--earth-teal);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title-xl { font-size: 32px; }

@media (min-width: 1024px) {
    .section-title { font-size: 48px; }
    .section-title-xl { font-size: 80px; }
}

.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-title {
    font-size: 3.75rem;        /* text-6xl */
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 3rem;           /* text-5xl */
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-title { font-size: 6rem; }   /* lg:text-8xl */
    .cta-title { font-size: 4.5rem; }  /* lg:text-7xl */
}

.gradient-text {
    background: linear-gradient(135deg, #C73A61 0%, #A82E50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient-text {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--brand-300), var(--brand-400), #f9a8d4);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-pill-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-500);
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pill-brand:hover {
    background: var(--brand-600);
    color: #ffffff;
    transform: scale(1.05);
}

.btn-pill-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--earth-teal);
    color: var(--earth-teal);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pill-outline:hover {
    background: var(--earth-teal);
    color: #ffffff;
}

/* hero primary button */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--brand-500);
    color: #ffffff;
    font-weight: 900;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero:hover {
    background: #ffffff;
    color: var(--brand-600);
    transform: scale(1.1);
}

/* smooth transition utility (matches Tailwind .smooth-transition) */
.smooth-transition {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Effects (kept from original)
   -------------------------------------------------------------------------- */
.video-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.8) 100%);
}

.neumorphic {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.magnetic-btn {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 20px 40px rgba(199, 58, 97, 0.35);
}

.hexagon {
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hexagon:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
    box-shadow: 0 0 40px rgba(199, 58, 97, 0.5);
}

.parallax-layer {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-effect {
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(199, 58, 97, 0.25); }
    50% { box-shadow: 0 0 40px rgba(199, 58, 97, 0.5); }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.organic-blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.pulse-dot {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    50% { opacity: 0.5; }
}

.bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
#header {
    position: fixed;
    width: 100%;
    z-index: 50;
}

.topbar {
    background: var(--gray-800);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.topbar a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.topbar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

#navbar {
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.nav-inner {
    height: 5rem;
}

.nav-link-custom {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-custom:hover {
    color: var(--brand-500);
}

.logo {
    transition: all 0.4s ease;
    transform: translate(0px, 77vh);
    width: 380.5px;
}

#header.scrolled .logo {
    transform: translate(0px, 0px);
    width: 8rem;
}

/* nav dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-active .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger {
    color: #C73A61;
}

.nav-dropdown-trigger .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown.is-open .nav-dropdown-trigger .fa-chevron-down,
.nav-dropdown:focus-within .nav-dropdown-trigger .fa-chevron-down,
.nav-dropdown.is-active .nav-dropdown-trigger .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-dropdown-flyout {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 15.5rem;
    padding-top: 0.65rem;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    z-index: 60;
}

.nav-dropdown.is-open .nav-dropdown-flyout,
.nav-dropdown:focus-within .nav-dropdown-flyout {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel {
    position: relative;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(199, 58, 97, 0.06);
}

.nav-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 0.65rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #0F172A;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-dropdown-item:hover {
    background: linear-gradient(90deg, rgba(199, 58, 97, 0.12) 0%, rgba(199, 58, 97, 0.04) 100%);
    color: #C73A61;
    transform: translateX(2px);
}

.nav-dropdown-item.is-current {
    background: rgba(199, 58, 97, 0.1);
    color: #C73A61;
    font-weight: 700;
}

.nav-dropdown-item.is-disabled {
    color: #0F172A;
    cursor: default;
    pointer-events: none;
}

.nav-dropdown-badge {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C73A61;
    background: rgba(199, 58, 97, 0.1);
    padding: 0.2rem 0.45rem;
    border-radius: 9999px;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Mobile navigation (hamburger toggle + slide-in drawer)
   -------------------------------------------------------------------------- */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.nav-burger:hover {
    border-color: rgba(199, 58, 97, 0.4);
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: var(--gray-800);
}

.nav-burger span:nth-child(2) {
    width: 16px;
    margin-left: auto;
    margin-right: 12px;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.is-visible {
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    width: min(86vw, 360px);
    height: 100%;
    background: #ffffff;
    box-shadow: -24px 0 60px -20px rgba(15, 23, 42, 0.35);
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-nav-logo img {
    width: 7rem;
    height: auto;
    display: block;
}

.mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 0.7rem;
    background: rgba(15, 23, 42, 0.05);
    color: #0F172A;
    font-size: 1.15rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.mobile-nav-close:hover {
    background: rgba(199, 58, 97, 0.1);
    color: #C73A61;
}

.mobile-nav-body {
    flex: 1 1 auto;
    padding: 0.85rem 0.85rem;
}

.mobile-nav-link,
.mobile-nav-acc-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 0.9rem;
    border: none;
    background: none;
    border-radius: 0.8rem;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0F172A;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-acc-trigger:hover {
    background: rgba(199, 58, 97, 0.08);
    color: #C73A61;
}

.mobile-nav-acc-trigger .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-nav-acc.is-open > .mobile-nav-acc-trigger {
    color: #C73A61;
}

.mobile-nav-acc.is-open > .mobile-nav-acc-trigger .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-nav-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-acc.is-open > .mobile-nav-acc-panel {
    max-height: 360px;
}

.mobile-nav-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.7rem 0.9rem 0.7rem 1.7rem;
    border-radius: 0.7rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-sublink:hover {
    background: rgba(199, 58, 97, 0.06);
    color: #C73A61;
}

.mobile-nav-sublink.is-disabled {
    color: #475569;
    cursor: default;
    pointer-events: none;
}

.mobile-nav-foot {
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-nav-foot .btn-pill-brand {
    width: 100%;
    justify-content: center;
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mobile-nav-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #475569;
    text-decoration: none;
}

.mobile-nav-contact a i {
    width: 1rem;
    color: #C73A61;
}

body.mnav-lock {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .nav-burger {
        display: flex;
    }

    .logo,
    #header.scrolled .logo {
        transform: none !important;
        width: 7rem;
    }

    .nav-inner .btn-pill-brand {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
#hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(199, 58, 97, 0.3), transparent 50%, rgba(30, 58, 138, 0.2));
    mix-blend-mode: multiply;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hero-badge .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--brand-500);
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .hero-lead { font-size: 1.5rem; }
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.service-card {
    position: relative;
    height: 600px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.8;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-overlay {
    opacity: 0.9;
}

.overlay-brand { background: linear-gradient(to top, var(--brand-900), rgba(112, 27, 53, 0.6) 50%, transparent); }
.overlay-blue { background: linear-gradient(to top, #1e3a8a, rgba(30, 58, 138, 0.6) 50%, transparent); }
.overlay-purple { background: linear-gradient(to top, #581c87, rgba(88, 28, 135, 0.6) 50%, transparent); }

.service-content {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-link a{
    color: #ffffff;
}

.service-card:hover .service-link {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Industries slider
   -------------------------------------------------------------------------- */
.slide-container {
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 0 1.5rem 2rem;
    cursor: grab;
}

@media (min-width: 1024px) {
    .slide-container { padding-left: 3rem; padding-right: 3rem; }
}

.slide-container::-webkit-scrollbar {
    display: none;
}

/* While dragging: free scroll + grabbing cursor, and ignore hover effects */
.slide-container.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.slide-container.is-dragging .industry-card {
    cursor: grabbing;
    transform: none;
}

.slide-item {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 500px;
    /* height: 600px; */
}

/* Mobile: show one full card with the next peeking ~25% to signal horizontal scroll */
@media (max-width: 767.98px) {
    .slide-container {
        gap: 1rem;
        padding: 0 1rem 1.5rem;
    }

    .slide-item {
        width: 80%;
        scroll-snap-align: start;
    }
}

.industry-card {
    border-radius: 1.5rem;
    overflow: hidden;
    /* height: 100%; */
    cursor: pointer;
    transition: all 0.5s ease;
}

.industry-card:hover {
    transform: scale(1.05);
}

.industry-media {
    height: 16rem;
    overflow: hidden;
    position: relative;
}

.industry-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.industry-card:hover .industry-media img {
    transform: scale(1.1);
}

.industry-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-slate), rgba(42, 46, 58, 0.5) 50%, transparent);
}

.industry-body {
    padding: 2rem;
}

.industry-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    color: #ffffff;
    font-size: 1.5rem;
}

.industry-icon.teal { background: var(--earth-teal); }
.industry-icon.moss { background: var(--moss-green); }

.industry-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-title.teal-hover { color: var(--earth-teal); }
.industry-card:hover .industry-title.moss-hover { color: var(--moss-green); }

.industry-text {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tag.teal { background: rgba(199, 58, 97, 0.2); color: var(--earth-teal); }
.tag.moss { background: rgba(168, 46, 80, 0.2); color: var(--moss-green); }

.slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: rgba(199, 58, 97, 0.2);
    border: 1px solid var(--earth-teal);
    color: var(--earth-teal);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--earth-teal);
    color: #ffffff;
}

.industries-slider-foot {
    padding-bottom: 0.25rem;
}

.industries-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(199, 58, 97, 0.45);
    background: rgba(199, 58, 97, 0.12);
    color: var(--earth-teal);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.industries-view-all:hover {
    background: var(--earth-teal);
    border-color: var(--earth-teal);
    color: #ffffff;
}

.industries-view-all i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.industries-view-all:hover i {
    transform: translateX(3px);
}

@media (min-width: 768px) {
    .industries-slider-foot {
        gap: 1rem 1.25rem !important;
    }

    .industries-view-all {
        margin-left: 0.5rem;
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-blob {
    position: absolute;
    top: 33%;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: var(--earth-teal);
    opacity: 0.1;
    filter: blur(64px);
    border-radius: 9999px;
}

.about-img {
    height: 16rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-row i {
    color: var(--earth-teal);
    font-size: 1.25rem;
}

.check-row span {
    color: var(--gray-600);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Company stats
   -------------------------------------------------------------------------- */
#company-stats {
    background: var(--light);
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--light), rgba(199, 58, 97, 0.05), rgba(248, 250, 252, 0.5));
}

.stats-h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 2.5rem;
}

.stats-lead {
    font-size: 24px;
    color: rgba(15, 23, 42, 0.8);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 58, 97, 0.2);
    color: var(--earth-teal);
    border-radius: 9999px;
    padding: 0.25rem 1.25rem;
    font-weight: 700;
    font-size: 24px;
    margin: 0 0.25rem;
}

@media (min-width: 768px) {
    .stats-h2 { font-size: 40px; }
    .stats-lead { font-size: 32px; }
    .stat-pill { font-size: 28px; }
}

.stats-media {
    position: relative;
    cursor: pointer;
    width: 100%;
}

@media (min-width: 1024px) {
    .stats-media { width: 500px; }
}

@media (min-width: 1280px) {
    .stats-media { width: 600px; }
}

.region-panel {
    flex-shrink: 0;
    padding-right: 1rem;
}

.region-divider {
    width: 2rem;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--navy);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.025em;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-navy:hover { background: var(--brand-500); color: #ffffff; }

@media (min-width: 640px) {
    .btn-navy { width: auto; }
}

.stats-media-back {
    position: absolute;
    inset: -1rem;
    background: rgba(199, 58, 97, 0.1);
    border-radius: 24px;
    z-index: 0;
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.stats-media:hover .stats-media-back {
    transform: rotate(0deg);
}

.stats-media-front {
    position: relative;
    z-index: 10;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 400px;
}

.stats-media-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.stats-media:hover .stats-media-front img {
    transform: scale(1.05);
}

.stats-media-tint {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.2);
    transition: background 0.3s ease;
}

.stats-media:hover .stats-media-tint {
    background: rgba(15, 23, 42, 0.1);
}

.play-btn {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-500);
    font-size: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stats-media:hover .play-btn {
    transform: scale(1.1);
}

@media (min-width: 1024px) {
    .stats-media-front { height: 500px; }
}

/* --------------------------------------------------------------------------
   Worldwide presence / globe
   -------------------------------------------------------------------------- */
.worldwide-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 5rem 2rem;
}

@media (max-width: 991.98px) {
    .worldwide-section { padding: 4rem 1.5rem; }
}

#region-selector { z-index: 10; }
#region-selector button { position: relative; z-index: 20; }

#globe-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    min-height: 400px;
    z-index: 1;
}

#globe-container canvas {
    display: block;
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
    outline: none;
}

#globe-container .globe-labels-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}

.globe-label {
    background: #1a5c42;
    color: #ffffff;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 14px;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 0.03em;
    border-radius: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.region-selector {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
}

.region-btn {
    border: none;
    background: none;
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    cursor: pointer;
    transition: 0.4s;
    color: #111;
}

.region-btn:hover,
.region-btn.active {
    color: #C73A61;
    transform: translateX(-10px);
}

.region-nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    transition: color 0.3s ease;
}

.region-nav-link:hover {
    color: var(--earth-teal);
}

/* Dotted world map (replaces moving globe) */
.world-map {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.world-map-inner {
    position: relative;
    width: 100%;
    max-width: 760px;
}

.world-map-img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    pointer-events: none;
}

.map-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    padding: 0;
    border: 0;
    border-radius: 9999px;
    background: var(--brand-500);
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}

.map-pin::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 9999px;
    background: var(--brand-500);
    opacity: 0.35;
    animation: map-pin-pulse 2s ease-out infinite;
}

.map-pin:hover,
.map-pin:focus-visible,
.map-pin.is-active { outline: none; }

.map-pin:hover::after,
.map-pin:focus-visible::after,
.map-pin.is-active::after { opacity: 0.5; }

@keyframes map-pin-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
}

.map-tooltip {
    position: absolute;
    transform: translate(-50%, calc(-100% - 16px));
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 0.7rem 1.1rem;
    box-shadow: 0 18px 40px -18px rgba(15, 23, 42, 0.45);
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 3;
}

.map-tooltip.is-visible { opacity: 1; visibility: visible; }

.map-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.map-tooltip-country {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-500);
}

.map-tooltip-city {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.1rem;
}

/* --------------------------------------------------------------------------
   Applications
   -------------------------------------------------------------------------- */
.app-blob-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: rgba(199, 58, 97, 0.2);
    border-radius: 9999px;
    filter: blur(64px);
}

.app-blob-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    filter: blur(64px);
}

.app-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.app-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.app-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-card:hover .app-icon {
    transform: scale(1.1) rotate(6deg);
}

.app-icon.grad-brand { background: linear-gradient(to bottom right, var(--brand-400), var(--brand-600)); }
.app-icon.grad-blue { background: linear-gradient(to bottom right, #60a5fa, #2563eb); }
.app-icon.grad-purple { background: linear-gradient(to bottom right, #c084fc, #9333ea); }
.app-icon.grad-emerald { background: linear-gradient(to bottom right, #34d399, #059669); }
.app-icon.grad-orange { background: linear-gradient(to bottom right, #fb923c, #ea580c); }

.app-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.app-text {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.6;
}

.app-cta {
    background: linear-gradient(to bottom right, var(--brand-500), var(--brand-700));
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.app-cta:hover {
    transform: scale(1.05);
}

.app-cta-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-cta:hover .app-cta-icon {
    background: #ffffff;
    color: var(--brand-600);
}

/* --------------------------------------------------------------------------
   Sustainability
   -------------------------------------------------------------------------- */
#sustainability {
    background: linear-gradient(to right, var(--light), rgba(199, 58, 97, 0.05), rgba(248, 250, 252, 0.5));
}

.sustain-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.sustain-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.sustain-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.sustain-feature-icon.teal { background: rgba(199, 58, 97, 0.2); color: var(--earth-teal); }
.sustain-feature-icon.moss { background: rgba(168, 46, 80, 0.2); color: var(--moss-green); }
.sustain-feature-icon.sand { background: rgba(230, 122, 150, 0.2); color: var(--warm-sand); }

.sustain-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sustain-feature p {
    color: var(--gray-600);
    margin: 0;
}

.btn-sustain {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, var(--earth-teal), var(--moss-green));
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-tile {
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.stat-tile .num {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.stat-tile .label {
    color: var(--gray-400);
    font-weight: 500;
}

.eco-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.eco-card p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

.eco-media {
    height: 12rem;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.eco-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   Events
   -------------------------------------------------------------------------- */
#events { background: var(--light); }

.event-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

.event-media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.event-card:hover .event-media img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.event-badge.upcoming-brand { background: var(--brand-500); color: #ffffff; }
.event-badge.upcoming-navy { background: var(--navy); color: #ffffff; }
.event-badge.past { background: rgba(255, 255, 255, 0.9); color: var(--navy); border: 1px solid rgba(15, 23, 42, 0.2); }

.event-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-500);
}

.event-date .mon {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
}

.event-date.past .day,
.event-date.past .mon { color: rgba(15, 23, 42, 0.6); }

.event-body { padding: 2rem; }

.event-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(15, 23, 42, 0.6);
}

.event-meta .dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.3);
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.event-card:hover .event-title { color: var(--brand-500); }

.event-text {
    color: rgba(15, 23, 42, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-link {
    display: inline-flex;
    align-items: center;
    color: var(--brand-500);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.event-card:hover .event-link { gap: 0.75rem; }

.event-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.event-filter-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.event-filter-btn:hover,
.event-filter-btn.is-active {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: #ffffff;
}

.event-empty-msg {
    text-align: center;
    color: rgba(15, 23, 42, 0.5);
    font-weight: 500;
    padding: 3rem 0 1rem;
}

@media (max-width: 991.98px) {
    .event-filter-bar { margin-top: 1.5rem; }
}

/* --------------------------------------------------------------------------
   Contact CTA
   -------------------------------------------------------------------------- */
.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(199, 58, 97, 0.05), #fff);
    z-index: 0;
}

.contact-left { position: relative; flex: 1; }

.contact-left-back {
    position: absolute;
    inset: -1rem;
    background: var(--navy);
    border-radius: 24px;
    z-index: 0;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-left-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.contact-left-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy), rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
}

.contact-left-content {
    position: relative;
    z-index: 10;
    padding: 3rem;
    color: #ffffff;
}

@media (min-width: 1024px) {
    .contact-left-content { padding: 4rem; }
}

.contact-feature i {
    font-size: 1.875rem;
    color: var(--brand-500);
    margin-bottom: 1rem;
}

.contact-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrap {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    position: relative;
    z-index: 20;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

@media (min-width: 1024px) {
    .contact-form-wrap {
        width: 500px;
        flex-shrink: 0;
        margin-left: -3rem;
    }
}

.field {
    width: 100%;
    background: var(--light);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    outline: none;
    transition: all 0.3s ease;
    color: var(--navy);
}

.field::placeholder { color: rgba(15, 23, 42, 0.4); }

.field:focus {
    border-color: var(--earth-teal);
    background: #ffffff;
}

select.field {
    appearance: none;
    cursor: pointer;
}

textarea.field { resize: none; }

.field-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(15, 23, 42, 0.4);
}

.field-icon.sm {
    right: 1rem;
    font-size: 0.75rem;
    pointer-events: none;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--brand-500);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.025em;
    border: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover { transform: scale(1.05); }

.check-brand {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--brand-500);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   CTA section
   -------------------------------------------------------------------------- */
#cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #C73A61 0%, #9b1e42 100%);
}

.cta-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: #ffffff;
    border-radius: 9999px;
    filter: blur(64px);
}

.btn-cta-white {
    background: #ffffff;
    color: var(--brand-600);
    font-weight: 900;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-white:hover {
    background: #f3f4f6;
    transform: scale(1.1);
}

.btn-cta-ghost {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 900;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
#footer {
    background: var(--gray-900);
    color: #ffffff;
}

.footer-h4 {
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--gray-400);
    transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-link:hover { color: #ffffff; }

.footer-link-muted {
    color: var(--gray-400);
    font-size: 0.9375rem;
    display: inline-block;
    cursor: default;
    pointer-events: none;
}

.social-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover { background: var(--brand-500); }

.footer-contact-icon {
    color: var(--brand-500);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-detail {
    min-width: 0;
}

.footer-contact-val {
    white-space: nowrap;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.footer-contact-link {
    color: inherit;
    text-decoration: none;
}

.footer-contact-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   Utility classes (replace former inline styles)
   -------------------------------------------------------------------------- */
.cursor-pointer { cursor: pointer; }
.object-cover { object-fit: cover; }
.z-10 { z-index: 10; }
.inset-0 { inset: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-60 { opacity: 0.6; }
.lh-relaxed { line-height: 1.6; }

.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }

.mb-1rem { margin-bottom: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.w-1-3 { width: 33.333%; }
.w-2-3 { width: 66.667%; }

.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-navy-60 { color: rgba(15, 23, 42, 0.6); }
.text-black-60 { color: rgba(0, 0, 0, 0.6); }

.footer-logo { height: 40px; }

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.eco-card {
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
}

/* ==========================================================================
   Corporate Profile page
   ========================================================================== */

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.corp-main { padding-top: 7rem; }

.corp-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.corp-section-cta {
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

@media (min-width: 1024px) {
    .corp-section { padding-top: 8rem; padding-bottom: 8rem; }
}

@media (min-width: 1024px) {
    .corp-sticky { position: sticky; top: 9rem; }
}

/* width helpers */
.max-w-editorial { max-width: 42rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-xs { max-width: 20rem; }

/* row gutters */
.g-corp { --bs-gutter-x: 3.5rem; --bs-gutter-y: 3.5rem; }
.g-1-5rem { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.g-1-25rem { --bs-gutter-x: 1.25rem; --bs-gutter-y: 1.25rem; }

@media (min-width: 1024px) {
    .g-corp { --bs-gutter-x: 5rem; --bs-gutter-y: 5rem; }
}

/* z-index helpers */
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-5 { z-index: 5; }

/* extra spacing helpers (Tailwind values, non-colliding names) */
.mb-14 { margin-bottom: 3.5rem; }

/* color helpers */
.text-gray-500 { color: #6b7280; }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.text-white-75 { color: rgba(255, 255, 255, 0.75); }

/* --------------------------------------------------------------------------
   Section backgrounds
   -------------------------------------------------------------------------- */
.bg-soft-cream { background: var(--soft-cream); }

.bg-brand-soft-gradient {
    background: linear-gradient(to right, var(--light), rgba(199, 58, 97, 0.05), rgba(248, 250, 252, 0.5));
}

.section-divider-y {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.corp-overlay-soft {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--light), rgba(199, 58, 97, 0.05), rgba(248, 250, 252, 0.5));
    pointer-events: none;
}

.corp-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(64px);
    pointer-events: none;
}

.corp-blob-teal {
    width: 24rem;
    height: 24rem;
    background: var(--earth-teal);
    opacity: 0.06;
    top: 33%;
    left: 0;
}

.corp-blob-brand {
    width: 600px;
    height: 300px;
    background: rgba(199, 58, 97, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.corp-body-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.corp-body-text strong {
    color: var(--navy);
    font-weight: 700;
}

.corp-lead-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.85;
}

.corp-note {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding-top: 2rem;
}

.corp-quote p {
    font-size: 1.125rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
}

/* horizontal rules */
.corp-rule { height: 1px; background: linear-gradient(90deg, #C73A61 0%, rgba(15, 23, 42, 0.1) 100%); }
.corp-rule-full { height: 1px; background: rgba(15, 23, 42, 0.08); }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.corp-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-card:hover {
    border-color: rgba(199, 58, 97, 0.2);
    box-shadow: 0 24px 48px -12px rgba(199, 58, 97, 0.12);
    transform: translateY(-3px);
}

.corp-card-sm { border-radius: 1rem; padding: 1.5rem; min-width: 0; }
.corp-card-md { border-radius: 1rem; padding: 1.75rem; height: 100%; }
.corp-card-lg { border-radius: 1.5rem; padding: 2rem; height: 100%; }

@media (min-width: 1024px) {
    .corp-card-lg { padding: 2.5rem; }
}

.corp-card-h3 { font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.corp-card-h3-lg { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.corp-card-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* stat cards */
.corp-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--earth-teal);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.corp-stat-value { font-size: 1.875rem; font-weight: 900; color: var(--navy); }
.corp-stat-value-sm {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.corp-stat-sub { font-size: 0.875rem; color: #6b7280; font-weight: 500; margin-top: 0.25rem; }

.corp-stat-grid > .col { min-width: 0; }

@media (max-width: 575.98px) {
    .corp-stat-grid .corp-card-sm { padding: 1.25rem 1.125rem; }
    .corp-stat-grid .corp-stat-value { font-size: 1.5rem; }
    .corp-stat-grid .corp-stat-value-sm { font-size: 1rem; }
}

/* card icons */
.corp-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.corp-icon-teal { background: rgba(199, 58, 97, 0.15); color: var(--brand-500); }
.corp-icon-moss { background: rgba(168, 46, 80, 0.15); color: var(--moss-green); }

.corp-feat-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.grad-brand2 { background: linear-gradient(to bottom right, var(--brand-400), var(--brand-600)); }
.grad-blue2 { background: linear-gradient(to bottom right, #60a5fa, #2563eb); }
.grad-emerald2 { background: linear-gradient(to bottom right, #34d399, #059669); }
.grad-purple2 { background: linear-gradient(to bottom right, #c084fc, var(--brand-600)); }

/* --------------------------------------------------------------------------
   Corporate hero (hover/tap to reveal content)
   -------------------------------------------------------------------------- */
.corp-hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: -7rem;
    cursor: pointer;
}

.corp-hero-bg { position: absolute; inset: 0; z-index: 0; }

.corp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-hero-dark {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.82) 100%);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-hero-brand-tint {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-hero-tint-a { background: linear-gradient(to right, rgba(15, 23, 42, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%); }
.corp-hero-tint-b { background: linear-gradient(to bottom right, rgba(199, 58, 97, 0.2) 0%, transparent 50%); mix-blend-mode: multiply; }

.corp-hero-hint {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.corp-hero-hint-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.corp-hero-hint-badge i { color: var(--brand-300); }

.corp-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding: 9rem 1.5rem 4rem;
    opacity: 0;
    transform: translateY(28px);
    pointer-events: none;
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1024px) {
    .corp-hero-content { padding: 10rem 3rem 5rem; }
}

/* hover / focus / active reveal */
.corp-hero:hover .corp-hero-dark,
.corp-hero:focus-within .corp-hero-dark,
.corp-hero.is-active .corp-hero-dark { opacity: 1; }

.corp-hero:hover .corp-hero-brand-tint,
.corp-hero:focus-within .corp-hero-brand-tint,
.corp-hero.is-active .corp-hero-brand-tint { opacity: 1; }

.corp-hero:hover .corp-hero-content,
.corp-hero:focus-within .corp-hero-content,
.corp-hero.is-active .corp-hero-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.corp-hero:hover .corp-hero-img,
.corp-hero:focus-within .corp-hero-img,
.corp-hero.is-active .corp-hero-img { transform: scale(1.04); }

.corp-hero:hover .corp-hero-hint,
.corp-hero:focus-within .corp-hero-hint,
.corp-hero.is-active .corp-hero-hint { opacity: 0; pointer-events: none; }

/* Touch devices can't hover, so reveal the hero content by default */
@media (hover: none) {
    .corp-hero .corp-hero-dark { opacity: 1; }
    .corp-hero .corp-hero-brand-tint { opacity: 1; }
    .corp-hero .corp-hero-content { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .corp-hero .corp-hero-hint { opacity: 0; pointer-events: none; }
}

/* hero content typography */
.corp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .corp-breadcrumb { margin-bottom: 3.5rem; }
}

.corp-breadcrumb a { color: rgba(255, 255, 255, 0.6); transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.corp-breadcrumb a:hover { color: #ffffff; }
.corp-breadcrumb .sep { color: rgba(255, 255, 255, 0.3); }
.corp-breadcrumb .current { color: rgba(255, 255, 255, 0.9); }

.corp-breadcrumb-light a { color: rgba(15, 23, 42, 0.5); }
.corp-breadcrumb-light a:hover { color: var(--brand-500); }
.corp-breadcrumb-light .sep { color: rgba(15, 23, 42, 0.25); }
.corp-breadcrumb-light .current { color: var(--navy); }

.corp-hero-eyebrow {
    display: block;
    color: var(--brand-300);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.corp-hero-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

@media (min-width: 640px) { .corp-hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .corp-hero-title { font-size: 3.5rem; } }

.corp-hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
}

@media (min-width: 1024px) { .corp-hero-lead { font-size: 1.5rem; } }

.corp-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Mobile: drop the secondary hero paragraph (and its divider) to keep the hero compact */
@media (max-width: 767.98px) {
    .corp-hero-desc,
    .hero-line-soft {
        display: none;
    }
}

.hero-line-grad {
    height: 1px;
    width: 4rem;
    background: linear-gradient(to right, var(--brand-400), transparent);
}

/* Hide the hero eyebrow + its gradient line across inner pages (desktop and mobile) */
.corp-hero-eyebrow,
.hero-line-grad {
    display: none;
}

.hero-line-soft {
    height: 1px;
    width: 100%;
    max-width: 28rem;
    background: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   Company overview figure
   -------------------------------------------------------------------------- */
.overview-figure { position: relative; }

.overview-figure-bg {
    position: absolute;
    inset: -0.75rem;
    background: rgba(199, 58, 97, 0.1);
    border-radius: 1.5rem;
    transform: rotate(1deg);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.overview-figure:hover .overview-figure-bg { transform: rotate(0deg); }

.overview-figure-frame {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.overview-figure-frame img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.overview-figcaption {
    margin-top: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--brand-500);
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 20rem;
}

/* --------------------------------------------------------------------------
   Industry & innovation figure
   -------------------------------------------------------------------------- */
.corp-figure {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.corp-figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-figure:hover img { transform: scale(1.02); }

.corp-caption { font-size: 0.875rem; color: #6b7280; letter-spacing: 0.025em; }

/* --------------------------------------------------------------------------
   Global presence list + map
   -------------------------------------------------------------------------- */
.corp-loc-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.corp-loc-dot.active { background: var(--brand-500); }
.corp-loc-dot.muted { background: rgba(15, 23, 42, 0.2); }

.corp-loc-title { font-weight: 700; color: var(--navy); }
.corp-loc-sub { font-size: 0.875rem; color: #6b7280; margin-top: 0.25rem; }

.global-map-stage {
    position: relative;
    background: linear-gradient(145deg, #0F172A 0%, #1a2744 45%, #0F172A 100%);
    overflow: hidden;
    min-height: 380px;
    border-radius: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1rem;
}

@media (min-width: 1024px) {
    .global-map-stage { padding: 1.5rem; }
}

/* When the columns stack, let the box hug the map instead of leaving dead space */
@media (max-width: 991.98px) {
    .global-map-stage {
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.global-map-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 58% 48%, rgba(199, 58, 97, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.global-map-dot {
    fill: rgba(255, 255, 255, 0.12);
    animation: map-dot-twinkle 3s ease-in-out infinite;
}

@keyframes map-dot-twinkle {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.85; }
}

.global-arc {
    fill: none;
    stroke: url(#arcGradient);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
    opacity: 0.85;
}

.global-arc.arc-1 { animation: draw-arc 2.8s ease-in-out 0.2s infinite; }
.global-arc.arc-2 { animation: draw-arc 2.8s ease-in-out 0.6s infinite; }
.global-arc.arc-3 { animation: draw-arc 2.8s ease-in-out 1s infinite; }
.global-arc.arc-4 { animation: draw-arc 2.8s ease-in-out 1.4s infinite; }
.global-arc.arc-5 { animation: draw-arc 2.2s ease-in-out 0.4s infinite; }

@keyframes draw-arc {
    0% { stroke-dashoffset: 520; opacity: 0; }
    15% { opacity: 0.9; }
    45% { stroke-dashoffset: 0; opacity: 0.9; }
    70% { stroke-dashoffset: 0; opacity: 0.5; }
    100% { stroke-dashoffset: -520; opacity: 0; }
}

.hub-pulse {
    fill: none;
    stroke: #C73A61;
    stroke-width: 1.5;
    opacity: 0;
    animation: hub-ring 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hub-pulse.delay-1 { animation-delay: 0.8s; }
.hub-pulse.delay-2 { animation-delay: 1.6s; }

@keyframes hub-ring {
    0% { r: 10; opacity: 0.7; stroke-width: 2; }
    100% { r: 42; opacity: 0; stroke-width: 0.5; }
}

.node-glow { filter: url(#nodeGlow); }
.travel-pulse { fill: #ffffff; filter: url(#nodeGlow); }

.global-map-stage.is-visible .global-arc { animation-play-state: running; }

.global-map-stage:not(.is-visible) .global-arc,
.global-map-stage:not(.is-visible) .hub-pulse,
.global-map-stage:not(.is-visible) .global-map-dot { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.corp-cta-card {
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(199, 58, 97, 0.1);
    background: linear-gradient(135deg, #C73A61 0%, #9b1e42 100%);
}

@media (min-width: 1024px) {
    .corp-cta-card { padding: 3.5rem; }
}

.corp-cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .corp-cta-title { font-size: 4.5rem; }
}

.corp-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--brand-600);
    font-weight: 900;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-btn-white:hover { background: #f3f4f6; color: var(--brand-600); transform: scale(1.1); }

.corp-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 900;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-btn-ghost:hover { background: rgba(255, 255, 255, 0.2); color: #ffffff; transform: scale(1.1); }

/* ==========================================================================
   Management Team page
   (reuses corp-hero, corp-section, eyebrow, section-title, corp-cta-* etc.)
   ========================================================================== */

/* layout helpers */
.wrap-1520 { max-width: 1520px; margin-inline: auto; }

.wrap-4xl {
    max-width: 80rem;          /* max-w-4xl */
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
    .wrap-4xl { padding-inline: 3rem; }
}

.max-w-lg { max-width: 32rem; }
.min-w-0 { min-width: 0; }

.bt-faint { border-top: 1px solid rgba(15, 23, 42, 0.05); }

/* grid gutters: gap-6 -> gap-7 on large screens */
.g-mgmt { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }

@media (min-width: 1024px) {
    .g-mgmt { --bs-gutter-x: 1.75rem; --bs-gutter-y: 1.75rem; }
}

/* faint background image behind the philosophy section */
.mgmt-philosophy-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.mgmt-philosophy-img img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   Leadership story — cinematic split
   -------------------------------------------------------------------------- */
.leadership-story { position: relative; overflow: hidden; background: #ffffff; }

.leadership-story-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(253, 242, 245, 0.4) 0%, #fff 50%, #fff 100%);
    pointer-events: none;
}

.leadership-story-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 4rem 1.5rem;
    z-index: 10;
    background: #ffffff;
}

@media (min-width: 640px) {
    .leadership-story-panel { padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (min-width: 1024px) {
    .leadership-story-panel {
        padding-top: 6rem;
        padding-bottom: 6rem;
        padding-left: clamp(2.5rem, 5vw, 5.5rem);
        padding-right: clamp(1.5rem, 3vw, 3rem);
        background: transparent;
    }
}

@media (min-width: 1280px) {
    .leadership-story-panel { padding-top: 7rem; padding-bottom: 7rem; }
}

.leadership-story-accent {
    width: 3px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #C73A61 0%, rgba(199, 58, 97, 0.15) 100%);
}

.leadership-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) { .leadership-title { font-size: 2.75rem; } }
@media (min-width: 1024px) { .leadership-title { font-size: 3.25rem; margin-bottom: 3.5rem; } }
@media (min-width: 1280px) { .leadership-title { font-size: 3.75rem; } }

.leadership-lead {
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}

@media (min-width: 640px) { .leadership-lead { font-size: 1.65rem; } }
@media (min-width: 1024px) { .leadership-lead { font-size: 1.85rem; margin-bottom: 2.5rem; } }

.leadership-body {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 3.5rem;
}

@media (min-width: 1024px) { .leadership-body { font-size: 1.125rem; margin-bottom: 4rem; } }

.leadership-metric {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 1.25rem;
}

.leadership-metric-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) { .leadership-metric-value { font-size: 1.875rem; } }

.leadership-metric-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray-400);
    font-weight: 600;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Executive / pending cards
   -------------------------------------------------------------------------- */
.exec-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.exec-card:hover {
    border-color: rgba(199, 58, 97, 0.22);
    box-shadow: 0 28px 52px -14px rgba(199, 58, 97, 0.14);
    transform: translateY(-4px);
}

.exec-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f3f4f6;
}

.exec-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(1) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.exec-card:hover .exec-portrait img { transform: scale(1.03); }

.exec-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.04) 100%);
    pointer-events: none;
}

.pending-card {
    background: linear-gradient(145deg, #fff 0%, #fafbfc 100%);
    border: 1px dashed rgba(199, 58, 97, 0.28);
    box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pending-card:hover {
    border-color: rgba(199, 58, 97, 0.45);
    border-style: solid;
    box-shadow: 0 24px 48px -14px rgba(199, 58, 97, 0.1);
    transform: translateY(-3px);
}

.pending-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(199, 58, 97, 0.06) 0%, rgba(15, 23, 42, 0.04) 100%);
}

.pending-portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.06) 1px, transparent 0);
    background-size: 14px 14px;
    opacity: 0.6;
}

.pending-icon {
    position: relative;
    z-index: 10;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(199, 58, 97, 0.3);
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pending-icon i { color: var(--brand-500); font-size: 1.125rem; }

/* shared card body */
.exec-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.exec-name { font-size: 1.125rem; font-weight: 900; color: var(--navy); margin-bottom: 0.25rem; }
.exec-role { font-size: 0.875rem; font-weight: 700; color: var(--brand-600); margin-bottom: 0.75rem; }

.exec-dept {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    font-weight: 600;
    margin-top: auto;
}

/* ==========================================================================
   Our Values page
   (reuses corp-hero, corp-section, eyebrow, section-title, corp-cta-* etc.)
   ========================================================================== */

/* layout helpers */
.wrap-6xl {
    max-width: 72rem;          /* max-w-6xl */
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
    .wrap-6xl { padding-inline: 3rem; }
}

/* --------------------------------------------------------------------------
   Vision statement — editorial intro
   -------------------------------------------------------------------------- */
.values-vision {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.85;
}

@media (min-width: 1024px) {
    .values-vision { font-size: 1.5rem; }
}

.values-vision strong { color: var(--navy); font-weight: 700; }

/* Brand tagline — bold closing statement */
.values-tagline {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .values-tagline { font-size: 2.25rem; }
}

/* Service pages — value callout */
.service-value-callout {
    padding: 1.25rem 1.5rem;
    border-left: 3px solid #C73A61;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 0 0.75rem 0.75rem 0;
}

.service-value-callout-text {
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .service-value-callout-text { font-size: 1.375rem; }
}

/* --------------------------------------------------------------------------
   Values — editorial row list (simple + modern)
   -------------------------------------------------------------------------- */
.values-list {
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.value-row {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem 1.5rem;
    align-items: start;
    padding: 2.25rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* left accent bar that slides in on hover */
.value-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-500), var(--moss-green));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-row:hover {
    background: linear-gradient(90deg, rgba(199, 58, 97, 0.04) 0%, transparent 60%);
}

.value-row:hover::before { transform: scaleY(1); }

.value-index {
    font-size: 1.25rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.2);
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color 0.4s ease;
}

.value-row:hover .value-index { color: var(--brand-500); }

.value-head {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.value-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-row:hover .value-icon { transform: scale(1.08) rotate(-4deg); }

.value-title {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.value-motto {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    font-style: italic;
    color: var(--brand-600);
    margin-top: 0.2rem;
}

.value-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* mobile: stack number, heading and description in one readable column */
@media (max-width: 991.98px) {
    .value-row {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        padding: 1.75rem 0.85rem;
    }

    .value-index {
        font-size: 1rem;
    }

    .value-title {
        font-size: 1.25rem;
    }
}

/* desktop: number | title block | description in three editorial columns */
@media (min-width: 992px) {
    .value-row {
        grid-template-columns: 3.5rem minmax(0, 0.9fr) minmax(0, 1.5fr);
        gap: 2.5rem;
        align-items: center;
        padding: 2.5rem 1.25rem;
    }
}

/* ==========================================================================
   Industries page
   (reuses corp-hero, corp-section, eyebrow, section-title, corp-cta-* etc.)
   ========================================================================== */

/* row gutters */
.g-portfolio { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
.g-segment { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }

/* --------------------------------------------------------------------------
   Product portfolio — chip list
   -------------------------------------------------------------------------- */
.portfolio-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    height: 100%;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover {
    border-color: rgba(199, 58, 97, 0.28);
    box-shadow: 0 16px 32px -16px rgba(199, 58, 97, 0.2);
    transform: translateY(-2px);
}

.portfolio-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand-500), var(--moss-green));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-dot { transform: scale(1.6); }

.portfolio-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.4s ease;
}

.portfolio-item:hover .portfolio-label { color: var(--brand-600); }

/* --------------------------------------------------------------------------
   Industry segments — image tiles
   -------------------------------------------------------------------------- */
.segment-card {
    position: relative;
    display: block;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.segment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.segment-card:hover img { transform: scale(1.08); }

.segment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.35) 55%, rgba(15, 23, 42, 0.82) 100%);
    transition: background 0.5s ease;
}

.segment-card:hover .segment-overlay {
    background: linear-gradient(180deg, rgba(199, 58, 97, 0.15) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(15, 23, 42, 0.88) 100%);
}

.segment-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.segment-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transform: translateY(0.5rem);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.segment-card:hover .segment-icon { transform: translateY(0); opacity: 1; }

.segment-label {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

/* arrow that reveals on hover */
.segment-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-600);
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(-0.5rem) scale(0.85);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.segment-card:hover .segment-arrow {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------------
   Product listing — sidebar filters + search + sort + result rows
   (used by industry-<name>.html product listing pages)
   -------------------------------------------------------------------------- */
.prod-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 991.98px) {
    .prod-layout { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---- Sidebar ---- */
.prod-sidebar {
    position: sticky;
    top: 7rem;
    border: 1px solid #eef0f4;
    border-radius: 1rem;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 14px 30px -26px rgba(15, 23, 42, 0.45);
}

/* Drawer header + footer live inside the sidebar, shown only on mobile */
.prod-filter-head,
.prod-filter-foot {
    display: none;
}

.prod-filter-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
}

.prod-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 0.6rem;
    background: rgba(15, 23, 42, 0.05);
    color: var(--navy);
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.prod-filter-close:hover {
    background: rgba(199, 58, 97, 0.1);
    color: var(--brand-600);
}

.prod-filter-apply {
    width: 100%;
    border: none;
    border-radius: 0.75rem;
    background: var(--brand-500);
    color: #ffffff;
    font-weight: 700;
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: background 0.25s ease;
}

.prod-filter-apply:hover {
    background: var(--brand-600);
}

.prod-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prod-filter-overlay.is-visible {
    opacity: 1;
}

@media (min-width: 992px) {
    .prod-filter-overlay {
        display: none !important;
    }
}

/* Mobile: turn the sidebar into a slide-in side drawer */
@media (max-width: 991.98px) {
    .prod-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        width: min(86vw, 340px);
        height: 100%;
        border: 0;
        border-radius: 0;
        box-shadow: 24px 0 60px -20px rgba(15, 23, 42, 0.35);
        padding: 0 1.25rem 1.25rem;
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .prod-sidebar.is-open {
        transform: translateX(0);
    }

    .prod-filter-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 2;
        padding: 1.1rem 0 0.9rem;
        margin-bottom: 0.5rem;
        background: #ffffff;
        border-bottom: 1px solid #eef0f4;
    }

    .prod-filter-foot {
        display: block;
        position: sticky;
        bottom: 0;
        padding: 1rem 0 0.5rem;
        margin-top: 1rem;
        background: #ffffff;
        border-top: 1px solid #eef0f4;
    }

    body.prod-filter-lock {
        overflow: hidden;
    }
}

.prod-filter-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    border: 1px solid var(--gray-300);
    background: #ffffff;
    color: var(--navy);
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .prod-filter-toggle { display: flex; }
}

.prod-group { padding-block: 1.25rem; border-top: 1px solid #f1f3f7; }
.prod-group:first-of-type { padding-top: 0; border-top: 0; }

.prod-group-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.85rem;
}

.prod-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 0.3rem 0;
    cursor: pointer;
    user-select: none;
}

.prod-check input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--brand-500);
    cursor: pointer;
    flex-shrink: 0;
}

.prod-check:hover { color: var(--navy); }
.prod-check .prod-check-count { margin-left: auto; color: var(--gray-400); font-size: 0.8rem; }

.prod-select {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: 0.6rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
    color: var(--navy);
    background: #ffffff;
    cursor: pointer;
}

.prod-select:focus { outline: none; border-color: var(--brand-400); }

/* industries list — navigates between industry listing pages */
.prod-nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 0.32rem 0;
    transition: color 0.2s ease;
}
.prod-nav-link i { font-size: 0.8rem; color: var(--gray-300); width: 1rem; text-align: center; flex-shrink: 0; }
.prod-nav-link:hover { color: var(--navy); }
.prod-nav-link.is-active { color: var(--brand-600); font-weight: 700; }
.prod-nav-link.is-active i { color: var(--brand-500); }

/* ---- Active filters ---- */
.prod-active {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1.25rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #f1f3f7;
}
.prod-active.is-visible { display: flex; }

.prod-active-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.25rem;
}
.prod-active-head .prod-group-title { margin-bottom: 0; }

.prod-reset {
    border: 0;
    background: none;
    color: var(--brand-600);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
}
.prod-reset:hover { text-decoration: underline; }

.prod-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--navy);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
}
.prod-chip button {
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: 0.7rem;
}
.prod-chip button:hover { color: #ffffff; }

/* ---- Toolbar: search + sort ---- */
.prod-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.prod-search {
    position: relative;
    flex: 1 1 320px;
}
.prod-search i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 0.9rem;
}
.prod-search input {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: 0.75rem;
    padding: 0.8rem 1rem 0.8rem 2.6rem;
    font-size: 0.9rem;
    color: var(--navy);
}
.prod-search input:focus { outline: none; border-color: var(--brand-400); }

.prod-sort {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.prod-sort label { font-size: 0.875rem; color: var(--gray-600); white-space: nowrap; }
.prod-sort .prod-select { width: auto; min-width: 170px; }

.prod-count {
    width: 100%;
    color: var(--gray-600);
    font-size: 0.875rem;
}
.prod-count strong { color: var(--navy); font-weight: 700; }

/* ---- Result rows ---- */
.prod-list { display: flex; flex-direction: column; gap: 1rem; }

.prod-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 12px 26px -24px rgba(15, 23, 42, 0.4);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.prod-row:hover {
    border-color: var(--brand-200);
    box-shadow: 0 22px 40px -26px rgba(199, 58, 97, 0.45);
    transform: translateX(4px);
}

.prod-row-thumb {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #eef0f4;
    background: var(--gray-50);
}
.prod-row-thumb img { width: 100%; height: 100%; object-fit: cover; }

.prod-row-info { flex: 1 1 auto; min-width: 0; }

.prod-row-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.prod-row-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}
.prod-row-cat {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--brand-700);
    background: var(--brand-50);
}

.prod-row-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.6rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    transition: all 0.3s ease;
}
.prod-row-btn i { transition: transform 0.3s ease; }
.prod-row:hover .prod-row-btn {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: #ffffff;
}
.prod-row:hover .prod-row-btn i { transform: translateX(3px); }

.prod-row.is-hidden { display: none; }

@media (max-width: 575.98px) {
    .prod-row {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 1rem;
        row-gap: 0.85rem;
        align-items: center;
        padding: 0.85rem 1rem;
    }

    .prod-row-thumb {
        width: 64px;
        height: 64px;
    }

    .prod-row-name {
        font-size: 1rem;
    }

    /* View Details always sits on its own full-width row */
    .prod-row-btn {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }

    /* Hover slide-in would clip on small screens */
    .prod-row:hover {
        transform: none;
    }
}

.prod-empty {
    display: none;
    text-align: center;
    color: var(--gray-600);
    padding: 3rem 1rem;
    border: 1px dashed var(--gray-300);
    border-radius: 1rem;
}
.prod-empty.is-visible { display: block; }

/* --------------------------------------------------------------------------
   Product detail page (PDP) — hero banner + tabbed spec card
   (used by product-<name>.html pages)
   -------------------------------------------------------------------------- */
.pdp-hero {
    position: relative;
    background: var(--navy);
    color: #ffffff;
    overflow: hidden;
    padding: 8rem 0 2.5rem;
}
.pdp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(199, 58, 97, 0.28) 0%, transparent 45%);
    pointer-events: none;
}
.pdp-hero .wrap-1400 { position: relative; z-index: 1; }

.pdp-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.pdp-hero-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .pdp-hero-title { font-size: 2.6rem; } }

.pdp-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pdp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.5rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.pdp-pill span { color: var(--brand-300); }

.pdp-hero-badge {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy);
}
.pdp-hero-badge i { color: var(--brand-500); font-size: 1.6rem; }
.pdp-hero-badge-text { font-weight: 800; line-height: 1.1; }
.pdp-hero-badge-text small { display: block; font-weight: 500; font-size: 0.7rem; color: var(--gray-600); }

/* breadcrumb on dark hero */
.pdp-hero .corp-breadcrumb { margin-bottom: 1.5rem; }

/* ---- Spec card ---- */
.pdp-section { background: var(--soft-cream); padding: 3rem 0 4.5rem; }

/* two-column datasheet layout */
.pdp-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 991.98px) { .pdp-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* left summary card */
.pdp-summary {
    position: sticky;
    top: 7rem;
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -40px rgba(15, 23, 42, 0.5);
}
@media (max-width: 991.98px) { .pdp-summary { position: static; } }

.pdp-summary-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pdp-summary-body { padding: 1.5rem; }
.pdp-summary-cat {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-700);
    background: var(--brand-50);
    margin-bottom: 0.75rem;
}
.pdp-summary-name { font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1.25rem; }

.pdp-quick { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
.pdp-quick-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #e9ecf2;
    font-size: 0.85rem;
}
.pdp-quick-item:last-child { border-bottom: 0; }
.pdp-quick-key { color: var(--gray-600); }
.pdp-quick-val { font-weight: 700; color: var(--navy); text-align: right; }

/* right content blocks */
.pdp-blocks { display: flex; flex-direction: column; gap: 1.25rem; }
.pdp-block {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 1.25rem;
    padding: 1.75rem 1.9rem;
    box-shadow: 0 20px 45px -38px rgba(15, 23, 42, 0.5);
}

.pdp-block-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #f1f3f7;
}
.pdp-block-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-50);
    color: var(--brand-600);
    font-size: 1rem;
    flex-shrink: 0;
}
.pdp-block-title { font-size: 1.15rem; font-weight: 800; color: var(--navy); }

.pdp-formula { font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.pdp-formula span { color: var(--brand-500); }

.pdp-text { color: var(--gray-600); line-height: 1.75; margin-bottom: 1rem; }
.pdp-text:last-child { margin-bottom: 0; }

/* key/value spec list */
.pdp-specs { display: flex; flex-direction: column; gap: 0; }
.pdp-spec {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px dashed #e9ecf2;
    font-size: 0.92rem;
}
.pdp-spec:last-child { border-bottom: 0; }
.pdp-spec-key { font-weight: 700; color: var(--navy); }
.pdp-spec-val { color: var(--gray-600); }
@media (max-width: 575.98px) { .pdp-spec { grid-template-columns: 1fr; gap: 0.2rem; } }

.pdp-list { margin: 0; padding-left: 1.1rem; color: var(--gray-600); line-height: 1.8; }
.pdp-list li { margin-bottom: 0.3rem; }

/* Event detail page */
.edp-summary-media { position: relative; }
.edp-summary-media .event-badge { position: absolute; top: 1rem; right: 1rem; }
.edp-back-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: color 0.3s ease;
}
.edp-back-link:hover { color: var(--brand-500); }

/* Event highlights — recap stats */
.ehl-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
.ehl-stat {
    background: var(--soft-cream);
    border: 1px solid #eef0f4;
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
}
.ehl-stat-num { font-size: 1.9rem; font-weight: 900; color: var(--brand-600); line-height: 1; }
.ehl-stat-label { display: block; margin-top: 0.4rem; font-size: 0.8rem; color: var(--gray-600); font-weight: 600; }

/* Event highlights — photo gallery */
.ehl-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}
@media (max-width: 767.98px) { .ehl-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 479.98px) { .ehl-gallery-grid { grid-template-columns: 1fr; } }

.ehl-gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    border: 0;
    padding: 0;
    background: #000;
}
.ehl-gallery-item.is-wide { grid-column: span 2; }
@media (max-width: 479.98px) { .ehl-gallery-item.is-wide { grid-column: span 1; } }

.ehl-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}
.ehl-gallery-item:hover img { transform: scale(1.06); opacity: 0.85; }
.ehl-gallery-item:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 2px; }

.ehl-gallery-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1rem 0.9rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ehl-gallery-item:hover .ehl-gallery-cap,
.ehl-gallery-item:focus-visible .ehl-gallery-cap { opacity: 1; }

/* Event highlights — lightbox */
.ehl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(10, 15, 28, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.ehl-lightbox.is-open { opacity: 1; visibility: visible; }
.ehl-lightbox img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 0.75rem;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}
.ehl-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.25s ease;
    z-index: 2;
}
.ehl-lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }

.ehl-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.25s ease;
    z-index: 2;
}
.ehl-lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.ehl-lightbox-prev { left: 1.5rem; }
.ehl-lightbox-next { right: 1.5rem; }

.ehl-lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
}

@media (max-width: 575.98px) {
    .ehl-lightbox-nav { width: 2.6rem; height: 2.6rem; font-size: 1rem; }
    .ehl-lightbox-prev { left: 0.75rem; }
    .ehl-lightbox-next { right: 0.75rem; }
}

/* Event registration flow */
.reg-layout {
    display: grid;
    gap: 2rem;
}
@media (min-width: 992px) {
    .reg-layout {
        grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
        align-items: start;
    }
}

.reg-summary {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

.reg-summary-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.reg-summary-body { padding: 1.5rem; }
.reg-summary-title { font-size: 1.125rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; line-height: 1.3; }
.reg-summary-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.reg-summary-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 0.875rem;
    color: var(--gray-600);
}
.reg-summary-list li:last-child { border-bottom: 0; }
.reg-summary-list i { color: var(--brand-500); margin-top: 0.15rem; width: 1rem; }

.reg-form-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) { .reg-form-card { padding: 2.5rem; } }

.reg-steps {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.reg-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: var(--light);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: rgba(15, 23, 42, 0.5);
    font-size: 0.875rem;
    font-weight: 600;
}
.reg-step-num {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.08);
    font-weight: 800;
    flex-shrink: 0;
}
.reg-step.is-active {
    background: rgba(199, 58, 97, 0.08);
    border-color: rgba(199, 58, 97, 0.2);
    color: var(--navy);
}
.reg-step.is-active .reg-step-num { background: var(--brand-500); color: #ffffff; }
.reg-step.is-done { color: var(--navy); }
.reg-step.is-done .reg-step-num { background: var(--earth-teal); color: #ffffff; }
.reg-step-label { line-height: 1.2; }

.reg-form-title { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 0.35rem; }
.reg-form-sub { color: var(--gray-600); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.reg-label { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.reg-field-error { margin: 0.35rem 0 0; font-size: 0.8125rem; color: #dc2626; }
.field.is-invalid { border-color: #dc2626 !important; background: #ffffff; }

.reg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.reg-btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: var(--navy);
    font-weight: 700;
}
.reg-btn-back:hover { border-color: var(--brand-500); color: var(--brand-500); }

.reg-check-grid {
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 576px) {
    .reg-check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.reg-check-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: var(--navy);
    cursor: pointer;
}
.reg-check-item input { accent-color: var(--brand-500); }

.reg-success {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) { .reg-success { padding: 4rem 3rem; } }

.reg-success-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-size: 2rem;
}
.reg-success-ref {
    display: inline-block;
    margin: 1rem 0 1.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    background: var(--light);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.04em;
}
.reg-success-meta {
    text-align: left;
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: var(--light);
}
.reg-success-meta p { margin: 0; color: var(--gray-600); font-size: 0.9375rem; }
.reg-success-meta p + p { margin-top: 0.5rem; }
.reg-success-meta strong { color: var(--navy); }

/* Careers page */
.career-benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 58, 97, 0.1);
    color: var(--brand-500);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.career-job-list { display: flex; flex-direction: column; gap: 1rem; }

.career-job-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 1rem;
    box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
    .career-job-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.75rem 2rem;
    }
}
.career-job-card:hover {
    border-color: rgba(199, 58, 97, 0.2);
    box-shadow: 0 20px 40px -18px rgba(199, 58, 97, 0.15);
    transform: translateY(-2px);
}

.career-job-dept {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-500);
    margin-bottom: 0.5rem;
}
.career-job-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.65rem;
}
.career-job-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(15, 23, 42, 0.55);
    margin-bottom: 0.75rem;
}
.career-job-meta .dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.25);
}
.career-job-meta i { color: var(--brand-500); margin-right: 0.35rem; }
.career-job-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
    max-width: 42rem;
}
.career-job-action { flex-shrink: 0; }
.career-job-action .btn-pill-brand { white-space: nowrap; }

.career-apply-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.career-apply-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}
.career-apply-form { width: 100%; margin-left: 0; }
@media (min-width: 1024px) { .career-apply-form { width: 100%; } }

.career-file-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--light);
    border: 1px dashed rgba(15, 23, 42, 0.15);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--navy);
    cursor: pointer;
}
.career-file-input:hover { border-color: var(--brand-500); }

.career-apply-success { text-align: center; padding: 2rem 1rem; }
.career-apply-success .reg-success-icon { width: 4rem; height: 4rem; font-size: 1.5rem; }

.inquiry-contact {
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: var(--light);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-office .career-benefit-icon { margin-bottom: 1rem; }
.contact-form-wrap .reg-label { display: block; margin-bottom: 0.5rem; }

/* --------------------------------------------------------------------------
   Product Finder modal (two-panel reference layout)
   -------------------------------------------------------------------------- */
body.pf-lock { overflow: hidden; }

.pf-overlay {
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.pf-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.pf-modal {
    position: fixed;
    inset: 0;
    z-index: 1070;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}

.pf-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pf-dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 52rem;
    margin: auto;
    background: #ffffff;
    border-radius: 1rem;
    overflow: visible;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pf-modal.is-open .pf-dialog {
    opacity: 1;
}

@media (min-width: 768px) {
    .pf-dialog {
        flex-direction: row;
        min-height: 28rem;
    }
}

/* Left branding panel */
.pf-brand {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem 0;
    background: linear-gradient(165deg, var(--brand-600) 0%, var(--brand-800) 45%, var(--brand-900) 100%);
    overflow: hidden;
    min-height: 10rem;
}

@media (min-width: 768px) {
    .pf-brand {
        width: 38%;
        min-height: auto;
        padding: 3rem 2rem 0;
    }
}

.pf-brand-logo {
    position: relative;
    z-index: 2;
    width: min(12rem, 70%);
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    margin-bottom: auto;
}

.pf-brand-mesh {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 255, 255, 0.22) 0%, transparent 70%),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 18px,
            rgba(255, 255, 255, 0.08) 18px,
            rgba(255, 255, 255, 0.08) 19px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent,
            transparent 18px,
            rgba(255, 255, 255, 0.06) 18px,
            rgba(255, 255, 255, 0.06) 19px
        );
    mask-image: linear-gradient(to top, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 40%, transparent 100%);
}

/* Right form panel */
.pf-panel {
    position: relative;
    flex: 1 1 auto;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

@media (min-width: 768px) {
    .pf-panel {
        width: 62%;
        padding: 2.75rem 2.5rem 2.25rem;
    }
}

.pf-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: var(--navy);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.pf-close:hover {
    color: var(--brand-500);
}

.pf-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.75rem;
    width: 100%;
}

.pf-form {
    width: 100%;
    max-width: 22rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.pf-field {
    width: 100%;
    min-height: 2.75rem;
    padding: 0 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #fafafa;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--navy);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pf-field:focus {
    outline: none;
    border-color: var(--brand-400);
    box-shadow: 0 0 0 3px rgba(199, 58, 97, 0.12);
    background: #ffffff;
}

.pf-field-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1rem;
    margin: 0;
    cursor: text;
}

.pf-field-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--navy);
    outline: none;
}

.pf-field-search input::placeholder {
    color: #9ca3af;
}

.pf-field-search i {
    color: #9ca3af;
    font-size: 0.9375rem;
    flex-shrink: 0;
}

/* Custom selects (avoids native select popup bugs inside modals) */
.pf-custom-select {
    position: relative;
    width: 100%;
}

.pf-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
    cursor: pointer;
}

.pf-select-label {
    flex: 1 1 auto;
    min-width: 0;
    color: #6b7280;
}

.pf-select-label:not(.is-placeholder) {
    color: var(--navy);
}

.pf-select-chevron {
    font-size: 0.75rem;
    color: #9ca3af;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.pf-custom-select.is-open .pf-select-chevron {
    transform: rotate(180deg);
}

.pf-select-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 20;
    max-height: 11rem;
    overflow-y: auto;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
}

.pf-select-menu[hidden] {
    display: none;
}

.pf-select-option {
    padding: 0.6rem 1rem;
    font-size: 0.9375rem;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.pf-select-option:hover,
.pf-select-option.is-selected {
    background: rgba(199, 58, 97, 0.08);
    color: var(--brand-600);
}

.pf-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.pf-btn {
    min-height: 2.75rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pf-btn-reset {
    border: 1px solid var(--brand-500);
    background: #ffffff;
    color: var(--brand-500);
}

.pf-btn-reset:hover {
    background: var(--brand-50);
}

.pf-btn-proceed {
    border: 1px solid var(--brand-500);
    background: var(--brand-500);
    color: #ffffff;
}

.pf-btn-proceed:hover {
    background: var(--brand-600);
    border-color: var(--brand-600);
}

.pf-alt {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    text-align: center;
}

.pf-view-all {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pf-view-all:hover {
    color: var(--brand-500);
}

.pf-view-all i {
    font-size: 0.75rem;
    margin-left: 0.15rem;
}

@media (max-width: 767.98px) {
    .pf-modal { align-items: flex-end; padding: 0; }
    .pf-dialog {
        max-width: none;
        border-radius: 1rem 1rem 0 0;
        max-height: 92vh;
        overflow-y: auto;
        overflow-x: visible;
    }

    .pf-panel {
        overflow: visible;
    }
    .pf-brand { min-height: 8rem; padding-top: 2rem; }
    .pf-panel { padding: 2rem 1.5rem 1.75rem; }
}

/* --------------------------------------------------------------------------
   Legal pages — Privacy Policy, Terms of Service
   -------------------------------------------------------------------------- */
.legal-content {
    max-width: 48rem;
    margin: 0 auto;
    color: rgba(15, 23, 42, 0.82);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.legal-meta {
    font-size: 0.875rem;
    color: rgba(15, 23, 42, 0.55);
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 2.75rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.35rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--brand-500);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--brand-600, #a82f52);
}

.legal-contact-list {
    list-style: none;
    padding-left: 0;
}

.legal-contact-list li {
    margin-bottom: 0.35rem;
}

.legal-inline-link {
    color: var(--brand-500);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-inline-link:hover {
    color: var(--brand-600, #a82f52);
}

