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

        :root {
            --orange: #EF8508;
            --dark: #202020;
            --gray: #555;
            --light: #f5f5f3;
            --white: #ffffff;
            --font: "Raleway", sans-serif;
            --nav-h: 80px;
        }

        .theme-overlay .screenshot img {
            height: 100% !important;
        }

        body {
            font-family: var(--font);
            background: var(--light);
        }

        #masthead {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 24px;
            background: transparent;
            width: 100%;
            transition: padding 0.3s ease;
        }

        #masthead.scrolled {
            padding: 8px 24px;
        }

        #masthead.scrolled .header-inner {
            box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--white);
            border-radius: 5px;
            padding: 10px;
            box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
            max-width: 1520px;
            margin: 0 auto;
            height: 62px;
        }

        /* ── Logo ── */
        .site-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .site-logo img {
            height: 36px;
            width: auto;
            display: block;
        }

        .logo-placeholder {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .logo-placeholder .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--orange);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-placeholder .logo-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .logo-placeholder .logo-text {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.02em;
        }

        /* ── Nav ── */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
        }

        .main-nav>li {
            position: relative;
        }

        .main-nav>li>a {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 14px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            text-decoration: none;
            border-radius: 5px;
            transition: color 0.2s, background 0.2s;
            white-space: nowrap;
        }

        .main-nav>li>a:hover {
            color: var(--orange);
            background: rgba(232, 119, 34, 0.06);
        }

        .main-nav>li.active>a {
            color: var(--orange);
        }

        /* Active underline */
        .main-nav>li.active>a::after {
            content: '';
            display: block;
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--orange);
            border-radius: 5px;
        }

        /* Dropdown chevron */
        .main-nav .chevron {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.2s;
        }

        .main-nav>li:hover .chevron {
            transform: rotate(180deg);
        }

        /* ── Dropdown ── */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            border-radius: 5px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
            min-width: 200px;
            padding: 8px;
            list-style: none;
            z-index: 100;
        }

        .main-nav>li:hover .dropdown {
            display: block;
            animation: fadeDown 0.18s ease;
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-6px);
            }

            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .dropdown li a {
            display: block;
            padding: 10px 16px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--dark);
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.15s, color 0.15s;
        }

        .dropdown li a:hover {
            background: rgba(232, 119, 34, 0.08);
            color: var(--orange);
        }

        /* ── CTA Button ── */
        .btn-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--dark);
            color: var(--white);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 0.875rem;
            font-weight: 700;
            white-space: nowrap;
            transition: background 0.2s, transform 0.2s;
            flex-shrink: 0;
        }

        .btn-contact:hover {
            background: var(--orange);
            transform: translateX(2px);
        }

        .btn-contact .btn-icon {
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .btn-contact .btn-icon svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: white;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ── Mobile toggle ── */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
        }

        .menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--dark);
            border-radius: 5px;
            transition: all 0.3s;
        }

        /* ── Mobile nav ── */
        @media (max-width: 900px) {
            p.hero-subs {
                font-size: 12px !important;
            }

            section.transform-stats {
                padding: 20px 15px !important;
            }

            section.lets-start {
                padding: 20px 15px !important;
            }

            .services-section {
                padding: 0 !important;
            }

            .transform-section {
                padding: 0 !important;
            }

            .trusted-section {
                padding: 0;
            }

            .trusted-card {
                border-radius: 0;
            }

            .services-card {
                border-radius: 0 !important;
            }

            .services-left {
                padding: 20px 15px !important;
            }

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

            .menu-toggle {
                display: flex;
            }

            .header-inner.open .main-nav {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                position: absolute;
                top: calc(100% + 8px);
                left: 16px;
                right: 16px;
                background: var(--white);
                border-radius: 5px;
                padding: 16px;
                box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
                gap: 2px;
            }

            .header-inner.open .main-nav>li {
                width: 100%;
            }

            .header-inner.open .main-nav>li>a {
                padding: 12px 16px;
                border-radius: 5px;
            }

            .header-inner.open .btn-contact {
                display: flex;
                margin: 8px 16px 0;
                justify-content: center;
            }

            .dropdown {
                position: static;
                transform: none;
                box-shadow: none;
                background: var(--light);
                border-radius: 5px;
                margin-top: 4px;
                padding: 4px;
            }
        }

        /* ── Hero ── */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            display: flex;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding: 8rem 0;
        }

        .hero-title .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            animation: wordFadeIn 0.5s ease forwards;
        }

        .hero-title .word:nth-child(1) {
            animation-delay: 0.1s;
        }

        .hero-title .word:nth-child(2) {
            animation-delay: 0.3s;
        }

        .hero-title .word:nth-child(3) {
            animation-delay: 0.5s;
        }

        .hero-title .word:nth-child(4) {
            animation-delay: 0.8s;
        }

        .hero-title .word:nth-child(5) {
            animation-delay: 1.0s;
        }

        .hero-title .word:nth-child(6) {
            animation-delay: 1.2s;
        }

        @keyframes wordFadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1520px;
            padding: 0 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        /* Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            border: 1.5px solid #EF8508;
            border-radius: 5px;
            padding: 6px 20px;
            background: #fff;
        }

        .hero-badge span {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: #EF8508;
            text-transform: uppercase;
        }

        /* Title */
        .hero-title {
            font-size: clamp(2.2rem, 5.5vw, 4rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin: 0;
        }

        /* Subtext */
        .hero-sub {
            font-size: 22px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            max-width: 1500px;
            line-height: 1.7;
            margin: 0;
        }

        /* CTA Button */
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #EF8508;
            color: #ffffff;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
        }

        .hero-cta svg {
            width: 18px;
            height: 18px;
            transition: transform 0.2s;
        }

        .hero-cta:hover {
            background: #cf6a1a;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(232, 119, 34, 0.5);
            color: #ffffff;
        }

        .hero-cta:hover svg {
            transform: translateX(4px);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: scrollBounce 1.8s ease-in-out infinite;
        }

        .scroll-indicator svg {
            width: 28px;
            height: 46px;
        }

        @keyframes scrollBounce {

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

            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .hero-title br {
                display: none;
            }

            .hero-content {
                gap: 18px;
            }

            .hero-cta {
                padding: 14px 26px;
                font-size: 0.9rem;
            }
        }

        .what-we-do {
            background: #202020;
            padding: 60px 24px;
        }

        .wwd-card {
            max-width: 1520px;
            margin: 0 auto;
            background: #EF8508;
            border-radius: 5px;
            display: grid;
            grid-template-columns: 1fr 380px;
            overflow: hidden;
            min-height: 100%;
        }

        /* Left */
        .wwd-left {
            padding: 48px 48px 40px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .wwd-title {
            font-size: 1.9rem;
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 24px;
            letter-spacing: -0.01em;
        }

        .wwd-text {
            font-size: 0.95rem;
            font-weight: 500;
            color: #ffffff;
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .wwd-services-label {
            font-size: 0.95rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 14px;
            margin-top: 8px;
        }

        /* Services box */
        .wwd-services-box {
            background: #f5f0e8;
            border-radius: 5px;
            padding: 24px 20px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            flex-wrap: wrap;
        }

        .wwd-service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
            flex: 1;
            min-width: 100px;
            padding: 4px;
        }

        .wwd-service-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #202020;
        }

        .wwd-service-icon svg {
            width: 36px;
            height: 36px;
        }

        .wwd-service-item span {
            font-size: 0.78rem;
            font-weight: 600;
            color: #202020;
            line-height: 1.4;
        }

        .wwd-service-item small {
            font-weight: 500;
            font-size: 0.75rem;
            color: #444;
        }

        /* Right image */
        .wwd-right {
            position: relative;
            overflow: hidden;
            padding: 10px;
            border-radius: 5px;
        }

        .wwd-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .wwd-card {
                grid-template-columns: 1fr;
                border-radius: 0;
            }

            #masthead.scrolled {
                padding: 0;
            }

            .wwd-right {
                height: 280px;
            }

            .what-we-do {
                padding: 0;
                border-radius: 0;
            }

            .industries {
                padding: 40px 10px 0;
            }

            #masthead.scrolled .header-inner {
                border-radius: 0;
            }

            .wwd-left {
                padding: 20px 15px;
            }

            .footprint {
                padding: 0px !important;
            }

            .wwd-services-box {
                gap: 12px;
            }
        }

        @media (max-width: 600px) {
            .wwd-service-item {
                min-width: 80px;
            }

            .wwd-services-box {
                justify-content: center;
            }
        }

        .industries {
            background: #202020;
            padding: 60px 24px 80px;
        }

        .industries-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: -0.01em;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1520px;
            margin: 0 auto;
        }

        /* Card is the positioning context */
        .industry-card {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .industry-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        /* Image fills entire card absolutely */
        .industry-img {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.4s ease;
            z-index: 0;
        }

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

        /* Gradient overlay so text is readable */
        .industry-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.05) 0%,
                    rgba(0, 0, 0, 0.25) 35%,
                    rgba(0, 0, 0, 0.72) 65%,
                    rgba(0, 0, 0, 0.88) 100%);
            z-index: 1;
        }

        /* Body sits above image & overlay */
        .industry-body {
            position: relative;
            z-index: 2;
            margin-top: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .industry-content h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .industry-content p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.65;
            margin: 0;
        }

        .industry-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #EF8508;
            color: #ffffff;
            text-decoration: none;
            padding: 13px 20px;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 700;
            transition: background 0.2s;
        }

        .industry-btn svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            transition: transform 0.2s;
        }

        .industry-btn:hover {
            background: #cf6a1a;
            color: #fff;
        }

        .industry-btn:hover svg {
            transform: translateX(4px);
        }

        @media (max-width: 1024px) {
            .industries-grid {
                grid-template-columns: unset;
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 16px;
                padding-bottom: 12px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                /* hide scrollbar Firefox */
            }

            .industries-grid::-webkit-scrollbar {
                display: none;
                /* hide scrollbar Chrome */
            }

            .industries-title {
                font-size: 20px;
            }

            .industry-card {
                flex: 0 0 80vw;
                /* show ~80% of card + peek at next */
                max-width: 80vw;
                min-height: 320px;
                scroll-snap-align: start;
            }

            .industry-card {
                min-height: 380px;
            }
        }

        @media (max-width: 600px) {
            .industries-grid {
                grid-template-columns: 1fr;
            }

            .industry-card {
                min-height: 320px;
            }
        }

        .footprint {
            background: #202020;
            padding: 60px 24px;
        }

        .footprint-card {
            max-width: 1520px;
            margin: 0 auto;
            background: #EF8508;
            border-radius: 5px;
            display: grid;
            grid-template-columns: 320px 1fr;
            overflow: hidden;
            min-height: 360px;
        }

        .footprint-left {
            padding: 44px 40px;
            display: flex;
            flex-direction: column;
        }

        .footprint-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }

        .footprint-desc {
            font-family: 'Manrope', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.65;
            margin-bottom: 32px;
        }

        .footprint-locations {
            list-style: none;
        }

        .footprint-locations li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .footprint-locations li:first-child {
            border-top: 1px solid rgba(255, 255, 255, 0.3);
        }

        .footprint-locations li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            font-family: 'Manrope', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            transition: color 0.2s, padding-left 0.2s;
        }

        .footprint-locations li a span {
            transition: transform 0.2s;
        }

        .footprint-locations li a:hover {
            color: #202020;
            padding-left: 6px;
        }

        .footprint-locations li a:hover span {
            transform: translateX(4px);
        }

        /* Map */
        .footprint-map {
            display: flex;
            align-items: center;
            padding: 20px;
            overflow: hidden;
        }

        .map-wrap {
            position: relative;
            width: 100%;
        }

        .map-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }

        /* Pin */
        .map-pin {
            position: absolute;
            display: none;
            flex-direction: column;
            align-items: center;
            transform: translate(-50%, -100%);
            pointer-events: none;
        }

        .map-pin.visible {
            display: flex;
            animation: pinDrop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .map-pin svg {
            width: 22px;
            height: 42px;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
        }

        .pin-shadow {
            width: 10px;
            height: 4px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            margin-top: 2px;
            filter: blur(2px);
        }

        @keyframes pinDrop {
            0% {
                opacity: 0;
                transform: translate(-50%, -130%);
            }

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

        @media (max-width: 900px) {
            .footprint-card {
                grid-template-columns: 1fr;
                border-radius: 0;
            }

            .why-trust-title {
                font-size: 22px;
            }

            .why-trust {
                padding: 0 10px;
            }

            .footprint-left {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                padding: 36px 28px;
            }

            .footprint-map {
                min-height: 220px;
            }
        }

        .site-footer {
            background: #202020;
        }

        .footer-card {
            max-width: 1520px;
            margin: 0 auto;
            background: #EF8508;
            border-top-right-radius: 5px;
            border-top-left-radius: 5px;
            padding: 48px 56px 32px;
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .footer-tagline {
            font-size: 0.95rem;
            font-weight: 500;
            color: #ffffff;
            line-height: 1.75;
            margin: 0;
        }

        .footer-cta {
            display: inline-flex;
            align-items: center;
            padding: 11px 24px;
            border: 2px solid #ffffff;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            width: fit-content;
            transition: background 0.2s, color 0.2s;
        }

        .footer-cta:hover {
            background: #ffffff;
            color: #EF8508;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
        }

        .footer-links li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        }

        .footer-links li:first-child {
            border-top: 1px solid rgba(255, 255, 255, 0.35);
        }

        .footer-links li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
            transition: padding-left 0.2s, color 0.2s;
        }

        .footer-links li a span {
            font-size: 1.1rem;
            transition: transform 0.2s;
        }

        .footer-links li a:hover {
            color: #202020;
            padding-left: 6px;
        }

        .footer-links li a:hover span {
            transform: translateX(4px);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-socials {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .social-icon {
            width: 38px;
            height: 38px;
            border-radius: 5px;
            border: 2px solid #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #EF8508;
            text-decoration: none;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
            flex-shrink: 0;
            background: #fff;
        }

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

        .social-icon:hover {
            background: #EF8508;
            color: #ffffff;
            border-color: #ffffff;
        }

        .footer-copy {
            font-size: 0.875rem;
            font-weight: 500;
            color: #ffffff;
            margin: 0;
        }

        img.custom-logo {
            width: 45%;
            height: auto;
        }

        @media (max-width: 900px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-card {
                padding: 36px 28px 28px;
            }
        }

        @media (max-width: 600px) {
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }

            .footer-socials {
                flex-wrap: wrap;
            }
        }

        .why-trust {
            background: #202020;
            padding: 80px 24px 100px;
        }

        .why-trust-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 70px;
            letter-spacing: -0.01em;
        }

        .why-trust-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            column-gap: 80px;
            row-gap: 0;
            max-width: 1520px;
            margin: 0 auto;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .trust-offset {
            margin-top: 120px;
        }

        .trust-number {
            font-size: 5rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.12);
            line-height: 1;
            letter-spacing: -0.04em;
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            color: #ffffff;
            font-size: 2.8rem;
        }

        .trust-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .trust-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.3;
            margin: 0;
        }

        .trust-content p {
            font-size: 0.9rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            margin: 0;
        }

        .trust-line {
            display: block;
            width: 60px;
            height: 2px;
            background: #EF8508;
            border-radius: 5px;
            margin-top: 6px;
        }

        @media (max-width: 768px) {
            .why-trust-grid {
                grid-template-columns: 1fr;
                column-gap: 0;
            }

            .trust-offset {
                margin-top: 0;
            }

            .trust-item {
                padding-bottom: 40px;
            }
        }

        .trust-number {
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.04em;
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            color: #ffffff;
            font-size: 2.8rem;
            position: relative;
        }

        /* Rotating dashed border via pseudo-element */
        .trust-number::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px dashed rgba(255, 255, 255, 0.35);
            animation: spinBorder 6s linear infinite;
        }

        img.footer-logo {
            width: 34%;
            background: #fff;
            padding: 10px;
            border-radius: 5px;
        }

        @keyframes spinBorder {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* ── Hero Subtitle Animation ── */
        .hero-sub {
            opacity: 0;
            transform: translateY(16px);
            animation: subFadeIn 0.8s ease forwards;
            animation-delay: 1.5s;
            /* starts after the title words finish */
        }

        @keyframes subFadeIn {
            0% {
                opacity: 0;
                transform: translateY(16px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ── FAQ Section ── */
        .faq-section {
            background: #202020;
            padding: 70px 24px 90px;
        }

        .faq-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 48px;
            letter-spacing: -0.01em;
        }

        /* List */
        .faq-list {
            max-width: 1520px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Item */
        .faq-item {
            background: #FFE6C8;
            border-radius: 5px;
            overflow: hidden;
            transition: background 0.2s;
        }

        /* Question button */
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            background: none;
            border: none;
            cursor: pointer;
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #202020;
            text-align: left;
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: #EF8508;
        }

        /* Chevron icon */
        .faq-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            stroke: #202020;
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }

        /* Answer */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 24px;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        .faq-answer p {
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: #444;
            line-height: 1.75;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-question {
                padding: 16px 18px;
                font-size: 0.92rem;
            }

            .faq-item.open .faq-answer {
                padding: 0 18px 16px;
            }
        }

        .ls-form-wrap .wpcf7-form br {
            display: none;
        }

        .ls-form-wrap .wpcf7-form p {
            margin: 0;
            display: contents;
        }

        .wpcf7-list-item {
            margin: 0;
        }

        .ls-form-wrap .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 12px;
        }

        .ls-form-wrap .form-row .wpcf7-form-control-wrap {
            display: block;
        }

        .ls-form-wrap .form-row-full {
            display: block;
            margin-bottom: 12px;
        }

        .ls-form-wrap .form-row-full {
            margin-bottom: 12px;
        }

        .ls-form-wrap .form-row-full input,
        .ls-form-wrap .form-row-full select,
        .ls-form-wrap .form-row-full textarea {
            width: 100%;
        }

        .ls-form-wrap .wpcf7-acceptance label {
            display: flex;
            align-items: center;
            font-size: 0.78rem;
            color: #000;
            cursor: pointer;
        }

        .lets-start {
            background: #202020;
            padding: 60px 24px 80px;
        }

        .lets-start-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: -0.01em;
        }

        .ls-card {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            border-radius: 5px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .ls-left {
            background: #EF8508;
            padding: 44px 40px;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .ls-heading {
            font-family: 'Raleway', sans-serif;
            font-size: 1.7rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .ls-desc {
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.75;
            margin: 0;
        }

        .ls-contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ls-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
            padding-bottom: 16px;
        }

        .ls-info-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .ls-info-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .ls-info-icon svg {
            width: 18px;
            height: 18px;
            stroke: #ffffff;
        }

        .ls-info-label {
            display: block;
            font-family: 'Raleway', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 4px;
        }

        .ls-info-value {
            display: block;
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            line-height: 1.3;
        }

        .ls-socials {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .ls-social-icon {
            width: 36px;
            height: 36px;
            border-radius: 5px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s;
            flex-shrink: 0;
        }

        .ls-social-icon svg {
            width: 15px;
            height: 15px;
        }

        .ls-social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #ffffff;
        }

        .ls-right {
            background: #232323;
            padding: 32px 36px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .ls-tabs-wrap {
            margin-bottom: 24px;
        }

        .ls-tabs-label {
            font-family: 'Raleway', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 12px;
        }

        .ls-tabs {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0;
        }

        .ls-tab {
            background: none;
            border: none;
            padding: 8px 14px;
            font-family: 'Raleway', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.55);
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            transition: color 0.2s, border-color 0.2s;
            white-space: nowrap;
        }

        .ls-tab:hover {
            color: rgba(255, 255, 255, 0.85);
        }

        .ls-tab.active {
            color: #EF8508;
            border-bottom-color: #EF8508;
        }

        .ls-form-wrap {
            flex: 1;
        }

        .ls-form-wrap .wpcf7-form {
            display: flex;
            flex-direction: column;
            gap: 0;
            background: #fff;
            padding: 20px;
            border-radius: 5px;
        }

        .ls-form-wrap .wpcf7-form p {
            margin: 0;
        }

        .ls-form-wrap .wpcf7-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 12px;
        }

        .ls-form-wrap input[type="text"],
        .ls-form-wrap input[type="email"],
        .ls-form-wrap input[type="tel"],
        .ls-form-wrap select,
        .ls-form-wrap textarea {
            width: 100%;
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            padding: 12px 16px;
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            color: #333;
            outline: none;
            transition: border-color 0.2s;
            box-sizing: border-box;
        }

        .ls-form-wrap input:focus,
        .ls-form-wrap select:focus,
        .ls-form-wrap textarea:focus {
            border-color: #EF8508;
        }

        .ls-form-wrap textarea {
            min-height: 100px;
            resize: vertical;
        }

        .ls-form-wrap select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
        }

        .ls-form-wrap input[type="checkbox"] {
            width: auto;
            margin-right: 8px;
        }

        .ls-form-wrap .wpcf7-acceptance {
            font-family: 'Raleway', sans-serif;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
            margin: 12px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .ls-form-wrap input[type="submit"],
        .ls-form-wrap .wpcf7-submit {
            width: 100%;
            background: #EF8508;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            padding: 16px 24px;
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 8px;
        }

        .ls-form-wrap input[type="submit"]:hover,
        .ls-form-wrap .wpcf7-submit:hover {
            background: #cf6a1a;
        }

        .ls-form-wrap .wpcf7-not-valid-tip {
            font-size: 0.75rem;
            color: #ff6b6b;
        }

        .ls-form-wrap .wpcf7-response-output {
            border-radius: 5px;
            padding: 10px 14px;
            font-size: 0.85rem;
            margin-top: 12px;
        }

        @media (max-width: 900px) {
            section.services-section {
                padding: 0;
            }

            .ls-card {
                display: flex;
                flex-direction: column;
            }

            .reviews-section {
                padding: 20px 15px;
            }

            .reviews-left {
                padding: 20px 15px;
            }

            .reviews-top-title {
                padding: 20px 15px;
            }

            .ls-left {
                padding: 36px 28px;
            }

            .board-container {
                padding: 20px 15px;
            }

            section.faq-section {
                padding: 20px 15px;
            }

            .ls-right {
                padding: 20px 15px;
            }

            .ls-tabs {
                overflow-x: auto;
                flex-wrap: nowrap;
            }

            .hero-sub {
                font-size: 12px;
            }

            .wwd-title {
                font-size: 20px;
            }

            .wwd-text {
                font-size: 12px;
            }

            .industries {
                padding: 40px 10px;
            }
        }

        p.hero-subs {
            font-size: 22px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            max-width: 1500px;
            line-height: 1.7;
            margin: 0;
        }

        /* --- Impact Section Styles --- */
        .impact-section {
            background-color: #202020;
            color: #ffffff;
            padding: 80px 20px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        .impact-container {
            max-width: 1520px;
            margin: 0 auto;
            text-align: center;
        }

        .impact-heading {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 50px;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        /* Grid Layout */
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: left;
        }

        .impact-card {
            position: relative;
            padding-bottom: 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Metric Pill Badge Configuration */
        .metric-badge {
            display: inline-flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 5px;
            padding: 3px 14px 3px 4px;
            margin-bottom: 20px;
        }

        .metric-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            width: 28px;
            height: 28px;
            margin-right: 10px;
            color: #ffffff;
        }

        .metric-icon svg {
            width: 16px;
            height: 16px;
        }

        .metric-number {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
        }

        /* Text Hierarchy styling matching design */
        .metric-title {
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: #ffffff;
            line-height: 1.3;
        }

        .metric-desc {
            font-size: 14px;
            color: #b3b3b3;
            line-height: 1.5;
            margin: 0;
        }

        /* Decorative Gold/Orange Underline */
        .metric-border-accent {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 85%;
            /* Width matching mock */
            height: 2px;
            background: linear-gradient(90deg, #c48325 0%, rgba(196, 131, 37, 0) 100%);
        }

        /* --- Seamless Solutions Banner Styles --- */
        .solutions-banner {
            background-color: #EF8508;
            /* Vibrant Brand Orange */
            padding: 60px 40px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            overflow: hidden;
        }

        .solutions-container {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            /* Asymmetric layout split */
            gap: 40px;
            align-items: center;
        }

        /* Left Content Styles */
        .solutions-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            color: #ffffff;
        }

        .solutions-badge {
            border: 1px dashed rgba(255, 255, 255, 0.65);
            padding: 6px 18px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 24px;
            letter-spacing: 0.2px;
        }

        .solutions-heading {
            font-size: 34px;
            font-weight: 600;
            line-height: 1.25;
            margin: 0 0 24px 0;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .solutions-body-text p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-top: 0;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
        }

        .solutions-body-text p:last-child {
            margin-bottom: 30px;
        }

        /* Button & Arrow Interaction */
        .solutions-btn {
            display: inline-flex;
            align-items: center;
            background-color: #ffffff;
            color: #EF8508;
            text-decoration: none;
            padding: 12px 28px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .solutions-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-arrow {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            transition: transform 0.2s ease;
        }

        .solutions-btn:hover .btn-arrow {
            transform: translateX(4px);
        }

        /* Right Image Frame & Fade Mask Treatment */
        .solutions-image-wrapper {
            position: relative;
            width: 100%;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background-color: #ffffff;
            /* Smooth backdrop for the transparency mask */
        }

        .solutions-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Emulates the soft faded edge look from the mock */
        .image-fade-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom,
                    rgba(255, 255, 255, 0) 65%,
                    rgba(255, 255, 255, 0.4) 80%,
                    rgba(255, 255, 255, 0.9) 100%);
            pointer-events: none;
        }

        /* Tablet & Mobile Responsiveness */
        @media (max-width: 992px) {
            .solutions-container {
                grid-template-columns: 1fr;
                /* Stack vertically */
                gap: 40px;
            }

            .solutions-image-wrapper {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .solutions-banner {
                padding: 40px 20px;
            }

            .solutions-heading {
                font-size: 1.75rem;
            }

            .solutions-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Responsive Rules for Mobile and Tablets */
        @media (max-width: 992px) {
            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 576px) {
            .impact-section {
                padding: 50px 15px;
            }

            .impact-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .metric-border-accent {
                width: 100%;
            }
        }

        /* --- Built on Trust: Wave Process Section Styles --- */
        .trust-wave-section {
            background-color: #202020;
            color: #ffffff;
            padding: 100px 20px 80px 20px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            position: relative;
            overflow: hidden;
        }

        .trust-wave-container {
            max-width: 1520px;
            margin: 0 auto;
        }

        .trust-wave-heading {
            text-align: center;
            font-size: 2.25rem;
            font-weight: 600;
            margin-bottom: 80px;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        /* 5-Column Grid Matrix */
        .wave-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            position: relative;
        }

        /* Dashed Sinusoid Connecting Line Element */
        .wave-grid::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 10%;
            width: 80%;
            height: 120px;
            transform: translateY(-50%);
            /* Pure CSS encoded fluid smooth curved track */
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' fill='none'%3E%3Cpath d='M0,60 Q150,-20 300,60 T600,60 T900,60 T1200,60' stroke='rgba(255,255,255,0.2)' stroke-width='2' stroke-dasharray='6,8' fill='none'/%3E%3C/svg%3E");
            background-size: 100% 100%;
            background-repeat: no-repeat;
            z-index: 1;
            pointer-events: none;
        }

        /* Individual Content Cards */
        .wave-card {
            background-color: #f7e6cf;
            /* Light cream beige tint from design mockup */
            color: #202020;
            border-radius: 5px;
            padding: 30px 24px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .wave-card:hover {
            transform: translateY(-5px);
        }

        /* Vertical Stagger Offsets matching design */
        .wave-card.pos-high {
            transform: translateY(10px);
        }

        .wave-card.pos-low {
            transform: translateY(40px);
        }

        .wave-card.pos-high:hover {
            transform: translateY(-35px);
        }

        .wave-card.pos-low:hover {
            transform: translateY(0px);
        }

        /* Elements Interior Styling */
        .wave-card-icon {
            color: #202020;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
        }

        .wave-card-icon svg {
            width: 32px;
            height: 32px;
        }

        .wave-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: #202020;
            line-height: 1.3;
        }

        .wave-card-desc {
            font-size: 0.85rem;
            color: #333333;
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive Structural Overrides */
        @media (max-width: 1200px) {
            .wave-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }

            .wave-grid::before {
                display: none;
                /* Hide standard wave line on broken rows */
            }

            .wave-card.pos-high,
            .wave-card.pos-low {
                transform: none !important;
                /* Flatten grid stack tracking on mid-tier viewports */
            }

            .trust-wave-section {
                padding: 70px 20px;
            }
        }

        @media (max-width: 768px) {
            .wave-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .trust-wave-heading {
                font-size: 1.75rem;
                margin-bottom: 40px;
            }
        }

        /* --- Board of Directors Styles --- */
        .board-section {
            background-color: #202020;
            /* Matches theme orange wrapper background */
            padding: 60px 40px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        .board-container {
            max-width: 1520px;
            margin: 0 auto;
            background: #EF8508;
            padding: 20px 60px;
            border-radius: 5px;
        }

        .board-main-heading {
            text-align: center;
            font-size: 2.25rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 45px;
            letter-spacing: -0.5px;
        }

        /* 3-Column structural split */
        .board-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
            align-items: stretch;
        }

        /* Text Column styling */
        .board-message-col {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            color: #ffffff;
            padding-right: 15px;
        }

        .board-sub-heading {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 20px 0;
        }

        .board-quote {
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
        }

        .director-card {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            background-color: #222;
            height: 380px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .director-card:hover {
            transform: translateY(-10px) scale(1.04);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .director-card:hover .director-overlay-gradient {
            opacity: 1;
        }

        .director-card:hover .director-info {
            opacity: 1;
            pointer-events: auto;
        }

        .director-card:hover .director-linkedin {
            opacity: 0.85;
            pointer-events: auto;
        }

        .director-linkedin:hover {
            opacity: 1 !important;
            transform: scale(1.1);
        }

        .director-img-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .director-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        /* Bottom Text Gradient Shadow Mask - Hidden initially */
        .director-overlay-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
            pointer-events: none;

            /* Added: Smooth opacity reveal state */
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        /* Absolute Positioned info panel - Hidden initially */
        .director-info {
            position: absolute;
            bottom: 25px;
            left: 25px;
            right: 70px;
            /* Keeps room clear for the LinkedIn mark */
            z-index: 3;
            color: #ffffff;

            /* Added: Invisible and non-interactable until hover */
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease-out;
        }

        .director-name {
            font-size: 1.35rem;
            font-weight: 700;
            margin: 0 0 6px 0;
            letter-spacing: -0.3px;
        }

        .director-role {
            font-size: 0.85rem;
            color: #cccccc;
            margin: 0;
            font-weight: 500;
        }

        /* LinkedIn icon placement matching layout - Hidden initially */
        .director-linkedin {
            position: absolute;
            bottom: 25px;
            right: 25px;
            z-index: 3;
            color: #ffffff;

            /* Added: Invisible until hover */
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease, transform 0.2s ease;
        }

        .director-linkedin:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .director-linkedin svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        /* Responsive breakdowns */
        @media (max-width: 992px) {
            .board-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .director-card {
                max-width: 450px;
                height: 420px;
                margin: 0 auto;
                width: 100%;
            }

            .board-message-col {
                padding-right: 0;
                text-align: center;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .board-section {
                padding: 40px 20px;
            }

            .board-main-heading {
                font-size: 1.85rem;
            }
        }

        .main-nav>li.current-menu-item>a,
        .main-nav>li.current-menu-ancestor>a {
            color: var(--orange);
        }

        /* --- Creative & Experienced Team Section Styles --- */
        .expert-team-section {
            background-color: #202020;
            padding: 80px 40px 0px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        .expert-team-container {
            max-width: 1520px;
            margin: 0 auto;
        }

        .expert-team-main-heading {
            text-align: center;
            font-size: 2.25rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 16px 0;
            letter-spacing: -0.5px;
        }

        .expert-team-sub-intro {
            text-align: center;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #cccccc;
            max-width: 720px;
            margin: 0 auto 50px auto;
            font-weight: 400;
        }

        /* Fluid 4-Column Grid System Layout */
        .expert-team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        /* Card Element Containers */
        .expert-card {
            border-radius: 5px;
            overflow: hidden;
            background-color: #262626;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .expert-card:hover {
            transform: translateY(-10px) scale(1.08);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .expert-card:hover .expert-card-mask {
            opacity: 1;
        }

        .expert-card:hover .expert-profile-details {
            opacity: 1;
            pointer-events: auto;
        }

        .expert-card:hover .expert-linkedin-link {
            opacity: 0.8;
            pointer-events: auto;
        }

        .expert-img-frame {
            position: relative;
            width: 100%;
            height: 25rem;
        }

        .expert-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .expert-card-mask {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 45%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0) 100%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .expert-profile-details {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 55px;
            z-index: 3;
            color: #ffffff;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease-out;
        }

        .expert-name {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 4px 0;
            letter-spacing: -0.2px;
        }

        .expert-role {
            font-size: 0.8rem;
            color: #b3b3b3;
            margin: 0;
            font-weight: 500;
        }

        .expert-linkedin-link {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 3;
            color: #ffffff;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease, transform 0.2s ease;
        }

        .expert-linkedin-link:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .expert-linkedin-link svg {
            width: 18px;
            height: 18px;
            display: block;
        }

        /* Bottom Actions Panel styling */
        .expert-team-footer {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .expert-view-more-btn {
            background-color: transparent;
            border: 1px solid #f08306;
            /* Crisp brand accent outline borders */
            color: #ffffff;
            padding: 10px 24px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.2s ease, border-color 0.2s ease;
        }

        .expert-view-more-btn:hover {
            background-color: #f08306;
        }

        .btn-chevron {
            width: 14px;
            height: 14px;
        }

        /* Responsive Viewports adaptation code updates */
        @media (max-width: 1100px) {
            .expert-team-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .expert-team-section {
                padding: 60px 20px;
            }

            .expert-team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .expert-team-main-heading {
                font-size: 1.85rem;
            }

            .expert-img-frame {
                height: 290px;
            }
        }

        @media (max-width: 480px) {
            .expert-team-grid {
                grid-template-columns: 1fr;
                /* Stack into a clean, smooth linear layout single column */
                gap: 20px;
            }

            .expert-card {
                max-width: 320px;
                margin: 0 auto;
                width: 100%;
            }
        }

        /* ── Advantage Section ── */
        .advantage-section {
            background: #111111;
            padding: 70px 24px 90px;
        }

        .advantage-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: -0.01em;
        }

        /* ── Icon Bar ── */
        .advantage-bar {
            max-width: 1520px;
            margin: 0 auto 60px;
            background: #FFE6C8;
            border-radius: 5px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            overflow: hidden;
        }

        .advantage-item {
            padding: 32px 28px;
            border-right: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: background 0.2s;
        }

        .advantage-item:last-child {
            border-right: none;
        }

        .advantage-item:hover {
            background: #ecd9b8;
        }

        .advantage-icon {
            width: 52px;
            height: 52px;
            background: rgba(0, 0, 0, 0.06);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 4px;
        }

        .advantage-icon svg {
            width: 24px;
            height: 24px;
            stroke: #202020;
        }

        .advantage-item h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #202020;
            margin: 0;
            line-height: 1.3;
        }

        .advantage-item p {
            font-family: 'Raleway', sans-serif;
            font-size: 0.82rem;
            font-weight: 500;
            color: #555;
            line-height: 1.7;
            margin: 0;
        }

        /* ── Two Column Content ── */
        .advantage-content {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .advantage-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .advantage-content-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.4rem, 2.5vw, 1.9rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.25;
            margin: 0;
            letter-spacing: -0.02em;
        }

        .advantage-content-desc {
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.8;
            margin: 0;
        }

        .advantage-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #EF8508;
            color: #ffffff;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 5px;
            font-family: 'Raleway', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            width: fit-content;
            transition: background 0.2s, transform 0.2s;
            margin-top: 8px;
        }

        .advantage-cta svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
        }

        .advantage-cta:hover {
            background: #cf6a1a;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .advantage-cta:hover svg {
            transform: translateX(4px);
        }

        .advantage-right {
            border-radius: 5px;
            overflow: hidden;
        }

        .advantage-img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            border-radius: 5px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .advantage-bar {
                grid-template-columns: repeat(2, 1fr);
            }

            .advantage-item {
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            }
        }

        @media (max-width: 768px) {
            .advantage-bar {
                grid-template-columns: 1fr;
            }

            .advantage-content {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .advantage-img {
                height: 260px;
            }
        }

        .reviews-section {
            background: #202020;
            padding: 60px 24px 0;
        }

        .reviews-card {
            max-width: 1520px;
            margin: 0 auto;
            background: #EF8508;
            border-radius: 5px;
            overflow: hidden;
        }

        /* Centered title at very top */
        .reviews-top-title {
            text-align: center;
            padding: 32px 32px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.18);
            padding-bottom: 20px;
        }

        .reviews-top-title h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0;
        }

        /* Body row */
        .reviews-body {
            display: grid;
            grid-template-columns: 220px 1fr;
            min-height: 380px;
        }

        /* Left */
        .reviews-left {
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
        }

        .reviews-sub {
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 4px;
        }

        .reviews-heading {
            font-family: 'Raleway', sans-serif;
            font-size: 1.7rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 16px;
            line-height: 1.1;
        }

        .reviews-desc {
            font-family: 'Raleway', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.65;
            margin: 0;
            flex: 1;
        }

        .reviews-nav {
            display: flex;
            gap: 10px;
            margin-top: 28px;
        }

        .rev-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.6);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #ffffff;
            transition: background 0.2s, border-color 0.2s;
            flex-shrink: 0;
        }

        .rev-btn svg {
            width: 15px;
            height: 15px;
        }

        .rev-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #ffffff;
        }

        .rev-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* Slider outer — strictly clips to 3 cards */
        .reviews-slider-outer {
            overflow: hidden;
            padding: 24px 20px;
        }

        .reviews-track {
            display: flex;
            gap: 16px;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Each card = exactly 1/3 of visible area */
        .review-card {
            background: #FFE6C8;
            border-radius: 5px;
            padding: 24px 20px;
            flex: 0 0 calc((100%) / 3 - 11px);
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-sizing: border-box;
        }

        .review-quote {
            font-family: Georgia, serif;
            font-size: 2rem;
            line-height: 1;
            color: #EF8508;
            font-weight: 700;
        }

        .review-text {
            font-family: 'Raleway', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            color: #333;
            line-height: 1.75;
            margin: 0;
            flex: 1;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            color: #ffffff;
            flex-shrink: 0;
        }

        .review-name {
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
            color: #202020;
        }

        .review-role {
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            color: #666;
        }

        @media (max-width: 900px) {
            .reviews-body {
                grid-template-columns: 1fr;
            }

            .reviews-left {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.18);
            }

            .review-card {
                flex: 0 0 260px;
            }
        }

        /* Only Mobile Start */
        @media (max-width: 768px) {
            .hero-badge span {
                font-size: 8px;
            }

            .hero-title {
                font-size: 20px;
                width: 252px;
            }

            .hero {
                height: 90vh;
                padding: 6rem 0;
            }

            .trust-number {
                width: 60px;
                height: 60px;
                letter-spacing: 0;
            }
        }

        /* Only Mobile End */


        /* ══════════════════════════
   SERVICES & SOLUTIONS
══════════════════════════ */
        .services-section {
            background: #202020;
            padding: 60px 24px;
        }

        .services-card {
            max-width: 1520px;
            margin: 0 auto;
            background: #EF8508;
            border-radius: 16px;
            display: grid;
            grid-template-columns: 1fr 420px;
            overflow: hidden;
            min-height: 380px;
        }

        .services-left {
            padding: 44px 40px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .services-title {
            font-family: 'Raleway', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin: 0 0 8px;
        }

        .services-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .service-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 16px;
        }

        .service-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .service-item h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 6px;
        }

        .service-item p {
            font-family: 'Raleway', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin: 0;
        }

        .services-right {
            overflow: hidden;
        }

        .services-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ══════════════════════════
   TRANSFORMING FUTURE (dark 2-col)
