        :root {
            /* Color Palette from Brand */
            --royal-blue: #0C1F54;

            --gold-light: #F7C86A;
            --gold-mid: #DA9A32;
            --gold-dark: #A06214;

            --royal-blue-dark: #081638;
            --light-bg: #F9FAFB;

            --text-dark: #1E293B;
            --text-light: #7a8698;
            --white: #FFFFFF;

            /* Typography */
            --font-main: 'Inter', sans-serif;
            --font-heading: 'Playfair Display', serif; 

            /* Spacing */
            --section-padding: 5rem 1.5rem;
            --container-width: 1200px;

            /* H colors */
            --h3-color: #FFFFFF;
        }

        ::-webkit-scrollbar {
            width: 14px;
        }

        ::-webkit-scrollbar-track {
            background: linear-gradient(180deg, var(--white), var(--light-bg));
            border-left: 1px solid rgba(12, 31, 84, 0.1);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg,
                    var(--royal-blue),
                    var(--royal-blue-dark));
            border: 3px solid var(--white);
            border-radius: 7px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg,
                    var(--royal-blue-dark),
                    #06122c);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scrollbar-width: thin;
            scrollbar-color: var(--royal-blue) var(--white);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--royal-blue);
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-light), var(--gold-mid));
            border-radius: 2px;
            transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
        }

        h2.fade-in.visible:after,
        .fade-in.visible h2:after {
            width: 60px;
        }

        h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--h3-color);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .text-center {
            text-align: center;
        }

        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Layout & Container */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        section {
            padding: var(--section-padding);
        }

        /* Header & Navigation */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(122, 31, 52, 0.08);
            position: fixed;
            width: 90%;
            left: 5%;
            top: 2%;
            z-index: 1000;
            border-radius: 50px;
            border: #0816383b 1px solid;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-image {
            height: 50px;
            width: auto;
            margin-right: 12px;
        }

        .logo-text {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--royal-blue);
        }

        .logo-text span {
            background: linear-gradient(145deg, var(--gold-dark), var(--gold-mid));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-icon-text {
            color: var(--gold-light);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .logo-icon-hanuman {
            position: absolute;
            left: 8px;
            width: 20px;
            height: 24px;
            background-color: var(--gold-light);
            clip-path: polygon(0% 20%, 50% 0%, 100% 20%, 90% 100%, 10% 100%);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 2rem;
        }

        nav a {
            text-decoration: none;
            color: var(--gold-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a.active {
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 600;
        }

        nav a.active:after {
            width: 100%;
        }

        nav a:hover {
            color: var(--text-dark);
        }

        nav a:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 3px;
            background-color: var(--gold-mid);
            transition: width 0.3s ease;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--royal-blue);
            cursor: pointer;
            z-index: 9999 !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)),
                radial-gradient(circle at 20% 50%, rgb(255, 0, 60), transparent 50%),
                radial-gradient(circle at 80% 20%, rgb(184, 115, 42), transparent 50%);
            background-color: var(--royal-blue-dark);
            color: var(--white);
            padding-top: 10rem;
            padding-bottom: 9rem;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(246, 196, 82, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(122, 31, 52, 0.05) 0%, transparent 50%);
            z-index: 0;
            animation: heroBgDrift 14s ease-in-out infinite;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1,
        .hero h2 {
            text-align: center;
        }

        .hero h1,
        .hero h2,
        .hero p {
            color: var(--white);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--white), var(--gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero h2 {
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero h2:after {
            display: none;
        }

        .hero h3 {
            color: var(--white);
        }

        .hero-bullets {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3rem 0;
        }

        .hero-bullet {
            flex: 1;
            min-width: 250px;
            background-color: rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(247, 200, 106, 0.25);
            border-left: 5px solid var(--gold-light);
            transition: transform 0.5s ease, background-color 0.3s ease !important;
        }

        .hero-bullet:hover {
            transform: translateY(-5px) !important;
            background-color: rgba(255, 255, 255, 0.12);
        }

        .hero-bullet i {
            color: var(--gold-light);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--gold-mid) 0%, var(--gold-light) 50%, var(--gold-mid) 100%);
            background-size: 200% auto;
            color: var(--royal-blue);
            transition: background-position 0.55s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-primary:hover {
            background-position: right center;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(184, 116, 42, 0.35);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--gold-light);
            transform: translateY(-3px);
        }

        .hero-microcopy {
            margin-top: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* About Section */
        .about {
            background-color: var(--light-bg);
            position: relative;
        }

        .about-arc {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            pointer-events: none;
            transform: translateY(calc(-100% + 2px));
        }

        .about-arc svg {
            display: block;
            width: 100%;
            height: clamp(40px, 6vw, 90px);
        }

        .value-pillars {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3rem 0;
        }

        .pillar {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 2rem 1.5rem;
            background-color: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
            transition: transform 0.3s ease !important;
        }

        .pillar:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .pillar-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--royal-blue);
            font-size: 1.8rem;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
        }

        .pillar:hover .pillar-icon {
            transform: scale(1.15) rotate(8deg);
            box-shadow: 0 8px 22px rgba(218, 154, 50, 0.4);
        }

        .mission-statement {
            text-align: center;
            max-width: 720px;
            margin: 3rem auto 0;
            padding: 3rem 2.5rem;
            background: var(--royal-blue);
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(8, 22, 56, 0.25);
            position: relative;
            transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .mission-statement:hover {
            box-shadow: 0 22px 60px rgba(8, 22, 56, 0.42);
            transform: translateY(-4px);
        }

        .mission-quote-icon {
            display: block;
            font-size: 2.2rem;
            color: var(--gold-light);
            opacity: 0.75;
            margin-bottom: 1.2rem;
            line-height: 1;
        }

        .mission-statement p {
            font-size: clamp(1.05rem, 2.2vw, 1.3rem);
            font-weight: 600;
            color: var(--white);
            font-style: italic;
            line-height: 1.75;
        }

        .mission-rule {
            display: block;
            width: 50px;
            height: 3px;
            background: var(--gold-mid);
            border-radius: 2px;
            margin: 1.5rem auto 0;
        }

        /* Products Section */
        .products {
            background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 60%);
        }

        .product-cards {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .product-card {
            min-width: 0;
            border-radius: 12px;
            background: var(--white);
            box-shadow: 0 1px 6px rgba(12, 31, 84, 0.06), 0 4px 16px rgba(12, 31, 84, 0.05) !important;
            transition: transform 0.22s ease, box-shadow 0.22s ease !important;
            border: 1px solid rgba(12, 31, 84, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-4px) !important;
            box-shadow: 0 8px 28px rgba(12, 31, 84, 0.12) !important;
        }

        .product-card-header {
            padding: 1.25rem 1.5rem 1rem;
            border-bottom: 1px solid rgba(90, 22, 40, 0.15);
            background: linear-gradient(135deg, var(--royal-blue), #5a1628);
        }

        .product-card-header .product-chip {
            display: inline-flex;
            align-self: flex-start;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }

        .product-card-header h3 {
            font-size: clamp(1.15rem, 1.6vw, 1.4rem);
            color: var(--white);
            margin: 0;
            line-height: 1.3;
        }

        .product-card-content {
            padding: 1.1rem 1.5rem;
            flex: 1;
        }

        .product-summary {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.65;
            margin: 0;
        }

        .product-card-footer {
            padding: 0.9rem 1.5rem;
            border-top: 1px solid rgba(12, 31, 84, 0.07);
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .product-detail-content {
            display: none;
        }

        .product-card-shell,
        .product-card-body,
        .product-actions {
            /* kept for safety — no longer used in markup */
            display: contents;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 1rem;
            background: transparent;
            border: 1px solid rgba(12, 31, 84, 0.35);
            border-radius: 6px;
            color: var(--royal-blue);
            font-weight: 500;
            font-size: 0.82rem;
            cursor: pointer;
            letter-spacing: 0.01em;
            transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
        }

        .read-more-btn i {
            font-size: 0.65rem;
            transition: transform 0.18s ease;
        }

        .read-more-btn:hover {
            background-color: var(--royal-blue);
            border-color: var(--royal-blue);
            color: var(--white);
        }

        .read-more-btn:hover i {
            transform: translateX(3px);
        }

        .read-more-btn:focus-visible {
            outline: 2px solid var(--royal-blue);
            outline-offset: 2px;
        }

        .product-features {
            list-style: none;
            margin: 1.1rem 0 0;
            text-align: left;
        }

        .product-features li {
            padding: 0.6rem 0 0.6rem 1.5rem;
            position: relative;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: var(--text-dark);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .product-features li:last-child {
            border-bottom: none;
        }

        .product-features li::before {
            content: '✓';
            color: var(--gold-mid);
            font-weight: 700;
            position: absolute;
            left: 0;
            top: 0.6rem;
            font-size: 0.8rem;
        }

        .product-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 1rem;
            background: var(--royal-blue);
            color: var(--white);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.82rem;
            letter-spacing: 0.01em;
            transition: background-color 0.18s ease, box-shadow 0.18s ease;
        }

        .product-cta:hover {
            background: #0a1a44;
            box-shadow: 0 4px 12px rgba(12, 31, 84, 0.24);
        }

        .product-cta:focus-visible {
            outline: 2px solid var(--royal-blue);
            outline-offset: 2px;
        }

        .product-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
            z-index: 1200;
        }

        .product-modal.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .product-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(8, 22, 56, 0.62);
            backdrop-filter: blur(10px);
        }

        .product-modal-dialog {
            position: relative;
            width: min(760px, 100%);
            max-height: min(85vh, 860px);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            background: linear-gradient(180deg, #ffffff, #f9fafb);
            border-radius: 24px;
            padding: 0;
            box-shadow: 0 30px 80px rgba(8, 22, 56, 0.3);
            z-index: 1;
            transform: scale(0.95) translateY(20px);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .product-modal.is-open .product-modal-dialog {
            transform: scale(1) translateY(0);
        }

        .product-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 42px;
            height: 42px;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            color: var(--white);
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .product-modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .product-modal-header {
            background: linear-gradient(135deg, var(--royal-blue), #5a1628);
            padding: 2.5rem 2rem 1.75rem;
            border-radius: 24px 24px 0 0;
            flex-shrink: 0;
        }

        .product-modal-kicker {
            color: var(--gold-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.78rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .product-modal-header h3 {
            color: var(--white);
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            margin-bottom: 0;
        }

        .product-modal-content {
            text-align: left;
            overflow-y: auto;
            flex: 1;
            padding: 1.5rem 2rem 2rem;
        }

        .product-detail-intro {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .product-modal-footer {
            margin-top: 2rem;
            display: flex;
            justify-content: flex-start;
        }

        body.modal-open {
            overflow: hidden;
        }

        /* Features Grid */
        .features {
            background-color: var(--light-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.35s ease,
                        border-bottom-color 0.3s ease !important;
            border-bottom: 5px solid var(--gold-mid);
        }

        .feature-card:hover {
            transform: translateY(-7px) !important;
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.11);
            border-bottom-color: var(--gold-light);
        }

        .feature-card h3,
        .pillar h3,
        .industry-item h3 {
            color: var(--royal-blue);
        }

        .feature-card h4 {
            margin-bottom: 1rem;
            color: var(--royal-blue);
            font-size: 1.3rem;
        }

        .feature-card p {
            font-size: 0.95rem;
        }

        .features-microcopy {
            text-align: center;
            margin-top: 3rem;
            color: var(--text-light);
            font-style: italic;
        }

        /* Industries Section */
        .industries {
            background-color: var(--white);
        }

        .industry-list {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }

        .industry-item {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 2rem 1.5rem;
            background-color: var(--light-bg);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease !important;
        }

        .industry-item:hover {
            transform: translateY(-5px) !important;
            background-color: #ffffff25;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .industry-icon {
            font-size: 2.5rem;
            color: var(--royal-blue);
            margin-bottom: 1.5rem;
            display: block;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
        }

        .industry-item:hover .industry-icon {
            transform: translateY(-8px) scale(1.2);
            color: var(--gold-mid);
        }

        .industry-fit {
            max-width: 860px;
            margin: 3rem auto 0;
        }

        .industry-fit-inner {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 2rem 2.5rem;
            background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(160, 98, 20, 0.2);
            text-align: left;
        }

        .industry-fit-icon {
            font-size: 2.8rem;
            color: var(--royal-blue);
            flex-shrink: 0;
            line-height: 1;
        }

        .industry-fit p {
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            font-weight: 500;
            color: var(--royal-blue-dark);
            line-height: 1.7;
            margin: 0;
        }

        /* Achievements Section */
        .achievements {
            position: relative;
            background:
                radial-gradient(1200px 420px at 6% -10%, rgba(218, 154, 50, 0.14), transparent 56%),
                radial-gradient(1100px 420px at 94% 0%, rgba(12, 31, 84, 0.08), transparent 60%),
                linear-gradient(180deg, var(--light-bg) 0%, var(--white) 78%);
        }

        .achievements-list {
            margin-top: 2.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .achievement-card {
            position: relative;
            background: var(--white);
            border: 1px solid rgba(12, 31, 84, 0.16);
            border-radius: 18px;
            box-shadow: 0 16px 46px rgba(12, 31, 84, 0.11);
            padding: 2.2rem;
            text-align: left;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .achievement-card:hover {
            transform: translateY(-4px) !important;
            box-shadow: 0 22px 56px rgba(12, 31, 84, 0.16);
        }

        .achievement-card::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-mid), var(--gold-light), var(--royal-blue));
        }

        .achievement-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }

        .achievement-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            background: linear-gradient(90deg, rgba(247, 200, 106, 0.25), rgba(218, 154, 50, 0.18));
            color: var(--royal-blue-dark);
            border: 1px solid rgba(160, 98, 20, 0.26);
            border-radius: 999px;
            padding: 0.34rem 0.82rem;
            font-size: 0.74rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .achievement-badge::before {
            content: '\f091';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--gold-dark);
        }

        .achievement-headline {
            color: var(--royal-blue);
            font-size: clamp(1.38rem, 2.5vw, 1.9rem);
            margin-bottom: 1.2rem;
            line-height: 1.34;
            max-width: 48ch;
        }

        .achievement-meta {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.9rem;
            margin-bottom: 1.15rem;
        }

        .achievement-meta-item {
            background: linear-gradient(180deg, rgba(12, 31, 84, 0.04), rgba(12, 31, 84, 0.02));
            border: 1px solid rgba(12, 31, 84, 0.12);
            border-radius: 10px;
            padding: 0.7rem 0.8rem;
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .achievement-meta-label {
            color: var(--text-light);
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 700;
        }

        .achievement-meta-value {
            color: var(--text-dark);
            font-size: 0.92rem;
            font-weight: 600;
            line-height: 1.4;
        }

        .achievement-description {
            color: var(--text-light);
            margin-bottom: 1.35rem;
            line-height: 1.75;
            max-width: 88ch;
        }

        .achievement-body {
            display: grid;
            grid-template-columns: minmax(0, 1.9fr) minmax(270px, 1fr);
            gap: 1.3rem;
            align-items: start;
        }

        .achievement-highlights-block {
            background: rgba(12, 31, 84, 0.02);
            border: 1px solid rgba(12, 31, 84, 0.08);
            border-radius: 12px;
            padding: 1.05rem 1.15rem 1.15rem;
        }

        .achievement-subtitle {
            margin: 0 0 0.8rem;
            color: var(--royal-blue);
            font-family: var(--font-main);
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .achievement-highlights {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.6rem 1rem;
        }

        .achievement-highlights li {
            position: relative;
            padding-left: 1.15rem;
            color: var(--text-dark);
            font-size: 0.9rem;
            line-height: 1.58;
            margin: 0;
        }

        .achievement-highlights li::before {
            content: '▸';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-mid);
            font-weight: 700;
        }

        .achievement-side {
            background: linear-gradient(180deg, #f8fafc, #f2f6fb);
            border: 1px solid rgba(12, 31, 84, 0.1);
            border-radius: 12px;
            padding: 1rem;
        }

        .achievement-quote {
            margin: 0 0 1.25rem;
            padding: 0.95rem 1rem;
            border-left: 4px solid var(--gold-mid);
            background: rgba(247, 200, 106, 0.1);
            border-radius: 0 8px 8px 0;
            color: var(--royal-blue-dark);
            font-style: italic;
            line-height: 1.72;
            font-size: 0.92rem;
        }

        .achievement-leaders {
            margin-bottom: 1.1rem;
            display: grid;
            gap: 0.45rem;
        }

        .achievement-leaders p {
            margin: 0;
            color: var(--royal-blue);
            font-weight: 600;
            font-size: 0.9rem;
            line-height: 1.45;
        }

        .achievement-actions {
            display: flex;
            justify-content: flex-start;
        }

        .achievement-pdf-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.72rem 1.2rem;
            border-radius: 8px;
            background: linear-gradient(90deg, var(--royal-blue), var(--royal-blue-dark));
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            border: 1px solid transparent;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.3s ease;
            background-size: 180% auto;
        }

        .achievement-pdf-btn:hover {
            transform: translateY(-2px);
            background-position: right center;
            box-shadow: 0 8px 20px rgba(8, 22, 56, 0.2);
        }

        .achievement-pdf-btn:focus-visible {
            outline: 2px solid var(--royal-blue);
            outline-offset: 2px;
        }

        /* Contact Section */
        .contact {
            background-color: var(--light-bg);
            position: relative;
        }

        .contact-arc {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            pointer-events: none;
            transform: translateY(calc(100% - 2px));
        }

        .contact-arc svg {
            display: block;
            width: 100%;
            height: clamp(40px, 6vw, 90px);
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: var(--font-main);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--royal-blue);
            box-shadow: 0 0 0 3px rgba(122, 31, 52, 0.1);
        }

        .contact-info {
            flex: 0 1 600px;
            min-width: 300px;
            max-width: 600px;
            background: linear-gradient(135deg, var(--royal-blue), #5a1628);
            color: var(--white);
            padding: 3rem;
            border-radius: 15px;
        }

        .contact-info h3 {
            color: var(--gold-light);
            margin-bottom: 2rem;
        }

        .contact-details {
            margin-top: 2rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-detail i {
            font-size: 1.2rem;
            color: var(--gold-light);
            margin-right: 1rem;
            width: 30px;
        }

        .contact-detail a {
            color: inherit;       
            text-decoration: none;   
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .contact-detail a:hover {
            color: var(--gold-light);
            transform: translateX(2px);
        }

        .contact-microcopy {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Footer */
        footer {
            background-color: var(--royal-blue-dark);
            color: var(--white);
            padding: 7rem 1.5rem 2rem;
        }

        .footer-container {
            max-width: var(--container-width);
            margin: 0 auto;
        }

        /*.footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }*/

        .footer-grid {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo .logo-text {
            color: var(--white);
        }

        .footer-links h4 {
            color: var(--gold-light);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-family: var(--font-main);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            position: relative;
            display: inline-block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            padding-left: 0;
            white-space: nowrap;
            transition:
                color 0.3s ease,
                padding-left 0.3s ease,
                transform 0.3s ease;
        }

        .footer-links a::before {
            content: "‣";
            position: absolute;
            left: -16px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;

            transition:
                opacity 0.3s ease,
                left 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold-light);
            padding-left: 10px;
            transform: translateX(2px);
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: -10px;
        }


        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--gold-mid);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* ─── Keyframes ─────────────────────────────────── */
        @keyframes heroBgDrift {
            0%, 100% { transform: scale(1); opacity: 1; }
            50%       { transform: scale(1.06) translate(1%, 0.5%); opacity: 0.75; }
        }

        /* ─── Animations ───────────────────────────────────*/
        .fade-in {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered entrance delays — reset on .visible so hover is instant */
        .hero-bullets .hero-bullet:nth-child(1).fade-in:not(.visible) { transition-delay: 0.10s; }
        .hero-bullets .hero-bullet:nth-child(2).fade-in:not(.visible) { transition-delay: 0.22s; }
        .hero-bullets .hero-bullet:nth-child(3).fade-in:not(.visible) { transition-delay: 0.34s; }

        .value-pillars .pillar:nth-child(1).fade-in:not(.visible) { transition-delay: 0.00s; }
        .value-pillars .pillar:nth-child(2).fade-in:not(.visible) { transition-delay: 0.13s; }
        .value-pillars .pillar:nth-child(3).fade-in:not(.visible) { transition-delay: 0.26s; }

        .product-cards .product-card:nth-child(1).fade-in:not(.visible) { transition-delay: 0.00s; }
        .product-cards .product-card:nth-child(2).fade-in:not(.visible) { transition-delay: 0.08s; }
        .product-cards .product-card:nth-child(3).fade-in:not(.visible) { transition-delay: 0.16s; }
        .product-cards .product-card:nth-child(4).fade-in:not(.visible) { transition-delay: 0.24s; }
        .product-cards .product-card:nth-child(5).fade-in:not(.visible) { transition-delay: 0.32s; }

        .features-grid .feature-card:nth-child(1).fade-in:not(.visible) { transition-delay: 0.00s; }
        .features-grid .feature-card:nth-child(2).fade-in:not(.visible) { transition-delay: 0.08s; }
        .features-grid .feature-card:nth-child(3).fade-in:not(.visible) { transition-delay: 0.16s; }
        .features-grid .feature-card:nth-child(4).fade-in:not(.visible) { transition-delay: 0.24s; }
        .features-grid .feature-card:nth-child(5).fade-in:not(.visible) { transition-delay: 0.32s; }
        .features-grid .feature-card:nth-child(6).fade-in:not(.visible) { transition-delay: 0.40s; }

        .industry-list .industry-item:nth-child(1).fade-in:not(.visible) { transition-delay: 0.00s; }
        .industry-list .industry-item:nth-child(2).fade-in:not(.visible) { transition-delay: 0.13s; }
        .industry-list .industry-item:nth-child(3).fade-in:not(.visible) { transition-delay: 0.26s; }

        /* Accessibility: honour reduced-motion preference */
        @media (prefers-reduced-motion: reduce) {
            .fade-in { transition: opacity 0.3s ease; transform: none; }
            .hero:before { animation: none; }
            .btn-primary { transition: box-shadow 0.2s ease, transform 0.2s ease; }
            .product-modal-dialog { transition: none; }
            .pillar-icon, .industry-icon { transition: none; }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            .hero {
                padding-top: 8rem;
                padding-bottom: 6rem;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            .product-cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .product-cards {
                grid-template-columns: 1fr;
            }

            .product-summary {
                white-space: normal;
            }

            nav ul {
                position: fixed;
                top: 515px;
                left: 5%;
                width: 90%;
                border-radius: 50px;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                z-index: 999;
                height: auto;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            nav a.active {
                background-color: rgba(184, 116, 42, 0.1);
                padding: 0.5rem 1rem;
                border-radius: 4px;
            }

            nav ul.active {
                opacity: 1;
            }

            nav li {
                margin: 1rem 0;
            }

            h1 {
                font-size: 2.3rem;
            }

            h2 {
                font-size: 1.9rem;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero h2 {
                font-size: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .contact-container {
                flex-direction: column;
            }

            .product-modal-dialog {
                width: min(100%, 680px);
            }
        }

        @media (max-width: 768px) {
            .industry-fit-inner {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                padding: 1.75rem 1.5rem;
            }

            .achievement-card {
                padding: 1.5rem;
            }

            .achievement-headline {
                font-size: 1.3rem;
            }

            .achievement-meta {
                grid-template-columns: 1fr;
            }

            .achievement-body {
                grid-template-columns: 1fr;
            }

            .achievement-highlights-block,
            .achievement-side {
                padding: 0.95rem;
            }

            .achievement-highlights {
                grid-template-columns: 1fr;
            }

            .achievement-actions {
                justify-content: stretch;
            }

            .achievement-pdf-btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 3rem 1rem;
            }

            .mission-statement {
                padding: 2rem 1.5rem;
            }

            .product-card-shell {
                padding: 1.5rem;
            }

            .product-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .read-more-btn,
            .product-cta,
            .product-modal-cta {
                width: 100%;
            }

            .product-modal {
                padding: 1rem;
            }

            .product-modal-dialog {
                border-radius: 18px;
            }

            .product-modal-header {
                padding: 1.75rem 1.25rem 1.25rem;
                border-radius: 18px 18px 0 0;
            }

            .product-modal-content {
                padding: 1.25rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.7rem;
            }

            .hero {
                padding-top: 7rem;
                padding-bottom: 4rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-bullet {
                min-width: 100%;
            }
        }