﻿/* ============================================================
   CEC Jordan — Shared Design System
   All new service, project, and blog pages import this file.
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@700,800,900&f[]=switzer@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap');

:root {
  --font-heading: "Cabinet Grotesk", "Switzer", sans-serif;
  --font-body:    "Switzer", sans-serif;
  --font-arabic:  "IBM Plex Sans Arabic", "Switzer", sans-serif;
  --charcoal: #1A2D40;
  --soft-black: #10253d;
  --gold: #C4A86A;
  --gold-light: #DBBF88;
  --gold-dark: #9E8340;
  --beige: #EDE8DC;
  --beige-dark: #C6BAA4;
  --muted-gray: #6C8DA6;
  --white: #FFFFFF;
  --section-bg: #0E1C2C;
  --card-bg: #132033;
  --border: rgba(196,168,106,0.18);
  --border-light: rgba(196,168,106,0.07);
  --platinum: #B8C4D0;
  --platinum-dark: #94A3B4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--soft-black);
  color: var(--beige);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: auto;
}

/* ===== GLOBAL TYPOGRAPHY SYSTEM ===== */
html, body { font-family: var(--font-body) !important; }
body * { font-family: inherit; }
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .card-title, .page-h1, .cta-title, .cert-title,
.project-name, .related-card h3, .service-card h3, .faq-question, .article-body h2, .article-body h3,
.prose h2, .prose h3 {
  font-family: var(--font-heading) !important;
  font-weight: 700;
  letter-spacing: -0.035em;
}
button, input, textarea, select, nav, footer { font-family: var(--font-body) !important; }
[lang="ar"], [dir="rtl"], .arabic, .rtl { font-family: var(--font-arabic); letter-spacing: 0; font-weight: 400; }

/* ===== CURSOR (hidden — using system cursor) ===== */
.cursor, .cursor-ring { display: none !important; }

