/* ==================================================================
           RESET
           ================================================================== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body {
            font-family: 'Tajawal', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #0a2540;
            background: #faf9f6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        img, svg { max-width: 100%; display: block; }
        button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
        a { color: inherit; text-decoration: none; }

        /* ==================================================================
           DESIGN TOKENS
           ================================================================== */
        :root {
            --navy-900: #061a30;
            --navy-800: #0a2540;
            --navy-700: #143257;
            --navy-600: #1f3f6b;
            --navy-100: #dfe5ee;
            --navy-50:  #eef2f8;

            --gold:      #c9a961;
            --gold-dark: #a88945;
            --gold-50:   #faf6ec;

            --paper:    #faf9f6;
            --surface:  #ffffff;
            --text:     #0a2540;
            --text-muted: #5a6d80;
            --text-light: #889aab;
            --border:   #e8e4d9;
            --border-l: #f0ece0;
            --shadow-sm: 0 1px 2px rgba(10,37,64,.04), 0 1px 3px rgba(10,37,64,.06);
            --shadow-md: 0 4px 6px -1px rgba(10,37,64,.06), 0 10px 15px -3px rgba(10,37,64,.08);
            --shadow-lg: 0 20px 25px -5px rgba(10,37,64,.10), 0 10px 10px -5px rgba(10,37,64,.04);
        }

        /* ==================================================================
           TYPOGRAPHY
           ================================================================== */
        .display {
            font-family: 'Reem Kufi', 'Tajawal', serif;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.005em;
            color: var(--navy-800);
        }
        h1.display { font-size: clamp(2rem, 5vw, 3.5rem); }
        h2.display { font-size: clamp(1.625rem, 3.5vw, 2.5rem); }
        h3.display { font-size: clamp(1.125rem, 2vw, 1.375rem); }

        .eyebrow {
            font-family: 'Reem Kufi', 'Tajawal', sans-serif;
            font-weight: 600;
            font-size: .8125rem;
            letter-spacing: .12em;
            color: var(--gold-dark);
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: .625rem;
        }
        .eyebrow::before {
            content: "";
            width: 28px;
            height: 1px;
            background: var(--gold);
            display: inline-block;
        }

        .lead {
            font-size: clamp(1rem, 1.5vw, 1.1875rem);
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 65ch;
        }

        /* ==================================================================
           LAYOUT
           ================================================================== */
        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 3vw, 2rem);
        }
        section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }

        .grid { display: grid; gap: 1.5rem; }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

        /* ==================================================================
           SKIP LINK (a11y)
           ================================================================== */
        .skip-link {
            position: absolute;
            top: -100px;
            right: 1rem;
            background: var(--navy-800);
            color: #fff;
            padding: .75rem 1.25rem;
            border-radius: .5rem;
            z-index: 1000;
            font-weight: 700;
        }
        .skip-link:focus { top: 1rem; }

        /* ==================================================================
           BUTTONS
           ================================================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .625rem;
            padding: .875rem 1.75rem;
            border-radius: .375rem;
            font-weight: 700;
            font-size: .9375rem;
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
            border: 1.5px solid transparent;
            white-space: nowrap;
            line-height: 1.2;
        }
        .btn-primary {
            background: var(--navy-800);
            color: #fff;
            border-color: var(--navy-800);
        }
        .btn-primary:hover { background: var(--navy-900); border-color: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
        .btn-gold {
            background: var(--gold);
            color: var(--navy-900);
            border-color: var(--gold);
        }
        .btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
        .btn-ghost {
            background: transparent;
            color: var(--navy-800);
            border-color: var(--navy-100);
        }
        .btn-ghost:hover { border-color: var(--navy-800); background: var(--navy-50); }
        .btn-ghost-light {
            background: transparent;
            color: #fff;
            border-color: rgba(255,255,255,.3);
        }
        .btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }

        /* ==================================================================
           NAV
           ================================================================== */
        .nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255,255,255,.98);
            border-bottom: 1px solid var(--border);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            height: 76px;
        }
        .brand { display: flex; align-items: center; gap: .875rem; }
        .brand-mark {
            width: 44px;
            height: 44px;
            border-radius: 6px;
            background: var(--navy-800);
            color: var(--gold);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: 'Reem Kufi', serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: .02em;
        }
        .brand-text-1 { font-family: 'Reem Kufi', serif; font-weight: 700; font-size: 1.0625rem; color: var(--navy-800); line-height: 1.2; }
        .brand-text-2 { font-size: .6875rem; color: var(--text-light); margin-top: 2px; letter-spacing: .02em; }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu a {
            color: var(--text);
            font-weight: 500;
            font-size: .9375rem;
            position: relative;
            padding: .25rem 0;
        }
        .nav-menu a::after {
            content: "";
            position: absolute;
            inset-inline-start: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width .3s ease;
        }
        .nav-menu a:hover::after { width: 100%; }

        .nav-cta-group { display: flex; align-items: center; gap: .75rem; }
        .nav-phone {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            font-weight: 700;
            color: var(--navy-800);
            font-size: .875rem;
            direction: ltr;
        }
        .nav-phone svg { width: 16px; height: 16px; color: var(--gold-dark); }


        @media (max-width: 1024px) {
            .nav-menu, .nav-phone { display: none; }
        }


        /* ==================================================================
           HERO
           ================================================================== */
        .hero {
            position: relative;
            background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
            color: #fff;
            padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
            background-size: 64px 64px;
            pointer-events: none;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: -200px;
            left: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201,169,97,.10) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: clamp(2rem, 5vw, 4rem);
            align-items: center;
        }
        @media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

        .hero-eyebrow {
            color: var(--gold);
            font-family: 'Reem Kufi', sans-serif;
            font-weight: 600;
            font-size: .8125rem;
            letter-spacing: .14em;
            display: inline-flex;
            align-items: center;
            gap: .625rem;
            margin-bottom: 1.5rem;
        }
        .hero-eyebrow::before {
            content: "";
            width: 32px;
            height: 1px;
            background: var(--gold);
        }
        .hero h1 {
            font-family: 'Reem Kufi', 'Tajawal', serif;
            font-weight: 700;
            color: #fff;
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }
        .hero h1 .accent { color: var(--gold); }
        .hero-sub {
            font-size: clamp(1rem, 1.5vw, 1.1875rem);
            line-height: 1.85;
            color: rgba(255,255,255,.78);
            max-width: 56ch;
            margin-bottom: 2.25rem;
        }
        .hero-cta { display: flex; flex-wrap: wrap; gap: .875rem; margin-bottom: 2.5rem; }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.75rem 2.25rem;
            padding-top: 2.25rem;
            border-top: 1px solid rgba(255,255,255,.10);
        }
        .hero-meta-item {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
        }
        .hero-meta-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
        .hero-meta-item .label { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: .05em; }
        .hero-meta-item .value { font-family: 'Reem Kufi', serif; font-weight: 600; font-size: 1rem; color: #fff; }

        /* Hero visual — abstract architectural emblem */
        .hero-visual {
            position: relative;
            aspect-ratio: 1 / 1;
            max-width: 460px;
            margin-inline-start: auto;
            width: 100%;
        }
        @media (max-width: 900px) { .hero-visual { margin: 0 auto; max-width: 360px; } }

        .emblem-card {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
            border: 1px solid rgba(201,169,97,.25);
            border-radius: 8px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .emblem-card::before {
            content: "";
            position: absolute;
            top: 12px; right: 12px; left: 12px; bottom: 12px;
            border: 1px solid rgba(201,169,97,.15);
            border-radius: 4px;
            pointer-events: none;
        }
        .emblem-corner {
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid var(--gold);
        }
        .emblem-corner.tr { top: -1px; left: -1px; border-bottom: none; border-left: none; }
        .emblem-corner.tl { top: -1px; right: -1px; border-bottom: none; border-right: none; }
        .emblem-corner.br { bottom: -1px; left: -1px; border-top: none; border-left: none; }
        .emblem-corner.bl { bottom: -1px; right: -1px; border-top: none; border-right: none; }
        .emblem-monogram {
            position: relative;
            text-align: center;
            margin: auto 0;
            z-index: 1;
        }
        .emblem-monogram .mono {
            font-family: 'Reem Kufi', serif;
            font-weight: 700;
            font-size: clamp(3rem, 9vw, 5.5rem);
            color: var(--gold);
            line-height: 1;
            letter-spacing: .04em;
        }
        .emblem-monogram .est {
            font-size: .75rem;
            letter-spacing: .3em;
            color: rgba(255,255,255,.55);
            margin-top: 1.25rem;
            font-family: 'Reem Kufi', sans-serif;
        }
        .emblem-foot {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: .6875rem;
            color: rgba(255,255,255,.5);
            letter-spacing: .15em;
            text-transform: uppercase;
            z-index: 1;
            font-family: 'Reem Kufi', sans-serif;
        }
        .emblem-foot .star { color: var(--gold); font-size: .875rem; }

        /* ==================================================================
           TRUST RIBBON
           ================================================================== */
        .ribbon {
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            padding: 1.25rem 0;
        }
        .ribbon-inner {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            text-align: center;
        }
        .ribbon-item {
            display: flex;
            align-items: center;
            gap: .625rem;
            font-size: .875rem;
            color: var(--text);
            font-weight: 500;
        }
        .ribbon-item strong { color: var(--navy-800); font-weight: 700; font-family: 'Reem Kufi', serif; }
        .ribbon-item svg { width: 18px; height: 18px; color: var(--gold-dark); flex-shrink: 0; }

        /* ==================================================================
           SECTION HEADERS
           ================================================================== */
        .section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
        .section-head.start { text-align: start; margin-inline-start: 0; }
        .section-head h2 { margin: .875rem 0 1rem; }
        .section-head p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.8; }

        /* ==================================================================
           SECTORS — interactive matrix (replaces live feed)
           ================================================================== */
        .sectors-section {
            background:
                radial-gradient(ellipse at top right, var(--gold-50) 0%, transparent 50%),
                var(--paper);
        }
        .sectors-wrap {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 2rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        @media (max-width: 900px) { .sectors-wrap { grid-template-columns: 1fr; } }

        .sectors-list {
            background: var(--navy-800);
            padding: 1rem 0;
            list-style: none;
        }
        .sector-btn {
            width: 100%;
            text-align: start;
            padding: 1rem 1.5rem;
            color: rgba(255,255,255,.65);
            display: flex;
            align-items: center;
            gap: 1rem;
            border: none;
            background: none;
            font-family: 'Reem Kufi', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            transition: color .25s ease, background .25s ease;
            position: relative;
            border-inline-start: 3px solid transparent;
        }
        .sector-btn svg { width: 22px; height: 22px; flex-shrink: 0; opacity: .7; transition: opacity .25s ease; }
        .sector-btn:hover { color: #fff; }
        .sector-btn:hover svg { opacity: 1; }
        .sector-btn.active {
            color: var(--gold);
            background: rgba(201,169,97,.08);
            border-inline-start-color: var(--gold);
        }
        .sector-btn.active svg { opacity: 1; color: var(--gold); }

        .sector-panel {
            padding: clamp(1.75rem, 4vw, 3rem);
            min-height: 420px;
            display: flex;
            flex-direction: column;
        }
        .sector-panel-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: .5rem;
        }
        .sector-panel-title svg { width: 32px; height: 32px; color: var(--gold-dark); }
        .sector-panel h3 {
            font-family: 'Reem Kufi', serif;
            font-size: clamp(1.375rem, 2.5vw, 1.75rem);
            color: var(--navy-800);
            font-weight: 700;
        }
        .sector-panel .desc {
            color: var(--text-muted);
            line-height: 1.85;
            margin-bottom: 1.75rem;
            font-size: 1rem;
            max-width: 60ch;
        }
        .sector-services {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: .625rem;
            margin-bottom: 1.75rem;
        }
        .sector-service {
            display: flex;
            align-items: center;
            gap: .625rem;
            padding: .75rem .875rem;
            background: var(--paper);
            border: 1px solid var(--border-l);
            border-radius: 4px;
            font-size: .875rem;
            font-weight: 500;
            color: var(--navy-700);
            transition: border-color .2s, background .2s;
        }
        .sector-service:hover { border-color: var(--gold); background: var(--gold-50); }
        .sector-service::before {
            content: "";
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .sector-cta {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-l);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .sector-cta-text { font-size: .9375rem; color: var(--text-muted); }
        .sector-cta-text strong { color: var(--navy-800); }

        .sector-panel-content { display: none; flex-direction: column; flex: 1; }
        .sector-panel-content.active { display: flex; animation: fadeIn .4s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

        /* ==================================================================
           SERVICES GRID
           ================================================================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.25rem;
        }
        .service-card {
            position: relative;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 1.75rem;
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
            display: flex;
            flex-direction: column;
            min-height: 220px;
        }
        .service-card::before {
            content: "";
            position: absolute;
            top: 0; right: 0;
            width: 36px;
            height: 36px;
            border-top: 2px solid var(--gold);
            border-right: 2px solid var(--gold);
            opacity: 0;
            transition: opacity .3s ease;
        }
        .service-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            border-color: var(--navy-100);
        }
        .service-card:hover::before { opacity: 1; }
        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: 4px;
            background: var(--gold-50);
            color: var(--gold-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            transition: background .3s, color .3s;
        }
        .service-icon svg { width: 26px; height: 26px; }
        .service-card:hover .service-icon { background: var(--navy-800); color: var(--gold); }
        .service-card h3 {
            font-family: 'Reem Kufi', serif;
            font-size: 1.1875rem;
            font-weight: 700;
            color: var(--navy-800);
            margin-bottom: .625rem;
        }
        .service-card p {
            font-size: .9375rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 1.25rem;
            flex: 1;
        }
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: .375rem;
            color: var(--navy-800);
            font-weight: 700;
            font-size: .875rem;
            font-family: 'Reem Kufi', sans-serif;
        }
        .service-link svg { width: 16px; height: 16px; transition: transform .25s ease; }
        .service-card:hover .service-link { color: var(--gold-dark); }
        .service-card:hover .service-link svg { transform: translateX(-4px); }

        /* ==================================================================
           APPROACH (4-step methodology)
           ================================================================== */
        .approach-section {
            background: var(--navy-900);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .approach-section::before {
            content: "";
            position: absolute;
            top: 0; left: 50%;
            width: 1200px;
            height: 1200px;
            background: radial-gradient(circle, rgba(201,169,97,.05) 0%, transparent 60%);
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        .approach-section .section-head { position: relative; z-index: 1; }
        .approach-section .section-head h2 { color: #fff; }
        .approach-section .section-head p { color: rgba(255,255,255,.7); }
        .approach-section .eyebrow { color: var(--gold); }
        .approach-section .eyebrow::before { background: var(--gold); }

        .approach-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0;
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 6px;
            overflow: hidden;
        }
        .approach-step {
            padding: 2rem 1.75rem;
            border-inline-end: 1px solid rgba(255,255,255,.08);
            position: relative;
        }
        .approach-step:last-child { border-inline-end: none; }
        @media (max-width: 768px) {
            .approach-step { border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,.08); }
            .approach-step:last-child { border-bottom: none; }
        }
        .approach-num {
            font-family: 'Reem Kufi', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 1rem;
            opacity: .9;
        }
        .approach-step h3 {
            font-family: 'Reem Kufi', serif;
            font-size: 1.125rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .75rem;
        }
        .approach-step p {
            font-size: .9375rem;
            color: rgba(255,255,255,.65);
            line-height: 1.75;
        }

        /* ==================================================================
           BRANDS STRIP
           ================================================================== */
        .brands-section {
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 3rem 0;
        }
        .brands-head {
            text-align: center;
            font-size: .75rem;
            letter-spacing: .25em;
            color: var(--text-light);
            text-transform: uppercase;
            margin-bottom: 1.75rem;
            font-family: 'Reem Kufi', sans-serif;
            font-weight: 600;
        }
        .brands-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1.5rem 3rem;
        }
        .brand-name {
            font-family: 'Reem Kufi', sans-serif;
            font-weight: 700;
            font-size: 1.0625rem;
            color: var(--text-light);
            letter-spacing: .02em;
            transition: color .25s ease;
        }
        .brand-name:hover { color: var(--navy-800); }
        .brand-name.gold { color: var(--gold-dark); }

        /* ==================================================================
           FAQ
           ================================================================== */
        .faq-section { background: var(--paper); }
        .faq-wrap { max-width: 880px; margin: 0 auto; }
        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 6px;
            margin-bottom: .75rem;
            overflow: hidden;
            transition: border-color .25s ease, box-shadow .25s ease;
        }
        .faq-item:hover { border-color: var(--navy-100); }
        .faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
        .faq-q {
            width: 100%;
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            text-align: start;
            font-family: 'Reem Kufi', serif;
            font-weight: 600;
            font-size: 1.0625rem;
            color: var(--navy-800);
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            color: var(--gold-dark);
            transition: transform .3s ease;
            flex-shrink: 0;
        }
        .faq-item.open .faq-icon { transform: rotate(45deg); }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }
        .faq-a-inner {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-muted);
            line-height: 1.85;
            font-size: .9375rem;
        }
        .faq-item.open .faq-a { max-height: 400px; }

        /* ==================================================================
           CTA BANNER
           ================================================================== */
        .cta-section {
            background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: "";
            position: absolute;
            bottom: -150px; right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201,169,97,.10) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 2.5rem;
        }
        @media (max-width: 768px) { .cta-inner { grid-template-columns: 1fr; text-align: center; } }
        .cta-section h2 { color: #fff; font-family: 'Reem Kufi', serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: .75rem; line-height: 1.3; }
        .cta-section p { color: rgba(255,255,255,.75); font-size: 1.0625rem; line-height: 1.8; max-width: 60ch; }
        .cta-buttons { display: flex; gap: .75rem; flex-wrap: wrap; }
        @media (max-width: 768px) { .cta-buttons { justify-content: center; } }

        /* ==================================================================
           FOOTER
           ================================================================== */
        footer {
            background: var(--navy-900);
            color: rgba(255,255,255,.7);
            padding: 4rem 0 1.5rem;
            font-size: .9375rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
        @media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
        .footer-brand .brand-mark { background: var(--gold); color: var(--navy-900); }
        .footer-brand .brand-text-1 { color: #fff; }
        .footer-brand .brand-text-2 { color: rgba(255,255,255,.5); }
        .footer-about { margin-top: 1.25rem; line-height: 1.85; font-size: .9375rem; color: rgba(255,255,255,.6); max-width: 36ch; }
        .footer-col h4 {
            font-family: 'Reem Kufi', serif;
            font-size: .875rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
        .footer-col a { color: rgba(255,255,255,.65); transition: color .2s; font-size: .9375rem; }
        .footer-col a:hover { color: var(--gold); }
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: .625rem;
            margin-bottom: .875rem;
            color: rgba(255,255,255,.7);
            font-size: .9375rem;
        }
        .footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
        .footer-bar {
            border-top: 1px solid rgba(255,255,255,.08);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: .8125rem;
            color: rgba(255,255,255,.5);
        }
        .footer-bar a { color: rgba(255,255,255,.6); }
        .footer-bar a:hover { color: var(--gold); }

        /* ==================================================================
           WHATSAPP FLOAT
           ================================================================== */
        .wa-float {
            position: fixed;
            bottom: 1.5rem;
            inset-inline-start: 1.5rem;
            width: 56px;
            height: 56px;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(37,211,102,.35);
            z-index: 40;
            transition: transform .25s ease;
        }
        .wa-float:hover { transform: scale(1.05); }
        .wa-float svg { width: 28px; height: 28px; }

        /* ==================================================================
           FOCUS / A11Y
           ================================================================== */
        a:focus-visible, button:focus-visible, .sector-btn:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* ==================================================================
           REDUCED MOTION
           ================================================================== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
                scroll-behavior: auto !important;
            }
        }
/* ==================================================================
   PAGE-SPECIFIC: SERVICE / ABOUT / CONTACT
   ================================================================== */

/* Breadcrumb */
.breadcrumb {
    font-size: .8125rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    letter-spacing: .02em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.8); }
