/* Font loaded async via <link> in index.html - font-display: swap */
/*
 * RESPONSIVENESS REFACTOR (before/after)
 * BEFORE: trails-grid used fixed breakpoints (1/2/4 cols) and trail-card had min-width: 320px at 768px,
 *   causing overflow on tablets. Cards had fixed heights. Gaps and typography were fixed.
 * AFTER: All card grids use repeat(auto-fit, minmax(min(100%, 260px), 1fr)) for fluid columns.
 *   Removed min-width from trail-card. Added --gap-responsive (clamp) and clamp() for typography.
 *   Container/hero use max-width + responsive padding to prevent stretch on ultrawide.
 *   Hover effects wrapped in @media (hover: hover) for touch-safe fallback. Buttons min-height 44px.
 */
:root {
    --color-primary: #FFD700;
    /* Accent for CTAs, highlights */
    --color-dark: #1d1d1f;
    --color-dark-secondary: #333;
    --color-card-bg: #ffffff;
    --color-light: #f5f5f7;
    /* Apple-style light gray */
    --color-gray: #6b6b6f;
    --color-white: #ffffff;

    /* Light mode surfaces - Apple inspired */
    --surface-base: #f5f5f7;
    --surface-elevated: #ffffff;
    --border-light: #d2d2d7;

    /* Aliases for consistency */
    --zinc-950: #f5f5f7;
    --zinc-900: #ffffff;
    --zinc-800: #d2d2d7;

    --font-main: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;

    /* Card variants - ensure bg + text always contrast (use as matched set) */
    --card-dark-bg: rgba(0, 0, 0, 0.65);
    --card-dark-text: #fafafa;
    --card-dark-muted: rgba(255, 255, 255, 0.85);
    --card-dark-border: rgba(255, 255, 255, 0.15);
    --card-dark-link: rgba(255, 255, 255, 0.9);
    --card-light-bg: #ffffff;
    --card-light-text: #1d1d1f;
    --card-light-muted: #525252;
    --card-light-border: #e4e4e7;
    --card-light-link: #1a1a1a;

    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    --container-width: 1200px;
    --container-max: 1400px;
    --gap-responsive: clamp(0.75rem, 2vw, 1.5rem);
    --section-padding: clamp(2.5rem, 6vw, 8rem);
    --section-padding-sm: clamp(2rem, 5vw, 5rem);
}

/* === Card API: use .card with .card--light or .card--dark for matched bg + text === */
.card {
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card--dark {
    background: var(--card-dark-bg);
    color: var(--card-dark-text);
    border-color: var(--card-dark-border);
}

.card--dark h1, .card--dark h2, .card--dark h3, .card--dark h4 {
    color: var(--card-dark-text);
}

.card--dark p, .card--dark li, .card--dark .card-muted {
    color: var(--card-dark-muted);
}

.card--dark a:not(.btn) {
    color: var(--card-dark-link);
}

.card--dark a:not(.btn):hover {
    color: var(--color-primary);
}

.card--dark:focus-within,
.card--dark:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.card--light {
    background: var(--card-light-bg);
    color: var(--card-light-text);
    border-color: var(--card-light-border);
}

.card--light h1, .card--light h2, .card--light h3, .card--light h4 {
    color: var(--card-light-text);
}

.card--light p, .card--light li, .card--light .card-muted {
    color: var(--card-light-muted);
}

.card--light a:not(.btn) {
    color: var(--card-light-link);
}

.card--light a:not(.btn):hover {
    color: var(--color-primary);
}

.card--light:focus-within,
.card--light:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Consistent hover/focus for both variants */
.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.card--dark:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-dark);
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--surface-base);
    color: var(--color-dark);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

ul {
    list-style: none;
}

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

/* Prevent CLS: aspect-ratio for common image containers */
.who-we-are-profile-photo-wrap,
.pillar-leader-photo-wrap {
    aspect-ratio: 1;
}

/* Container: max-width prevents awkward stretch on ultrawide; responsive padding */
.container {
    max-width: min(var(--container-width), 100%);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2.5rem);
    width: 100%;
}
@media (min-width: 1440px) {
    .container { max-width: var(--container-max); }
}

/* btn: min-height 44px for touch targets (WCAG 2.5.5) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 14px) clamp(1.25rem, 3vw, 32px);
    min-height: 44px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #1d1d1f;
}

.btn-primary:hover {
    background-color: #F2C200;
    transform: translateY(-4px) scale(1.05);
    /* More pronounced */
    box-shadow: 0 16px 32px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.15);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

/* Read More Links */
.read-more-link {
    display: inline-block;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.read-more-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    color: #F2C200;
    transform: translateX(4px);
}

.read-more-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-padding {
    padding: var(--section-padding) 0;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 2rem);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.15;
}

.section-icon {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 2rem);
    color: var(--color-dark);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Header – Hero/Nav layer: bg-black */
.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: clamp(50px, 12vw, 90px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
    min-height: 44px;
    line-height: 1.4;
}

.nav-sublist {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.nav-dropdown:hover .nav-sublist,
.nav-dropdown:focus-within .nav-sublist,
.nav-dropdown[data-open="true"] .nav-sublist {
    display: block;
}

/* Nested submenu: flyout to the right */
.nav-dropdown--nested .nav-sublist {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 4px;
}

.nav-sublist li {
    margin: 0;
}

.nav-sublist a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
    min-height: 44px;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.95);
}

.nav-sublist a:hover,
.nav-sublist a:focus {
    background: rgba(255, 215, 0, 0.15);
    color: var(--color-primary);
    outline: none;
}

/* Nested trigger: show arrow when has submenu */
.nav-trigger--nested {
    justify-content: space-between;
}
.nav-trigger--nested::after {
    content: "";
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left-color: currentColor;
    margin-left: 0.5rem;
    opacity: 0.7;
}

/* Active state: IT Strategy + parent when on suppliers page */
.nav-dropdown.active .nav-link,
.nav-dropdown.active .nav-trigger,
.nav-link.active,
.nav-mega-trigger.active .nav-mega-btn {
    color: var(--color-primary);
    font-weight: 600;
}

/* Mega Menu (desktop) */
.nav-mega-btn {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-mega-btn:hover {
    color: var(--color-primary);
}

.mega-menu {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s, max-height 0.35s ease;
}

.mega-menu[aria-hidden="false"] {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
}

.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
    cursor: pointer;
    pointer-events: none;
}

.mega-menu[aria-hidden="false"] .mega-menu-overlay {
    z-index: 998;
    pointer-events: auto;
}

.mega-menu-panel {
    position: relative;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    padding: 1.5rem 0 2rem;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mega-pillar {
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s, background 0.2s;
}

.mega-pillar:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.04);
}

.mega-pillar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    opacity: 0.95;
    margin-bottom: 1rem;
}

.mega-pillar-icon svg {
    width: 24px;
    height: 24px;
}

.mega-pillar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.mega-pillar-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.mega-pillar-links {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.mega-pillar-links li {
    margin: 0;
}

.mega-pillar-links a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s;
}

.mega-pillar-links a:hover {
    color: var(--color-primary);
}

.mega-link-suppliers {
    font-weight: 600;
    color: var(--color-primary) !important;
}

.mega-link-suppliers.active {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mega-pillar.active .mega-pillar-title {
    color: var(--color-primary);
}

.mega-link-suppliers:hover {
    color: #FFE44D !important;
}

.mega-pillar-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-block;
    margin-top: 0.25rem;
}

.mega-pillar-cta:hover {
    color: #FFE44D;
}

/* Desktop: hide accordion UI, show full card */
@media (min-width: 769px) {
    .mega-pillar-header {
        pointer-events: none;
        cursor: default;
        display: block;
        padding: 0;
    }
    .mega-pillar-header-inner {
        display: block;
    }
    .mega-pillar-accordion-arrow {
        display: none;
    }
    .mega-pillar-content {
        max-height: none !important;
        overflow: visible;
    }
    .mega-pillar-icon {
        margin-bottom: 1rem;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-dark);
    background-image: url('/assets/hero_bg.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.88));
    /* Stronger overlay so pathway cards stand out */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    /* Additional backdrop for text */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
}

.hero-content h1 {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    /* Better text contrast */
}

.hero-content p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

#home {
    scroll-margin-top: 7rem; /* clears sticky header on hash nav */
}