/* ===== SERVICES MEGA-DROPDOWN ===== */
.nav-has-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* Chevron on Services trigger */
.nav-services-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}
.nav-services-trigger::after {
  content: '' !important;
  display: inline-block !important;
  position: static !important;
  width: 0 !important; height: 0 !important;
  background: none !important;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid currentColor;
  opacity: 0.55;
  margin-top: 1px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-has-dropdown:hover .nav-services-trigger::after { transform: rotate(180deg); opacity: 0.9; }

/* Base dropdown — top:100% with padding-top bridge eliminates hover gap */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  background: rgba(8,14,28,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(196,168,106,0.15);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(196,168,106,0.06);
  padding: 0;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease 0.18s, transform 0.2s ease 0.18s, visibility 0.2s ease 0.18s;
  visibility: hidden;
  z-index: 200;
  min-width: 200px;
  padding-top: 12px; /* visual gap without hover gap */
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav-dropdown::before {
  content: '';
  position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: rgba(8,14,28,0.98);
  border-left: 1px solid rgba(196,168,106,0.15);
  border-top: 1px solid rgba(196,168,106,0.15);
}
.nav-dropdown a { display: block !important; }
.nav-dropdown a::after { display: none !important; }

/* ── Mega dropdown ── */
.nav-mega-dropdown {
  left: auto; right: auto;
  transform: translateX(-50%) translateY(-6px);
  width: 600px;
  padding-top: 12px; /* hover bridge inherited */
  padding-bottom: 0;
}
.nav-has-dropdown:hover .nav-mega-dropdown,
.nav-has-dropdown:focus-within .nav-mega-dropdown {
  transform: translateX(-50%) translateY(0);
}
.nav-mega-dropdown::before { left: 50%; }

.ndrop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ndrop-col {
  padding: 20px 0 20px;
}
.ndrop-col:first-child {
  border-right: 1px solid rgba(196,168,106,0.08);
}
.ndrop-col-head {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); opacity: 0.6;
  padding: 0 22px 12px;
  border-bottom: 1px solid rgba(196,168,106,0.07);
  margin-bottom: 4px;
}
.ndrop-item {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 11px 22px !important;
  text-decoration: none;
  transition: background 0.15s;
  color: inherit !important;
}
.ndrop-item:hover { background: rgba(196,168,106,0.06) !important; }
.ndrop-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(196,168,106,0.18);
  background: rgba(196,168,106,0.04);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.ndrop-item:hover .ndrop-icon {
  border-color: rgba(196,168,106,0.5);
  background: rgba(196,168,106,0.1);
}
.ndrop-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.ndrop-title {
  font-size: 13px !important; font-weight: 600 !important;
  color: rgba(237,232,220,0.92) !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  display: block; line-height: 1.3;
  transition: color 0.2s;
}
.ndrop-item:hover .ndrop-title { color: var(--gold) !important; }
.ndrop-desc {
  font-size: 11px !important; font-weight: 400 !important;
  color: rgba(108,141,166,0.65) !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  display: block; margin-top: 2px; line-height: 1.45;
}
.ndrop-footer-link {
  display: block !important;
  margin: 10px 22px 14px;
  padding: 10px 14px !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 0.2em !important; text-transform: uppercase !important;
  color: var(--gold) !important;
  border: 1px solid rgba(196,168,106,0.25);
  text-align: center; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.ndrop-footer-link:hover { background: rgba(196,168,106,0.1) !important; border-color: var(--gold) !important; }

.nav-dropdown-divider {
  height: 1px; background: var(--border-light);
  margin: 4px 0;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 80px;
  background: rgba(8,14,28,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 40px; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(237,232,220,0.65); transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border: 1px solid var(--gold);
  color: var(--gold) !important; font-size: 11px !important;
  letter-spacing: 0.2em !important; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover {
  background: var(--platinum) !important;
  color: var(--soft-black) !important;
  border-color: var(--platinum) !important;
}
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--beige); }
.nav-close-btn {
  display: none; position: fixed; top: 20px; right: 20px; z-index: 201;
  width: 44px; height: 44px; background: rgba(11,21,32,0.9);
  border: 1px solid var(--border); color: var(--beige);
  font-size: 20px; line-height: 1; cursor: pointer;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s;
}
.nav-close-btn.visible { opacity: 1; pointer-events: all; }
.nav-close-btn:hover { background: var(--platinum); color: var(--soft-black); border-color: var(--platinum); }
body.nav-open { overflow: hidden; }

/* ===== LANG TOGGLE ===== */
.lang-toggle {
  background: transparent; border: 1px solid rgba(196,168,106,0.4);
  color: var(--gold); font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  padding: 7px 14px; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap; flex-shrink: 0;
}
.lang-toggle:hover { background: var(--gold); color: var(--soft-black); border-color: var(--gold); }

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed; inset: 0; background: var(--soft-black);
  z-index: 10000; pointer-events: none;
  opacity: 1; transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
.page-transition.loaded { opacity: 0; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; border: 1px solid var(--border);
  background: rgba(11,21,32,0.85); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gold); font-size: 18px; line-height: 1;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s, background 0.3s, border-color 0.3s;
  z-index: 90; text-decoration: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--platinum); color: var(--soft-black); border-color: var(--platinum); }
.back-to-top:active { transform: scale(0.92); }

