 :root {
            /* Tuned to match the Ele-Reception logo */
            --brand: #424b52;      /* elephant grey */
            --brand-dark: #2e353b;
            --accent: #2fd0b4;     /* elephant eye teal */
            --text-main: #1f2933;
            --text-muted: #6b7280;
            --bg-light: #f7f8fa;
            --bg-dark: #14181c;
            --border-soft: #e5e7eb;
            --radius-lg: 1rem;
            --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.15);
            --max-width: 1180px;
        }

        * { box-sizing: border-box; }

        html, body {
            margin: 0;
            padding: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text-main);
            background-color: #ffffff;
            scroll-behavior: smooth;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 4rem 0;
        }

        .section--alt {
            background: var(--bg-light);
        }

        .section__title {
            font-size: clamp(1.8rem, 2.1vw, 2.2rem);
            margin-bottom: 0.75rem;
        }

        .section__eyebrow {
            text-transform: uppercase;
            letter-spacing: .09em;
            font-size: .78rem;
            color: var(--brand);
            font-weight: 600;
        }

        .section__lead {
            max-width: 700px;
            color: var(--text-muted);
            font-size: 0.98rem;
        }

        /* Header / Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }

        .site-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 1.5rem;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .site-header__left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text span:first-child {
            font-weight: 700;
            font-size: 1.05rem;
        }

        .logo-text span:last-child {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 1.8rem;
        }

        .nav__links {
            display: flex;
            gap: 1.2rem;
            font-size: 0.92rem;
            align-items: center;
        }

        .nav__link {
            position: relative;
            padding-bottom: 0.15rem;
        }

        .nav__link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--brand), var(--accent));
            transition: width 0.18s ease-out;
        }

        .nav__link:hover::after,
        .nav__link--active::after {
            width: 100%;
        }

        .nav__cta {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn {
            border-radius: 999px;
            padding: 0.45rem 1.2rem;
            border: 1px solid transparent;
            cursor: pointer;
            font-size: 0.9rem;
            line-height: 1.4;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            white-space: nowrap;
        }

        .btn--primary {
            background: linear-gradient(135deg, var(--brand), var(--brand-dark));
            color: #fff;
            box-shadow: 0 10px 22px rgba(66, 75, 82, 0.45);
        }

        .btn--primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 32px rgba(66, 75, 82, 0.55);
        }

        .btn--ghost {
            background: transparent;
            border-color: rgba(148, 163, 184, 0.6);
            color: var(--text-main);
        }

        .btn--ghost:hover {
            border-color: rgba(148, 163, 184, 1);
        }

        /* Ghost button on dark background (fix for features summary) */
        .features__summary .btn--ghost {
            color: #ffffff;
            border-color: rgba(226, 232, 240, 0.8);
            background: rgba(15, 23, 42, 0.45);
        }
        .features__summary .btn--ghost:hover {
            background: rgba(15, 23, 42, 0.9);
        }

        /* Nav dropdown for sectors */
        .nav__item {
            position: relative;
        }

        .nav__link--button {
            background: none;
            border: none;
            padding: 0;
            font: inherit;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .nav__link--button svg {
            width: 10px;
            height: 10px;
        }

        .nav__dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            border-radius: 0.75rem;
            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
            padding: 0.5rem 0;
            min-width: 190px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(6px);
            transition: opacity 0.16s ease-out, transform 0.16s ease-out;
            z-index: 40;
        }

        .nav__dropdown-link {
            display: block;
            padding: 0.4rem 1rem;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .nav__dropdown-link:hover {
            background: #f3f4f6;
        }

        .nav__item--has-dropdown:hover .nav__dropdown {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            border: none;
            background: none;
            cursor: pointer;
            padding: 0.35rem;
        }

        .nav-toggle__bar {
            width: 20px;
            height: 2px;
            background: var(--text-main);
            border-radius: 999px;
            position: relative;
        }

        .nav-toggle__bar::before,
        .nav-toggle__bar::after {
            content: "";
            position: absolute;
            left: 0;
            width: 20px;
            height: 2px;
            background: var(--text-main);
            border-radius: 999px;
        }

        .nav-toggle__bar::before { top: -6px; }
        .nav-toggle__bar::after { top: 6px; }

        /* Hero */
        .hero {
            padding: 3.5rem 0 4.5rem;
        }

        .hero__inner {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
            gap: 3rem;
            align-items: center;
        }

        .hero__eyebrow {
            text-transform: uppercase;
            letter-spacing: .14em;
            font-size: .76rem;
            color: var(--brand);
            font-weight: 600;
        }

        .hero__title {
            font-size: clamp(2.1rem, 3.2vw, 2.8rem);
            line-height: 1.05;
            margin: 0.5rem 0 0.75rem;
        }

        .hero__title span {
            background: linear-gradient(135deg, var(--brand), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero__lead {
            font-size: 0.98rem;
            color: var(--text-muted);
            max-width: 39rem;
        }

        .hero__bullets {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            margin: 1.4rem 0 1.7rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .hero__bullet {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

        .hero__bullet-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle at 20% 0%, var(--accent), transparent 60%),
                        linear-gradient(135deg, var(--brand), var(--brand-dark));
        }

        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }

        .hero__meta {
            margin-top: 0.75rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .hero__visual {
            position: relative;
        }

        .hero__image {
            border-radius: 1.4rem;
            box-shadow: var(--shadow-soft);
            width: 100%;
            height: auto;
            background: #f4f5f7;
            object-fit: cover;
        }

        /* Standard features */
        .features {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 2.5rem;
            align-items: flex-start;
        }

        .features__panel {
            border-radius: var(--radius-lg);
            background: #fff;
            border: 1px solid var(--border-soft);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
            padding: 1.7rem 1.6rem;
        }

        .features__heading {
            font-size: 1.15rem;
            margin-bottom: 0.35rem;
        }

        .features__sub {
            font-size: 0.86rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .features__grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.75rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
        }

        .feature-pill {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
        }

        .feature-pill__icon {
            margin-top: 0.16rem;
            width: 20px;
            height: 20px;
            border-radius: 999px;
            background: rgba(47, 208, 180, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            color: var(--brand);
        }

        .feature-pill__text { font-size: 0.88rem; }

        .feature-pill__meta {
            display: block;
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 0.1rem;
        }

        .features__summary {
            background: var(--bg-dark);
            color: #e5e7eb;
            border-radius: var(--radius-lg);
            padding: 1.5rem 1.6rem;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }

        .features__summary::before {
            content: "";
            position: absolute;
            inset: -40%;
            background: radial-gradient(circle at 0 0, rgba(47, 208, 180, 0.22), transparent 55%);
            opacity: 0.9;
            pointer-events: none;
        }

        .features__summary-inner {
            position: relative;
        }

        .features__summary strong { font-weight: 600; }

        /* Bespoke section */
        .bespoke {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
            gap: 2.5rem;
        }

        .bespoke__card {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-soft);
            padding: 1.5rem 1.6rem;
            background: #fff;
        }

        .bespoke__list {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
            display: grid;
            gap: 0.75rem;
            font-size: 0.9rem;
        }

        .bespoke__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.18rem 0.6rem;
            background: rgba(47, 208, 180, 0.12);
            border-radius: 999px;
            font-size: 0.76rem;
            color: var(--brand-dark);
            margin-bottom: 0.4rem;
        }

        .bespoke__muted {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* Logo carousel */
        .logos-strip { overflow: hidden; }

        .logos-strip__rail {
            display: flex;
            gap: 3rem;
            align-items: center;
            animation: logos-scroll 30s linear infinite;
        }

        .logos-strip__item {
            flex: 0 0 auto;
            opacity: 0.8;
            filter: grayscale(100%);
            transition: opacity 0.2s ease-out, filter 0.2s ease-out;
        }

        .logos-strip__item:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .logos-strip__item img {
            max-height: 40px;
            width: auto;
        }

        @keyframes logos-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* Testimonials */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .testimonial {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-soft);
            padding: 1.4rem 1.5rem 1.5rem;
            background: #ffffff;
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
            font-size: 0.92rem;
            position: relative;
        }

        .testimonial__quote {
            margin: 0 0 1rem;
            color: var(--text-main);
        }

        .testimonial__meta {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .testimonial__badge {
            position: absolute;
            top: 0.9rem;
            right: 1rem;
            font-size: 1.6rem;
            color: rgba(148, 163, 184, 0.7);
        }

        /* Footer */
        .site-footer {
            background: #0b1014;
            color: #e5e7eb;
            padding: 2.2rem 0 1.6rem;
            font-size: 0.82rem;
        }

        .site-footer__inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 2fr 1.3fr 1.3fr;
            gap: 1.5rem;
        }

        .site-footer h4 {
            margin: 0 0 0.5rem;
            font-size: 0.88rem;
        }

        .site-footer__small {
            margin-top: 1.25rem;
            border-top: 1px solid rgba(148, 163, 184, 0.35);
            padding-top: 0.9rem;
            display: flex;
            justify-content: space-between;
            gap: 0.75rem;
            flex-wrap: wrap;
            color: #9ca3af;
        }

        .site-footer a { color: inherit; }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0.3rem 0 0;
            display: grid;
            gap: 0.25rem;
        }

        .footer-contact {
            display: grid;
            gap: 0.25rem;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.12rem 0.6rem;
            background: rgba(148, 163, 184, 0.18);
            border-radius: 999px;
            font-size: 0.75rem;
            color: #e5e7eb;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero__inner {
                grid-template-columns: minmax(0, 1fr);
            }
            .hero__visual { order: -1; }
            .features,
            .bespoke,
            .testimonials {
                grid-template-columns: minmax(0, 1fr);
            }
            .site-footer__inner {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        @media (max-width: 768px) {
            .site-header__inner {
                padding-inline: 1rem;
            }

            .nav {
                position: absolute;
                inset-inline: 0;
                top: 100%;
                background: rgba(255, 255, 255, 0.98);
                border-bottom: 1px solid rgba(226, 232, 240, 0.9);
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                padding: 0.9rem 1.2rem 1.2rem;
                transform: translateY(-8px);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.18s ease-out, transform 0.18s ease-out;
            }

            .nav--open {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav__links {
                flex-direction: column;
                gap: 0.6rem;
                align-items: flex-start;
            }

            .nav__cta {
                width: 100%;
                justify-content: stretch;
            }

            .nav__cta .btn {
                flex: 1;
                justify-content: center;
            }

            .nav-toggle {
                display: inline-flex;
            }

            /* Dropdown behaves like an always-open sub-list on mobile */
            .nav__item--has-dropdown {
                width: 100%;
            }
            .nav__dropdown {
                position: static;
                box-shadow: none;
                border-radius: 0;
                padding: 0.25rem 0 0.4rem 0.8rem;
                opacity: 1;
                pointer-events: auto;
                transform: none;
            }
        }

        @media (max-width: 520px) {
            .features__grid {
                grid-template-columns: minmax(0, 1fr);
            }
            .hero {
                padding-top: 2.6rem;
            }
            .section {
                padding: 3rem 0;
            }
        }