/* Impact Blueprint Banner - editable H1, H2, CTA */
.impact-blueprint-section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    text-align: center;
}
.impact-blueprint-content {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.impact-blueprint-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--color-dark);
}
.impact-blueprint-subhead {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    color: var(--color-dark-secondary);
}
.impact-blueprint-cta {
    margin-top: 0.5rem;
    min-height: 48px;
    padding: 0.75rem 1.75rem;
}

/* Core Solutions - services section */
.core-solutions-section {
    text-align: center;
}
.core-solutions-content {
    max-width: 64rem;
    margin: 0 auto;
}
.core-solutions-h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin: 0 0 2rem;
    color: var(--color-dark);
}
.core-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .core-solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.core-solution-card {
    text-align: left;
    padding: 1.5rem;
    background: var(--surface-base);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}
.core-solution-h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--color-dark);
}
.core-solution-p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-dark-secondary);
}
.core-solutions-cta {
    min-height: 48px;
    padding: 0.75rem 1.75rem;
}

/* Trail Guide Hero - section expands naturally, no overlap */
.hero-trails {
    min-height: 0;
    padding: 6.5rem 0 5rem;
    padding-bottom: 5.5rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .hero-trails {
        padding-bottom: 5.5rem;
    }
}

@media (min-width: 768px) {
    .hero-trails {
        padding-bottom: 6rem;
    }
}

@media (min-width: 1024px) {
    .hero-trails {
        padding-bottom: 6.5rem;
    }
}

/* hero-trails-content: responsive container, prevents overlap */
.hero-trails-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(72rem, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .hero-trails-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-trails-content {
        padding: 0 2rem;
    }
}

.hero-trails-content h1,
.hero-trails-content .hero-headline {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-trails-content h1,
    .hero-trails-content .hero-headline {
        font-size: clamp(2.5rem, 6vw, 3.75rem);
    }
}

.hero-trails-content .hero-trails-intro,
.hero-trails-content .hero-trails-subtext {
    color: rgba(255, 255, 255, 0.95);
}

.hero-trails-intro {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-trails-heading {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.hero-cta-secondary {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.hero-cta-secondary:hover {
    color: #fff;
    opacity: 1;
}

.hero-trails-subheading {
    font-size: clamp(1.35rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.hero-trails-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem;
}

@media (min-width: 640px) {
    .hero-trails-subheading {
        margin-top: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-trails-subheading {
        margin-top: 2rem;
    }
}

/* trails-grid: 1 col mobile, 2 cols tablet+, 2x2 desktop */
.trails-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    width: 100%;
}

@media (min-width: 640px) {
    .trails-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .trails-grid {
        gap: 1.5rem;
    }
}

/* Hero path cards - DARK variant (on hero image) - responsive, no overlap */
.trail-card {
    position: relative;
    z-index: 10;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 160px;
    background: var(--card-dark-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    color: var(--card-dark-text);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    text-align: left;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    word-wrap: break-word;
    white-space: normal;
}

@media (min-width: 640px) {
    .trail-card {
        min-height: 180px;
        padding: 1.5rem 1.25rem;
    }
}

@media (min-width: 1024px) {
    .trail-card {
        min-height: 200px;
        padding: 1.75rem 1.5rem;
    }
}

/* Hover only on devices that support it; touch devices get focus-visible instead */
@media (hover: hover) {
    .trail-card:hover {
        transform: translateY(-4px);
        background: rgba(0, 0, 0, 0.78);
        border-color: rgba(255, 197, 0, 0.5);
        box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 197, 0, 0.3), 0 0 32px rgba(255, 197, 0, 0.12);
    }
}

.trail-card:focus {
    outline: none;
}

.trail-card:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.trail-card.active {
    background: rgba(0, 0, 0, 0.82);
    border-color: var(--color-primary);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 197, 0, 0.4);
}

.trail-card-arrow {
    color: var(--color-primary);
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.trail-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--card-dark-text);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 640px) {
    .trail-name {
        font-size: 1.35rem;
    }
}

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

.trail-desc {
    font-size: 0.9rem;
    color: var(--card-dark-muted);
    line-height: 1.5;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 640px) {
    .trail-desc {
        font-size: 0.95rem;
    }
}

@media (min-width: 1024px) {
    .trail-desc {
        font-size: 1rem;
    }
}

.trail-card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 44px;
    align-self: flex-start;
}

@media (min-width: 640px) {
    .trail-card-cta {
        font-size: 0.95rem;
    }
}

.trail-card:hover .trail-card-cta {
    text-decoration: underline;
}

/* Trail preview - DARK variant (on hero) */
.trail-preview {
    background: var(--card-dark-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--card-dark-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trail-preview[hidden] {
    display: none !important;
}

.trail-preview-inner {
    max-width: 480px;
    margin: 0 auto;
}

.trail-preview-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.trail-steps {
    text-align: left;
    padding-left: 1.5rem;
    margin: 0 0 1.5rem;
    color: var(--card-dark-muted);
    line-height: 1.7;
    list-style-type: decimal;
}

.trail-steps li {
    color: var(--card-dark-muted);
}

.trail-steps li {
    margin-bottom: 0.5rem;
}


/* Technology Guided Trail */
.technology-trail .section-subtitle,
.it-strategy-trail .section-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.it-trail-prompt {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    margin: 2rem 0 1rem;
    text-align: center;
}

/* it-paths-grid: auto-fit - 1 col <480px, 2 cols 480-768px, 2-4 cols 768px+ */
.it-paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--gap-responsive);
    margin-bottom: 2rem;
}

.it-path-card {
    background: var(--card-light-bg);
    color: var(--card-light-text);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (hover: hover) {
    .it-path-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 197, 0, 0.4);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 197, 0, 0.2);
    }
}

.it-path-card:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.it-path-card.active {
    border-color: var(--color-primary);
}

.it-path-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--card-light-text);
}

.it-path-preview {
    background: var(--card-light-bg);
    color: var(--card-light-text);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    border: 1px solid var(--border-light);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.it-path-preview[hidden] {
    display: none !important;
}

.it-path-preview-title {
    font-size: 1.2rem;
    color: var(--card-light-text);
    margin-bottom: 0.5rem;
}

.it-path-preview-desc {
    color: var(--card-light-muted);
    line-height: 1.6;
    margin: 0;
}

.it-trust-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.it-trust-card {
    background: var(--card-light-bg);
    color: var(--card-light-text);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.it-trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 197, 0, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 197, 0, 0.2);
}

.it-trust-card:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.it-trust-card h4 {
    font-size: 1.15rem;
    color: var(--card-light-text);
    margin-bottom: 0.35rem;
}

.it-trust-sub {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.it-trust-card p {
    color: var(--card-light-muted);
    line-height: 1.6;
    margin: 0;
}

.elevation-card {
    border-color: var(--zinc-800);
}

.compliance-card {
    border-color: var(--zinc-800);
}

/* Trust Signals Section */
.trust-signals-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
}

.trust-agencies {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.trust-agency-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.trust-agency-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-white);
}

.trust-agency-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-closing {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 2rem;
    font-weight: 600;
}

@media (max-width: 600px) {
    .trust-agency-item {
        padding: 1rem 1.25rem;
    }
}

/* Communications Section */
.communications-section .section-header h2 {
    color: var(--color-dark);
}

.communications-section .section-subtitle {
    color: #555;
}

.communications-content {
    max-width: 840px;
    margin: 0 auto;
}

.comms-offerings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
    align-items: stretch;
}