/* ===== LAYOUT ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5vw; }
section { position: relative; }

/* ===== TYPOGRAPHY UTILITIES ===== */
.section-tag { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-tag span { font-size: 10px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
h2.section-title {
  font-family: var(--font-heading);
  font-weight: 300; font-size: clamp(36px, 5vw, 64px);
  color: var(--white); line-height: 1.05;
}
h2.section-title em { font-style: italic; color: var(--gold); }
.section-header { margin-bottom: 64px; }
.section-desc { font-size: 15px; line-height: 1.9; color: var(--muted-gray); max-width: 600px; margin-top: 16px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; background: var(--gold);
  color: var(--soft-black); text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; transition: background 0.3s, transform 0.3s;
  position: relative; overflow: hidden; border: none; cursor: pointer;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform: translateX(-200%); transition: transform 0.55s ease;
}
.btn-primary:hover::before { transform: translateX(200%); }
.btn-primary span, .btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,168,106,0.28); }
.btn-primary:active { transform: translateY(0) scale(0.97); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--beige); text-decoration: none; transition: color 0.3s;
}
.btn-ghost .arrow { width: 32px; height: 1px; background: var(--gold); transition: width 0.3s ease; position: relative; }
.btn-ghost .arrow::after { content: ''; position: absolute; right: 0; top: -3px; border: 4px solid transparent; border-left: 5px solid var(--gold); }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover .arrow { width: 50px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border: 1px solid var(--border);
  color: var(--beige); text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap {
  padding: 96px 0 0;
  position: relative; z-index: 5;
}
.breadcrumb-wrap nav ol {
  display: flex; align-items: center; gap: 0; list-style: none; flex-wrap: wrap;
}
.breadcrumb-wrap nav ol li {
  display: flex; align-items: center; gap: 0;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
}
.breadcrumb-wrap nav ol li::after { content: ' / '; color: rgba(196,168,106,0.3); padding: 0 8px; }
.breadcrumb-wrap nav ol li:last-child::after { display: none; }
.breadcrumb-wrap nav ol li a { color: rgba(237,232,220,0.4); text-decoration: none; transition: color 0.3s; }
.breadcrumb-wrap nav ol li a:hover { color: var(--gold); }
.breadcrumb-wrap nav ol li span { color: var(--gold); }

/* ===== PAGE HERO (service / project / blog) ===== */
.page-hero {
  padding: 180px 5vw 100px;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 80% 30%, rgba(196,168,106,0.07) 0%, var(--soft-black) 65%);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,168,106,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,168,106,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
h1.page-h1 {
  font-family: var(--font-heading);
  font-weight: 300; font-size: clamp(48px, 7vw, 96px);
  color: var(--white); line-height: 0.95; margin-bottom: 28px;
}
h1.page-h1 em { color: var(--gold); font-style: italic; }
.page-h1-sub {
  font-size: 16px; line-height: 1.85; color: rgba(237,232,220,0.65);
  max-width: 600px; margin-bottom: 40px;
}
.page-hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  border-top: 1px solid var(--border-light); padding-top: 36px; margin-top: 8px;
}
.ph-stat-num {
  font-family: var(--font-heading);
  font-size: 48px; font-weight: 300; color: var(--white); line-height: 1;
  display: block;
}
.ph-stat-num em { color: var(--gold); font-style: normal; font-size: 0.55em; vertical-align: super; }
.ph-stat-label { font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-gray); display: block; margin-top: 4px; }

/* ===== PAGE HERO — PHOTO/VIDEO BACKGROUND VARIANT ===== */
/* Drop a .page-hero-photo-bg (or .blog-hub-photo-bg) as the first child of
   .page-hero / .blog-hub-hero, then wrap the existing .container with
   style="position:relative;z-index:2" so content sits above the media. */
.page-hero-photo-bg, .blog-hub-photo-bg {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.page-hero-photo-bg img, .page-hero-photo-bg video,
.blog-hub-photo-bg img, .blog-hub-photo-bg video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.42) saturate(0.9);
}
.page-hero-photo-bg::after, .blog-hub-photo-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--soft-black) 0%, rgba(8,14,24,0.55) 45%, rgba(8,14,24,0.25) 100%),
    radial-gradient(ellipse at 75% 25%, rgba(196,168,106,0.10) 0%, transparent 60%);
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 100px 0; }
.content-section.alt { background: var(--section-bg); }
.content-section.dark { background: #0A1828; }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.content-grid.wide { grid-template-columns: 1.2fr 1fr; }

.prose h2 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px); color: var(--white); line-height: 1.15;
  margin-bottom: 20px; margin-top: 48px;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { color: var(--gold); font-style: italic; }
