        /* ============================================
           BUDMASTER - CONSTRUCTION COMPANY
           Strong, Industrial, Professional Style
           ============================================ */

        :root {
            /* Colors - Industrial Palette */
            --orange: #f59e0b;
            --orange-dark: #d97706;
            --orange-light: #fbbf24;
            --dark: #1f2937;
            --dark-lighter: #374151;
            --gray-700: #4b5563;
            --gray-500: #6b7280;
            --gray-400: #9ca3af;
            --gray-200: #e5e7eb;
            --gray-100: #f3f4f6;
            --white: #ffffff;

            /* Typography */
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Open Sans', sans-serif;

            /* Spacing */
            --section-padding: 100px;
            --container-max: 1200px;

            /* Transitions */
            --transition: 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-700);
            background-color: var(--white);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        ul, ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: var(--section-padding) 0;
        }

        /* ============================================
           TYPOGRAPHY
           ============================================ */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--dark);
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

        .section-header {
            max-width: 700px;
            margin-bottom: 60px;
        }

        .section-header.centered {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-heading);
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--orange);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            width: 40px;
            height: 3px;
            background: var(--orange);
        }

        .section-header.centered .section-label::before {
            display: none;
        }

        .section-header h2 {
            margin-bottom: 20px;
        }

        .section-header p {
            color: var(--gray-500);
            font-size: 1.125rem;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 36px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.9375rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 4px;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .btn-primary {
            background: var(--orange);
            color: var(--dark);
        }

        .btn-primary:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
        }

        .btn-dark {
            background: var(--dark);
            color: var(--white);
        }

        .btn-dark:hover {
            background: var(--dark-lighter);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--orange);
            color: var(--orange);
        }

        .btn-outline:hover {
            background: var(--orange);
            color: var(--dark);
        }

        .btn-white {
            background: var(--white);
            color: var(--dark);
        }

        .btn-white:hover {
            background: var(--gray-100);
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-top {
            background: var(--dark);
            padding: 10px 0;
            font-size: 0.875rem;
        }

        .nav-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-top-left,
        .nav-top-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-top-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gray-400);
        }

        .nav-top-item svg {
            width: 16px;
            height: 16px;
            stroke: var(--orange);
            fill: none;
            stroke-width: 2;
        }

        .nav-top-item a {
            color: var(--gray-400);
        }

        .nav-top-item a:hover {
            color: var(--white);
        }

        .nav-main {
            padding: 15px 0;
        }

        .nav-main .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--dark);
        }

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

        .logo-icon svg {
            width: 30px;
            height: 30px;
            fill: var(--dark);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-link {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.9375rem;
            color: var(--dark);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--orange);
            transition: width var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-cta {
            margin-left: 20px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark);
            transition: all var(--transition);
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            padding-top: 130px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--gray-100);
            overflow: hidden;
        }

        .hero-bg-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1200&q=80') center/cover no-repeat;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .hero-bg-pattern::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--gray-100) 0%, transparent 30%);
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--orange);
            color: var(--dark);
            padding: 8px 20px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
        }

        .hero h1 {
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero h1 span {
            color: var(--orange);
        }

        .hero-description {
            font-size: 1.125rem;
            color: var(--gray-500);
            margin-bottom: 40px;
        }

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

        .hero-stats {
            display: flex;
            gap: 50px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid var(--gray-200);
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
            margin-bottom: 8px;
        }

        .hero-stat-number span {
            color: var(--orange);
        }

        .hero-stat-label {
            font-size: 0.875rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--gray-100);
            padding: 40px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--orange);
            transition: height var(--transition);
        }

        .service-card:hover {
            background: var(--dark);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover h3,
        .service-card:hover p {
            color: var(--white);
        }

        .service-card:hover .service-icon {
            background: var(--orange);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: background var(--transition);
        }

        .service-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--orange);
            fill: none;
            stroke-width: 1.5;
        }

        .service-card h3 {
            margin-bottom: 16px;
            transition: color var(--transition);
        }

        .service-card p {
            color: var(--gray-500);
            transition: color var(--transition);
        }

        .service-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: 800;
            color: rgba(0,0,0,0.05);
            line-height: 1;
        }

        .service-card:hover .service-number {
            color: rgba(255,255,255,0.1);
        }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        .about {
            background: var(--gray-100);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-images {
            position: relative;
        }

        .about-image-main {
            position: relative;
            z-index: 1;
        }

        .about-image-main img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .about-image-secondary {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 50%;
            border: 8px solid var(--white);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            z-index: 2;
        }

        .about-image-secondary img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
        }

        .about-experience {
            position: absolute;
            top: 30px;
            left: -30px;
            background: var(--orange);
            color: var(--dark);
            padding: 30px;
            text-align: center;
            z-index: 2;
        }

        .about-experience-number {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
        }

        .about-experience-text {
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 32px 0;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature svg {
            width: 24px;
            height: 24px;
            stroke: var(--orange);
            fill: none;
            stroke-width: 2;
            flex-shrink: 0;
        }

        .about-feature span {
            font-weight: 600;
            color: var(--dark);
        }

        /* ============================================
           PROJECTS SECTION
           ============================================ */
        .projects {
            background: var(--dark);
            color: var(--white);
        }

        .projects .section-header h2,
        .projects .section-header p {
            color: var(--white);
        }

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

        .project-card {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(31, 41, 55, 0.95) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            transition: all var(--transition);
        }

        .project-card:hover .project-overlay {
            background: linear-gradient(to top, rgba(31, 41, 55, 0.95) 0%, rgba(31, 41, 55, 0.7) 100%);
        }

        .project-category {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--orange);
            margin-bottom: 8px;
        }

        .project-title {
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 12px;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            font-weight: 600;
            opacity: 0;
            transform: translateY(10px);
            transition: all var(--transition);
        }

        .project-card:hover .project-link {
            opacity: 1;
            transform: translateY(0);
        }

        .project-link svg {
            width: 16px;
            height: 16px;
            stroke: var(--orange);
            fill: none;
            stroke-width: 2;
        }

        /* ============================================
           TESTIMONIALS SECTION
           ============================================ */
        .testimonials {
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--gray-100);
            padding: 40px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-family: Georgia, serif;
            font-size: 8rem;
            color: var(--orange);
            opacity: 0.2;
            line-height: 1;
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .testimonial-rating svg {
            width: 20px;
            height: 20px;
            fill: var(--orange);
        }

        .testimonial-text {
            font-size: 1.0625rem;
            color: var(--gray-700);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-name {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--dark);
        }

        .testimonial-role {
            font-size: 0.875rem;
            color: var(--gray-500);
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta {
            background: linear-gradient(rgba(31, 41, 55, 0.9), rgba(31, 41, 55, 0.9)),
                        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&q=80') center/cover no-repeat fixed;
            padding: 80px 0;
        }

        .cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .cta-text h2 {
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta-text p {
            color: var(--gray-400);
            font-size: 1.125rem;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-shrink: 0;
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact {
            background: var(--gray-100);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        .contact-info {
            background: var(--dark);
            padding: 50px;
            color: var(--white);
        }

        .contact-info h3 {
            color: var(--white);
            margin-bottom: 24px;
        }

        .contact-info > p {
            color: var(--gray-400);
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-item-icon {
            width: 50px;
            height: 50px;
            background: rgba(245, 158, 11, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--orange);
            fill: none;
            stroke-width: 2;
        }

        .contact-item h4 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .contact-item p {
            color: var(--gray-400);
        }

        .contact-form {
            background: var(--white);
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .contact-form h3 {
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--gray-200);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all var(--transition);
            background: var(--white);
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--orange);
        }

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

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
        }

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

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--gray-400);
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: var(--dark-lighter);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }

        .footer-social a:hover {
            background: var(--orange);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .footer-column h4 {
            color: var(--white);
            font-family: var(--font-heading);
            margin-bottom: 24px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray-400);
        }

        .footer-links a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            border-top: 1px solid var(--dark-lighter);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: var(--gray-500);
            font-size: 0.875rem;
        }

        .footer-bottom a {
            color: var(--orange);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 992px) {
            :root {
                --section-padding: 80px;
            }

            .nav-top {
                display: none;
            }

            .hero-bg-pattern {
                width: 100%;
                clip-path: none;
                opacity: 0.3;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

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

            .about-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-images {
                max-width: 500px;
                margin: 0 auto;
            }

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

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

            .cta-content {
                flex-direction: column;
                text-align: center;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 350px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
                transition: right var(--transition);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-cta {
                margin-left: 0;
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 60px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 30px;
            }

            .hero-stat {
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

            .about-features {
                grid-template-columns: 1fr;
            }

            .about-image-secondary {
                right: 0;
            }

            .about-experience {
                left: 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .contact-info,
            .contact-form {
                padding: 30px;
            }
        }

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
    background: var(--dark);
    color: var(--white);
    padding: 200px 0 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid var(--orange);
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover;
    opacity: 0.18;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(31,41,55,0.5), transparent);
}
.page-banner > .container { position: relative; z-index: 2; }
.page-banner .section-label {
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(245,158,11,0.15);
    border-left: 3px solid var(--orange);
    margin-bottom: 20px;
}
.page-banner h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 18px;
    font-weight: 800;
    text-transform: uppercase;
}
.page-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 700px;
}
.page-banner .breadcrumbs {
    margin-top: 28px;
    font-size: 0.9rem;
    color: var(--gray-400);
}
.page-banner .breadcrumbs a { color: var(--orange-light); }
.page-banner .breadcrumbs a:hover { color: var(--white); }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process { background: var(--gray-100); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.process-step {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--orange);
    transition: transform var(--transition);
}
.process-step:hover { transform: translateY(-8px); }
.process-step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 8px 16px rgba(245,158,11,0.3);
}
.process-step h3 {
    margin: 20px 0 12px;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--dark);
}
.process-step p { font-size: 0.95rem; color: var(--gray-500); }

