/* Synopsis Website Styles */
/* Fonts are loaded separately via fonts.css */

:root {
            --blue: #0077C8;
            --blue-dark: #005A9E;
            --black: #141414;
            --white: #FFFFFF;
            --off-white: #F4F3F1;
            --gray: #E2E2E2;
            --medium-gray: #8A8A8A;
            --dark-gray: #555555;
            --light-blue: #C9DBF2;
            --pale-blue: #F4F3F1;
            --near-black: #141414;
        }

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

        body {
            font-family: 'GalanoGrotesque', 'Calibri', 'Helvetica Neue', Arial, sans-serif;
            font-size: 17px;
            line-height: 1.6;
            color: var(--black);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        /* Skip nav for accessibility */
        .skip-nav {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--blue);
            color: white;
            padding: 8px 16px;
            z-index: 200;
            font-size: 14px;
        }
        .skip-nav:focus { top: 0; }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: var(--white);
            border-bottom: 1px solid var(--gray);
            padding: 0 48px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-weight: 700;
            font-size: 22px;
            color: var(--blue);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: baseline;
            gap: 3px;
        }

        .nav-logo-dot {
            display: inline-block;
            width: 4px;
            height: 4px;
            background: var(--blue);
            margin-left: 2px;
            vertical-align: baseline;
            position: relative;
            top: -1px;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--black);
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            transition: color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible { color: var(--blue); }

        *:focus-visible {
            outline: 2px solid var(--blue);
            outline-offset: 2px;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -16px;
            background: var(--white);
            border: 1px solid var(--gray);
            padding: 8px 0;
            min-width: 220px;
            z-index: 101;
        }

        .nav-dropdown:hover .nav-dropdown-menu { display: block; }

        .nav-dropdown-menu a {
            display: block;
            padding: 8px 20px;
            font-size: 13px;
        }

        .nav-dropdown-menu a:hover { background: var(--off-white); }

        .dropdown-group-label {
            padding: 6px 20px 2px;
            font-size: 11px;
            font-weight: 700;
            color: var(--medium-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-cta {
            background: var(--blue);
            color: var(--white) !important;
            padding: 8px 20px;
            font-weight: 700;
            font-size: 13px !important;
        }

        .nav-cta:hover { background: var(--blue-dark); }

        .lang-toggle { font-size: 13px; color: var(--medium-gray); }
        .lang-toggle a { color: var(--medium-gray); text-decoration: none; }
        .lang-toggle a.active { color: var(--black); font-weight: 700; }
        .lang-toggle a:hover { color: var(--blue); }

        /* Hero */
        .hero {
            margin-top: 72px;
            min-height: 62vh;
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            padding: 64px max(48px, calc((100% - 1200px) / 2));
            position: relative;
            overflow: hidden;
        }

        .hero-content { max-width: 720px; position: relative; z-index: 1; }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 20px;
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 580px;
        }

        .hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

        .btn-primary {
            display: inline-block;
            background: var(--white);
            color: var(--blue);
            padding: 14px 32px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover { background: var(--off-white); }

        .btn-ghost {
            display: inline-block;
            color: rgba(255,255,255,0.9);
            font-size: 15px;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.4);
            padding-bottom: 2px;
            transition: all 0.2s;
        }
        .btn-ghost:hover { color: var(--white); border-color: var(--white); }

        .btn-blue {
            display: inline-block;
            background: var(--blue);
            color: var(--white);
            padding: 14px 32px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .btn-blue:hover { background: var(--blue-dark); }

        .btn-outline {
            display: inline-block;
            border: 1px solid var(--blue);
            color: var(--blue);
            padding: 13px 31px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .btn-outline:hover { background: var(--pale-blue); }

        /* Sections */
        .section { padding: 96px 48px; }
        .section-gray { background: var(--off-white); }
        .section-blue { background: var(--blue); color: var(--white); }
        .section-pale { background: var(--pale-blue); }
        .section-dark { background: var(--near-black); color: var(--white); }

        .container { max-width: 1200px; margin: 0 auto; }

        .section-heading {
            font-size: 40px;
            font-weight: 700;
            color: var(--near-black);
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.8px;
        }
        .section-blue .section-heading,
        .section-dark .section-heading { color: var(--white); }

        .section-body {
            font-size: 17px;
            line-height: 1.7;
            color: var(--black);
            max-width: 720px;
        }
        .section-body p { margin-bottom: 20px; }

        /* Fade-in animation */
        .fade-section {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Positioning */
        .positioning { text-align: center; padding: 96px 48px; }
        .positioning .section-body { margin: 0 auto; max-width: 760px; font-size: 18px; }

        /* Our Story */
        .story-layout {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 64px;
            align-items: start;
        }

        .story-timeline {
            background: var(--white);
            padding: 32px;
            border-left: 3px solid var(--blue);
        }

        .timeline-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--gray);
        }
        .timeline-item:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }

        .timeline-year {
            font-size: 14px;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 4px;
        }

        .timeline-text {
            font-size: 14px;
            color: var(--dark-gray);
            line-height: 1.5;
        }

        .stat-callout {
            text-align: left;
            padding: 30px 40px;
        }

        .stat-number {
            font-size: 52px;
            font-weight: 700;
            color: var(--near-black);
            line-height: 1;
            letter-spacing: -1.5px;
        }

        .stat-label {
            font-size: 14px;
            color: #777;
            line-height: 1.4;
            margin-top: 12px;
        }

        /* Pillars */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 48px;
            margin-top: 48px;
        }

        .pillar-card {
            background: var(--white);
            padding: 40px 32px;
            border: 1px solid var(--gray);
            transition: box-shadow 0.3s ease;
        }
        .pillar-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

        .pillar-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--near-black);
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .pillar-card p {
            font-size: 15px;
            line-height: 1.65;
            color: var(--dark-gray);
        }

        /* Services */
        .services-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 64px;
            align-items: start;
        }

        .service-item {
            padding: 32px 0;
            border-bottom: 1px solid var(--gray);
        }
        .service-item:last-child { border-bottom: none; }

        .service-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--blue);
            margin-bottom: 8px;
        }

        .service-item h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
        .service-item p { font-size: 15px; color: var(--dark-gray); line-height: 1.6; margin-bottom: 12px; }
        .service-details { font-size: 13px; color: var(--medium-gray); margin-bottom: 12px; }

        .service-link {
            color: var(--blue);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
        }
        .service-link:hover { text-decoration: underline; }

        .extended-note {
            margin-top: 32px;
            padding: 24px;
            background: var(--pale-blue);
            border-left: 3px solid var(--blue);
            font-size: 14px;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .stats-sidebar {
            background: none;
            padding: 0;
            border-top: 1px solid var(--near-black);
        }

        .stat-item { padding: 28px 0; border-bottom: 1px solid var(--line); }
        .stat-item:last-child { border-bottom: none; }

        /* PE Section */
        .pe-layout {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 64px;
            align-items: start;
        }

        .pe-highlight {
            background: var(--pale-blue);
            padding: 32px;
            border-left: 3px solid var(--blue);
        }

        .pe-stat {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 16px;
        }

        .pe-stat-num {
            font-size: 28px;
            font-weight: 700;
            color: var(--blue);
            white-space: nowrap;
        }

        .pe-stat-text {
            font-size: 14px;
            color: var(--dark-gray);
            line-height: 1.4;
        }

        /* Engagements table */
        .engagements-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 32px;
        }

        .engagements-table th {
            text-align: left;
            font-weight: 700;
            color: var(--blue);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 16px;
            border-bottom: 2px solid var(--gray);
        }

        .engagements-table td {
            padding: 16px;
            font-size: 14px;
            color: var(--dark-gray);
            line-height: 1.5;
            border-bottom: 1px solid var(--gray);
            vertical-align: top;
        }

        .engagements-table tr:last-child td { border-bottom: none; }

        .engagements-note {
            font-size: 13px;
            color: var(--medium-gray);
            margin-top: 16px;
            font-style: italic;
        }

        /* Latest Thinking (dark section) */
        .thinking-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .thinking-card {
            border: 1px solid #333;
            padding: 28px;
            transition: border-color 0.3s;
        }
        .thinking-card:hover { border-color: var(--blue); }

        .thinking-tag {
            display: inline-block;
            background: none;
            color: var(--near-black);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0;
            margin-bottom: 16px;
        }

        .thinking-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1.35;
        }

        .thinking-card p {
            font-size: 14px;
            color: var(--medium-gray);
            line-height: 1.55;
            margin-bottom: 16px;
        }

        .thinking-link {
            color: var(--light-blue);
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
        }
        .thinking-link:hover { color: var(--white); }

        /* Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 48px;
            margin-top: 48px;
        }

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

        .team-photo {
            width: 100%;
            aspect-ratio: 1;
            margin-bottom: 16px;
            filter: grayscale(100%);
        }

        .team-name { font-size: 18px; font-weight: 700; color: var(--near-black); margin-bottom: 2px; }
        .team-role { font-size: 13px; color: var(--dark-gray); margin-bottom: 2px; }
        .team-former { font-size: 12px; color: var(--medium-gray); }

        .team-cta {
            display: inline-block;
            margin-top: 32px;
            color: var(--blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
        }
        .team-cta:hover { text-decoration: underline; }

        /* CTA Band */
        .cta-band { text-align: left; padding: 108px max(48px, calc((100% - 1152px) / 2)); }

        .cta-band h2 {
            font-size: 50px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.08;
            letter-spacing: -1px;
            max-width: 620px;
            margin-bottom: 18px;
        }

        .cta-band p {
            font-size: 19px;
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
            margin-bottom: 36px;
            max-width: 520px;
        }

        .btn-white {
            display: inline-block;
            background: var(--white);
            color: var(--blue);
            padding: 16px 34px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
        }
        .btn-white:hover { background: var(--off-white); }

        /* Footer */
        footer {
            background: var(--white);
            color: var(--near-black);
            border-top: 1px solid var(--gray);
            padding: 64px 48px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo { font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
        .footer-tagline { font-size: 14px; color: var(--medium-gray); line-height: 1.5; }

        .footer-heading {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--medium-gray);
            margin-bottom: 16px;
        }

        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: var(--near-black); text-decoration: none; font-size: 14px; }
        .footer-links a:hover { color: var(--white); }

        .footer-bottom {
            max-width: 1200px;
            margin: 48px auto 0;
            padding-top: 24px;
            border-top: 1px solid var(--gray);
            font-size: 13px;
            color: var(--medium-gray);
            display: flex;
            justify-content: space-between;
        }

        .footer-bottom a { color: var(--medium-gray); text-decoration: none; }
        .footer-bottom a:hover { color: var(--white); }

        /* Page containers — content loaded dynamically by router.js */
        #main-content { min-height: 60vh; }

        /* Scroll offset for anchor links under fixed nav */
        [id] { scroll-margin-top: 88px; }

        /* Internal pages */
        .page-hero {
            margin-top: 72px;
            padding: 64px max(48px, calc((100% - 1200px) / 2)) 40px;
            background: var(--white);
        }

        .page-hero h1 {
            font-size: 54px;
            font-weight: 700;
            color: var(--near-black);
            line-height: 1.08;
            letter-spacing: -1.5px;
            max-width: 900px;
            margin-bottom: 18px;
        }

        .page-hero .subtitle {
            font-size: 20px;
            color: var(--dark-gray);
            max-width: 640px;
            line-height: 1.6;
        }

        /* Approach page */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 32px;
        }

        .comparison-table th {
            text-align: left;
            font-weight: 700;
            font-size: 14px;
            padding: 14px 20px;
            border-bottom: 2px solid var(--gray);
        }

        .comparison-table th:first-child { color: var(--dark-gray); }
        .comparison-table th:nth-child(2) { color: var(--black); }
        .comparison-table th:nth-child(3) { color: var(--blue); }

        .comparison-table td {
            padding: 14px 20px;
            font-size: 14px;
            border-bottom: 1px solid var(--gray);
            line-height: 1.5;
        }

        .comparison-table td:first-child { font-weight: 700; color: var(--black); }
        .comparison-table td:nth-child(2) { color: var(--black); }
        .comparison-table td:nth-child(3) { color: var(--black); }

        .proof-box {
            max-width: 880px;
            background: var(--pale-blue);
            border-left: 3px solid var(--blue);
            padding: 40px;
            margin-top: 48px;
            font-size: 17px;
            line-height: 1.7;
            color: var(--black);
        }

        .dimensions-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 32px;
        }

        .dim-card {
            background: var(--white);
            padding: 28px 24px;
            border: 1px solid var(--gray);
            text-align: left;
        }

        .dim-card h4 {
            font-size: 19px;
            font-weight: 700;
            color: var(--near-black);
            margin-bottom: 10px;
        }

        .dim-card p {
            font-size: 15px;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* Contact page */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            margin-top: 48px;
        }

        .contact-steps {
            counter-reset: step;
            margin: 32px 0;
        }

        .contact-step {
            counter-increment: step;
            padding-left: 40px;
            position: relative;
            margin-bottom: 20px;
        }

        .contact-step::before {
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            width: 28px;
            height: 28px;
            background: var(--pale-blue);
            color: var(--blue);
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-step strong { color: var(--black); }
        .contact-step p { font-size: 14px; color: var(--dark-gray); line-height: 1.5; margin-top: 4px; }

        .form-group { margin-bottom: 24px; position: relative; }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 0;
            border: none;
            border-bottom: 2px solid var(--gray);
            font-family: inherit;
            font-size: 16px;
            color: var(--black);
            background: transparent;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: var(--blue);
        }

        .form-group textarea { resize: vertical; min-height: 120px; }

        .form-submit {
            background: var(--blue);
            color: var(--white);
            padding: 14px 40px;
            border: none;
            font-family: inherit;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .form-submit:hover { background: var(--blue-dark); }

        .inquiry-shortcuts {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--gray);
        }

        .inquiry-shortcuts h4 {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--medium-gray);
            margin-bottom: 12px;
        }

        .shortcut-btn {
            display: inline-block;
            border: 1px solid var(--gray);
            padding: 8px 16px;
            font-size: 13px;
            color: var(--dark-gray);
            text-decoration: none;
            margin: 0 8px 8px 0;
            transition: all 0.2s;
            cursor: pointer;
            background: none;
            font-family: inherit;
        }
        .shortcut-btn:hover {
            border-color: var(--blue);
            color: var(--blue);
            background: var(--pale-blue);
        }

        /* Hamburger button — hidden on desktop */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 102;
            flex-direction: column;
            gap: 5px;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--black);
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            nav { padding: 0 24px; }

            .hamburger { display: flex; }

            .nav-links {
                display: none;
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--white);
                flex-direction: column;
                padding: 32px 24px;
                gap: 0;
                overflow-y: auto;
                z-index: 101;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li {
                border-bottom: 1px solid var(--gray);
                list-style: none;
            }
            .nav-links > li > a {
                display: block;
                padding: 16px 0;
                font-size: 18px;
                font-weight: 500;
            }
            .nav-cta {
                margin-top: 16px;
                text-align: center;
                padding: 14px 20px !important;
            }

            /* Hide Services dropdown submenu on mobile — just show "Services" as flat link */
            .nav-dropdown-menu {
                display: none !important;
            }

            .lang-toggle { margin-right: 16px; }

            .hero { padding: 60px 24px; min-height: 65vh; }
            .hero h1 { font-size: 32px; }
            .hero-subtitle { font-size: 16px; }
            .section { padding: 64px 24px; }
            .cta-band { padding: 64px 24px; }
            .page-hero { padding: 60px 24px 48px; }
            .page-hero h1 { font-size: 28px; }
            .section-heading { font-size: 26px; }
            .pillars-grid { grid-template-columns: 1fr; }
            .services-layout { grid-template-columns: 1fr; }
            .pe-layout { grid-template-columns: 1fr; }
            .story-layout { grid-template-columns: 1fr; }
            .thinking-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .contact-layout { grid-template-columns: 1fr; }
            .dimensions-grid { grid-template-columns: 1fr 1fr; }
            .comparison-table { font-size: 12px; }
            .comparison-table td, .comparison-table th { padding: 10px 8px; }

            /* Team page: stack photo above text on mobile */
            #main-content [style*="grid-template-columns: 1fr 2fr"] {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }

            /* Stats grid on team page */
            #main-content [style*="grid-template-columns: repeat(4, 1fr)"] {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        /* Visual round 1 additions */
        .hero-stats { display: flex; flex-direction: column; gap: 36px; position: relative; z-index: 1; flex-shrink: 0; }
        .hero-stats .stat-number { font-size: 54px; font-weight: 700; color: var(--white); line-height: 1; }
        .hero-stats .stat-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 6px; }
        .nav-links a.active:not(.nav-cta) { color: var(--blue); font-weight: 700; }
        @media (max-width: 960px) {
            .hero-stats { display: none; }
            .pillars-grid { grid-template-columns: 1fr; }
        }

        /* Visual round 2 additions */
        .pillar-card { display: flex; flex-direction: column; }
        .pillar-card > :last-child { margin-top: auto; }
        .pillar-card h3 { font-size: 18px; }
        .stats-sidebar { position: sticky; top: 104px; align-self: start; }
        .hero-stats { text-align: center; }
        .stats-sidebar .stat-item { text-align: left; }

        /* Visual round 2b */
        .pillar-card { justify-content: flex-start; }
        .page-hero + .section { padding-top: 48px; }
        .inquiry-shortcuts h4 { color: var(--dark-gray); }

        /* Mobile fixes (round 3) */
        .dim-3 { grid-template-columns: repeat(3, 1fr) !important; }
        .dim-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
        .team-row { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
        .team-row-last { margin-bottom: 0; }
        .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--near-black); }
        .stats-row .stat-callout:first-child { padding-left: 0; }
        .stats-row .stat-callout:last-child { padding-right: 0; }
        .stats-row .stat-callout + .stat-callout { border-left: 1px solid var(--line); }
        @media (max-width: 768px) {
            .dim-3 { grid-template-columns: 1fr !important; }
            .dim-grid-2 { grid-template-columns: 1fr; }
            .team-row { grid-template-columns: 1fr; gap: 20px; }
            .team-row .team-photo { max-width: 280px; }
            .stats-row { grid-template-columns: 1fr; border-top: none; }
            .stats-row .stat-callout { padding: 24px 0; border-left: none !important; border-top: 1px solid var(--line); }
            .dimensions-grid { grid-template-columns: 1fr; }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .dim-3 { grid-template-columns: repeat(2, 1fr) !important; }
        }

        .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        @media (max-width: 768px) { .insights-grid { grid-template-columns: 1fr; } }
        @media (min-width: 769px) and (max-width: 1024px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