.prose h3 {
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px); color: var(--beige); line-height: 1.2;
  margin-bottom: 12px; margin-top: 32px;
}
.prose p { font-size: 15px; line-height: 1.9; color: rgba(237,232,220,0.65); margin-bottom: 18px; }
.prose p strong { color: var(--beige); font-weight: 500; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 18px; }
.prose li { font-size: 15px; line-height: 1.8; color: rgba(237,232,220,0.65); margin-bottom: 8px; }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.service-card {
  background: var(--section-bg); padding: 44px 36px;
  transition: background 0.4s; position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { background: var(--card-bg); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: var(--font-heading); font-size: 13px; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 28px; display: block; }
.service-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.service-card p { font-size: 13.5px; line-height: 1.75; color: var(--muted-gray); }
.service-card a {
  display: inline-block; margin-top: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: color 0.3s;
}
/* Stretch link: the <a> covers the entire card so clicking anywhere navigates */
.service-card a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-card a:hover { color: var(--gold-light); }

/* ===== PROJECT CARDS ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { position: relative; overflow: hidden; cursor: pointer; background: var(--card-bg); }
.project-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(196,168,106,0.3));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); z-index: 2;
}
.project-card:hover::after { transform: scaleX(1); }
.project-thumb { aspect-ratio: 4/3; overflow: hidden; position: relative; background: #182D40; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease, filter 0.4s ease; filter: grayscale(15%) brightness(0.88); }
.project-card:hover .project-thumb img { transform: scale(1.06); filter: grayscale(0%) brightness(1); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,14,24,0.92) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.project-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.project-name { font-family: var(--font-heading); font-size: 22px; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.project-detail { font-size: 12px; color: rgba(237,232,220,0.5); }

/* ===== FAQ SECTION ===== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(196,168,106,0.1);
  position: relative; overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(196,168,106,0.1); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; gap: 24px;
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 22px); font-weight: 400; color: var(--white);
  border: none; background: none; width: 100%; text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 32px; height: 32px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 20px; font-weight: 300;
  transition: transform 0.35s ease, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(196,168,106,0.1); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), padding 0.35s ease;
  padding: 0;
}
.faq-answer-inner { padding-bottom: 24px; font-size: 15px; line-height: 1.85; color: rgba(237,232,220,0.65); }
.faq-item.open .faq-answer { max-height: 500px; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--charcoal);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.trust-item {
  padding: 40px 28px; border-right: 1px solid var(--border);
  text-align: center; position: relative; transition: background 0.35s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(196,168,106,0.04); }
.trust-num {
  font-family: var(--font-heading);
  font-size: clamp(56px, 7vw, 88px); font-weight: 300;
  color: var(--white); line-height: 0.9; display: block;
}
.trust-num em { color: var(--gold); font-size: 0.45em; vertical-align: super; font-style: normal; }
.trust-label { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-gray); display: block; margin-top: 16px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,168,106,0.07) 0%, var(--section-bg) 65%);
  text-align: center; position: relative;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 5vw; right: 5vw; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-title {
  font-family: var(--font-heading);
  font-weight: 300; font-size: clamp(36px, 5vw, 72px);
  color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub { font-size: 16px; color: var(--muted-gray); margin-bottom: 48px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-contact-row {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border-light);
}
.cta-contact-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cta-contact-label { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.cta-contact-val { font-size: 15px; color: var(--beige); text-decoration: none; transition: color 0.3s; }
.cta-contact-val:hover { color: var(--gold); }

/* ===== RELATED LINKS ===== */
.related-section { padding: 80px 0; background: var(--soft-black); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); }
.related-card {
  background: var(--section-bg); padding: 36px 32px;
  text-decoration: none; display: block;
  transition: background 0.35s; position: relative; overflow: hidden;
}
.related-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.related-card:hover { background: var(--card-bg); }
.related-card:hover::before { transform: scaleX(1); }
.related-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.related-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 400; color: var(--white); line-height: 1.2; }
.related-card p { font-size: 13px; color: var(--muted-gray); margin-top: 8px; line-height: 1.6; }

