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

        :root {
            --brand-orange: #F27D42;
            --text-dark: #363636;
            --text-grey: #636363;
            --text-light: #6b7280;
            --border-color: #e5e7eb;
            --bg-white: #ffffff;
            --bg-orange-light: #FFE0D1;
        }

        html {
            font-size: 20px;
        }

        body {
            font-family: 'Nunito', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .footer-email {
            color: var(--brand-orange);
            text-decoration: none;
            font-weight: 700;
            transition: opacity 0.2s ease;
        }

        .footer-email:hover {
            opacity: 0.75;
        }

        /* Header Styles */
        header {
            border-bottom: 1px solid var(--border-color);
        }

        .header-container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .left-space {
            width: 0.5rem;
        }

        .logo {
            width: auto;
            height: 2.5rem;
        }

        .brand-name {
            font-size: 1rem;
        }

        .brand-uni {
            color: var(--brand-orange);
        }

        .brand-games {
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 600px;
            overflow: hidden;
            background: linear-gradient(to bottom right, #f9fafb, #ffedd5, #f3f4f6);
        }

        .hero-decorative-1 {
            position: absolute;
            top: 2.5rem;
            left: 5rem;
            width: 18rem;
            height: 18rem;
            background-color: var(--bg-orange-light);
            opacity: 0.1;
            border-radius: 50%;
            filter: blur(80px);
        }

        .hero-decorative-2 {
            position: absolute;
            bottom: 5rem;
            left: 33.333%;
            width: 24rem;
            height: 24rem;
            background-color: #fb923c;
            opacity: 0.1;
            border-radius: 50%;
            filter: blur(80px);
        }

        .hero-content {
            position: relative;
            min-height: inherit;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 2rem 0;
        }

        .hero-box {
            position: relative;
            background-color: var(--bg-orange-light);
            background-image: url('https://images.unsplash.com/photo-1758876017801-f5a892ee460a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxwZXJzb24lMjB3b3JraW5nJTIwY29tcHV0ZXIlMjBmb2N1c2VkfGVufDF8fHx8MTc2NzU0MzI4OHww&ixlib=rb-4.1.0&q=80&w=1080&utm_source=figma&utm_medium=referral');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            opacity: 0.5;
            padding: 5rem 4rem;
            border-radius: 0.5rem 0 0 0.5rem;
            width: 90%;
            overflow: hidden;
        }

        .hero-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: var(--bg-orange-light);
            opacity: 0.5;
        }

        .hero-text {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .hero-title {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 5rem;
            font-weight: 700;
        }

        .hero-title .brand-uni {
            color: var(--brand-orange);
        }

        .hero-title .brand-games {
            color: var(--text-dark);
        }

        .hero-description {
            color: var(--text-dark);
            font-size: 1.25rem;
            line-height: 1.6;
        }

        /* Icon Section */
        .icon-section {
            padding: 3rem 0;
            background: linear-gradient(to bottom, #ffffff, #fff7ed);
        }

        .icon-container {
            max-width: 64rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

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

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

        .icon-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .icon-circle {
            width: 6rem;
            height: 6rem;
            background-color: var(--brand-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .icon-card:hover .icon-circle {
            transform: scale(1.1);
        }

        .icon-circle svg {
            width: 3rem;
            height: 3rem;
            color: white;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .icon-title {
            color: var(--text-grey);
            margin-bottom: 0.5rem;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .icon-description {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        /* Content Section */
        .content-section {
            padding: 4rem 1rem;
            background: linear-gradient(to bottom right, #fff7ed, #ffffff, #fff7ed);
            position: relative;
            overflow: hidden;
        }

        .content-decorative-1 {
            position: absolute;
            top: 5rem;
            right: 2.5rem;
            width: 16rem;
            height: 16rem;
            background-color: var(--brand-orange);
            opacity: 0.05;
            border-radius: 50%;
            filter: blur(80px);
        }

        .content-decorative-2 {
            position: absolute;
            bottom: 10rem;
            left: 2.5rem;
            width: 20rem;
            height: 20rem;
            background-color: var(--brand-orange);
            opacity: 0.05;
            border-radius: 50%;
            filter: blur(80px);
        }

        .content-decorative-3 {
            position: absolute;
            top: 50%;
            right: 25%;
            width: 12rem;
            height: 12rem;
            background-color: #fb923c;
            opacity: 0.1;
            border-radius: 50%;
            filter: blur(60px);
        }

        .content-container {
            max-width: 56rem;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .content-block {
            margin-bottom: 3rem;
        }

        .content-title {
            margin-bottom: 1rem;
            color: var(--brand-orange);
            text-align: center;
            font-weight: 700;
            font-size: 2.5rem;
        }

        .content-text {
            color: var(--text-dark);
            font-size: 1.15rem;
            line-height: 1.8;
        }

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

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

        .image-card {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .image-card img {
            width: 100%;
            height: 16rem;
            object-fit: cover;
            display: block;
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: flex-end;
            padding: 1rem;
        }

        .image-button {
            background-color: var(--brand-orange);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            width: 100%;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            transition: background-color 0.2s ease;
        }

        .image-button:hover {
            background-color: #d96d37;
        }

        /* Footer */
        footer {
            background: linear-gradient(to bottom right, #f9fafb, #ffedd5, #f3f4f6);
            border-top: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .footer-decorative-1 {
            position: absolute;
            top: 0;
            right: 5rem;
            width: 16rem;
            height: 16rem;
            background-color: var(--brand-orange);
            opacity: 0.05;
            border-radius: 50%;
            filter: blur(80px);
        }

        .footer-decorative-2 {
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 18rem;
            height: 18rem;
            background-color: #fb923c;
            opacity: 0.1;
            border-radius: 50%;
            filter: blur(80px);
        }

        .footer-container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 3rem 1rem;
            position: relative;
            z-index: 10;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

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

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            text-decoration: none;
        }

        .footer-logo {
            width: auto;
            height: 2rem;
        }

        .footer-text {
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
            }
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: var(--text-light);
            transition: color 0.2s ease;
        }

        .social-links a:hover {
            color: var(--text-dark);
        }

        .social-links svg {
            width: 1.5rem;
            height: 1.5rem;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ============================================
           Mobile Responsive Overrides
           ============================================ */
        @media (max-width: 767px) {
            /* Base font size */
            html {
                font-size: 16px;
            }

            /* Hero */
            .hero-section {
                min-height: unset;
            }

            .hero-content {
                justify-content: center;
                padding: 2rem 0;
            }

            .hero-box {
                width: 100%;
                border-radius: 0;
                padding: 3rem 1.5rem;
            }

            .hero-title {
                font-size: 2.6rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            /* Content */
            .content-title {
                font-size: 1.75rem;
            }

            .content-text {
                font-size: 1rem;
            }

            /* Buttons — stack vertically so they don't overflow */
            .primary-button,
            .secondary-button {
                display: block;
                width: 100%;
                text-align: center;
                margin-left: 0;
                margin-top: 0.75rem;
            }

            /* Icon section */
            .icon-title {
                font-size: 1.2rem;
            }

            .icon-description {
                font-size: 0.95rem;
            }

            /* Footer */
            .footer-text {
                font-size: 0.9rem;
            }
        }

        /* Language Stuff */
        .language-switch {
            display: flex;
            gap: 0.5rem;
        }

        .lang-btn {
            text-decoration: none;
            font-weight: 700;
            color: var(--text-grey);
            padding: 0.3rem 0.6rem;
            border-radius: 0.3rem;
            transition: all 0.2s ease;
        }

        .lang-btn:hover {
            background-color: var(--brand-orange);
            color: white;
        }

        .primary-button {
            display: inline-block;
            margin-top: 1.5rem;
            background-color: var(--brand-orange);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.2s ease;
        }

        .primary-button.active {
            background-color: rgba(79, 70, 229, 0.08);
            color: #ffffff;
        }

        .primary-button:hover {
            background-color: #d96d37;
            transform: translateY(-2px);
        }

        .secondary-button {
            display: inline-block;
            margin-top: 1.5rem;
            margin-left: 1rem;
            border: 2px solid var(--brand-orange);
            color: var(--brand-orange);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.2s ease;
        }

        .secondary-button:hover {
            background-color: var(--brand-orange);
            color: white;
        }


        /* ============================================
           Team Page Styles
           ============================================ */

        .page-hero {
            background: linear-gradient(to bottom right, #f9fafb, #ffedd5, #f3f4f6);
            padding: 4rem 1rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before,
        .page-hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }

        .page-hero::before {
            width: 20rem;
            height: 20rem;
            background: var(--bg-orange-light);
            opacity: 0.3;
            top: -4rem;
            left: -4rem;
        }

        .page-hero::after {
            width: 16rem;
            height: 16rem;
            background: #fb923c;
            opacity: 0.15;
            bottom: -2rem;
            right: 5rem;
        }

        .page-hero-inner {
            position: relative;
            z-index: 1;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--brand-orange);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            transition: gap 0.2s ease;
        }

        .back-link:hover {
            gap: 0.7rem;
        }

        .page-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .page-title span {
            color: var(--brand-orange);
        }

        .page-subtitle {
            color: var(--text-grey);
            font-size: 1.1rem;
            max-width: 36rem;
            margin: 0 auto;
        }

        /* Team Section */
        .team-section {
            padding: 4rem 1rem 5rem;
            background: linear-gradient(to bottom, #ffffff, #fff7ed);
        }

        .team-container {
            max-width: 72rem;
            margin: 0 auto;
        }

        .section-label {
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--brand-orange);
            margin-bottom: 0.5rem;
        }

        .section-heading {
            text-align: center;
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 3rem;
        }

        /* 5-card grid: 3 on top row */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        /* 2 cards centred on bottom row */
        .team-grid-bottom {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .team-grid-bottom .member-card {
            width: calc((100% - 4rem) / 3);
            max-width: 22rem;
        }

        /* Member Card */
        .member-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(242, 125, 66, 0.08);
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .member-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(242, 125, 66, 0.18);
        }

        .member-photo-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            background: var(--bg-orange-light);
            overflow: hidden;
        }

        .member-photo-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            transition: transform 0.4s ease;
        }

        .member-card:hover .member-photo-wrap img {
            transform: scale(1.05);
        }

        .member-photo-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-orange-light), #ffd4b8);
        }

        .member-photo-placeholder svg {
            width: 5rem;
            height: 5rem;
            color: var(--brand-orange);
            opacity: 0.5;
        }

        .member-info {
            padding: 1.25rem 1.5rem 1.5rem;
            border-top: 3px solid var(--brand-orange);
        }

        .member-name {
            font-size: 1.05rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.2rem;
        }

        .member-role {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--brand-orange);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .member-bio {
            margin-top: 0.6rem;
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .member-links {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.75rem;
            flex-wrap: wrap;
        }

        .member-link {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--brand-orange);
            text-decoration: none;
            border: 1.5px solid var(--brand-orange);
            padding: 0.25rem 0.6rem;
            border-radius: 999px;
            transition: all 0.2s ease;
        }

        .member-link:hover {
            background-color: var(--brand-orange);
            color: white;
        }

        .member-link svg {
            width: 0.85rem;
            height: 0.85rem;
            stroke: currentColor;
            flex-shrink: 0;
        }

        /* Team page responsive overrides */
        @media (max-width: 767px) {
            .page-title {
                font-size: 2rem;
            }

            .page-hero {
                padding: 2.5rem 1rem 2rem;
            }

            .team-section {
                padding: 2.5rem 1rem 3rem;
            }

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

            .team-grid-bottom {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .team-grid-bottom .member-card {
                width: 100%;
                max-width: 100%;
            }
        }

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

            .team-grid-bottom .member-card {
                width: calc((100% - 2rem) / 2);
            }
        }


        /* ============================================
           Contact Page Styles
           ============================================ */

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

        @media (max-width: 767px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

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

        .contact-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: white;
            border-radius: 1rem;
            padding: 2.5rem 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(242, 125, 66, 0.08);
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(242, 125, 66, 0.18);
        }

        .contact-icon-circle {
            width: 5rem;
            height: 5rem;
            background-color: var(--brand-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            box-shadow: 0 10px 15px -3px rgba(242, 125, 66, 0.3);
            transition: transform 0.3s ease;
        }

        .contact-card:hover .contact-icon-circle {
            transform: scale(1.1);
        }

        .contact-icon-circle svg {
            width: 2.25rem;
            height: 2.25rem;
            color: white;
            stroke: currentColor;
        }

        .contact-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--brand-orange);
            margin-bottom: 0.3rem;
        }

        .contact-value {
            font-size: 1rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.6rem;
        }

        .contact-desc {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.6;
        }


        /* ============================================
           Projects Page Styles
           ============================================ */

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

        @media (max-width: 767px) {
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

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

        .project-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(242, 125, 66, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(242, 125, 66, 0.18);
        }

        .project-image-wrap {
            position: relative;
            width: 100%;
            height: 12rem;
            overflow: hidden;
            background: var(--bg-orange-light);
        }

        .project-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .project-card:hover .project-image-wrap img {
            transform: scale(1.05);
        }

        .project-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-orange-light), #ffd4b8);
        }

        .project-image-placeholder svg {
            width: 4rem;
            height: 4rem;
            color: var(--brand-orange);
            opacity: 0.5;
        }

        .project-info {
            padding: 1.25rem 1.5rem 1.5rem;
            border-top: 3px solid var(--brand-orange);
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-bottom: 0.6rem;
        }

        .project-tag {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--brand-orange);
            background-color: var(--bg-orange-light);
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
        }

        .project-title {
            font-size: 1.05rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.4rem;
        }

        .project-desc {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.6;
        }


        /* ============================================
           About Page Styles
           ============================================ */

        .about-container {
            max-width: 72rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* ── Who We Are ── */
        .about-intro-section {
            padding: 4rem 1rem;
            background: linear-gradient(to bottom, #ffffff, #fff7ed);
        }

        .about-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (max-width: 767px) {
            .about-intro-section {
                padding: 2.5rem 1rem;
            }

            .about-intro-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .about-heading {
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 1rem;
            margin-top: 0.4rem;
        }

        .about-body {
            font-size: 0.95rem;
            color: var(--text-grey);
            line-height: 1.8;
        }

        .about-stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .about-stat-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(242, 125, 66, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .about-stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(242, 125, 66, 0.14);
        }

        .about-stat-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--brand-orange);
            line-height: 1;
            margin-bottom: 0.4rem;
        }

        .about-stat-label {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ── Mission & Goals ── */
        .mission-section {
            padding: 4rem 1rem;
            background: linear-gradient(to bottom right, #fff7ed, #ffffff, #fff7ed);
        }

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

        @media (max-width: 767px) {
            .mission-section {
                padding: 2.5rem 1rem;
            }

            .mission-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

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

        .mission-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(242, 125, 66, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mission-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(242, 125, 66, 0.16);
        }

        .mission-icon {
            width: 3.5rem;
            height: 3.5rem;
            background-color: var(--brand-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: 0 6px 16px rgba(242, 125, 66, 0.3);
        }

        .mission-icon svg {
            width: 1.75rem;
            height: 1.75rem;
            color: white;
        }

        .mission-title {
            font-size: 1rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .mission-text {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ── Timeline ── */
        .timeline-section {
            padding: 4rem 1rem 5rem;
            background: linear-gradient(to bottom, #ffffff, #fff7ed);
        }

        .timeline {
            position: relative;
            max-width: 48rem;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 5.5rem;
            top: 0.6rem;
            bottom: 0.6rem;
            width: 2px;
            background: linear-gradient(to bottom, var(--brand-orange), var(--bg-orange-light));
        }

        .timeline-card-body {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .timeline-card-text {
            flex: 1;
        }

        .timeline-logo {
            flex-shrink: 0;
            width: 4rem;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .timeline-logo img {
            max-width: 4rem;
            max-height: 4rem;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        @media (max-width: 767px) {
            .timeline-section {
                padding: 2.5rem 1rem 3rem;
            }

            .timeline::before {
                left: 1rem;
            }
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 6rem 2rem 1fr;
            gap: 0 1rem;
            margin-bottom: 2.5rem;
            align-items: start;
        }

        @media (max-width: 767px) {
            .timeline-item {
                grid-template-columns: 0 2rem 1fr;
            }
        }

        .timeline-year {
            font-size: 0.85rem;
            font-weight: 900;
            color: var(--text-light);
            text-align: right;
            padding-top: 0.3rem;
        }

        .timeline-year--active {
            color: var(--brand-orange);
        }

        @media (max-width: 767px) {
            .timeline-year {
                display: none;
            }
        }

        .timeline-marker {
            display: flex;
            justify-content: center;
            padding-top: 0.35rem;
        }

        .timeline-dot {
            width: 0.9rem;
            height: 0.9rem;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--brand-orange);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .timeline-dot--active {
            background: var(--brand-orange);
            box-shadow: 0 0 0 4px var(--bg-orange-light);
        }

        .timeline-item:hover .timeline-dot {
            transform: scale(1.3);
        }

        .timeline-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 1.25rem 1.5rem;
            box-shadow: 0 4px 16px rgba(242, 125, 66, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .timeline-card:hover {
            transform: translateX(4px);
            box-shadow: 0 8px 28px rgba(242, 125, 66, 0.14);
        }

        .timeline-card--active {
            border-color: var(--brand-orange);
            border-left: 3px solid var(--brand-orange);
        }

        .timeline-title {
            font-size: 0.95rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.4rem;
        }

        .timeline-text {
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ============================================
           Services Page Styles
           ============================================ */

        /* ── Core Services ── */
        .services-main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .service-main-card {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(242, 125, 66, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-main-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(242, 125, 66, 0.14);
        }

        @media (max-width: 767px) {
            .service-main-card {
                flex-direction: column;
                padding: 1.5rem;
            }
        }

        .service-main-icon {
            flex-shrink: 0;
            width: 3.5rem;
            height: 3.5rem;
            background-color: var(--brand-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 16px rgba(242, 125, 66, 0.3);
            margin-top: 0.2rem;
        }

        .service-main-icon svg {
            width: 1.75rem;
            height: 1.75rem;
            color: white;
        }

        .service-main-title {
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .service-main-desc {
            font-size: 0.85rem;
            color: var(--text-grey);
            line-height: 1.75;
            margin-bottom: 1rem;
        }

        .service-feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .service-feature-list li {
            font-size: 0.8rem;
            color: var(--text-light);
            padding-left: 1.2rem;
            position: relative;
            line-height: 1.5;
        }

        .service-feature-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--brand-orange);
            font-weight: 700;
        }

        /* ── Who We Work With ── */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        @media (max-width: 767px) {
            .audience-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

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

        .audience-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(242, 125, 66, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .audience-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(242, 125, 66, 0.16);
        }

        .audience-icon {
            width: 3rem;
            height: 3rem;
            background-color: var(--bg-orange-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .audience-icon svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--brand-orange);
        }

        .audience-title {
            font-size: 1rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .audience-text {
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ── Tech & Fields ── */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        @media (max-width: 767px) {
            .tech-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

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

        .tech-card {
            background: white;
            border-radius: 1rem;
            padding: 1.75rem 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(242, 125, 66, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .tech-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(242, 125, 66, 0.14);
        }

        .tech-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .tech-title-icon {
            width: 1.75rem;
            height: 1.75rem;
            background: var(--bg-orange-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .tech-title-icon svg {
            width: 0.9rem;
            height: 0.9rem;
            color: var(--brand-orange);
        }

        .tech-desc {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .tech-tag {
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--brand-orange);
            background: var(--bg-orange-light);
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        /* ── Process ── */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        @media (max-width: 767px) {
            .process-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

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

        .process-step {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 16px rgba(242, 125, 66, 0.07);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(242, 125, 66, 0.14);
        }

        .process-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--bg-orange-light);
            line-height: 1;
            margin-bottom: 0.75rem;
        }

        .process-title {
            font-size: 0.95rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .process-text {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ── CTA ── */
        .services-cta-section {
            padding: 4rem 1rem 5rem;
            background: linear-gradient(to bottom right, #fff7ed, #ffffff, #fff7ed);
        }

        .services-cta-box {
            background: white;
            border-radius: 1.5rem;
            padding: 3rem 2rem;
            text-align: center;
            border: 2px solid var(--brand-orange);
            box-shadow: 0 8px 40px rgba(242, 125, 66, 0.12);
            max-width: 40rem;
            margin: 0 auto;
        }

        @media (max-width: 767px) {
            .services-cta-section {
                padding: 2.5rem 1rem 3rem;
            }

            .services-cta-box {
                padding: 2rem 1.25rem;
                border-radius: 1rem;
            }
        }

        .services-cta-title {
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .services-cta-text {
            font-size: 0.9rem;
            color: var(--text-grey);
            line-height: 1.7;
        }

        /* Header right group (lang switch + hamburger) */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop nav — hidden on mobile */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hamburger button — hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 0.3rem;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 1rem 1rem;
    gap: 0.4rem;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-link {
    display: block;
    padding: 0.65rem 0.75rem;
    border-radius: 0.4rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: var(--bg-orange-light);
    color: var(--brand-orange);
}

/* Mobile breakpoint */
@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}