.breadcrumb-dark { color: var(--text-muted); }
.breadcrumb-dark a { color: var(--gold-dark); }
.breadcrumb-dark span { color: var(--text); }

/* Service hero */
.service-hero {
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #fff;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 5rem);
    position: relative;
    overflow: hidden;
}
.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}
.service-hero::after {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,97,.10) 0%, transparent 70%);
    pointer-events: none;
}
.service-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.service-hero h1 {
    font-family: 'Reem Kufi', serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.service-hero h1 .accent { color: var(--gold); }
.service-hero .eyebrow { color: var(--gold); margin-bottom: 1.25rem; }
.service-hero .eyebrow::before { background: var(--gold); }
.service-hero .lead {
    color: rgba(255,255,255,.78);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.85;
    max-width: 60ch;
    margin-bottom: 2rem;
}
.service-hero .hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Generic content section */
.content-section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.content-section.alt { background: var(--paper); }
.content-section.dark { background: var(--navy-900); color: #fff; }
.content-section.dark .display { color: #fff; }
.content-section.dark p, .content-section.dark .lead { color: rgba(255,255,255,.75); }
.content-section.dark .eyebrow { color: var(--gold); }
.content-section.dark .eyebrow::before { background: var(--gold); }

/* Two-column problem/solution layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.two-col p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.125rem; font-size: 1.0625rem; }
.two-col p:last-child { margin-bottom: 0; }
.two-col h2 { margin-bottom: 1.5rem; }
.two-col .display { margin-bottom: 1.5rem; }

/* Stats sidebar */
.stats-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.stats-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    pointer-events: none;
}
.stats-card h3 { font-family: 'Reem Kufi', serif; font-size: 1.125rem; color: var(--navy-800); margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-l); }
.stats-row { display: flex; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid var(--border-l); font-size: .9375rem; }
.stats-row:last-child { border-bottom: none; }
.stats-row .label { color: var(--text-muted); }
.stats-row .value { font-family: 'Reem Kufi', serif; font-weight: 700; color: var(--navy-800); }

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--navy-100); }
.benefit-icon {
    width: 44px; height: 44px;
    border-radius: 4px;
    background: var(--gold-50);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card h3 { font-family: 'Reem Kufi', serif; font-size: 1.0625rem; font-weight: 700; color: var(--navy-800); margin-bottom: .625rem; }
.benefit-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.75; }