/* ============================================
   TEAM SECTION
   ============================================ */
.team { background: var(--white); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.team-card {
    text-align: center;
    background: var(--gray-100);
    overflow: hidden;
    transition: transform var(--transition);
    border-bottom: 4px solid transparent;
}
.team-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--orange);
}
.team-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(60%);
    transition: filter var(--transition);
}
.team-card:hover img { filter: grayscale(0%); }
.team-info { padding: 24px 20px; }
.team-info h4 {
    color: var(--dark);
    font-size: 1.15rem;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.team-info .team-role {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}
.team-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ============================================
   CERTIFICATIONS / BADGES
   ============================================ */
.certifications {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.cert-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--dark-lighter);
    transition: all var(--transition);
}
.cert-item:hover {
    border-color: var(--orange);
    background: rgba(245,158,11,0.05);
}
.cert-item svg {
    width: 60px;
    height: 60px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 18px;
}
.cert-item h4 {
    color: var(--white);
    font-size: 1.05rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.cert-item p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { background: var(--gray-100); }
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-left: 4px solid var(--orange);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 30px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
}
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--orange);
    font-weight: 300;
    transition: transform var(--transition);
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 30px 26px;
    color: var(--gray-500);
}
.faq-item.active .faq-answer { max-height: 400px; }

/* Always-visible navbar on inner pages — assume there's a .navbar class already */
@media (max-width: 900px) {
    .process-grid, .team-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .process-grid, .team-grid, .cert-grid { grid-template-columns: 1fr; }
}