@media (min-width: 768px) {
    .comms-offerings {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .comms-offerings {
        grid-template-columns: repeat(4, 1fr);
    }
}

.comms-offering {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 26, 46, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s;
}

.comms-offering:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.comms-offering h4 {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.comms-offering p {
    color: #444;
    line-height: 1.55;
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comms-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Leadership Biography (Communications Consultant) */
.leader-bio {
    margin: 2.5rem 0;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(26, 26, 46, 0.12);
    border-bottom: 1px solid rgba(26, 26, 46, 0.12);
}

.leader-bio-header {
    margin-bottom: 1.25rem;
}

.leader-bio-header h3 {
    font-size: 1.35rem;
    color: var(--color-dark);
    margin: 0 0 0.25rem 0;
}

.leader-bio-role {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
}

.leader-bio-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 1rem 0;
}

.leader-bio-text:last-of-type {
    margin-bottom: 0;
}

/* Leader bio on dark backgrounds (Leadership section) */
.leader-bio-dark .leader-bio-header h3 {
    color: var(--color-white);
}

.leader-bio-dark .leader-bio-text {
    color: var(--color-dark-secondary);
}

.leader-bio-dark {
    border-top-color: rgba(255, 215, 0, 0.2);
    border-bottom-color: rgba(255, 215, 0, 0.2);
}

.comms-value-box {
    background: rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 1.75rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.comms-value-box p {
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.comms-cta {
    margin-top: 2rem;
}

/* Leadership Development Section */
.leadership-content {
    max-width: 800px;
    margin: 0 auto;
}

.leadership-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-dark-secondary);
    margin-bottom: 2rem;
}

.leadership-offerings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
    align-items: stretch;
}

@media (min-width: 768px) {
    .leadership-offerings {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .leadership-offerings {
        grid-template-columns: repeat(4, 1fr);
    }
}

.leadership-offering {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    background: var(--card-light-bg);
    color: var(--card-light-text);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.leadership-offering:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 197, 0, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 197, 0, 0.2);
}

.leadership-offering:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.leadership-offering h4 {
    font-size: 1.05rem;
    color: var(--card-light-text);
    margin-bottom: 0.5rem;
}

.service-card-content {
    flex: 1;
}

.leadership-offering .service-card-content p {
    color: var(--card-light-muted);
    line-height: 1.55;
    margin: 0;
    font-size: 0.9rem;
}

.service-card-cta {
    margin-top: auto;
    padding-top: 1rem;
}

.btn-more-info {
    display: inline-block;
    min-height: 44px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--border-light);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-more-info:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--color-primary);
}

.btn-more-info:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.leadership-closing {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-dark-secondary);
    margin-top: 1.5rem;
}

.leadership-cta {
    margin-top: 2rem;
}

.it-confidence {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.technology-cta,
.it-strategy-cta {
    padding-top: 1rem;
}

/* Main content sections - light, minimal */
.section-dark {
    background: var(--surface-base);
    color: var(--color-dark);
    position: relative;
    border-top: 1px solid var(--border-light);
}

.section-dark::before {
    display: none;
}

/* Alternating elevation */
.section-gradient {
    background: var(--surface-elevated);
}

/* Ambient glow behind major CTAs/headers */
.glow-wrap {
    position: relative;
}

.glow-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    max-width: 800px;
    height: 120%;
    max-height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 204, 0, 0.05), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-card .card-icon h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.help-card {
    background: var(--zinc-900);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--zinc-800);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.help-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 197, 0, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 197, 0, 0.1);
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-gray);
    margin-top: -0.5rem;
    margin-bottom: clamp(1rem, 2vw, 2rem);
}

.section-light .section-subtitle {
    color: #555;
}

.intro-blurb {
    padding-top: var(--section-padding-sm);
    padding-bottom: var(--section-padding-sm);
}

.intro-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    color: var(--color-dark-secondary);
}

.pillar-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.pillar-link {
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: var(--color-dark);
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.pillar-link:hover {
    border-color: var(--color-dark);
}

/* Services Slider - Apple-style slide-over */
.services-slider-section {
    background: var(--surface-elevated);
}

.services-slider-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.services-slider-intro {
    text-align: center;
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.services-slider-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.services-slider-tab {
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--color-gray);
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.3s, background 0.3s;
    font-family: inherit;
}

.services-slider-tab:hover {
    color: var(--color-dark);
}

.services-slider-tab.active {
    color: var(--color-dark);
    background: var(--surface-base);
}

.services-slider-track-wrap {
    overflow: hidden;
    margin-bottom: 2rem;
}

.services-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-slider-panel {
    min-width: 100%;
    flex-shrink: 0;
    padding: 2rem 1rem;
    text-align: center;
}

.services-slider-panel h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.services-slider-panel p {
    font-size: 1.05rem;
    color: var(--color-dark-secondary);
    max-width: 540px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.services-slider-panel ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.services-slider-panel ul li {
    color: var(--color-dark-secondary);
    padding: 0.4rem 0;
    font-size: 1rem;
}

.services-slider-panel ul li::before {
    content: '– ';
    color: var(--color-gray);
}

/* Section bridge: Who We Are → Pillars */
.section-bridge {
    background: var(--color-white);
    padding: 3rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.section-bridge-copy {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-dark-secondary);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Pillar sections wrapper - axis aesthetic */
.pillar-sections {
    position: relative;
}

.pillar-sections > section + section {
    border-top: 1px solid var(--border-light);
    border-image: none;
}

.pillar-sections::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, var(--border-light) 5%, var(--border-light) 95%, transparent 100%);
    opacity: 0.35;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 991px) {
    .pillar-sections::before {
        display: none;
    }
}

/* Pillar two-column layout - service + team lead */
.pillar-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .pillar-two-col {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }

    /* Alternating layout: profile left, content right for .pillar-flip (desktop only) */
    .pillar-flip .pillar-two-col {
        grid-template-columns: 320px 1fr;
    }

    .pillar-flip .pillar-left {
        order: 2;
    }

    .pillar-flip .pillar-right {
        order: 1;
    }
}

/* Mobile: always content first, profile second (ignore pillar-flip order) */
@media (max-width: 991px) {
    .pillar-flip .pillar-left,
    .pillar-flip .pillar-right {
        order: unset;
    }
}

/* Scroll-in animation - pillars come from left or right */
.pillar-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pillar-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pillar-flip.pillar-reveal {
    transform: translateY(24px);
}

.pillar-flip.pillar-reveal.revealed {
    transform: translateY(0);
}

@media (min-width: 992px) {
    .pillar-reveal[data-pillar="0"] { transform: translateX(-48px) translateY(0); }
    .pillar-reveal[data-pillar="1"] { transform: translateX(48px) translateY(0); }
    .pillar-reveal[data-pillar="2"] { transform: translateX(-48px) translateY(0); }
    .pillar-reveal[data-pillar="3"] { transform: translateX(48px) translateY(0); }

    .pillar-reveal[data-pillar="0"].revealed,
    .pillar-reveal[data-pillar="2"].revealed { transform: translateX(0) translateY(0); }
    .pillar-reveal[data-pillar="1"].revealed,
    .pillar-reveal[data-pillar="3"].revealed { transform: translateX(0) translateY(0); }
}

.pillar-left {
    min-width: 0;
}

.pillar-left .section-header {
    text-align: left;
}

.pillar-left .section-header .section-subtitle {
    margin-top: 0.25rem;
    margin-bottom: 1.25rem;
}

.pillar-positioning {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--card-light-muted);
    margin-bottom: 1rem;
}

.pillar-positioning-note {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pillar-highlights {
    list-style: none;
    margin: 0 0 1.75rem 0;
    padding: 0;
}

.pillar-highlights li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--card-light-muted);
}

.pillar-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.pillar-left .pillar-cta {
    margin-top: 0;
}

/* Your Guide card - right column */
.pillar-guide-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.pillar-guide-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--card-light-muted);
    text-decoration: none;
}

.pillar-guide-more:hover {
    color: var(--color-primary);
}

.pillar-guide-more:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.pillar-leader-card {
    background: var(--card-light-bg);
    color: var(--card-light-text);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
    .pillar-leader-card {
        position: sticky;
        top: 6rem;
    }
}

.section-light .pillar-leader-card,
.section-light .pillar-guide-card {
    background: var(--surface-base);
    border-color: var(--border-light);
}

.pillar-leader-photo-wrap {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 1rem;
}

.pillar-leader-headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: var(--border-light);
}

.pillar-leader-linkedin {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0a66c2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.pillar-leader-linkedin:hover {
    background: #004182;
    transform: scale(1.08);
}

.pillar-leader-linkedin:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.pillar-leader-linkedin svg {
    width: 18px;
    height: 18px;
}

/* Profile page: LinkedIn icon on leader photo */
.leader-photo-wrap {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 1.75rem;
}

.leader-photo-wrap .leader-photo {
    margin-bottom: 0;
}

.leader-photo-linkedin {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0a66c2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.leader-photo-linkedin:hover {
    background: #004182;
    transform: scale(1.08);
}

.leader-photo-linkedin:focus-visible {
    outline: 2px solid rgba(255, 215, 0, 0.8);
    outline-offset: 2px;
}

.leader-photo-linkedin svg {
    width: 20px;
    height: 20px;
}

.pillar-leader-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--card-light-text);
    margin-bottom: 0.25rem;
    text-align: center;
}