/* Brands list (service page version) */
.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}
.brand-chip {
    padding: .625rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 600;
    font-size: .9375rem;
    color: var(--navy-700);
    transition: border-color .25s, color .25s, background .25s;
}
.brand-chip:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-50); }

/* Bullet list with check */
.check-list { list-style: none; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .75rem 0;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-l);
}
.check-list li:last-child { border-bottom: none; }
.check-list li strong { color: var(--navy-800); display: block; font-weight: 700; margin-bottom: .125rem; font-family: 'Reem Kufi', serif; }
.check-list .check {
    width: 22px; height: 22px;
    background: var(--gold);
    color: var(--navy-900);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}
.check-list .check svg { width: 12px; height: 12px; stroke-width: 3; }

/* Contact-page form */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 2.25rem; box-shadow: var(--shadow-sm); }
.contact-form h2 { margin-bottom: 1.75rem; font-family: 'Reem Kufi', serif; font-size: 1.5rem; color: var(--navy-800); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; color: var(--navy-800); font-size: .875rem; margin-bottom: .5rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font: inherit;
    background: var(--paper);
    color: var(--text);
    transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group small { color: var(--text-muted); font-size: .75rem; margin-top: .25rem; display: block; }

.contact-info { background: var(--navy-800); color: #fff; border-radius: 6px; padding: 2.25rem; position: relative; overflow: hidden; }
.contact-info::after { content:""; position:absolute; bottom:-100px; right:-100px; width:300px; height:300px; background: radial-gradient(circle, rgba(201,169,97,.12), transparent 60%); pointer-events: none; }
.contact-info h2 { color: #fff; font-family: 'Reem Kufi', serif; font-size: 1.5rem; margin-bottom: 1.75rem; position: relative; z-index: 1; }
.contact-info .info-item { display: flex; align-items: flex-start; gap: .875rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.contact-info .info-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-info .info-item .label { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: .05em; text-transform: uppercase; font-family: 'Reem Kufi', sans-serif; }
.contact-info .info-item .value { color: #fff; font-weight: 500; font-size: 1rem; }
.contact-info .info-item .value a { color: #fff; }
.contact-info .info-item .value a:hover { color: var(--gold); }

/* About: timeline / values */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.75rem; }
.value-card .num { font-family: 'Reem Kufi', serif; font-size: 2rem; color: var(--gold-dark); font-weight: 700; line-height: 1; margin-bottom: .75rem; }
.value-card h3 { font-family: 'Reem Kufi', serif; font-size: 1.125rem; color: var(--navy-800); margin-bottom: .625rem; }
.value-card p { color: var(--text-muted); font-size: .9375rem; line-height: 1.75; }

/* Form alerts */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: .9375rem;
    line-height: 1.6;
    animation: fadeIn .4s ease;
}
.form-alert svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.form-alert.success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}
.form-alert.success svg { color: #22c55e; }
.form-alert.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.form-alert.error svg { color: #ef4444; }
.form-alert strong { display: block; margin-bottom: .25rem; }

/* ==================================================================
   MOBILE & TABLET RESPONSIVE FIXES
   ================================================================== */

/* Prevent horizontal overflow globally (iOS Safari fix) */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Clip pseudo-element overflow on all positioned sections */
.hero, .cta-section, .contact-info, .approach-wrap { overflow: hidden; }

/* ── Tablet (≤ 1024px) ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav-cta-group .nav-phone { display: none; }

    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { margin: 0 auto; max-width: 320px; }
    .hero-content { order: -1; }
    .hero-btns { justify-content: center; }
    .hero h1.display { font-size: clamp(1.75rem, 5vw, 2.75rem); }

    .sectors-wrap { grid-template-columns: 1fr; }
    .sectors-list { flex-direction: row; overflow-x: auto; padding: .75rem; gap: 0; }
    .sector-btn { white-space: nowrap; min-width: auto; padding: .625rem 1rem; font-size: .8125rem; }

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

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

/* ── Mobile (≤ 768px) ─────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Global */
    section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
    .container { padding: 0 1rem; }

    /* Typography */
    h1.display { font-size: clamp(1.5rem, 6vw, 2rem); }
    h2.display { font-size: clamp(1.25rem, 5vw, 1.75rem); }
    .lead { font-size: 1rem; }

    /* Hero */
    .hero { padding: 2.5rem 0 3rem; }
    .hero-inner { gap: 2rem; }
    .hero-visual { max-width: 260px; }
    .hero-btns { flex-direction: column; gap: .625rem; }
    .hero-btns .btn { width: 100%; }

    /* Trust ribbon */
    .ribbon-inner { justify-content: center; gap: .75rem 1.25rem; }
    .ribbon-item { font-size: .8125rem; }

    /* Services grid */
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    /* Approach/methodology steps */
    .approach-grid { grid-template-columns: 1fr; }
    .approach-step { border-inline-end: none !important; border-bottom: 1px solid rgba(255,255,255,.08); }
    .approach-step:last-child { border-bottom: none; }

    /* FAQ */
    .faq-q { padding: 1rem 1.25rem; font-size: .9375rem; }
    .faq-a-inner { padding: 0 1.25rem 1.25rem; }

    /* CTA */
    .cta-inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .cta-buttons { justify-content: center; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    footer { padding: 2.5rem 0 1.25rem; }

    /* Contact page */
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* Service page grids */
    .two-col { grid-template-columns: 1fr; }

    /* Cards */
    .card { padding: 1.5rem; }
    .service-card { padding: 1.5rem; }

    /* Breadcrumb */
    .breadcrumb { font-size: .75rem; padding: .75rem 0; }

    /* WhatsApp button - avoid iOS bottom bar */
    .whatsapp-float { bottom: 1.25rem; right: 1rem; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ── Small phones (≤ 400px) ───────────────────────────────────── */
@media (max-width: 400px) {
    .container { padding: 0 .75rem; }
    h1.display { font-size: 1.375rem; }
    h2.display { font-size: 1.1875rem; }
    .hero { padding: 2rem 0 2.5rem; }
    .hero-visual { max-width: 220px; }
    .btn { padding: .75rem 1.25rem; font-size: .875rem; }
    .nav-inner { height: 64px; }
    .brand-mark { width: 38px; height: 38px; font-size: .875rem; }
    .brand-text-1 { font-size: .9375rem; }
    .emblem-monogram .mono { font-size: clamp(2.5rem, 12vw, 4rem); }
}

/* ── Touch-friendly tap targets ───────────────────────────────── */
@media (pointer: coarse) {
    .btn { min-height: 48px; }
    .nav-toggle { min-width: 48px; min-height: 48px; }
    .sector-btn { min-height: 44px; }
    .faq-q { min-height: 48px; }
}