══════════════════════════ */
        .transform-section {
            background: #202020;
            padding: 70px 24px;
        }

        .transform-container {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 20px;
            align-items: center;
            background: url(https://asituj.com/wp-content/uploads/2026/05/Group-16264.png);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .transform-left {
            border-radius: 12px;
            overflow: hidden;
        }

        .transform-img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }

        .transform-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .transform-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.4rem, 2.5vw, 1.9rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.25;
            margin: 0;
        }

        .transform-desc {
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.8;
            margin: 0;
        }

        .transform-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #EF8508;
            color: #ffffff;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-family: 'Raleway', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            width: fit-content;
            transition: background 0.2s, transform 0.2s;
        }

        .transform-cta svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
        }

        .transform-cta:hover {
            background: #cf6a1a;
            color: #fff;
            transform: translateY(-2px);
        }

        .transform-cta:hover svg {
            transform: translateX(4px);
        }

        /* ══════════════════════════
   TRANSFORM STATS BAR
══════════════════════════ */
        .transform-stats {
            background: #202020;
            padding: 0 24px 80px;
        }

        .transform-stats-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.4rem, 2.5vw, 1.9rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 48px;
        }

        .transform-stats-grid {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .transform-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 14px;
        }

        .transform-stat-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .transform-stat-icon svg {
            width: 28px;
            height: 28px;
            stroke: #EF8508;
        }

        .transform-stat-item h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            line-height: 1.3;
        }

        .transform-stat-item p {
            font-family: 'Raleway', sans-serif;
            font-size: 0.8rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .transform-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .services-card {
                grid-template-columns: 1fr;
            }

            .services-right {
                height: 260px;
            }

            .transform-container {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .transform-img {
                height: 260px;
            }

            .transform-stats-grid {
                grid-template-columns: 1fr;
            }
        }


        /* ── Policy Hero ── */
        .policy-hero {
            background: #EF8508;
            padding: 120px 60px 50px;
            text-align: center;
        }

        .policy-hero-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: #ffffff;
            margin: 0;
            letter-spacing: -0.02em;
        }

        /* ── Policy Content ── */
        .policy-content {
            background: #202020;
            padding: 60px 24px 80px;
        }

        .policy-container {
            max-width: 1520px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .policy-intro {
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            color: #fff;
            line-height: 1.8;
            margin: 0;
        }

        /* Sections */
        .policy-section {
            display: flex;
            flex-direction: column;
            gap: 14px;
            border-left: 3px solid #EF8508;
            padding-left: 20px;
        }

        .policy-section h2 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
            margin: 0;
        }

        .policy-section p {
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            color: #fff;
            line-height: 1.8;
            margin: 0;
        }

        .policy-section ul {
            padding-left: 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .policy-section ul li {
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            color: #000000;
            line-height: 1.75;
        }

        /* Principles */
        .policy-principle {
            background: #fafafa;
            border: 1px solid #f0e8da;
            border-radius: 8px;
            padding: 20px 24px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .policy-principle h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #202020;
            margin: 0;
        }

        .policy-principle p,
        .policy-principle li {
            font-family: 'Raleway', sans-serif;
            font-size: 0.85rem;
            color: #000000;
            line-height: 1.75;
            margin: 0;
        }

        .policy-principle ul {
            padding-left: 18px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        /* Contact block */
        .policy-contact {
            background: #fff8f2;
            border-left: 3px solid #EF8508;
            border-radius: 4px;
            padding: 16px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .policy-contact p {
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            color: #444;
            margin: 0;
        }

        .policy-contact a {
            color: #EF8508;
            text-decoration: none;
            font-weight: 600;
        }

        .policy-contact a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .policy-container {
                gap: 24px;
            }

            .policy-section {
                padding-left: 14px;
            }
        }

        /* ══════════════════════════
   SERVICE BAR
══════════════════════════ */
        .service-bar {
            background: #FFE6C8;
            padding: 0 24px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .service-bar-inner {
            max-width: 1520px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        .service-bar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px 20px;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            text-decoration: none;
        }

        .service-bar-item.active,
        .service-bar-item:hover {
            border-bottom-color: #EF8508;
        }

        .service-bar-icon {
            width: 36px;
            height: 36px;
            background: #EF8508;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-bar-icon svg {
            width: 18px;
            height: 18px;
            stroke: #ffffff;
        }

        .service-bar-item span {
            font-family: 'Raleway', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #202020;
            white-space: nowrap;
        }

        /* ══════════════════════════
   WHAT WE DO CARDS — Fixed
══════════════════════════ */
        .wwd-cards-section {
            background: #202020;
            padding: 60px 24px 70px;
        }

        .wwd-cards-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 36px;
        }

        .wwd-cards-grid {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        /* Card — orange background, title+text top, image bottom */
        .wwd-img-card {
            background: #EF8508;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 400px;
            padding: 20px;
        }

        /* Content sits at top */
        .wwd-img-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
            height: 8rem;
        }

        .wwd-img-content h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 18px;
            color: #ffffff;
            margin: 0;
            line-height: 1.3;
        }

        .wwd-img-content p {
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.4;
        }

        /* Image fills remaining bottom space */
        .wwd-img-bg {
            flex: 1;
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
            min-height: 200px;
            border-radius: 0 0 8px 8px;
        }

        /* Remove the overlay — not needed anymore */
        .wwd-img-overlay {
            display: none;
        }

        /* Hover lift */
        .wwd-img-card {
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .wwd-img-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        }

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

            }
        }

        @media (max-width: 600px) {
            .wwd-cards-grid {
                grid-template-columns: 1fr;
                border-radius: 0;
            }
        }

        /* ══════════════════════════
   PARTNER ECOSYSTEM
══════════════════════════ */
        .partner-section {
            background: #202020;
            padding: 70px 24px 80px;
        }

        .partner-title {
            font-family: 'Raleway', sans-serif;
            font-size: 34px;
            font-weight: 600;
            color: #ffffff;
            text-align: center;
            margin-bottom: 48px;
        }

        .partner-container {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .partner-left {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .partner-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding-bottom: 28px;
            border-bottom: 1px solid #f0e8da;
        }

        .partner-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .partner-num {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Raleway', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            flex-shrink: 0;
            position: relative;
            background: transparent;
        }

        /* Rotating dashed border */
        .partner-num::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px dashed rgba(255, 255, 255, 0.35);
            animation: spinBorder 6s linear infinite;
        }

        @keyframes spinBorder {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .partner-text h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 6px;
        }

        .partner-text p {
            font-family: 'Raleway', sans-serif;
            font-size: 18px;
            color: #ffffff;
            line-height: 1.7;
            margin: 0;
        }

        .partner-right {
            border-radius: 12px;
            overflow: hidden;
        }

        .partner-img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }

        /* ══════════════════════════
   TRANSFORMING FUTURE (Orange+Dark)
══════════════════════════ */
        .tf-section {
            background: #202020;
            padding: 60px 24px 80px;
        }

        .tf-card {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            border-radius: 16px;
            overflow: hidden;
            min-height: 380px;
        }

        .tf-left {
            background: #EF8508;
            padding: 48px 44px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: center;
        }

        .tf-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.3rem, 2vw, 1.7rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.25;
            margin: 0;
        }

        .tf-desc {
            font-family: 'Raleway', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.8;
            margin: 0;
        }

        .tf-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            color: #EF8508;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            width: fit-content;
            transition: background 0.2s, color 0.2s;
            margin-top: 8px;
        }

        .tf-cta svg {
            width: 15px;
            height: 15px;
            transition: transform 0.2s;
        }

        .tf-cta:hover {
            background: #202020;
            color: #ffffff;
        }

        .tf-cta:hover svg {
            transform: translateX(4px);
        }

        .tf-right {
            overflow: hidden;
        }

        .tf-img {
            width: 100%;
            height: 100%;
            min-height: 380px;
            object-fit: cover;
            display: block;
            filter: grayscale(30%);
        }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            .wwd-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-bar-inner {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .wwd-cards-grid {
                grid-template-columns: 1fr;
            }

            .partner-container {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .partner-img {
                height: 260px;
            }

            .tf-card {
                grid-template-columns: 1fr;
            }

            .tf-img {
                min-height: 260px;
            }

            .service-bar-item span {
                font-size: 0.75rem;
            }
        }


        /* ── Ethics Section ── */
        .ethics-section {
            background: #1a1a1a;
            padding: 70px 24px 90px;
            position: relative;
        }

        .ethics-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: -0.01em;
        }

        /* Wrap — relative for SVG overlay */
        .ethics-wrap {
            max-width: 1520px;
            margin: 0 auto;
            position: relative;
        }

        /* SVG connecting curves */
        .ethics-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        /* Rows */
        .ethics-row {
            display: flex;
            gap: 32px;
            justify-content: space-around;
            position: relative;
            z-index: 1;
        }

        .ethics-row-top {
            margin-bottom: 40px;
        }

        .ethics-row-bottom {
            justify-content: center;
            gap: 80px;
            padding: 40px 80px;
        }

        /* Card — top center is elevated */
        .ethics-card {
            background: #f5e6cc;
            border-radius: 12px;
            padding: 28px 24px;
            flex: 1;
            max-width: 340px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .ethics-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        }

        /* Center top card slightly elevated */
        .ethics-card-top {
            margin-top: -24px;
        }

        /* Icon */
        .ethics-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 4px;
        }

        .ethics-icon svg {
            width: 32px;
            height: 32px;
            color: #1a1a1a;
        }

        /* Title */
        .ethics-card h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: #1a1a1a;
            margin: 0;
        }

        /* Description */
        .ethics-card p {
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            color: #555;
            line-height: 1.7;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .ethics-svg {
                display: none;
            }

            .ethics-row {
                flex-direction: column;
                align-items: center;
            }

            .ethics-row-bottom {
                padding: 0;
                gap: 24px;
            }

            .ethics-card {
                max-width: 100%;
                width: 100%;
            }

            .ethics-card-top {
                margin-top: 0;
            }
        }

        /* ── Who We Are ── */
        .who-we-are {
            background: #1a1a1a;
            padding: 70px 24px 90px;
        }

        .who-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 48px;
            letter-spacing: -0.01em;
        }

        /* Container */
        .who-container {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 32px;
            align-items: start;
        }

        /* ── Left Tabs ── */
        .who-tabs {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .who-tab {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 20px 24px;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            text-align: left;
            transition: color 0.2s, background 0.2s;
            border-radius: 0;
        }

        .who-tab:first-child {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .who-tab svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            opacity: 0.5;
            transition: opacity 0.2s, transform 0.2s;
        }

        .who-tab:hover {
            color: #ffffff;
        }

        .who-tab:hover svg {
            opacity: 0.8;
            transform: translateX(4px);
        }

        /* Active tab */
        .who-tab.active {
            background: linear-gradient(135deg, #E87722, #cf6a1a);
            color: #ffffff;
            border-radius: 5px;
            border-color: transparent;
            margin-bottom: 4px;
            margin-top: 0;
        }

        .who-tab.active svg {
            opacity: 1;
        }

        /* ── Right Panels ── */
        .who-panels {
            position: relative;
        }

        .who-panel {
            display: none;
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            min-height: 420px;
        }

        .who-panel.active {
            display: block;
            animation: panelFadeIn 0.4s ease;
        }

        @keyframes panelFadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

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

        /* Background image */
        .who-panel-img {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #2a2a2a;
            /* fallback if no image */
        }

        /* Gradient overlay — stronger at bottom */
        .who-panel-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.05) 0%,
                    rgba(0, 0, 0, 0.3) 40%,
                    rgba(0, 0, 0, 0.85) 70%,
                    rgba(0, 0, 0, 0.95) 100%);
        }

        /* Content */
        .who-panel-content {
            position: relative;
            z-index: 2;
            padding: 32px 32px 36px;
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }

        .who-panel-content h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0;
        }

        .who-panel-content p {
            font-family: 'Raleway', sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.75;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .who-container {
                grid-template-columns: 1fr;
            }

            .who-tabs {
                flex-direction: row;
                overflow-x: auto;
                gap: 8px;
                flex-wrap: nowrap;
            }

            .who-tab {
                white-space: nowrap;
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 8px;
                flex-shrink: 0;
            }

            .who-tab:first-child {
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        .trusted-section {
            background: #1a1a1a;
            padding: 60px 24px;
        }

        .trusted-card {
            max-width: 1520px;
            margin: 0 auto;
            background: #E87722;
            border-radius: 5px;
            padding: 48px 40px 44px;
        }

        .trusted-title {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 36px;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        /* Grid */
        .trusted-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* Item card */
        .trusted-item {
            background: #f5e6cc;
            border-radius: 5px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        /* Icon */
        .trusted-icon {
            width: 52px;
            height: 52px;
            background: #f5e6cc;
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }

        .trusted-icon svg {
            width: 26px;
            height: 26px;
            stroke: #1a1a1a;
        }

        /* Stat number */
        .trusted-stat {
            font-family: 'Raleway', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1;
        }

        /* Stat label */
        .trusted-stat-label {
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        /* Description */
        .trusted-desc {
            font-family: 'Raleway', sans-serif;
            font-size: 0.82rem;
            font-weight: 500;
            color: #444;
            line-height: 1.7;
            margin: 0;
        }

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

        @media (max-width: 600px) {
            .trusted-grid {
                grid-template-columns: 1fr;
            }

            .trusted-card {
                padding: 32px 20px;
            }
        }