.pillar-leader-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.pillar-leader-statement {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--card-light-muted);
    margin-bottom: 1.25rem;
    text-align: center;
}

.pillar-leader-cta {
    display: block;
    text-align: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--border-light);
    text-decoration: none;
    transition: all 0.25s ease;
}

.pillar-leader-cta:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--color-primary);
}

.pillar-leader-cta:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Operations Pillar */
.operations-section .pillar-content {
    max-width: 800px;
    margin: 0 auto;
}

.pillar-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-dark-secondary);
    margin-bottom: 2rem;
}

.pillar-niche-callout {
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.pillar-niche-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.pillar-niche-bullets {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--color-dark-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pillar-niche-bullets li {
    margin-bottom: 0.25rem;
}

.pillar-niche-bullets li:last-child {
    margin-bottom: 0;
}

/* pillar-offerings: 1 col <768px, 2 cols 768-1280px, 2-3 cols 1280px+ */
.pillar-offerings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--gap-responsive);
    margin: 2rem 0;
    align-items: stretch;
}

.pillar-offering {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    background: var(--card-light-bg);
    color: var(--card-light-text);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pillar-offering:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 197, 0, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 197, 0, 0.2);
}

.pillar-offering:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.pillar-offering h4 {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.pillar-offering p {
    color: var(--card-light-muted);
    line-height: 1.55;
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pillar-offering .card-learn-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.pillar-offering .card-learn-more:hover {
    text-decoration: underline;
}

.pillar-offering .card-learn-more:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.pillar-cta {
    margin-top: 2rem;
}

.it-pillar-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-dark-secondary);
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.approach-text {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2rem;
}

.service-tagline {
    font-size: 1.2rem !important;
    color: var(--color-primary) !important;
    margin-bottom: 1rem !important;
}

.service-what {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.services-grid-four {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* path-grid: 1 col <768px, 2 cols 768-1024px, 2-4 cols 1024px+ */
.path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--gap-responsive);
    margin-top: 2rem;
    align-items: stretch;
}

/* LIGHT cards (on light section backgrounds) - explicit contrast */
.path-card {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    background: var(--card-light-bg);
    color: var(--card-light-text);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (hover: hover) {
    .path-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 197, 0, 0.4);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 197, 0, 0.2);
    }
}

.path-card:focus-within {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.path-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--card-light-text);
}

.path-card p {
    font-size: 0.9rem;
    color: var(--card-light-muted);
    line-height: 1.55;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.path-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.path-card-learn-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
}

.path-card-learn-more:hover {
    text-decoration: underline;
}

.path-card-learn-more:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Contact Form */
.contact-section {
    padding: 4rem 0;
}

.contact-section .section-header h2 {
    color: var(--color-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-section .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.contact-form-embed {
    max-width: 600px;
    margin: 2rem auto 0;
    min-height: 773px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form-embed iframe {
    display: block;
}

.contact-form {
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-section .form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-dark);
}

.contact-section .form-group input {
    padding: 10px 14px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-section .form-group textarea {
    padding: 10px 14px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    min-height: 64px;
}

.contact-options {
    text-align: center;
    margin-bottom: 1.25rem;
}

.contact-cta-primary {
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
}

/* Contact CTA block (homepage replacement for full form) */
.contact-cta-section {
    padding: var(--section-padding) 0;
}

.contact-cta-block {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-block h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.contact-cta-copy {
    font-size: 1.05rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.contact-cta-bullets {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}

.contact-cta-bullets li {
    font-size: 0.95rem;
    color: var(--color-gray);
}

.contact-cta-bullets li::before {
    content: "•";
    color: var(--color-primary);
    margin-right: 0.35rem;
}

.contact-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
}

.contact-cta-buttons .btn {
    min-width: 180px;
}

@media (max-width: 480px) {
    .contact-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-cta-buttons .btn {
        width: 100%;
        min-width: 0;
    }
}

.footer-legal-links {
    font-size: 0.9rem;
    margin-top: 0.75rem;
    color: var(--color-dark-secondary);
}

.footer-legal-links a {
    color: var(--color-dark-secondary);
}

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

.card-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.check-icon {
    background-color: var(--color-primary);
    color: var(--color-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Who We Are – foundational, executive presence */
.who-we-are {
    background: var(--color-white);
    padding: var(--section-padding) 0;
}

.who-we-are-container {
    max-width: min(1152px, 100%);
    margin: 0 auto;
}

.who-we-are-header {
    margin-bottom: 4rem;
    text-align: left;
}

.who-we-are-header h2 {
    font-size: clamp(2.25rem, 5vw, 3.75rem); /* text-4xl to text-5xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.who-we-are-subheadline {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-dark-secondary);
    max-width: 900px;
    margin: 0;
    line-height: 1.65;
    text-align: left;
}

.who-we-are-narrative {
    max-width: 900px;
    margin: 0 0 4rem;
    text-align: left;
}

.who-we-are-narrative p {
    font-size: 1.125rem; /* text-lg */
    line-height: 1.85;
    color: var(--color-dark-secondary);
    margin-bottom: 1.5rem;
}

.who-we-are-narrative p:last-child {
    margin-bottom: 0;
}

.who-we-are-different {
    margin-bottom: 3rem;
}

.who-we-are-different-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.75rem;
    text-align: left;
}

.who-we-are-different-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1152px;
}

@media (min-width: 640px) {
    .who-we-are-different-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.who-we-are-different-grid li {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-dark-secondary);
    padding: 2rem 1.75rem;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); /* shadow-lg */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.who-we-are-different-grid li:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
}

.who-we-are-different-grid li strong {
    color: var(--color-dark);
    font-weight: 700;
}

.who-we-are-guides-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}

.who-we-are-team-row {
    background: #fafafa; /* zinc-50 – subtle band */
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
    .who-we-are-team-row {
        padding: 3rem 2.5rem;
    }
}

/* guides-grid (Meet Your Guides): 1 col mobile, 2 tablet, 4 desktop */
.who-we-are-team-grid.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .who-we-are-team-grid.guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .who-we-are-team-grid.guides-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Fallback for who-we-are-team-grid without guides-grid (e.g. other pages) */
.who-we-are-team-grid:not(.guides-grid) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--gap-responsive);
    list-style: none;
    margin: 0;
    padding: 0;
}

.who-we-are-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.5rem;
    background: var(--card-light-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

/* Equal-height cards in guides grid: stretch + space-between */
.guides-grid .who-we-are-profile {
    min-height: 0;
    height: 100%;
    justify-content: space-between;
}

.who-we-are-profile-photo-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: visible;
    margin-bottom: 1.25rem;
    background: var(--border-light);
    flex-shrink: 0;
}

.who-we-are-profile-photo-wrap .who-we-are-profile-photo {
    border-radius: 50%;
}