/* ===== CERTIFICATE OF COMPLETION ===== */
.cert-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 48px 36px;
  text-align: center;
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid var(--border-light);
  pointer-events: none;
}
.cert-corner { position: absolute; width: 22px; height: 22px; border: 1px solid var(--gold); pointer-events: none; }
.cert-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.cert-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.cert-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.cert-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }
.cert-seal { width: 64px; height: 64px; margin: 0 auto 20px; color: var(--gold); }
.cert-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.cert-title { font-family: var(--font-heading); font-weight: 300; font-size: clamp(24px, 3vw, 32px); color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.cert-title em { color: var(--gold); font-style: italic; }
.cert-text { font-size: 14px; line-height: 1.85; color: rgba(237,232,220,0.65); max-width: 480px; margin: 0 auto 28px; }
.cert-meta { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); margin-bottom: 28px; }
.cert-meta-item { display: flex; flex-direction: column; gap: 4px; }
.cert-meta-label { font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-gray); }
.cert-meta-val { font-family: var(--font-heading); font-size: 18px; color: var(--beige); }
.cert-sign-row { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.cert-sign { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cert-sign-name { font-family: var(--font-heading); font-style: italic; font-size: 17px; color: var(--beige); }
.cert-sign-line { width: 130px; border-top: 1px solid var(--border); }
.cert-sign-title { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-gray); }
@media (max-width: 600px) {
  .cert-viewer { padding: 12px !important; }
  .crt-thumb { width: 90px !important; height: 66px !important; padding: 5px !important; }
  .crt-thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .project-card.featured { grid-column: span 1; grid-row: span 1; }
  .page-h1 { font-size: clamp(36px, 10vw, 72px) !important; }
  .container { padding: 0 4vw; }
  .cert-meta { gap: 24px; }
  .cert-sign-row { gap: 32px; }
}

/* ===== CLASSIFICATIONS LIST ===== */
.class-list { display: flex; flex-direction: column; }
.class-row {
  display: grid; grid-template-columns: 52px 1fr auto;
  gap: 28px; align-items: center; padding: 24px 0;
  border-bottom: 1px solid rgba(196,168,106,0.08);
  position: relative; overflow: hidden; cursor: default; transition: border-color 0.3s;
}
.class-row:first-child { border-top: 1px solid rgba(196,168,106,0.08); }
.class-row:hover { border-color: rgba(196,168,106,0.2); }
.class-row::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(196,168,106,0.06) 0%, transparent 70%);
  transform: translateX(-110%); transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1);
}
.class-row:hover::before { transform: translateX(0); }
.class-num { font-family: var(--font-heading); font-size: 13px; color: var(--gold); letter-spacing: 0.12em; position: relative; z-index: 1; }
.class-name { font-family: var(--font-heading); font-size: clamp(18px, 2.5vw, 28px); font-weight: 300; color: var(--white); line-height: 1.1; position: relative; z-index: 1; }
.class-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: rgba(196,168,106,0.85);
  background: rgba(196,168,106,0.07); border-left: 2px solid var(--gold);
  padding: 6px 14px 6px 12px; white-space: nowrap; flex-shrink: 0; position: relative; z-index: 1;
}

/* ===== ARTICLE CONTENT (blog) ===== */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.article-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.article-date { font-size: 12px; color: var(--muted-gray); letter-spacing: 0.1em; }
.article-read { font-size: 12px; color: var(--muted-gray); }
.article-body h2 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(26px, 3vw, 38px); color: var(--white); line-height: 1.15;
  margin: 52px 0 18px;
}
.article-body h2 em { color: var(--gold); font-style: italic; }
.article-body h3 {
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(20px, 2vw, 26px); color: var(--beige); line-height: 1.2;
  margin: 32px 0 12px;
}
.article-body p { font-size: 15.5px; line-height: 1.92; color: rgba(237,232,220,0.7); margin-bottom: 20px; }
.article-body p strong { color: var(--beige); font-weight: 500; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 15.5px; line-height: 1.85; color: rgba(237,232,220,0.7); margin-bottom: 10px; }
.article-body .callout {
  border-left: 3px solid var(--gold); background: rgba(196,168,106,0.05);
  padding: 24px 28px; margin: 32px 0;
}
.article-body .callout p { margin-bottom: 0; }

/* ===== FOOTER ===== */
footer { background: #060C16; padding: 80px 0 40px; border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border-light); margin-bottom: 40px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(108,141,166,0.65); margin: 20px 0 28px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted-gray); text-decoration: none; font-size: 12px; transition: border-color 0.3s, color 0.3s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(108,141,166,0.65); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12px; color: rgba(108,141,166,0.38); }
.footer-mark { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(108,141,166,0.38); }
.footer-mark::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); opacity: 0.35; }

/* ===== MOBILE ===== */

/* ── Prevent all horizontal overflow site-wide ── */
html, body { overflow-x: hidden; max-width: 100vw; }
* { min-width: 0; }

/* ── 1024px — large tablet ── */
@media (max-width: 1024px) {
  .container { padding: 0 4vw; }
  .content-section { padding: 88px 0; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .nav-dropdown { min-width: 200px; }
  .nav-mega-dropdown { left: -80px !important; right: -20px !important; }
}

/* ── 900px — tablet portrait ── */
@media (max-width: 900px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-close-btn { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 85vw; max-width: 380px; height: 100vh;
    background: rgba(8,14,28,0.99); flex-direction: column; justify-content: flex-start;
    padding: 88px 32px 48px; gap: 0; transition: right 0.38s cubic-bezier(0.22,1,0.36,1);
    border-left: 1px solid var(--border-light); backdrop-filter: blur(24px);
    overflow-y: auto; overflow-x: hidden;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(196,168,106,0.07); }
  .nav-links li:last-child { border-bottom: none; display: none; }
  .nav-links a {
    display: block; padding: 16px 0; font-size: 13px;
    letter-spacing: 0.15em; color: rgba(237,232,220,0.75);
  }
  .nav-links a::after { display: none !important; }
  /* Services in mobile nav — show as expandable list */
  .nav-has-dropdown { flex-direction: column; align-items: flex-start; }
  .nav-services-trigger::after { content: ' ›' !important; }
  .nav-dropdown {
    position: static !important; opacity: 1 !important; pointer-events: all !important;
    visibility: visible !important; transform: none !important;
    background: transparent; border: none; padding: 0; min-width: unset;
    display: none; width: 100%;
    backdrop-filter: none;
  }
  .nav-has-dropdown.mob-open .nav-dropdown { display: block !important; }
  .ndrop-grid { grid-template-columns: 1fr; gap: 0; }
  .ndrop-col { padding: 0; border: none !important; }
  .ndrop-col + .ndrop-col { border: none !important; padding: 0; }
  .ndrop-col-head { padding: 10px 0 8px; letter-spacing: 0.25em; }
  .ndrop-item { padding: 9px 0 9px 16px !important; gap: 10px; border-radius: 0; }
  .ndrop-icon { width: 22px; height: 22px; }
  .ndrop-icon svg { width: 14px; height: 14px; }
  .ndrop-title { font-size: 11px !important; }
  .ndrop-footer-link { margin: 8px 0 4px; }
  .ndrop-desc { display: none; }
  .nav-mega-dropdown::before { display: none; }
  .nav-dropdown a:not(.ndrop-item):not(.ndrop-footer-link) {
    font-size: 12px !important; padding: 10px 0 10px 16px !important;
    color: rgba(237,232,220,0.5) !important;
    letter-spacing: 0.12em !important; white-space: normal !important;
  }

  /* Layout grids */
  .content-grid, .content-grid.wide { grid-template-columns: 1fr !important; gap: 40px !important; }
  .content-grid > .reveal-right > div,
  .content-grid > .reveal-right > * { position: static !important; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Hero */
  .page-hero { padding: 150px 5vw 72px; }
  .page-hero-stats { gap: 28px; flex-wrap: wrap; }
  .page-h1 { font-size: clamp(38px, 6.5vw, 76px); }

  /* Typography */
  .cta-title { font-size: clamp(30px, 5.5vw, 56px); }
  .cta-sub { font-size: 15px; }
  .content-section { padding: 72px 0; }
  .cert-viewer { max-width: 100% !important; }
  .cta-actions { flex-direction: column; align-items: center; }

  /* Trust strip */
  .trust-strip { padding: 48px 0; }
  .trust-item { padding: 32px 20px; }
  .trust-num { font-size: clamp(44px, 8vw, 72px); }
}

/* ── 768px — large phone / small tablet ── */
@media (max-width: 768px) {
  .content-grid, .content-grid.wide { grid-template-columns: 1fr !important; gap: 32px !important; }
  /* Force sidebar out of sticky on all project/service pages */
  .content-grid > div > div[style*="sticky"],
  .content-grid > div > div[style*="position"] { position: static !important; top: auto !important; }
  .content-section { padding: 64px 0; }
  .page-hero { padding: 130px 5vw 60px; min-height: auto; }
  .page-h1 { font-size: clamp(34px, 8vw, 60px) !important; line-height: 1.05; }
  .section-title { font-size: clamp(26px, 7vw, 44px) !important; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .class-row { grid-template-columns: 40px 1fr; gap: 12px; }
  .class-badge { display: none; }
  .class-name { font-size: clamp(15px, 3.5vw, 22px) !important; }
  /* Project stats bar inline in project pages */
  .project-stats-bar { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .psb-val { font-size: 17px !important; }
}

/* ── 600px — standard phone ── */
@media (max-width: 600px) {
  .container { padding: 0 5vw; }
  nav { padding: 0 5vw; height: 70px; }
  .nav-links { padding: 70px 24px 40px; }

  /* All grids → single column */
  .content-grid, .content-grid.wide { grid-template-columns: 1fr !important; gap: 28px !important; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr !important; }
  .project-card.featured { grid-column: span 1 !important; grid-row: span 1 !important; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Hero */
  .page-hero { padding: 110px 5vw 48px; }
  .page-hero-stats { flex-direction: column; gap: 14px; }
  .ph-stat-num { font-size: 36px; }
  .page-h1 { font-size: clamp(30px, 9.5vw, 52px) !important; line-height: 1.08; margin-bottom: 16px; }
  .page-h1-sub { font-size: 14px; line-height: 1.75; }
  .section-title { font-size: clamp(24px, 7.5vw, 40px) !important; }
  .cta-title { font-size: clamp(26px, 8.5vw, 44px) !important; line-height: 1.1; }
  .cta-sub { font-size: 14px; margin-bottom: 32px; }

  /* Content */
  .content-section { padding: 52px 0; }
  .section-header { margin-bottom: 40px; }
  .prose p { font-size: 14.5px; line-height: 1.8; }
  .prose h2 { font-size: clamp(22px, 6.5vw, 34px); margin-top: 36px; }
  .prose h3 { font-size: clamp(17px, 5vw, 22px); }

  /* Buttons — full-width on mobile */
  .cta-actions { flex-direction: column; width: 100%; gap: 12px; }
  .cta-actions .btn-primary, .cta-actions .btn-outline, .cta-actions .btn-ghost { width: 100%; justify-content: center; }

  /* Cards & components */
  .cert-viewer { padding: 12px !important; }
  .crt-thumb { width: 88px !important; height: 64px !important; padding: 4px !important; }
  .crt-thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .related-card { padding: 22px 18px; }
  .related-card h3 { font-size: 17px; }
  .service-card { padding: 28px 22px; }
  .class-row { grid-template-columns: 36px 1fr; gap: 10px; }
  .class-badge { display: none; }
  .class-name { font-size: 16px !important; }
  .project-stats-bar { grid-template-columns: 1fr 1fr !important; gap: 16px !important; padding-top: 20px !important; margin-top: 24px !important; }
  .psb-label { font-size: 9px !important; }
  .psb-val { font-size: 15px !important; }

  /* Trust */
  .trust-strip { padding: 40px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; border: none; display: flex; flex-wrap: wrap; }
  .trust-item { border: 1px solid var(--border); flex: 1 1 calc(50% - 1px); padding: 28px 16px; }
  .trust-num { font-size: clamp(40px, 10vw, 64px); }

  /* FAQ */
  .faq-question { font-size: 15px; padding: 20px 0; }
  .faq-icon { width: 28px; height: 28px; font-size: 18px; }

  /* Blog / article */
  .article-body h2 { font-size: clamp(20px, 6.5vw, 30px); margin: 32px 0 12px; }
  .article-body h3 { font-size: clamp(16px, 5vw, 22px); }
  .article-body p { font-size: 14.5px; line-height: 1.82; }

  /* CTA section */
  .cta-section { padding: 72px 0; }
  .cta-contact-row { gap: 28px; flex-direction: column; align-items: center; }

  /* Footer */
  footer { padding: 56px 0 32px; }
  .footer-grid { gap: 36px; }
}

/* ── 430px — iPhone Pro Max / large Android ── */
@media (max-width: 430px) {
  .container { padding: 0 18px; }
  nav { padding: 0 18px; }
  .page-h1 { font-size: clamp(28px, 10vw, 44px) !important; }
  .section-title { font-size: clamp(22px, 8vw, 36px) !important; }
  .cta-title { font-size: clamp(24px, 9vw, 38px) !important; }
  .project-overlay { padding: 18px; }
  .project-name { font-size: 18px; }
  .project-card.featured .project-name { font-size: 22px; }
  .trust-item { padding: 22px 12px; }
  .trust-num { font-size: clamp(36px, 9vw, 56px); }
  .cert-viewer { padding: 10px !important; }
  .related-card { padding: 18px 14px; }
  .btn-primary { padding: 14px 28px; }
  .content-section { padding: 44px 0; }
  .page-hero { padding: 100px 18px 44px; }
}

/* ── 375px — iPhone SE/standard ── */
@media (max-width: 375px) {
  .container { padding: 0 16px; }
  nav { padding: 0 16px; }
  .page-h1 { font-size: clamp(26px, 10.5vw, 40px) !important; }
  .section-title { font-size: clamp(21px, 8.5vw, 32px) !important; }
  .project-name { font-size: 16px; }
  .psb-val { font-size: 14px !important; }
  .trust-num { font-size: 36px; }
  .faq-question { font-size: 14px; }
  .footer-grid { gap: 28px; }
}

/* ── 320px — very small phones ── */
@media (max-width: 320px) {
  html { font-size: 14px; }
  .container { padding: 0 12px; }
  nav { padding: 0 12px; }
  .page-h1 { font-size: 26px !important; }
  .section-title { font-size: 20px !important; }
  .cta-title { font-size: 22px !important; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { flex: 1 1 100%; }
}

/* ===== RTL ===== */
[dir="rtl"] body { font-family: var(--font-arabic); }
[dir="rtl"] em { font-style: normal; font-weight: 600; }
[dir="rtl"] nav { flex-direction: row-reverse; }
[dir="rtl"] .nav-links a::after { left: auto; right: 0; }
@media (max-width: 900px) {
  [dir="rtl"] .nav-links {
    right: auto; left: -100%;
    border-left: none; border-right: 1px solid var(--border-light);
    transition: left 0.38s cubic-bezier(0.22,1,0.36,1);
  }
  [dir="rtl"] .nav-links.open { left: 0; right: auto; }
  [dir="rtl"] .ndrop-item { padding-right: 16px !important; padding-left: 8px !important; }
}
[dir="rtl"] .section-tag { flex-direction: row-reverse; }
[dir="rtl"] .section-tag::before { display: none; }
[dir="rtl"] .section-tag::after { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); vertical-align: middle; }
[dir="rtl"] footer { direction: rtl; }
[dir="rtl"] .footer-brand, [dir="rtl"] .footer-col { text-align: right; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .footer-mark::before { display: none; }
[dir="rtl"] .footer-mark::after { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold); opacity: 0.35; vertical-align: middle; }
[dir="rtl"] .page-hero-inner { text-align: right; }
[dir="rtl"] .prose { text-align: right; }
[dir="rtl"] .faq-question { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .breadcrumb-wrap nav ol { flex-direction: row-reverse; }
[dir="rtl"] .trust-item { text-align: right; }
[dir="rtl"] .cta-section { direction: rtl; }