.who-we-are-profile-linkedin {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0a66c2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.who-we-are-profile-linkedin:hover {
    background: #004182;
    transform: scale(1.1);
    color: #fff;
}

.who-we-are-profile-linkedin:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.who-we-are-profile-linkedin svg {
    width: 14px;
    height: 14px;
}

.who-we-are-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-profile-pillar {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.who-we-are-profile:hover {
    border-color: rgba(255, 197, 0, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.who-we-are-profile-name {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

/* Prevent long names from pushing cards taller in guides grid */
.guides-grid .who-we-are-profile-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.who-we-are-profile-authority {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--card-light-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Push button to bottom in guides grid */
.guides-grid .who-we-are-profile-authority {
    flex-grow: 1;
    min-height: 0;
}

.guides-grid .who-we-are-profile-actions {
    margin-top: auto;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.guides-grid .who-we-are-profile-link {
    flex-shrink: 0;
}

.who-we-are-profile-link.btn-profile--outline {
    background: transparent;
    border: 1px solid var(--color-primary);
}

.who-we-are-profile-link.btn-profile--outline:hover {
    background: rgba(255, 215, 0, 0.08);
}

/* Meet Your Guides: dark buttons on light cards for readability */
.guides-grid .who-we-are-profile-link.btn-profile {
    color: var(--color-dark);
    border-color: var(--color-dark-secondary);
}

.guides-grid .who-we-are-profile-link.btn-profile:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.guides-grid .who-we-are-profile-link.btn-profile--outline,
.guides-grid .who-we-are-profile-link.btn-profile--icon {
    color: var(--color-dark-secondary);
    border-color: var(--color-dark-secondary);
}

.guides-grid .who-we-are-profile-link.btn-profile--outline:hover,
.guides-grid .who-we-are-profile-link.btn-profile--icon:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.guides-grid .who-we-are-profile-link.btn-profile--icon {
    padding: 0.5rem;
    min-width: 40px;
}

.guides-grid .who-we-are-profile-link.btn-profile--icon svg {
    display: block;
}

.guides-grid .who-we-are-profile-link:focus-visible {
    outline: 2px solid var(--color-dark);
    outline-offset: 2px;
}

.who-we-are-profile-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.who-we-are-profile-link.btn-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    border: 1.5px solid var(--color-primary);
    border-radius: 8px;
    background: transparent;
    color: var(--color-primary);
    box-shadow: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.who-we-are-profile-link.btn-profile:hover {
    background: rgba(255, 215, 0, 0.12);
    color: var(--color-dark);
    text-decoration: none;
}

.who-we-are-profile-link:not(.btn-profile):hover {
    text-decoration: underline;
}

.who-we-are-profile-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Who We Support – Premium section */
.who-we-support {
    background: #f4f4f5; /* zinc-100 */
}

.who-we-support-header {
    margin-bottom: 2.5rem;
}

.who-we-support-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.who-we-support-subheadline {
    font-size: 1.05rem;
    color: var(--color-dark-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.who-we-support-card-wrap {
    background: #ffffff;
    border-radius: 1rem; /* rounded-2xl ≈ 1rem */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* shadow-lg */
    padding: 2.5rem; /* p-10 */
    margin-bottom: 0;
}

.who-we-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .who-we-support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .who-we-support-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.client-type-tile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    color: var(--color-dark);
    border: 1px solid #e4e4e7; /* zinc-200 */
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* shadow-sm */
}

.client-type-tile--core {
    border-color: #e4e4e7;
}

.client-type-tile--secondary {
    border-color: #e4e4e7;
    opacity: 0.92;
}

.client-type-tile:hover,
.client-type-tile:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.client-type-tile:focus-within {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.client-type-tile-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-light-text);
    opacity: 0.9;
}

.client-type-tile-icon svg {
    width: 28px;
    height: 28px;
}

.client-type-tile-label {
    font-size: 0.95rem;
    color: var(--card-light-text);
    line-height: 1.4;
}

.law-firm-callout {
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.law-firm-callout-text {
    font-size: 0.95rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
    margin: 0;
}

.who-we-support-proof {
    font-size: 0.95rem;
    color: #525252;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.who-we-support-card-wrap .who-we-support-proof::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: #d4d4d8; /* zinc-300 */
    margin: 0 auto 1rem;
}

/* Why Different */
.section-light {
    background-color: var(--color-white);
    color: var(--color-dark);
}

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

.feature-item {
    text-align: left;
}

.feature-line {
    border: none;
    border-top: 3px solid var(--color-primary);
    width: 50px;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Services Grid (What we Offer) */
/* services-grid: responsive auto-fit - 1 col <768px, 2-4 cols 768px+ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--gap-responsive);
    margin-top: 3rem;
}

.service-card {
    background: var(--zinc-900);
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border-radius: 28px;
    border: 1px solid var(--zinc-800);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (hover: hover) {
    .service-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 197, 0, 0.3);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 197, 0, 0.1);
    }
}

.service-card h3 {
    color: var(--color-white);
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    /* Larger - Apple style */
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.5;
}

.service-list .check-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.result-text {
    color: rgba(255, 215, 0, 0.95);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Detailed Services Section */
.detailed-services-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.detailed-service-item {
    background: var(--zinc-900);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 24px;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border: 1px solid var(--zinc-800);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.detailed-service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 197, 0, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 197, 0, 0.1);
}

.detailed-service-item .service-icon {
    background-color: var(--color-primary);
    color: var(--color-dark);
    width: 40px;
    /* Slightly larger */
    height: 40px;
    border-radius: 12px;
    /* More rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.detailed-service-item .service-content h3 {
    color: var(--color-white);
    font-size: 1.6rem;
    /* Larger */
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.detailed-service-item .service-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    /* More spacious */
    font-size: 1.05rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #ccc;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: #f9f9f9;
    border: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    background: #f9f9f9;
    font-size: 0.95rem;
    color: #555;
    display: none;
    /* Hidden by default */
}

.btn-black {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-black:hover {
    background-color: #333;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,215,0,0.2);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 10001; /* Above chat widget (10000) so schedule CTA stays clickable */
}

.sticky-cta.visible {
    transform: translateY(0);
}

/* Team Adjustment */
.team {
    background-color: var(--color-dark);
    /* Changed from primary to dark */
}

.team h2 {
    color: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 280px));
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-bottom: 1rem;
    align-items: stretch;
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

.team-card {
    width: 100%;
    min-height: 520px;
    background: var(--zinc-900);
    border-radius: 28px;
    overflow: visible;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--zinc-800);
}

@media (max-width: 600px) {
    .team-card {
        min-height: 480px;
    }
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 197, 0, 0.1);
    border-color: rgba(255, 197, 0, 0.3);
}

.team-img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--border-light);
    /* Pop of color */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover .team-img-wrapper {
    transform: scale(1.05);
    border-color: var(--color-dark);
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    /* Slight moodiness */
    transition: filter 0.3s;
}

.team-card:hover img {
    filter: grayscale(0%);
}

.team-info {
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-height: 0;
    width: 100%;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.team-info-content {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.team-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-dark-secondary);
    line-height: 1.55;
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-bio {
    font-size: 0.82rem;
    color: var(--color-gray);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-card-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.team-role {
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Shared Card CTA Button - uniform across all partner cards */
.btn-card-cta {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
    background: var(--color-white);
    color: var(--color-dark);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-card-cta:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-card-cta:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

/* Legacy btn-small - keep for other uses, but cards use btn-card-cta */
.btn-small {
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 50px;
    font-weight: 700;
    background: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Screen reader only – for accessible headings */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Example: Contact + Newsletter + Social section */
.contact-newsletter-example {
    background-color: var(--color-light);
}

.contact-newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .contact-newsletter-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-newsletter-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-dark);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-dark-secondary);
    font-size: 0.95rem;
}

.contact-info-list li a {
    color: var(--color-dark-secondary);
    text-decoration: none;
}

.contact-info-list li a:hover {
    color: var(--color-primary);
}

.contact-icon {
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-newsletter-form-wrap {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    color: var(--color-dark);
    transition: border-color 0.2s;
}

.contact-newsletter-form input[type="email"]::placeholder {
    color: var(--color-gray);
}

.contact-newsletter-form input[type="email"]:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
}

.contact-newsletter-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-newsletter-socials .social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--border-light);
    color: var(--color-dark-secondary);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.contact-newsletter-socials .social-circle:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(255, 215, 0, 0.08);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #0f172a;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    color: var(--color-white);
}

.testimonials-heading {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #94a3b8;
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-stars {
    color: var(--color-primary);
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.testimonial-stars .star {
    display: inline;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer contact + newsletter block (bottom right) */
.footer-contact-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.footer-contact-newsletter .contact-info-list {
    margin: 0;
}

.footer-contact-newsletter .contact-info-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-newsletter-wrap {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.footer-contact-newsletter .contact-newsletter-form {
    gap: 0.75rem;
    display: flex;
    flex-direction: column;
}

.footer-contact-newsletter .contact-newsletter-form input[type="email"] {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    min-width: 0;
}

.footer-contact-newsletter .contact-newsletter-form .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    min-height: 44px;
    width: 100%;
}

@media (min-width: 480px) {
    .footer-contact-newsletter .contact-newsletter-form {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .footer-contact-newsletter .contact-newsletter-form input[type="email"] {
        flex: 1;
        min-width: 180px;
    }
    .footer-contact-newsletter .contact-newsletter-form .btn {
        width: auto;
    }
}

.footer-socials {
    justify-content: flex-start;
    margin-top: 0.25rem;
}

.footer-socials .social-circle {
    background: var(--color-dark-secondary);
    border-color: var(--color-dark-secondary);
    color: var(--color-white);
}

.footer-socials .social-circle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

/* Footer – matches navbar design system */
.footer {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--color-dark);
    border-top: 1px solid var(--border-light);
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

@media (min-width: 768px) {
    .footer-layout {
        grid-template-columns: minmax(min(100%, 220px), 1.2fr) 1fr minmax(min(100%, 240px), 1fr) minmax(min(100%, 260px), 1fr);
        gap: clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 4vw, 3rem);
    }
}

@media (min-width: 1024px) {
    .footer-layout {
        gap: clamp(2rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    width: auto;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-tagline {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: var(--color-dark-secondary);
    line-height: 1.5;
    max-width: min(240px, 100%);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-member-link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-member-link:hover,
.footer-member-link:focus-visible {
    color: var(--color-primary);
}

.footer-member-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-nav-block {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.footer-nav-block .footer-col {
    min-width: 0;
}

@media (min-width: 480px) {
    .footer-nav-block .footer-col {
        min-width: 120px;
    }
}

.footer-legal-cluster {
    flex-basis: 100%;
}

@media (min-width: 768px) {
    .footer-legal-cluster {
        flex-basis: auto;
    }
}

.footer-veteran-badge {
    width: auto;
    max-width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 0.5rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul ul {
    margin-top: 0.25rem;
    margin-left: 1rem;
    padding-left: 0.5rem;
    border-left: 1px solid var(--border-light);
}

.footer-col ul ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul li a {
    color: var(--color-dark-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus-visible {
    color: var(--color-primary);
}

.footer-col ul li a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-col ul li.footer-subgroup {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.footer-col ul li.footer-subgroup:first-of-type {
    margin-top: 0;
}

.footer-col ul li.footer-subgroup + li a {
    padding-left: 0;
}

/* Trail Guides – collapsible sub-menus */
.footer-trail-guides .trail-guide-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.footer-trail-guides .trail-guide-item {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}
.footer-trail-guides .trail-guide-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.footer-trail-guides .trail-guide-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.25rem;
    list-style: none;
    cursor: pointer;
    padding: 0.5rem 0;
    color: var(--color-dark-secondary);
    transition: color 0.2s ease;
}
.footer-trail-guides .trail-guide-summary::-webkit-details-marker,
.footer-trail-guides .trail-guide-summary::marker {
    display: none;
}
.footer-trail-guides .trail-guide-summary:hover {
    color: var(--color-primary);
}
.footer-trail-guides .trail-guide-summary:hover .trail-guide-title {
    color: var(--color-primary);
}
.footer-trail-guides .trail-guide-summary:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}
.footer-trail-guides .trail-guide-name {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.1rem;
}
.footer-trail-guides .trail-guide-title {
    display: block;
    font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    font-weight: 400;
    color: var(--color-dark-secondary);
    line-height: 1.35;
    word-spacing: 0.02em;
    flex: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.footer-trail-guides .trail-guide-chevron {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    margin-top: 0.15rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E") no-repeat center;
    background-size: 12px;
    transition: transform 0.2s ease;
}
.footer-trail-guides .trail-guide-item[open] .trail-guide-chevron {
    transform: rotate(180deg);
}
.footer-trail-guides .trail-guide-sublinks {
    list-style: none;
    padding: 0 0 0.75rem 0;
    margin: 0;
}
.footer-trail-guides .trail-guide-sublinks li {
    margin-bottom: 0.35rem;
}
.footer-trail-guides .trail-guide-sublinks li:last-child {
    margin-bottom: 0;
}
.footer-trail-guides .trail-guide-sublinks a {
    display: block;
    font-size: 0.85rem;
    color: var(--color-dark-secondary);
    text-decoration: none;
    padding: 0.2rem 0;
    transition: color 0.2s ease;
}
.footer-trail-guides .trail-guide-sublinks a:hover,
.footer-trail-guides .trail-guide-sublinks a:focus-visible {
    color: var(--color-primary);
}

.footer-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .footer-layout .footer-links-grid {
        grid-column: 2 / -1;
    }
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

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

.socials .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-dark-secondary);
    transition: color 0.2s ease, transform 0.2s ease;
}

.socials .social-icon:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.socials .social-icon svg {
    width: 24px;
    height: 24px;
}

/* Extra small screens (320px) - prevent overflow */
@media (max-width: 374px) {
    .container {
        padding: 0 1rem;
    }
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    .logo-img {
        height: 48px;
    }
}

/* Mobile nav: accordion style, no hover */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 1rem;
        min-height: 44px;
        width: 100%;
        justify-content: space-between;
    }

    .nav-trigger::after {
        content: "";
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-top-color: currentColor;
        margin-left: 0.5rem;
        transition: transform 0.2s;
    }

    .nav-dropdown[data-open="true"] > .nav-trigger::after {
        transform: rotate(180deg);
    }

    .nav-trigger--nested::after {
        border-top-color: transparent;
        border-left-color: currentColor;
    }

    .nav-dropdown--nested[data-open="true"] > .nav-trigger--nested::after {
        transform: rotate(90deg);
    }

    /* On mobile: sublists stack below (no flyout) */
    .nav-sublist {
        position: static;
        margin-top: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .nav-dropdown--nested .nav-sublist {
        margin-left: 0;
    }

    .nav-sublist a {
        padding-left: 2rem;
        border-left: 3px solid transparent;
    }

    .nav-sublist--nested a {
        padding-left: 2.5rem;
    }

    /* Hide submenus on mobile until opened via JS */
    .nav-dropdown .nav-sublist {
        display: none;
    }

    .nav-dropdown[data-open="true"] .nav-sublist,
    .nav-dropdown:hover .nav-sublist,
    .nav-dropdown:focus-within .nav-sublist {
        display: block;
    }

    .nav-list {
        font-size: 0.9rem;
    }

    .section-padding {
        padding: var(--section-padding-sm) 0;
    }

    .header-content {
        flex-direction: column;
        height: auto;
        padding: clamp(0.75rem, 3vw, 1rem) clamp(1rem, 4vw, 2rem);
        gap: 1rem;
    }

    h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        margin: 0.5rem 0 !important;
    }

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

    .contact-form {
        max-width: 100%;
    }

    .contact-form-embed {
        max-width: 100%;
        min-height: 600px;
    }
}

@media (min-width: 769px) {
    /* Desktop: hide mobile-only arrow on top-level triggers */
    .nav-trigger:not(.nav-trigger--nested)::after {
        display: none;
    }
}

/* Mega Menu - Mobile accordion */
@media (max-width: 768px) {
    .mega-menu-panel .container {
        padding: 0 1rem;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mega-pillar {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0;
        background: transparent;
    }

    .mega-pillar:hover {
        background: transparent;
    }

    .mega-pillar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
        min-height: 44px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .mega-pillar-header-inner {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .mega-pillar-icon {
        margin-bottom: 0;
        width: 32px;
        height: 32px;
    }

    .mega-pillar-icon svg {
        width: 20px;
        height: 20px;
    }

    .mega-pillar-title {
        margin-bottom: 0;
        font-size: 1rem;
    }

    .mega-pillar-accordion-arrow {
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-top-color: currentColor;
        transition: transform 0.2s;
    }

    .mega-pillar[data-open="true"] .mega-pillar-accordion-arrow {
        transform: rotate(180deg);
    }

    .mega-pillar-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .mega-pillar[data-open="true"] .mega-pillar-content {
        max-height: 600px;
    }

    .mega-pillar-desc {
        padding: 0 0 1rem 0;
        margin-bottom: 0;
        font-size: 0.8rem;
    }

    .mega-pillar-links {
        padding-bottom: 1rem;
        margin-bottom: 0;
    }

    .mega-pillar-links a {
        padding: 0.75rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mega-pillar-cta {
        padding: 0.75rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* ========== Technology Landing Page ========== */
.tech-page-hero {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: var(--color-dark) !important;
    color: #fff;
}

.tech-hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .tech-hero-layout {
        grid-template-columns: 1fr minmax(280px, 340px);
    }
}

.tech-hero-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.tech-hero-subhead {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.tech-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tech-hero-ctas .btn {
    min-width: 0;
}

.tech-hero-trust {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.btn-secondary-tech {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-tech:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

/* Light sections: readable secondary buttons */
.section-alt .btn-secondary-tech,
.section-light .btn-secondary-tech {
    color: var(--color-dark);
    border-color: var(--color-dark-secondary);
}

.section-alt .btn-secondary-tech:hover,
.section-light .btn-secondary-tech:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.tech-guide-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
}

.tech-guide-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    background: var(--border-light);
}

.tech-guide-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-guide-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.tech-guide-title {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-guide-cred {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tech-guide-btn {
    width: 100%;
}

.tech-section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

/* Technology explore pages: dark hero with high-contrast white text */
.tech-explore-hero {
    background: var(--color-dark) !important;
    color: #fff;
}
.tech-explore-hero h1,
.tech-explore-hero h2,
.tech-explore-hero p,
.tech-explore-hero a,
.tech-explore-hero span {
    color: inherit;
}
.tech-explore-hero a {
    color: rgba(255, 255, 255, 0.9);
}
.tech-explore-hero a:hover {
    color: #fff;
}
.tech-explore-hero nav[aria-label="Breadcrumb"] span {
    color: rgba(255, 255, 255, 0.75);
}
.tech-explore-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}
.tech-explore-h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #fff;
}
.tech-explore-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 640px;
    line-height: 1.6;
}

.tech-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}
.tech-section.section-light ul,
.tech-section.section-light li,
.tech-section.section-light p {
    color: var(--color-dark-secondary);
}
.tech-section.section-light a:not(.btn) {
    color: var(--color-dark);
}
.tech-section.section-light a:not(.btn):hover {
    color: var(--color-primary);
}

.tech-cta-section h2 {
    color: #fff !important;
}

.tech-section-intro {
    font-size: 1.05rem;
    color: var(--color-dark-secondary);
    margin-bottom: 1.5rem;
    max-width: 640px;
}

/* Technology Ecosystem - Menu grid */
.ecosystem-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
    .ecosystem-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .ecosystem-menu-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem 2rem;
    }
}

.ecosystem-menu-item {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    padding: 0.4rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

a.ecosystem-menu-item:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Technology Ecosystem - Pillars grid + accordion */
.ecosystem-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.ecosystem-download-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.ecosystem-download-link:hover {
    text-decoration: underline;
}

.ecosystem-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .ecosystem-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ecosystem-pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.ecosystem-pillar-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--surface-base);
    min-height: 0;
    height: auto;
}

.ecosystem-pillar-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.12);
}

.ecosystem-pillar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem;
}

.ecosystem-pillar-desc {
    font-size: 0.95rem;
    color: var(--color-dark-secondary);
    line-height: 1.5;
    margin: 0 0 1rem;
    flex: 1;
}

.ecosystem-pillar-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.ecosystem-pillar-highlights li {
    font-size: 0.875rem;
    color: var(--color-dark-secondary);
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.ecosystem-pillar-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.ecosystem-pillar-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: auto;
}

.ecosystem-pillar-link:hover {
    text-decoration: underline;
}

.ecosystem-accordion-controls {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ecosystem-accordion-control {
    padding: 0.4rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--surface-base);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    cursor: pointer;
}

.ecosystem-accordion-control:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--color-primary);
}

.ecosystem-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ecosystem-accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    scroll-margin-top: 6rem;
}

.ecosystem-accordion-btn {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    background: var(--surface-base);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.ecosystem-accordion-btn:hover {
    background: rgba(255, 215, 0, 0.06);
}

.ecosystem-accordion-btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.ecosystem-accordion-icon {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    flex-shrink: 0;
}

.ecosystem-accordion-icon::before,
.ecosystem-accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    transition: transform 0.25s ease;
}

.ecosystem-accordion-icon::before {
    width: 12px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ecosystem-accordion-icon::after {
    width: 2px;
    height: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ecosystem-accordion-btn[aria-expanded="true"] .ecosystem-accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ecosystem-accordion-panel {
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-top: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.ecosystem-accordion-panel[hidden] {
    display: none;
}

.ecosystem-pillar-solves {
    font-size: 1rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.ecosystem-pillar-subhead {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-dark);
    margin: 0 0 0.5rem;
}

.ecosystem-pillar-list {
    font-size: 0.95rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.ecosystem-pillar-platforms {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-top: 1rem;
}

/* Technology Ecosystem map section */
.tech-ecosystem-map-wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: visible;
    background: #fff;
}

.tech-ecosystem-map-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Technology Solution Map - text-based component */
.tsm-map {
    padding: 1.5rem;
    background: #fff;
    width: 100%;
    max-width: 100%;
    border-radius: 11px;
}

.tsm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.tsm-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tsm-row {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.tsm-row-top {
    grid-template-columns: 1fr;
}

.tsm-row-bottom {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .tsm-row-top {
        grid-template-columns: repeat(4, 1fr);
    }

    .tsm-row-bottom {
        grid-template-columns: 2fr 1fr 2fr;
    }
}

.tsm-panel {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.tsm-panel-header {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-dark);
    padding: 0.6rem 0.85rem;
    margin: 0;
    flex-shrink: 0;
}

.tsm-panel-body {
    padding: 0.75rem 0.85rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tsm-panel-cols .tsm-panel-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem 1.25rem;
}

@media (min-width: 1024px) {
    .tsm-panel-cols .tsm-panel-body {
        grid-template-columns: 1fr 1fr;
    }
}

.tsm-section {
    break-inside: avoid;
    min-height: 0;
}

.tsm-section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.tsm-section-highlight .tsm-section-label {
    color: var(--color-primary);
}

.tsm-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tsm-section li {
    font-size: 0.75rem;
    color: var(--color-dark-secondary);
    line-height: 1.5;
    padding-left: 0.85rem;
    position: relative;
    margin-bottom: 0.15rem;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.tsm-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gray);
    font-size: 0.65rem;
}

.tsm-section-highlight {
    background: rgba(255, 215, 0, 0.08);
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.tsm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tsm-print-btn,
.tsm-download-btn {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--surface-base);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}

.tsm-print-btn:hover,
.tsm-download-btn:hover {
    background: var(--color-gray-light);
}

/* Technology Solution Map - Print styles */
@media print {
    @page {
        size: auto;
        margin: 0.5in;
    }

    html, body {
        background: #fff !important;
        color: #000 !important;
    }

    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Hide screen-only / no-print elements */
    .no-print,
    .header,
    .footer,
    .skip-link,
    .sticky-cta,
    .tech-page-hero,
    #who-this-is-for,
    #what-i-do,
    #why-trusted-advisor,
    #how-it-works,
    #outcomes,
    #examples,
    #faq,
    .tech-cta-section,
    .tech-ecosystem-digital-title,
    .tech-ecosystem-digital-grid,
    .tech-ecosystem-positioning,
    .tech-ecosystem-engage-title,
    .tech-ecosystem-engage-grid,
    .tsm-actions,
    .tsm-print-btn,
    .tsm-download-btn {
        display: none !important;
    }

    /* Hide chat widget and floating UI (LeadConnector, etc.) */
    iframe[src*="leadconnector"],
    iframe[src*="leadconnectorhq"],
    [id*="chat-widget"],
    [id*="goadb-widget"],
    [class*="chat-widget"],
    [class*="chat-bubble"],
    [class*="chat-launcher"],
    [data-widget="chat"] {
        display: none !important;
        visibility: hidden !important;
    }

    /* Print area: show only solution map section */
    .print-area {
        display: block !important;
    }

    main {
        padding: 0 !important;
    }

    #technology-ecosystem .container {
        max-width: none !important;
        padding: 0 !important;
    }

    #technology-ecosystem .tech-section-intro {
        display: none !important;
    }

    /* Map container for print - scale to fit Letter/A4 */
    .solution-map-print.tech-ecosystem-map-wrap,
    .tsm-map {
        border-radius: 0 !important;
    }

    .solution-map-print.tech-ecosystem-map-wrap {
        max-width: none !important;
        margin: 0 0 0.5rem !important;
        padding: 0 !important;
        background: #fff !important;
        transform: scale(0.9);
        transform-origin: top left;
    }

    .tech-ecosystem-map-wrap {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    .tsm-map {
        padding: 0.35rem 0.5rem !important;
        background: #fff !important;
        box-shadow: none !important;
    }

    /* Typography for print */
    .tsm-map .tsm-title,
    #technology-ecosystem h2 {
        font-size: 18px !important;
        margin: 0 0 8px 0 !important;
        line-height: 1.25;
        color: #000 !important;
    }

    /* Lock grid for print - 4 cols top, 3 cols bottom */
    .tsm-row-top {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .tsm-row-bottom {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .tsm-grid {
        gap: 0.4rem !important;
    }

    .tsm-row {
        gap: 0.5rem !important;
    }

    /* Panels: no split, no ink waste */
    .tsm-panel {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none !important;
        border-radius: 0 !important;
        border: 1px solid #ccc !important;
        padding: 0 !important;
    }

    .tsm-panel-header {
        font-size: 12px !important;
        padding: 0.35rem 0.5rem !important;
        background: #111 !important;
        color: #fff !important;
        line-height: 1.25;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .tsm-panel-body {
        padding: 0.35rem 0.5rem !important;
        gap: 0.4rem !important;
    }

    .tsm-panel-cols .tsm-panel-body {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.4rem 0.6rem !important;
    }

    .tsm-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .tsm-section-label {
        font-size: 10px !important;
        letter-spacing: 0.08em !important;
        line-height: 1.3;
        color: #000 !important;
    }

    .tsm-section-highlight {
        background: #f5f5f5 !important;
        border: 1px solid #ddd !important;
        border-radius: 0 !important;
        padding: 0.35rem !important;
    }

    .tsm-section-highlight .tsm-section-label {
        color: #000 !important;
    }

    .tsm-section li {
        font-size: 9.5px !important;
        line-height: 1.25 !important;
        color: #000 !important;
    }

    .tsm-section li::before {
        color: #666 !important;
    }

    .tech-ecosystem-caption {
        font-size: 10px !important;
        color: #000 !important;
        line-height: 1.35;
        margin-top: 0.5rem !important;
    }

    .print-break {
        break-before: page;
    }
}

.tech-ecosystem-caption {
    font-size: 0.95rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.tech-ecosystem-digital-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.tech-ecosystem-digital-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .tech-ecosystem-digital-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-ecosystem-digital-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-ecosystem-digital-block {
    background: var(--surface-base);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.tech-ecosystem-digital-block h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.tech-ecosystem-digital-block p {
    font-size: 0.9rem;
    color: var(--color-dark-secondary);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.tech-ecosystem-digital-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-ecosystem-digital-block li {
    font-size: 0.875rem;
    color: var(--color-dark-secondary);
    padding-left: 1rem;
    margin-bottom: 0.35rem;
    position: relative;
    line-height: 1.5;
}

.tech-ecosystem-digital-block li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.tech-ecosystem-positioning {
    font-size: 1rem;
    color: var(--color-dark-secondary);
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.tech-ecosystem-engage-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.tech-ecosystem-engage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tech-ecosystem-engage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-ecosystem-engage-block {
    background: var(--surface-base);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.25rem;
}

.tech-ecosystem-engage-block h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.tech-ecosystem-engage-block p {
    font-size: 0.9rem;
    color: var(--color-dark-secondary);
    line-height: 1.5;
    margin: 0;
}

.tech-symptoms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-symptoms-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
}

.tech-symptoms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* Services grid: 3 cols desktop, 2 tablet, 1 mobile */
.tech-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tech-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-service-card {
    background: var(--surface-base);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tech-service-card:hover {
    border-color: rgba(255, 197, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tech-service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.tech-service-card p {
    font-size: 0.95rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.tech-service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.tech-service-link:hover {
    text-decoration: underline;
}

/* How it works - 3 steps */
.tech-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tech-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-step {
    background: var(--surface-base);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.tech-step-num {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.tech-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.35rem;
}

.tech-step p {
    font-size: 0.95rem;
    color: var(--color-dark-secondary);
    line-height: 1.5;
    margin: 0;
}

.tech-outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-outcomes-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
}

.tech-outcomes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.tech-case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .tech-case-studies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.tech-case-card {
    background: var(--surface-base);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.tech-case-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.tech-case-label + .tech-case-label {
    margin-top: 1rem;
}

.tech-case-card p {
    font-size: 0.95rem;
    color: var(--color-dark-secondary);
    line-height: 1.55;
    margin: 0;
}

.tech-case-card p.tech-case-result {
    font-weight: 600;
    color: var(--color-dark);
}

.tech-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-faq-item {
    background: var(--surface-base);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.tech-faq-item dt {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.tech-faq-item dd {
    font-size: 0.95rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
    margin: 0;
}

.section-alt {
    background: var(--surface-base);
}

.tech-cta-section {
    background: var(--color-dark) !important;
    text-align: center;
}

.tech-cta-section h2 {
    color: #fff !important;
    margin-bottom: 1.25rem;
}

.tech-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.tech-cta-optional {
    font-size: 0.9rem;
}

.tech-cta-optional a {
    color: var(--color-primary);
    text-decoration: none;
}

.tech-cta-optional a:hover {
    text-decoration: underline;
}

/* Why Work With a Technology Consultant / Trusted Advisor */
.tech-advisor-section {
    background: var(--color-dark) !important;
    color: rgba(255, 255, 255, 0.95);
}

.tech-advisor-section h2 {
    color: #fff !important;
    margin-bottom: 1.5rem;
}

.tech-advisor-intro {
    max-width: 720px;
    margin-bottom: 2rem;
}

.tech-advisor-intro p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.tech-advisor-intro p:last-child {
    margin-bottom: 0;
}

.tech-advisor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .tech-advisor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-advisor-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.tech-advisor-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.tech-advisor-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

.tech-advisor-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem;
}

.tech-advisor-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-advisor-card li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.tech-advisor-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.tech-advisor-source {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 0.75rem;
    margin-bottom: 0 !important;
}

.tech-advisor-authority {
    max-width: 640px;
    margin-bottom: 2rem;
}

.tech-advisor-authority p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.tech-advisor-cta {
    text-align: center;
}

.tech-advisor-cta .btn {
    min-width: 280px;
}

/* Enterprise Connectivity section */
.tech-connectivity-section {
    background: var(--surface-base) !important;
    color: var(--color-dark);
}

.tech-connectivity-section h2 {
    color: var(--color-dark) !important;
    margin-bottom: 1.5rem;
}

.tech-connectivity-intro {
    max-width: 720px;
    margin-bottom: 2rem;
}

.tech-connectivity-intro p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-dark-secondary);
}

.tech-connectivity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .tech-connectivity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-connectivity-grid {
        gap: 1.75rem;
    }
}

.tech-connectivity-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.tech-connectivity-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.75rem;
}

.tech-connectivity-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-dark-secondary);
    margin: 0 0 1rem;
}

.tech-connectivity-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-connectivity-card li {
    font-size: 0.9rem;
    color: var(--color-dark-secondary);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.tech-connectivity-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.tech-connectivity-authority {
    max-width: 640px;
    margin-bottom: 2rem;
}

.tech-connectivity-authority p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-dark);
    font-weight: 500;
}

.tech-connectivity-cta {
    text-align: center;
}

.tech-connectivity-cta .btn {
    min-width: 280px;
}

/* Digital Signage & Menu Boards */
.tech-signage-section {
    background: var(--color-dark) !important;
    color: rgba(255, 255, 255, 0.95);
}

.tech-signage-section h2 {
    color: #fff !important;
    margin-bottom: 0.5rem;
}

.tech-signage-subhead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 1.25rem;
}

.tech-signage-intro {
    max-width: 720px;
    margin-bottom: 2rem;
}

.tech-signage-intro p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.tech-signage-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.25rem;
}

.tech-signage-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .tech-signage-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-signage-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.tech-signage-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
}

.tech-signage-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
}

.tech-signage-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.75rem;
}

.tech-signage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-signage-card li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.tech-signage-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.tech-signage-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .tech-signage-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-signage-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tech-signage-step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 1rem;
}

/* Light section: readable text on light background */
.section-alt .tech-signage-step {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.section-alt .tech-signage-step h4 {
    color: var(--color-dark);
}

.section-alt .tech-signage-step p {
    color: var(--color-dark-secondary);
}

.tech-signage-step-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.tech-signage-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.35rem;
}

.tech-signage-step p {
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.tech-signage-callout {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.tech-signage-callout h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
}

.tech-signage-callout p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.tech-signage-cta {
    text-align: center;
}

.tech-signage-cta .btn {
    min-width: 280px;
}

@media (max-width: 767px) {
    .tech-hero-ctas {
        flex-direction: column;
    }

    .tech-hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }

    .tech-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tech-cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .tech-advisor-cta .btn,
    .tech-connectivity-cta .btn,
    .tech-signage-cta .btn {
        width: 100%;
        max-width: 320px;
    }
}