  /* ===== CSS RESET & VARIABLES ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
   --navy: #1f1a51;
   --navy-dark: #161240;
   --navy-light: #2d2668;
   --gold: #e49f37;
   --gold-dark: #cc8a2a;
   --gold-light: #f0b85a;
   --teal: #225b7b;
   --teal-light: #2d7ba6;
   --light-bg: #F8F9FC;
   --white: #FFFFFF;
   --card-bg: #FFFFFF;
   --text-heading: #1a1a2e;
   --text-body: #555770;
   --text-muted: #8a8ca5;
   --footer-bg: #111827;
   --footer-text: #9ca3af;
   --border: #e5e7f0;
   --border-light: #f0f1f7;
   --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
   --font-ar: 'Noto Sans Arabic', 'Inter', sans-serif;
   --radius-sm: 8px;
   --radius: 12px;
   --radius-lg: 16px;
   --radius-xl: 24px;
   --radius-pill: 99px;
   --shadow-sm: 0 1px 2px rgba(31,26,81,0.05);
   --shadow: 0 1px 3px rgba(31,26,81,0.08), 0 1px 2px rgba(31,26,81,0.04);
   --shadow-md: 0 4px 6px -1px rgba(31,26,81,0.08), 0 2px 4px -2px rgba(31,26,81,0.05);
   --shadow-lg: 0 10px 15px -3px rgba(31,26,81,0.08), 0 4px 6px -4px rgba(31,26,81,0.04);
   --shadow-xl: 0 20px 25px -5px rgba(31,26,81,0.1), 0 8px 10px -6px rgba(31,26,81,0.05);
   --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   --container: 1200px;
  }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  html[lang="ar"] { --font: var(--font-ar); }
  html[lang="ar"] body { direction: rtl; }
  body { font-family: var(--font); color: var(--text-body); background: var(--white); line-height: 1.6; overflow-x: hidden; }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  input, select, textarea { font-family: inherit; }
  address { font-style: normal; }
  .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
  h1, h2, h3, h4, h5, h6 { color: var(--text-heading); line-height: 1.2; font-weight: 800; letter-spacing: -0.03em; }

  /* ===== SCROLL PROGRESS BAR ===== */
  #scrollProgress {
   position: fixed; top: 0; left: 0; height: 3px; width: 0%;
   background: linear-gradient(90deg, var(--gold), var(--gold-light));
   z-index: 10001; transition: width 0.1s linear;
  }

  /* ===== ANNOUNCEMENT BAR ===== */
  .announcement-bar {
   background: var(--navy); color: rgba(255,255,255,0.9); text-align: center;
   padding: 10px 24px; font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  }
  .announcement-bar a { color: var(--gold); font-weight: 600; margin-inline-start: 8px; }
  .announcement-bar a:hover { text-decoration: underline; }

  /* ===== HEADER ===== */
  .header {
   position: sticky; top: 0; z-index: 1000; padding: 0;
   background: rgba(255,255,255,0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
   border-bottom: 1px solid rgba(229,231,240,0.5);
   transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  }
  .header.scrolled {
   background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
   box-shadow: 0 1px 3px rgba(31,26,81,0.06);
  }
  .header-inner {
   display: flex; align-items: center; justify-content: space-between;
   max-width: var(--container); margin: 0 auto; padding: 0 24px; height: 72px;
  }
  .header-logo { display: flex; align-items: center; gap: 12px; }
  .header-logo img { height: 48px; width: 48px; object-fit: contain; mix-blend-mode: multiply; }
  .header-logo-text { display: flex; align-items: center; }
  .header-logo-text strong { font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; line-height: 1.3; }

  /* NAV */
  .header-nav { display: flex; align-items: center; gap: 2px; }
  .header-nav > a, .nav-dropdown-trigger {
   display: inline-flex; align-items: center; gap: 5px;
   padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-body);
   border-radius: var(--radius-sm); transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
   position: relative; white-space: nowrap;
  }
  .header-nav > a:hover, .nav-dropdown-trigger:hover { color: var(--navy); background: var(--light-bg); }
  .header-nav > a.active { color: var(--navy); font-weight: 600; }
  .header-nav > a::after, .nav-dropdown-trigger::after {
   content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
   background: var(--gold); border-radius: 1px;
   transition: all 0.3s cubic-bezier(0.4,0,0.2,1); transform: translateX(-50%);
  }
  .header-nav > a:hover::after, .header-nav > a.active::after,
  .nav-dropdown:hover .nav-dropdown-trigger::after { width: 50%; }

  /* Dropdown base */
  .nav-dropdown { position: relative; }
  .nav-dropdown-trigger { cursor: pointer; }
  .nav-dropdown-trigger svg {
   width: 12px; height: 12px; opacity: 0.4;
   transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
  }
  .nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); opacity: 0.7; }

  /* Small dropdown (Company) */
  .nav-dropdown-menu {
   position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
   min-width: 240px; background: var(--white); border-radius: var(--radius-lg);
   box-shadow: 0 25px 60px -12px rgba(31,26,81,0.2), 0 0 0 1px rgba(31,26,81,0.05);
   padding: 8px; opacity: 0; visibility: hidden; pointer-events: none;
   transition: opacity 0.2s cubic-bezier(0.4,0,0.2,1), transform 0.2s cubic-bezier(0.4,0,0.2,1), visibility 0.2s;
  }
  .nav-dropdown-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
   opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu a {
   display: flex; align-items: center; gap: 8px;
   padding: 9px 14px; border-radius: var(--radius-sm); font-size: 13px; color: var(--text-body);
   transition: all 0.15s ease;
  }
  .nav-dropdown-menu a:hover { background: var(--light-bg); color: var(--navy); }
  .nav-dropdown-menu a strong { font-size: 13px; font-weight: 600; color: var(--text-heading); white-space: nowrap; }
  .nav-dropdown-menu a:hover strong { color: var(--navy); }
  .nav-dropdown-menu a span { font-size: 11px; color: var(--text-muted); margin-inline-start: 4px; }

  /* ===== MEGA MENU (Services - full width 4-column) ===== */
  .nav-dropdown-mega {
   position: fixed !important; top: 72px !important; left: 0 !important; right: 0 !important;
   transform: translateY(8px) !important; width: 100vw !important;
   max-width: 100% !important; min-width: 0 !important;
   background: var(--white);
   border-radius: 0 0 var(--radius-lg) var(--radius-lg);
   box-shadow: 0 20px 60px -12px rgba(31,26,81,0.15), 0 1px 0 rgba(31,26,81,0.05);
   padding: 0 !important;
   display: flex; flex-direction: column;
   opacity: 0; visibility: hidden; pointer-events: none;
   transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1), visibility 0.25s;
   max-height: 85vh; overflow-y: auto;
  }
  .nav-dropdown-mega::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
  .nav-dropdown:hover .nav-dropdown-mega {
   opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) !important;
  }
  .mega-inner {
   display: grid; grid-template-columns: repeat(4, 1fr);
   max-width: 1200px; margin: 0 auto; padding: 24px 32px 28px; gap: 0;
  }
  .mega-col {
   padding: 0 20px;
   border-inline-end: 1px solid var(--border-light);
  }
  .mega-col:first-child { padding-inline-start: 0; }
  .mega-col:last-child { border-inline-end: none; padding-inline-end: 0; }

  .dropdown-section-title {
   padding: 0 8px 8px; font-size: 10px; font-weight: 800; color: var(--navy);
   text-transform: uppercase; letter-spacing: 0.1em;
   border-bottom: 2px solid var(--gold); margin-bottom: 8px;
   display: flex; align-items: center; gap: 6px;
  }
  .dropdown-section-title:not(:first-child) { margin-top: 16px; }
  .dropdown-divider { height: 1px; background: var(--border-light); margin: 10px 8px; }

  .nav-dropdown-mega a {
   display: flex; align-items: baseline; gap: 0;
   padding: 5px 8px; border-radius: var(--radius-sm); font-size: 13px;
   color: var(--text-body); transition: all 0.15s ease; line-height: 1.4;
  }
  .nav-dropdown-mega a:hover { background: var(--light-bg); color: var(--navy); }
  .nav-dropdown-mega a strong {
   font-size: 12.5px; font-weight: 600; color: var(--text-heading);
   white-space: nowrap; min-width: 80px; flex-shrink: 0;
  }
  .nav-dropdown-mega a:hover strong { color: var(--navy); }
  .nav-dropdown-mega a span {
   font-size: 11px; color: var(--text-muted); margin-inline-start: 6px;
   white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  /* Gold dot on hover for ISO items */
  .mega-col:first-child a { position: relative; padding-inline-start: 16px; }
  .mega-col:first-child a::before {
   content: ''; position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
   width: 4px; height: 4px; border-radius: 50%;
   background: var(--gold); opacity: 0; transition: opacity 0.15s;
  }
  .mega-col:first-child a:hover::before { opacity: 1; }

  /* Bottom bar in mega menu */
  .mega-bottom {
   display: flex; align-items: center; justify-content: space-between;
   padding: 14px 32px; border-top: 1px solid var(--border-light);
   background: var(--light-bg);
   max-width: 100%;
  }
  .mega-bottom-left { font-size: 13px; color: var(--text-muted); }
  .mega-bottom-left strong { color: var(--navy); font-weight: 700; }
  .mega-bottom a {
   font-size: 13px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 4px;
  }
  .mega-bottom a:hover { color: var(--gold-dark); }

  @media (max-width: 1100px) {
   .mega-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
   .mega-col { border-inline-end: none; padding: 0; }
  }

  /* Header actions */
  .header-actions { display: flex; align-items: center; gap: 12px; }
  .lang-toggle {
   display: flex; align-items: center; gap: 0; border: 1px solid var(--border);
   border-radius: var(--radius-pill); overflow: hidden; font-size: 13px;
  }
  .lang-toggle button {
   padding: 6px 14px; font-size: 13px; font-weight: 500; color: var(--text-muted);
   transition: all var(--transition); background: transparent;
  }
  .lang-toggle button.active { background: var(--navy); color: var(--white); }
  .btn-quote {
   display: inline-flex; align-items: center; gap: 8px;
   padding: 10px 24px; background: var(--gold); color: var(--white); font-size: 14px;
   font-weight: 600; border-radius: var(--radius-sm); transition: all var(--transition);
   box-shadow: 0 2px 8px rgba(228,159,55,0.3);
   background-size: 200% auto;
   background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  }
  .btn-quote:hover { background-position: right center; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(228,159,55,0.4); }

  /* Mobile menu */
  .mobile-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
  .mobile-toggle span {
   display: block; width: 22px; height: 2px; background: var(--navy);
   transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
  }
  .mobile-toggle span::before, .mobile-toggle span::after {
   content: ''; position: absolute; width: 22px; height: 2px; background: var(--navy);
   transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); left: 0;
  }
  .mobile-toggle span::before { top: -7px; }
  .mobile-toggle span::after { top: 7px; }
  .mobile-toggle.active span { background: transparent; }
  .mobile-toggle.active span::before { top: 0; transform: rotate(45deg); }
  .mobile-toggle.active span::after { top: 0; transform: rotate(-45deg); }

  .mobile-menu {
   display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
   background: var(--white); z-index: 999; overflow-y: auto; padding: 24px;
   transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-menu.open { display: block; transform: translateX(0); animation: slideInRight 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  @keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .mobile-menu a {
   display: block; padding: 14px 0; font-size: 16px; font-weight: 500;
   color: var(--text-heading); border-bottom: 1px solid var(--border-light);
  }
  .mobile-menu .mobile-submenu { padding-inline-start: 16px; }
  .mobile-menu .mobile-submenu a { font-size: 14px; color: var(--text-body); font-weight: 400; }
  .mobile-menu .mobile-cta {
   display: block; margin-top: 20px; padding: 14px; text-align: center;
   background: var(--gold); color: var(--white); border-radius: var(--radius-sm);
   font-weight: 600; border-bottom: none;
  }

  @media (max-width: 1024px) {
   .header-nav, .header-actions .lang-toggle, .header-actions .btn-quote { display: none; }
   .mobile-toggle { display: flex; }
  }

  /* ===== HERO ===== */
  .hero {
   background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 40%, #1a1444 100%);
   padding: 100px 0 80px; position: relative; overflow: hidden;
  }
  .hero-grid-pattern {
   position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none;
   opacity: 0.04;
   background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.25) 1px, transparent 1px);
   background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
   background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
   animation: heroGridDrift 30s linear infinite;
  }
  @keyframes heroGridDrift {
   0% { transform: translate(0, 0); }
   100% { transform: translate(100px, 100px); }
  }
  .hero-noise {
   position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none;
   opacity: 0.03;
   background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
   background-repeat: repeat;
   background-size: 256px 256px;
  }
  .hero::before {
   content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px;
   background: radial-gradient(circle, rgba(228,159,55,0.08) 0%, transparent 70%);
   pointer-events: none;
  }
  .hero::after {
   content: ''; position: absolute; bottom: -30%; left: -10%; width: 600px; height: 600px;
   background: radial-gradient(circle, rgba(34,91,123,0.1) 0%, transparent 70%);
   pointer-events: none;
  }
  .hero-seal-watermark {
   position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
   width: 600px; height: 600px; opacity: 0.03; pointer-events: none;
  }
  .hero-inner {
   max-width: var(--container); margin: 0 auto; padding: 0 24px;
   display: flex; align-items: center; gap: 60px; position: relative; z-index: 1;
  }
  .hero-content { flex: 1; }
  .hero-badge {
   display: inline-flex; align-items: center; gap: 8px;
   background: rgba(228,159,55,0.12); border: 1px solid rgba(228,159,55,0.25);
   padding: 8px 20px; border-radius: var(--radius-pill); font-size: 13px;
   font-weight: 600; color: var(--gold-light); margin-bottom: 28px;
  }
  .hero-badge svg { width: 16px; height: 16px; }
  .hero h1 {
   font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--white);
   line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.03em;
  }
  .hero h1 .highlight {
   background: linear-gradient(135deg, var(--gold), var(--gold-light));
   -webkit-background-clip: text; -webkit-text-fill-color: transparent;
   background-clip: text;
  }
  .hero-subtitle {
   font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.7);
   max-width: 580px; margin-bottom: 36px;
  }
  .hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-cta-primary {
   display: inline-flex; align-items: center; gap: 8px;
   padding: 16px 32px; background-size: 200% auto;
   background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
   color: var(--white);
   font-size: 16px; font-weight: 600; border-radius: var(--radius-sm);
   transition: all var(--transition); box-shadow: 0 4px 16px rgba(228,159,55,0.35);
  }
  .hero-cta-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(228,159,55,0.4); }
  .hero-cta-secondary {
   display: inline-flex; align-items: center; gap: 8px;
   padding: 16px 32px; background: transparent; color: var(--white);
   font-size: 16px; font-weight: 600; border-radius: var(--radius-sm);
   border: 2px solid rgba(255,255,255,0.25); transition: all var(--transition);
  }
  .hero-cta-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
  .hero-trust {
   display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
   font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500;
  }
  .hero-trust span { display: flex; align-items: center; gap: 8px; }
  .hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.3); }
  .hero-visual {
   flex-shrink: 0; position: relative; display: flex; align-items: center; justify-content: center;
  }
  /* Hero Accreditation Card */
  .hero-card { position: relative; width: 320px; }
  .hero-card-glow {
   position: absolute; inset: -2px; border-radius: 22px;
   background: linear-gradient(135deg, var(--gold), rgba(228,159,55,0.3), var(--gold));
   background-size: 200% 200%; animation: cardGlow 4s ease-in-out infinite;
   filter: blur(1px);
  }
  @keyframes cardGlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
  .hero-card-inner {
   position: relative; background: rgba(255,255,255,0.07);
   backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
   border-radius: 20px; border: 1px solid rgba(255,255,255,0.12);
   padding: 32px 28px; text-align: center;
  }
  .hero-card-badge {
   font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
   color: var(--gold); margin-bottom: 20px; text-transform: uppercase;
  }
  .hero-card-logo {
   width: 80px; height: 80px; margin: 0 auto 16px;
   background: rgba(255,255,255,0.1); border-radius: 50%;
   display: flex; align-items: center; justify-content: center; padding: 12px;
   border: 2px solid rgba(228,159,55,0.3);
  }
  .hero-card-logo img { width: 100%; height: 100%; object-fit: contain; filter: brightness(1.2); }
  .hero-card-title { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: 0.02em; }
  .hero-card-subtitle { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; margin-top: 6px; }
  .hero-card-divider { width: 48px; height: 2px; background: var(--gold); margin: 18px auto; border-radius: 2px; }
  .hero-card-standard {
   font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
   padding: 6px 16px; background: rgba(255,255,255,0.06);
   border-radius: var(--radius-pill); display: inline-block; margin-bottom: 20px;
   border: 1px solid rgba(255,255,255,0.08);
  }
  .hero-card-stats {
   display: flex; gap: 0; margin-bottom: 20px;
   border-top: 1px solid rgba(255,255,255,0.08);
   border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero-stat-mini {
   flex: 1; padding: 14px 8px; text-align: center;
   border-inline-end: 1px solid rgba(255,255,255,0.08);
  }
  .hero-stat-mini:last-child { border-inline-end: none; }
  .hero-stat-mini strong { display: block; font-size: 20px; font-weight: 800; color: var(--gold); line-height: 1; }
  .hero-stat-mini span { font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; display: block; }
  .hero-card-status {
   display: inline-flex; align-items: center; gap: 8px;
   font-size: 13px; font-weight: 600; color: #34d399;
  }
  .hero-status-dot {
   width: 8px; height: 8px; border-radius: 50%; background: #34d399;
   animation: statusPulse 2s ease-in-out infinite;
  }
  @keyframes statusPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

  @media (max-width: 900px) {
   .hero { padding: 70px 0 60px; }
   .hero-inner { flex-direction: column; text-align: center; gap: 40px; }
   .hero h1 { font-size: clamp(32px, 7vw, 48px); }
   .hero-subtitle { margin-inline: auto; font-size: 16px; }
   .hero-ctas { justify-content: center; }
   .hero-trust { justify-content: center; }
   .hero-visual { order: -1; }
   .hero-card { width: 280px; margin: 0 auto; }
   .hero-seal-watermark { display: none; }
  }

  /* ===== STATS BAR ===== */
  .stats-bar {
   background: linear-gradient(135deg, var(--gold), var(--gold-dark));
   padding: 0; position: relative; z-index: 2;
  }
  .stats-grid {
   max-width: var(--container); margin: 0 auto; padding: 0 24px;
   display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
   padding: 32px 24px; text-align: center;
   border-inline-end: 1px solid rgba(255,255,255,0.2);
  }
  .stat-item:last-child { border-inline-end: none; }
  .stat-number { font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; }
  .stat-label { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); margin-top: 6px; }
  @media (max-width: 768px) {
   .stats-grid { grid-template-columns: repeat(2, 1fr); }
   .stat-item { padding: 24px 16px; }
   .stat-item:nth-child(2) { border-inline-end: none; }
   .stat-number { font-size: 32px; }
  }

  /* ===== SECTION SHARED ===== */
  .section { padding: 100px 0; position: relative; }
  .section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
  .section-badge {
   display: inline-flex; align-items: center; gap: 6px;
   background: rgba(31,26,81,0.05); color: var(--navy);
   padding: 6px 16px; border-radius: var(--radius-pill);
   font-size: 13px; font-weight: 600; margin-bottom: 16px;
  }
  .section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.03em; }
  .section-header p { font-size: 17px; color: var(--text-body); line-height: 1.7; }

  /* Section transition overlays */
  .section-fade-top::before {
   content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 80px;
   background: linear-gradient(to bottom, var(--white), transparent); pointer-events: none; z-index: 1;
  }
  .section-fade-bottom::after {
   content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
   background: linear-gradient(to top, var(--light-bg), transparent); pointer-events: none; z-index: 1;
  }
  .section-fade-top-light::before {
   content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 80px;
   background: linear-gradient(to bottom, var(--light-bg), transparent); pointer-events: none; z-index: 1;
  }
  .section-fade-bottom-white::after {
   content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
   background: linear-gradient(to top, var(--white), transparent); pointer-events: none; z-index: 1;
  }

  /* ===== WHAT WE DO ===== */
  .what-we-do { background: var(--white); }
  .wwd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .wwd-card {
   background: var(--card-bg); border: 1px solid var(--border-light);
   border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
  }
  .wwd-card::after {
   content: ''; position: absolute; top: 0; left: 50%; right: 50%; height: 3px;
   background: linear-gradient(90deg, var(--gold), var(--gold-light));
   transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .wwd-card:hover { border-color: rgba(31,26,81,0.15); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
  .wwd-card:hover::after { left: 0; right: 0; }
  .wwd-card .wwd-icon {
   width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
   background: linear-gradient(135deg, var(--navy), var(--teal));
   display: flex; align-items: center; justify-content: center;
  }
  .wwd-card .wwd-icon svg { width: 28px; height: 28px; color: var(--white); }
  .wwd-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
  .wwd-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; }
  @media (max-width: 1024px) { .wwd-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .wwd-grid { grid-template-columns: 1fr; } }

  /* ===== SERVICES GRID ===== */
  .services { background: var(--light-bg); }
  .filter-tabs {
   display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
   margin-bottom: 40px;
  }
  .filter-tab {
   padding: 8px 20px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
   color: var(--text-body); border: 1px solid var(--border); background: var(--white);
   transition: all var(--transition); cursor: pointer;
  }
  .filter-tab:hover { border-color: var(--navy); color: var(--navy); }
  .filter-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
  .services-grid {
   display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .service-card {
   background: var(--card-bg); border: 1px solid var(--border-light);
   border-radius: var(--radius-lg); padding: 28px 24px;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
  }
  .service-card::after {
   content: ''; position: absolute; top: 0; left: 50%; right: 50%; height: 3px;
   background: linear-gradient(90deg, var(--navy), var(--teal));
   transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card:hover {
   border-color: rgba(31,26,81,0.15); box-shadow: var(--shadow-lg);
   transform: translateY(-4px) scale(1.01);
  }
  .service-card:hover::after { left: 0; right: 0; }
  .service-card.hidden { display: none; }
  .service-card .card-icon {
   width: 48px; height: 48px; border-radius: var(--radius); margin-bottom: 16px;
   display: flex; align-items: center; justify-content: center;
   background: var(--light-bg);
  }
  .service-card .card-icon svg { width: 24px; height: 24px; color: var(--navy); }
  .service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text-heading); }
  .service-card .card-std { font-size: 12px; font-weight: 600; color: var(--teal); margin-bottom: 10px; }
  .service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
  .service-card .card-link {
   display: inline-flex; align-items: center; gap: 4px;
   font-size: 13px; font-weight: 600; color: var(--navy);
   transition: color var(--transition), gap var(--transition);
  }
  .service-card .card-link:hover { color: var(--gold); gap: 8px; }
  @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) {
   .services-grid { grid-template-columns: 1fr; }
   .service-card {
    display: flex; flex-direction: row; gap: 16px; align-items: flex-start;
   }
   .service-card .card-icon { margin-bottom: 0; flex-shrink: 0; }
  }

  /* ===== HOW WE WORK ===== */
  .process { background: var(--white); }
  .process-steps {
   display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
   position: relative; max-width: 900px; margin: 0 auto;
  }
  .process-line-track {
   position: absolute; top: 56px; left: 16.66%; right: 16.66%;
   height: 3px; background: var(--border); border-radius: 2px; overflow: hidden;
  }
  .process-line-fill {
   height: 100%; width: 0%; border-radius: 2px;
   background: linear-gradient(90deg, var(--gold), var(--gold-light));
   transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .process-line-fill.animated { width: 100%; }
  .process-step { text-align: center; position: relative; padding: 0 20px; }
  .process-step .step-num {
   width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 20px;
   background: linear-gradient(135deg, var(--navy), var(--teal));
   display: flex; align-items: center; justify-content: center; flex-direction: column;
   position: relative; z-index: 1; border: 4px solid var(--white);
   box-shadow: var(--shadow-lg);
  }
  .process-step .step-num svg { width: 32px; height: 32px; color: var(--white); }
  .process-step .step-num .step-number {
   font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); margin-top: 2px;
  }
  @keyframes stepPulse {
   0%, 100% { box-shadow: 0 10px 15px -3px rgba(31,26,81,0.08), 0 0 0 0 rgba(31,26,81,0.1); }
   50% { box-shadow: 0 10px 15px -3px rgba(31,26,81,0.08), 0 0 0 8px rgba(31,26,81,0); }
  }
  .process-step .step-num.pulse-active { animation: stepPulse 3s ease-in-out infinite; }
  .process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
  .process-step p { font-size: 14px; color: var(--text-body); line-height: 1.6; }
  .process-arrow {
   position: absolute; top: 52px; right: -16px; width: 32px; height: 32px;
   color: var(--gold); z-index: 2;
  }
  @media (max-width: 700px) {
   .process-steps { grid-template-columns: 1fr; gap: 40px; }
   .process-line-track { display: none; }
   .process-arrow { display: none; }
  }

  /* ===== WHO WE ARE ===== */
  .who-we-are { background: var(--light-bg); }
  .wwa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .wwa-content h2 { font-size: clamp(28px, 4vw, 36px); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.03em; }
  .wwa-content p { font-size: 16px; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }
  .wwa-content .wwa-highlight {
   background: var(--white); border-left: 3px solid var(--gold); padding: 16px 20px;
   border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-top: 24px;
   font-size: 15px; font-style: italic; color: var(--text-heading);
  }
  html[lang="ar"] .wwa-content .wwa-highlight { border-left: none; border-right: 3px solid var(--gold); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
  .principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .principle-card {
   background: var(--white); border-radius: var(--radius); padding: 20px;
   border: 1px solid var(--border-light); transition: all var(--transition);
  }
  .principle-card:hover { border-color: rgba(31,26,81,0.12); box-shadow: var(--shadow-md); transform: translateY(-4px) scale(1.01); }
  .principle-card .p-icon {
   width: 40px; height: 40px; border-radius: var(--radius-sm);
   background: linear-gradient(135deg, rgba(31,26,81,0.06), rgba(34,91,123,0.06));
   display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
  }
  .principle-card .p-icon svg { width: 20px; height: 20px; color: var(--navy); }
  .principle-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
  .principle-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
  @media (max-width: 900px) {
   .wwa-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ===== WHY CHOOSE ===== */
  .why-choose { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .why-card {
   text-align: center; padding: 40px 24px; border-radius: var(--radius-lg);
   border: 1px solid var(--border-light); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative; overflow: hidden;
  }
  .why-card::after {
   content: ''; position: absolute; top: 0; left: 50%; right: 50%; height: 3px;
   background: linear-gradient(90deg, var(--gold), var(--gold-light));
   transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .why-card:hover { border-color: rgba(31,26,81,0.12); box-shadow: var(--shadow-lg); transform: translateY(-4px) scale(1.01); }
  .why-card:hover::after { left: 0; right: 0; }
  .why-card .why-icon {
   width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
   background: linear-gradient(135deg, var(--navy), var(--teal));
   display: flex; align-items: center; justify-content: center;
  }
  .why-card .why-icon svg { width: 28px; height: 28px; color: var(--white); }
  .why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
  .why-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; }
  @media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

  /* ===== INDUSTRIES ===== */
  .industries { background: var(--white); }
  .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .industry-card {
   background: var(--light-bg); border-radius: var(--radius-lg); padding: 32px 24px;
   text-align: center; border: 1px solid var(--border-light); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative; overflow: hidden;
  }
  .industry-card::after {
   content: ''; position: absolute; top: 0; left: 50%; right: 50%; height: 3px;
   background: linear-gradient(90deg, var(--teal), var(--teal-light));
   transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .industry-card:hover { border-color: rgba(31,26,81,0.12); box-shadow: var(--shadow-md); transform: translateY(-4px) scale(1.01); }
  .industry-card:hover::after { left: 0; right: 0; }
  .industry-card .ind-icon {
   width: 56px; height: 56px; border-radius: var(--radius); margin: 0 auto 16px;
   background: var(--white); display: flex; align-items: center; justify-content: center;
  }
  .industry-card .ind-icon svg { width: 26px; height: 26px; color: var(--teal); }
  .industry-card h3 { font-size: 15px; font-weight: 600; color: var(--text-heading); }
  @media (max-width: 1024px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px) { .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

  /* ===== TRUST/STATS ===== */
  .trust-section { background: var(--light-bg); }
  .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .trust-card {
   background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
   border: 1px solid var(--border-light); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative; overflow: hidden;
  }
  .trust-card::before {
   content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
   background: linear-gradient(90deg, var(--gold), var(--gold-light)); opacity: 0;
   transition: opacity var(--transition);
  }
  .trust-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
  .trust-card:hover::before { opacity: 1; }
  .trust-card .trust-quote-icon {
   width: 40px; height: 40px; margin-bottom: 16px; color: var(--gold); opacity: 0.5;
  }
  .trust-card blockquote {
   font-size: 15px; line-height: 1.7; color: var(--text-heading); font-weight: 500;
   margin-bottom: 16px; font-style: italic;
  }
  .trust-card .trust-source {
   font-size: 13px; color: var(--text-muted); font-weight: 600;
   padding-top: 12px; border-top: 1px solid var(--border-light);
  }
  .trust-disclaimer {
   text-align: center; margin-top: 24px; font-size: 12px; color: var(--text-muted);
   font-style: italic;
  }
  @media (max-width: 768px) { .trust-grid { grid-template-columns: 1fr; } }

  /* ===== PARTNERS ===== */
  .partners-section {
   background: linear-gradient(135deg, var(--navy), var(--navy-dark));
   color: var(--white); position: relative; overflow: hidden;
  }
  .partners-section::before {
   content: ''; position: absolute; top: 0; right: 0; width: 400px; height: 400px;
   background: radial-gradient(circle, rgba(228,159,55,0.08) 0%, transparent 70%);
   pointer-events: none;
  }
  .partners-inner { position: relative; z-index: 1; }
  .partners-header { text-align: center; margin-bottom: 48px; }
  .partners-header .section-badge { background: rgba(228,159,55,0.15); color: var(--gold-light); }
  .partners-header h2 { color: var(--white); font-size: clamp(28px, 4vw, 36px); margin-bottom: 16px; }
  .partners-header p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; line-height: 1.7; }
  .partner-card {
   max-width: 800px; margin: 0 auto;
   background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
   border-radius: var(--radius-xl); padding: 48px; display: flex; align-items: center; gap: 40px;
   transition: all var(--transition);
  }
  .partner-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(228,159,55,0.25); }
  .partner-logo-wrap {
   flex-shrink: 0; width: 120px; height: 120px;
   background: rgba(255,255,255,0.1); border-radius: var(--radius-lg);
   display: flex; align-items: center; justify-content: center;
   font-size: 36px; font-weight: 800; color: var(--gold);
   border: 2px solid rgba(228,159,55,0.2);
  }
  .partner-info { flex: 1; }
  .partner-info h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
  .partner-info .partner-role { font-size: 14px; color: var(--gold-light); font-weight: 600; margin-bottom: 16px; }
  .partner-info p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
  .partner-products { display: flex; flex-wrap: wrap; gap: 8px; }
  .partner-products span {
   padding: 6px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
   border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7);
  }
  @media (max-width: 768px) {
   .partner-card { flex-direction: column; text-align: center; padding: 32px 24px; gap: 24px; }
   .partner-products { justify-content: center; }
  }

  /* ===== CLIENT LOGOS ===== */
  .clients { background: var(--navy-dark); padding: 80px 0; overflow: hidden; }
  .clients-header { text-align: center; margin-bottom: 40px; }
  .clients-header h2 { font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.85); }
  .marquee-wrapper { overflow: hidden; position: relative; }
  .marquee-wrapper::before, .marquee-wrapper::after {
   content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
  }
  .marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--navy-dark), transparent); }
  .marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--navy-dark), transparent); }
  .marquee-track {
   display: flex; gap: 40px; width: max-content;
   animation: marqueeScroll 25s linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marqueeScroll {
   0% { transform: translateX(0); }
   100% { transform: translateX(-50%); }
  }
  .client-logo-box {
   width: 170px; height: 85px; background: var(--navy); border: 1px solid rgba(255,255,255,0.08);
   border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
   padding: 14px 22px; flex-shrink: 0; transition: all var(--transition);
  }
  .client-logo-box:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(228,159,55,0.15); }
  .client-logo-box img {
   max-width: 100%; max-height: 100%; object-fit: contain;
   filter: brightness(1.1) opacity(0.8);
   transition: filter var(--transition);
  }
  .client-logo-box:hover img { filter: brightness(1.2) opacity(1); }

  /* ===== CALENDLY SECTION ===== */
  .calendly-section {
   background: var(--white); padding: 80px 0; text-align: center;
  }
  .calendly-section .section-header { margin-bottom: 32px; }
  .calendly-card {
   max-width: 640px; margin: 0 auto; background: var(--light-bg); border-radius: var(--radius-lg);
   border: 1px solid var(--border-light); padding: 48px 40px;
   box-shadow: var(--shadow-md); transition: all var(--transition);
  }
  .calendly-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-2px); }
  .calendly-card .cal-icon {
   width: 72px; height: 72px; margin: 0 auto 24px; border-radius: 50%;
   background: linear-gradient(135deg, var(--navy), var(--teal));
   display: flex; align-items: center; justify-content: center;
  }
  .calendly-card .cal-icon svg { width: 32px; height: 32px; color: var(--white); }
  .calendly-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
  .calendly-card p { font-size: 15px; color: var(--text-body); margin-bottom: 28px; line-height: 1.7; }
  .calendly-btn {
   display: inline-flex; align-items: center; gap: 8px;
   padding: 16px 36px; background-size: 200% auto;
   background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
   color: var(--white); font-size: 16px; font-weight: 700; border-radius: var(--radius-sm);
   transition: all var(--transition); box-shadow: 0 4px 16px rgba(228,159,55,0.35); cursor: pointer;
  }
  .calendly-btn:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(228,159,55,0.4); }

  /* ===== CTA BANNER ===== */
  .cta-banner {
   background: linear-gradient(135deg, var(--navy), var(--navy-dark));
   padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  }
  .cta-banner::before {
   content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
   opacity: 0.03; pointer-events: none;
   background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
   background-size: 60px 60px;
  }
  .cta-banner h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; }
  .cta-banner p { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 32px; max-width: 560px; margin-inline: auto; position: relative; line-height: 1.7; }
  .cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
  .cta-banner .btn-cta {
   display: inline-flex; align-items: center; gap: 8px;
   padding: 18px 40px; background-size: 200% auto;
   background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
   color: var(--white);
   font-size: 16px; font-weight: 700; border-radius: var(--radius-sm);
   transition: all var(--transition); box-shadow: 0 4px 20px rgba(228,159,55,0.35);
   position: relative;
  }
  .cta-banner .btn-cta:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(228,159,55,0.45); }
  .cta-banner .btn-cta-ghost {
   display: inline-flex; align-items: center; gap: 8px;
   padding: 18px 40px; background: transparent; color: var(--white);
   font-size: 16px; font-weight: 700; border-radius: var(--radius-sm);
   border: 2px solid rgba(255,255,255,0.25); transition: all var(--transition);
   position: relative;
  }
  .cta-banner .btn-cta-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

  /* ===== FOOTER ===== */
  .footer { background: var(--footer-bg); color: var(--footer-text); padding: 64px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; color: var(--footer-text); }
  .footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; }
  .footer-brand .footer-logo img { width: 44px; height: 44px; object-fit: contain; filter: brightness(10); }
  .footer-brand .footer-logo-text { display: flex; flex-direction: column; }
  .footer-brand .footer-logo-text strong { font-size: 20px; font-weight: 800; color: var(--white); line-height: 1.2; }
  .footer-brand .footer-logo-text span { font-size: 11.5px; color: var(--footer-text); font-weight: 500; line-height: 1.3; }
  .footer-socials { display: flex; gap: 12px; margin-top: 20px; }
  .footer-socials a {
   width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06);
   display: flex; align-items: center; justify-content: center;
   transition: all var(--transition);
  }
  .footer-socials a:hover { background: var(--gold); }
  .footer-socials a svg { width: 16px; height: 16px; color: var(--footer-text); }
  .footer-socials a:hover svg { color: var(--white); }
  .footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
  .footer-col a { display: block; font-size: 14px; color: var(--footer-text); padding: 5px 0; transition: color var(--transition); }
  .footer-col a:hover { color: var(--gold); }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; }
  .footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
  .footer-bottom {
   display: flex; align-items: center; justify-content: space-between;
   padding: 24px 0; font-size: 13px; flex-wrap: wrap; gap: 12px;
  }
  .footer-legal { display: flex; gap: 24px; align-items: center; }
  .footer-legal a:hover { color: var(--gold); }
  .back-to-top-footer {
   display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600;
   font-size: 13px; cursor: pointer; transition: all var(--transition);
  }
  .back-to-top-footer:hover { color: var(--gold-light); }
  .back-to-top-footer svg { width: 14px; height: 14px; }
  @media (max-width: 1024px) {
   .footer-grid { grid-template-columns: repeat(2, 1fr); }
   .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 600px) {
   .footer-grid { grid-template-columns: 1fr; }
   .footer-bottom { flex-direction: column; text-align: center; }
  }

  /* ===== WHATSAPP FLOAT ===== */
  .whatsapp-float {
   position: fixed; bottom: 28px; right: 28px; z-index: 9999;
   width: 56px; height: 56px; border-radius: 50%;
   background: #25D366; display: flex; align-items: center; justify-content: center;
   box-shadow: 0 4px 16px rgba(37,211,102,0.35);
   transition: all var(--transition); animation: bounceIn 0.5s ease 1s both;
  }
  html[lang="ar"] .whatsapp-float { right: auto; left: 28px; }
  .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  .whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }

  /* ===== FLOATING CTA BAR ===== */
  .floating-cta {
   position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
   background: var(--navy); color: var(--white); padding: 14px 24px;
   display: flex; align-items: center; justify-content: center; gap: 20px;
   box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
   transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .floating-cta.visible { transform: translateY(0); }
  .floating-cta.dismissed { display: none; }
  .floating-cta span { font-size: 14px; font-weight: 500; }
  .floating-cta-btn {
   display: inline-flex; align-items: center; gap: 6px;
   padding: 10px 24px; background: var(--gold); color: var(--white);
   font-size: 14px; font-weight: 700; border-radius: var(--radius-sm);
   transition: all var(--transition); white-space: nowrap;
  }
  .floating-cta-btn:hover { background: var(--gold-dark); }
  .floating-cta-close {
   position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
   width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
   color: rgba(255,255,255,0.6); font-size: 18px; cursor: pointer;
   border-radius: 50%; transition: all var(--transition);
  }
  .floating-cta-close:hover { color: var(--white); background: rgba(255,255,255,0.1); }
  @media (max-width: 600px) {
   .floating-cta { flex-direction: column; gap: 10px; padding: 12px 16px; padding-right: 44px; }
   .floating-cta span { font-size: 13px; text-align: center; }
   .whatsapp-float { bottom: 90px; }
  }

  /* ===== BACK TO TOP BUTTON ===== */
  .back-to-top {
   position: fixed; bottom: 96px; right: 28px; z-index: 9998;
   width: 48px; height: 48px; border-radius: 50%;
   background: var(--gold); color: var(--white);
   display: flex; align-items: center; justify-content: center;
   box-shadow: 0 4px 16px rgba(228,159,55,0.35);
   opacity: 0; visibility: hidden; transform: translateY(20px);
   transition: all var(--transition); cursor: pointer;
  }
  .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .back-to-top:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(228,159,55,0.45); }
  .back-to-top svg { width: 22px; height: 22px; }
  html[lang="ar"] .back-to-top { right: auto; left: 28px; }
  @media (max-width: 600px) {
   .back-to-top { bottom: 150px; }
  }

  /* ===== COOKIE CONSENT ===== */
  .cookie-banner {
   position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
   background: var(--white); border-top: 1px solid var(--border);
   padding: 20px 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
   display: none; animation: slideUp 0.3s ease;
  }
  .cookie-banner.show { display: block; }
  .cookie-inner {
   max-width: var(--container); margin: 0 auto;
   display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  }
  .cookie-text { flex: 1; font-size: 14px; color: var(--text-body); }
  .cookie-text a { color: var(--navy); font-weight: 600; text-decoration: underline; }
  .cookie-actions { display: flex; gap: 12px; }
  .cookie-accept {
   padding: 10px 24px; background: var(--navy); color: var(--white);
   border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
   transition: background var(--transition);
  }
  .cookie-accept:hover { background: var(--navy-light); }
  .cookie-decline {
   padding: 10px 24px; background: transparent; color: var(--text-body);
   border: 1px solid var(--border); border-radius: var(--radius-sm);
   font-size: 14px; font-weight: 500; transition: all var(--transition);
  }
  .cookie-decline:hover { border-color: var(--navy); color: var(--navy); }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
  @keyframes bounceIn {
   0% { opacity: 0; transform: scale(0.3); }
   50% { transform: scale(1.05); }
   70% { transform: scale(0.9); }
   100% { opacity: 1; transform: scale(1); }
  }
  .fade-up {
   opacity: 0; transform: translateY(30px);
   transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ===== UTILITY ===== */
  .sr-only {
   position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
   overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

/* ==================== NEW CLASS ALIASES ==================== */
/* TQS External Styles - Aliases for converted pages */
/* This maps new class names used by converted pages to the old design */

/* New class name aliases — point to same styles as old names */
.topbar{background:var(--navy);color:rgba(255,255,255,0.9);text-align:center;padding:10px 24px;font-size:13px;font-weight:500;letter-spacing:0.02em}
.topbar a{color:var(--gold);font-weight:600;margin-inline-start:8px}.topbar a:hover{text-decoration:underline}
.logo{display:flex;align-items:center;gap:12px}
.logo img{height:46px;width:46px;object-fit:contain;mix-blend-mode:multiply}
.logo-text{font-size:18px;font-weight:700;color:var(--navy);letter-spacing:-0.02em}
.logo-text strong{font-size:15px;font-weight:700;color:var(--navy);letter-spacing:-0.01em;line-height:1.3}
.logo-text small,.logo-text span{display:block;font-size:11px;color:var(--text-muted);font-weight:500;letter-spacing:0}
.nav{display:flex;align-items:center;gap:2px}
.nav>a,.nav-trigger{display:inline-flex;align-items:center;gap:5px;padding:8px 14px;font-size:14px;font-weight:500;color:var(--text-body);border-radius:var(--radius-sm);transition:all 0.2s cubic-bezier(0.4,0,0.2,1);position:relative;white-space:nowrap;cursor:pointer}
.nav>a:hover,.nav-trigger:hover{color:var(--navy);background:var(--light-bg)}
.nav>a.active{color:var(--navy);font-weight:600}
.nav>a::after,.nav-trigger::after{content:'';position:absolute;bottom:2px;left:50%;width:0;height:2px;background:var(--gold);border-radius:1px;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);transform:translateX(-50%)}
.nav>a:hover::after,.nav>a.active::after,.nav-drop.open .nav-trigger::after{width:50%}
.nav-drop{position:relative}
.nav-trigger svg{width:12px;height:12px;opacity:0.4;transition:transform 0.3s cubic-bezier(0.4,0,0.2,1),opacity 0.2s}
/* hover chevron rotation removed — handled via .nav-drop.open below */
.dropdown{position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%) translateY(-8px);min-width:240px;background:var(--white);border-radius:var(--radius-lg);box-shadow:0 25px 60px -12px rgba(31,26,81,0.2),0 0 0 1px rgba(31,26,81,0.05);padding:8px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity 0.2s cubic-bezier(0.4,0,0.2,1),transform 0.2s cubic-bezier(0.4,0,0.2,1),visibility 0.2s}
.dropdown::before{content:'';position:absolute;top:-14px;left:0;right:0;height:14px}
/* hover-open removed — dropdowns open via .open class only (click) */
.dropdown a{display:flex;align-items:center;gap:8px;padding:9px 14px;border-radius:var(--radius-sm);font-size:13px;color:var(--text-body);transition:all 0.15s ease}
.dropdown a:hover{background:var(--light-bg);color:var(--navy)}
.dropdown a strong{font-size:13px;font-weight:600;color:var(--text-heading);white-space:nowrap}
.dropdown a:hover strong{color:var(--navy)}
.dropdown a span{font-size:11px;color:var(--text-muted);margin-inline-start:4px}
.mega{position:fixed!important;top:var(--header-bottom,72px)!important;left:0!important;right:0!important;transform:translateY(-8px)!important;width:100vw!important;max-width:100%!important;min-width:0!important;background:var(--white);border-radius:0 0 var(--radius-lg) var(--radius-lg);box-shadow:0 20px 60px -12px rgba(31,26,81,0.15),0 1px 0 rgba(31,26,81,0.05);padding:0!important;display:flex;flex-direction:column;opacity:0;visibility:hidden;pointer-events:none;transition:opacity 0.25s cubic-bezier(0.4,0,0.2,1),transform 0.25s cubic-bezier(0.4,0,0.2,1),visibility 0.25s;max-height:85vh;overflow-y:auto}
.mega::before{content:'';position:absolute;top:-16px;left:0;right:0;height:16px}
.nav-drop.open>.mega,.nav-drop.open>.dropdown.mega{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)!important}
.nav-drop.open>.dropdown{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.nav-drop.open .nav-trigger svg{transform:rotate(180deg);opacity:0.7}
.nav-drop.open .nav-trigger::after{width:50%}
.mega-grid,.mega-inner{display:grid;grid-template-columns:repeat(4,1fr);max-width:1200px;margin:0 auto;padding:24px 32px 28px;gap:0}
.mega-label{padding:0 8px 8px;font-size:10px;font-weight:800;color:var(--navy);text-transform:uppercase;letter-spacing:0.1em;border-bottom:2px solid var(--gold);margin-bottom:8px;display:flex;align-items:center;gap:6px}
.mega-label:not(:first-child){margin-top:16px}
.mega a{display:flex;align-items:baseline;gap:0;padding:5px 8px;border-radius:var(--radius-sm);font-size:13px;color:var(--text-body);transition:all 0.15s ease;line-height:1.4}
.mega a:hover{background:var(--light-bg);color:var(--navy)}
.mega a strong{font-size:12.5px;font-weight:600;color:var(--text-heading);white-space:nowrap;min-width:80px;flex-shrink:0}
.mega a:hover strong{color:var(--navy)}
.mega a span{font-size:11px;color:var(--text-muted);margin-inline-start:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lang-switch{display:flex;border:1px solid var(--border);border-radius:var(--radius-pill);overflow:hidden;font-size:13px}
.lang-switch button{padding:6px 14px;font-size:13px;font-weight:500;color:var(--text-muted);transition:all var(--transition);background:transparent}
.lang-switch button.active{background:var(--navy);color:var(--white)}
.btn.btn--primary{display:inline-flex;align-items:center;gap:8px;padding:10px 24px;background:var(--gold);color:var(--white);font-size:14px;font-weight:600;border-radius:var(--radius-sm);transition:all var(--transition);box-shadow:0 2px 8px rgba(228,159,55,0.3);border:none;cursor:pointer;text-decoration:none}
.btn.btn--primary:hover{background:var(--gold-dark);transform:translateY(-1px);box-shadow:0 4px 12px rgba(228,159,55,0.4)}
.btn.btn--primary.btn--lg{padding:18px 40px;font-size:16px;font-weight:700;box-shadow:0 4px 20px rgba(228,159,55,0.35)}
.btn.btn--primary.btn--lg:hover{box-shadow:0 8px 28px rgba(228,159,55,0.45);transform:translateY(-2px)}
.btn.btn--outline{display:inline-flex;align-items:center;gap:8px;padding:10px 24px;background:transparent;color:var(--text-body);font-size:14px;font-weight:500;border:1px solid var(--border);border-radius:var(--radius-sm);transition:all var(--transition);cursor:pointer;text-decoration:none}
.btn.btn--outline:hover{border-color:var(--navy);color:var(--navy)}

/* Hero aliases */
.hero{background:linear-gradient(135deg,var(--navy) 0%,var(--navy-dark) 40%,#1a1444 100%);padding:60px 0 50px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;right:-20%;width:800px;height:800px;background:radial-gradient(circle,rgba(228,159,55,0.08) 0%,transparent 70%);pointer-events:none}
.hero .container{position:relative;z-index:1}
.hero .breadcrumb{font-size:14px;color:rgba(255,255,255,0.5);margin-bottom:16px}
.hero .breadcrumb a{color:rgba(255,255,255,0.7);transition:color var(--transition)}.hero .breadcrumb a:hover{color:var(--gold)}
.hero-label{display:inline-flex;align-items:center;gap:8px;background:rgba(228,159,55,0.12);border:1px solid rgba(228,159,55,0.25);padding:8px 20px;border-radius:var(--radius-pill);font-size:13px;font-weight:600;color:var(--gold-light);margin-bottom:20px}
.hero h1{font-size:clamp(32px,5vw,48px);font-weight:800;color:var(--white);line-height:1.1;margin-bottom:16px;letter-spacing:-0.03em}
.hero h1 em,.hero h1 .highlight{font-style:normal;background:linear-gradient(135deg,var(--gold),var(--gold-light));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero .hero-sub,.hero-sub{font-size:17px;color:rgba(255,255,255,0.7);max-width:600px;line-height:1.7}
.hero--home{padding:80px 0 70px}
.hero-actions{display:flex;gap:12px;margin-top:32px;flex-wrap:wrap}

/* Section aliases */
.section--alt{background:var(--light-bg)}
.section-head{text-align:center;max-width:640px;margin:0 auto 48px}
.section-head h2{font-size:clamp(26px,4vw,36px);font-weight:800;margin-bottom:16px;letter-spacing:-0.02em}
.section-head h5{display:inline-flex;align-items:center;gap:6px;background:rgba(31,26,81,0.05);color:var(--navy);padding:6px 16px;border-radius:var(--radius-pill);font-size:13px;font-weight:600;margin-bottom:16px}
.section-head p{font-size:16px;color:var(--text-body);line-height:1.7}

/* Grid aliases for converted pages */
.grid{display:grid;gap:24px}
.grid--2{grid-template-columns:repeat(2,1fr)}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--4{grid-template-columns:repeat(4,1fr)}
.grid--2-1{grid-template-columns:1.2fr 0.8fr}
@media(max-width:900px){.grid--2,.grid--3,.grid--4,.grid--2-1{grid-template-columns:1fr}}

/* Facts sidebar alias */
.facts{background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:32px;box-shadow:var(--shadow-md)}
.facts h3{font-size:18px;font-weight:700;margin-bottom:20px;color:var(--text-heading)}
.fact-row{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid var(--border-light);font-size:14px}
.fact-row:last-child{border-bottom:none}

/* Benefit alias */
.benefit{display:flex;align-items:flex-start;gap:12px;background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius);padding:20px;transition:all var(--transition)}
.benefit:hover{border-color:rgba(31,26,81,0.15);box-shadow:var(--shadow-md)}
.benefit-dot{width:36px;height:36px;border-radius:var(--radius-sm);background:rgba(34,91,123,0.08);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.benefit-dot svg{width:18px;height:18px;color:var(--teal)}
.benefit p{font-size:14px;line-height:1.6;color:var(--text-body)}

/* Card alias */
.card{text-align:center;padding:32px 20px;background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);transition:all var(--transition)}
.card:hover{border-color:rgba(31,26,81,0.12);box-shadow:var(--shadow-md);transform:translateY(-2px)}

/* Steps alias */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:0;position:relative;max-width:900px;margin:0 auto}
.steps::before{content:'';position:absolute;top:44px;left:16.66%;right:16.66%;height:2px;background:var(--border)}
.step{text-align:center;position:relative;padding:0 20px}
.step .step-num{width:88px;height:88px;border-radius:50%;margin:0 auto 20px;background:linear-gradient(135deg,var(--navy),var(--teal));display:flex;align-items:center;justify-content:center;font-size:32px;font-weight:800;color:var(--white);position:relative;z-index:1;border:4px solid var(--white);box-shadow:var(--shadow-lg)}
.step h3{font-size:17px;font-weight:700;margin-bottom:8px}
.step p{font-size:14px;color:var(--text-body);line-height:1.6}
@media(max-width:700px){.steps{grid-template-columns:1fr;gap:40px}.steps::before{display:none}}

/* CTA alias */
.cta{background:linear-gradient(135deg,var(--navy),var(--navy-dark));padding:80px 0;text-align:center}
.cta h2{font-size:clamp(26px,4vw,36px);font-weight:800;color:var(--white);margin-bottom:16px}
.cta p{font-size:17px;color:rgba(255,255,255,0.65);margin-bottom:32px;max-width:500px;margin-inline:auto}

/* WhatsApp alias */
.wa-float{position:fixed;bottom:28px;right:28px;z-index:9999;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,0.35);transition:all var(--transition);animation:bounceIn 0.5s ease 1s both}
.wa-float:hover{transform:scale(1.1);box-shadow:0 6px 24px rgba(37,211,102,0.45)}.wa-float svg{width:28px;height:28px;color:var(--white)}

/* Cookie alias */
.cookie{position:fixed;bottom:0;left:0;right:0;z-index:10000;background:var(--white);border-top:1px solid var(--border);padding:20px 24px;box-shadow:0 -4px 20px rgba(0,0,0,0.08);display:none;animation:slideUp 0.3s ease}
.cookie.show{display:block}

/* Reveal alias for fade-up */
.reveal{opacity:0;transform:translateY(30px);transition:opacity 0.6s ease,transform 0.6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-d1{transition-delay:0.1s}.reveal-d2{transition-delay:0.2s}.reveal-d3{transition-delay:0.3s}
.reveal-d4{transition-delay:0.4s}.reveal-d5{transition-delay:0.5s}.reveal-d6{transition-delay:0.6s}

/* Animations */
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes slideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
@keyframes bounceIn{0%{opacity:0;transform:scale(0.3)}50%{transform:scale(1.05)}70%{transform:scale(0.9)}100%{opacity:1;transform:scale(1)}}

/* Responsive for nav aliases */
@media(max-width:1024px){.nav,.header-actions .lang-switch,.header-actions .btn{display:none}.mobile-toggle{display:flex}}
@media(max-width:1100px){.mega-grid,.mega-inner{grid-template-columns:repeat(2,1fr);gap:16px}.mega-col{border-inline-end:none;padding:0}}


/* ==================== HOME HERO — PREMIUM IMMERSIVE ==================== */

.hero--home{
 padding:0;position:relative;overflow:hidden;
 min-height:80vh;
 display:flex;flex-direction:column;
 background:var(--navy-dark);
 margin-bottom:0;
}
.hero--home::before,.hero--home::after{display:none}
.hero--home .hero-grid-pattern,
.hero--home .hero-noise,
.hero--home .hero-glow,
.hero--home .hero-bg-shapes,
.hero--home .hero-inner{display:none}

@keyframes hIn{to{opacity:1;transform:none}}

/* full-bleed background image */
.hero-bg{
 position:absolute;inset:0;z-index:0;overflow:hidden;
}
.hero-bg img{
 width:100%;height:100%;object-fit:cover;
 transform:scale(1.05);
 animation:hZoom 12s ease-out forwards;
}
@keyframes hZoom{to{transform:scale(1)}}

.hero-overlay{
 position:absolute;inset:0;z-index:1;
 background:
  linear-gradient(110deg,rgba(15,12,40,.92) 0%,rgba(15,12,40,.78) 38%,rgba(15,12,40,.4) 70%,rgba(15,12,40,.25) 100%),
  linear-gradient(180deg,transparent 0%,rgba(15,12,40,.55) 100%);
}

/* content area — flex grows to fill space */
.hero-content{
 position:relative;z-index:2;
 max-width:var(--container);margin:0 auto;
 padding:140px 32px 60px;
 width:100%;
 flex:1;
 display:flex;align-items:center;
}
.hero-text{
 max-width:680px;
}

/* tag */
.hero-tag{
 display:inline-flex;align-items:center;gap:10px;
 font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
 color:var(--gold-light);margin:0 0 28px;padding:8px 16px 8px 12px;
 background:rgba(228,159,55,.1);
 border:1px solid rgba(228,159,55,.25);
 border-radius:var(--radius-pill);
 backdrop-filter:blur(10px);
 opacity:0;transform:translateY(12px);
 animation:hIn .7s cubic-bezier(.22,1,.36,1) .15s forwards;
}
.hero-tag-dot{
 width:7px;height:7px;border-radius:50%;background:var(--gold);
 box-shadow:0 0 0 0 rgba(228,159,55,.6);
 animation:hPulse 2s ease-in-out infinite;
}
@keyframes hPulse{
 0%{box-shadow:0 0 0 0 rgba(228,159,55,.6)}
 70%{box-shadow:0 0 0 10px rgba(228,159,55,0)}
 100%{box-shadow:0 0 0 0 rgba(228,159,55,0)}
}

/* big title */
.hero-title{
 font-size:clamp(40px,5.6vw,72px);
 font-weight:800;line-height:1.05;letter-spacing:-0.035em;
 color:#fff;margin:0 0 28px;
 opacity:0;transform:translateY(20px);
 animation:hIn .85s cubic-bezier(.22,1,.36,1) .25s forwards;
}
.hero-title-accent{
 color:var(--gold);
 display:inline;
}

/* description */
.hero-desc{
 font-size:18px;line-height:1.65;
 color:rgba(255,255,255,.78);
 max-width:580px;margin:0 0 40px;font-weight:400;
 opacity:0;transform:translateY(14px);
 animation:hIn .75s ease .42s forwards;
}

/* CTA */
.hero-cta{
 display:flex;align-items:center;gap:16px;flex-wrap:wrap;
 opacity:0;transform:translateY(14px);
 animation:hIn .75s ease .55s forwards;
}
.hero-cta-primary{
 display:inline-flex;align-items:center;gap:10px;
 font-size:15px;font-weight:600;
 padding:16px 32px;
 color:var(--navy);background:var(--gold);
 border-radius:var(--radius-sm);text-decoration:none;
 box-shadow:0 8px 24px rgba(228,159,55,.3);
 transition:all .25s ease;
}
.hero-cta-primary:hover{
 background:var(--gold-light);
 transform:translateY(-2px);
 box-shadow:0 12px 32px rgba(228,159,55,.4);
}
.hero-cta-primary svg{transition:transform .25s ease}
.hero-cta-primary:hover svg{transform:translateX(4px)}

.hero-cta-secondary{
 display:inline-flex;align-items:center;gap:10px;
 font-size:15px;font-weight:500;
 padding:15px 24px 15px 22px;
 color:#fff;background:rgba(255,255,255,.08);
 border:1px solid rgba(255,255,255,.18);
 border-radius:var(--radius-sm);text-decoration:none;
 backdrop-filter:blur(10px);
 transition:all .25s ease;
}
.hero-cta-secondary:hover{
 background:rgba(255,255,255,.14);
 border-color:rgba(255,255,255,.3);
}
.hero-cta-secondary svg{
 width:14px;height:14px;
 padding:4px;border-radius:50%;
 background:var(--gold);color:var(--navy);
 box-sizing:content-box;
}

/* ============ STATS STRIP (inside hero, bottom) ============ */
.hero-strip{
 position:relative;z-index:5;
 width:100%;
 padding:0 32px 32px;
 opacity:0;transform:translateY(20px);
 animation:hIn .8s cubic-bezier(.22,1,.36,1) .7s forwards;
}
.hero-strip-inner{
 max-width:var(--container);margin:0 auto;
 background:rgba(255,255,255,.97);
 backdrop-filter:blur(20px);
 -webkit-backdrop-filter:blur(20px);
 border-radius:var(--radius-lg);
 box-shadow:
  0 1px 3px rgba(0,0,0,.06),
  0 12px 40px -8px rgba(0,0,0,.4),
  0 28px 60px -16px rgba(0,0,0,.3);
 display:grid;grid-template-columns:repeat(4,1fr);
 overflow:hidden;
 position:relative;
 border:1px solid rgba(255,255,255,.5);
}
.hero-strip-inner::before{
 content:'';position:absolute;
 top:0;left:0;right:0;height:3px;
 background:linear-gradient(90deg,var(--gold),var(--gold-light),var(--gold));
}
.hero-strip-item{
 padding:24px 22px;
 border-right:1px solid var(--border-light);
 transition:background .25s ease;
 display:flex;align-items:center;
 gap:14px;min-width:0;
}
.hero-strip-item:last-child{border-right:none}
.hero-strip-item:hover{background:rgba(248,249,252,.5)}

.hero-strip-icon{
 width:44px;height:44px;flex-shrink:0;
 border-radius:var(--radius-sm);
 background:linear-gradient(135deg,rgba(228,159,55,.18) 0%,rgba(228,159,55,.08) 100%);
 color:var(--gold-dark);
 display:flex;align-items:center;justify-content:center;
}

.hero-strip-text{
 display:flex;flex-direction:column;
 min-width:0;flex:1;
}

.hero-strip-num{
 font-size:28px;font-weight:800;
 color:var(--navy);letter-spacing:-0.025em;line-height:1;
 margin-bottom:4px;
 white-space:nowrap;
}
.hero-strip-num span{
 color:var(--gold);font-weight:700;
 font-size:.65em;vertical-align:super;margin-left:1px;
}

.hero-strip-label{
 font-size:13px;font-weight:600;
 color:var(--text-heading);
 letter-spacing:-0.005em;line-height:1.3;
 white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}

/* hide all old hero bits */
.hero-left,.hero-right,.hero-eyebrow,.hero-headline,
.hero-headline-row,.hero-headline-accent,.hero-headline-gold,
.hero-lede,.hero-sub,.hero-actions,.hero-btn,.hero-btn-primary,
.hero-btn-outline,.hero-trust,.hero-trust-avatars,.hero-credentials,
.hero-stats,.hero-stat,.hero-stat-divider,.hero-metrics,.hero-metric,
.hero-visual,.hero-visual-frame,.hero-visual-card,.hero-visual-accent,
.hero-image-wrapper,.hero-image-badge,
.hero-img-stack,.hero-img-main,.hero-img-secondary,.hero-float-badge,
.hero-mosaic,.hero-mosaic-main,.hero-mosaic-side-top,.hero-mosaic-side-bottom{
 display:none!important;
}

/* ========== RESPONSIVE — premium hero ========== */
@media(max-width:1100px){
 .hero-strip-item{padding:22px 18px;gap:12px}
 .hero-strip-icon{width:40px;height:40px}
 .hero-strip-num{font-size:24px}
 .hero-strip-label{font-size:12px;white-space:normal}
}
@media(max-width:900px){
 .hero--home{min-height:80vh}
 .hero-content{padding:110px 24px 40px}
 .hero-text{max-width:100%}
 .hero-title{font-size:clamp(34px,7vw,52px)}
 .hero-desc{font-size:16px}
 .hero-strip{padding:0 24px 24px}
 .hero-strip-inner{grid-template-columns:repeat(2,1fr)}
 .hero-strip-item:nth-child(2){border-right:none}
 .hero-strip-item:nth-child(-n+2){border-bottom:1px solid var(--border-light)}
 .hero-strip-item{padding:22px 20px}
 .hero-strip-num{font-size:26px}
 .hero-strip-label{font-size:13px;white-space:nowrap}
}
@media(max-width:600px){
 .hero--home{min-height:auto}
 .hero-content{padding:90px 20px 32px}
 .hero-tag{font-size:10px;padding:6px 12px 6px 10px;margin-bottom:20px}
 .hero-title{font-size:clamp(30px,8vw,42px);margin-bottom:20px}
 .hero-desc{font-size:15px;margin-bottom:30px}
 .hero-cta{flex-direction:column;align-items:stretch;width:100%;gap:12px}
 .hero-cta-primary,.hero-cta-secondary{width:100%;justify-content:center}
 .hero-strip{padding:0 16px 20px}
 .hero-strip-inner{grid-template-columns:1fr}
 .hero-strip-item{border-right:none!important;border-bottom:1px solid var(--border-light);padding:16px 20px}
 .hero-strip-item:last-child{border-bottom:none}
 .hero-strip-icon{width:36px;height:36px}
 .hero-strip-icon svg{width:18px;height:18px}
 .hero-strip-num{font-size:22px;margin-bottom:2px}
 .hero-strip-label{font-size:13px;white-space:normal}
}

/* ========== REDUCED MOTION ========== */
@media(prefers-reduced-motion:reduce){
 .hero--home *,.hero--home *::before,.hero--home *::after{
  animation-duration:.01ms!important;animation-delay:0ms!important;
  animation-iteration-count:1!important;transition-duration:.01ms!important;
 }
 .hero-tag,.hero-title,.hero-desc,.hero-cta,.hero-strip,.hero-bg img{
  opacity:1!important;transform:none!important;
 }
}

/* ============================================================
   RESTORED PAGE-SPECIFIC STYLES
   Extracted from .bak files for pages whose inline styles
   were stripped during the external-CSS refactor
   ============================================================ */

.hero-accreditation{width: 180px; height: 180px; background: rgba(255,255,255,0.06);
   border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl);
   display: flex; align-items: center; justify-content: center; padding: 28px;}
.hero-accreditation img{width: 100%; height: auto; filter: brightness(1.1);}
@media (max-width: 900px){.hero-accreditation{width: 140px; height: 140px; padding: 20px;}}
.accred-details{background: var(--light-bg);}
.accred-detail-grid{display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;}
.accred-detail-card{background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px;
   border: 1px solid var(--border-light); text-align: center;
   transition: all var(--transition);}
.accred-detail-card:hover{border-color: rgba(31,26,81,0.12); box-shadow: var(--shadow-md);}
.accred-detail-card .detail-label{font-size: 12px; font-weight: 600; color: var(--text-muted);
   text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px;}
.accred-detail-card .detail-value{font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3;}
.accred-detail-card .detail-sub{font-size: 13px; color: var(--text-body); margin-top: 4px;}
.status-active{display: inline-flex; align-items: center; gap: 6px;
   background: rgba(16,185,129,0.1); color: #059669; padding: 4px 14px;
   border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; margin-top: 8px;}
.status-active::before{content: ''; width: 8px; height: 8px; border-radius: 50%;
   background: #10b981; display: inline-block;}
@media (max-width: 900px){.accred-detail-grid{grid-template-columns: repeat(2, 1fr);}}
@media (max-width: 500px){.accred-detail-grid{grid-template-columns: 1fr;}}
.standards-section{background: var(--white);}
.standards-grid{display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;}
.standard-card{background: var(--card-bg); border: 1px solid var(--border-light);
   border-radius: var(--radius-lg); padding: 28px 24px;
   transition: all var(--transition); position: relative; overflow: hidden;}
.standard-card::after{content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
   background: linear-gradient(90deg, var(--navy), var(--teal));
   transform: scaleX(0); transition: transform var(--transition); transform-origin: left;}
.standard-card:hover{border-color: rgba(31,26,81,0.15); box-shadow: var(--shadow-lg); transform: translateY(-4px);}
.standard-card:hover::after{transform: scaleX(1);}
.standard-card .card-icon{width: 48px; height: 48px; border-radius: var(--radius); margin-bottom: 16px;
   display: flex; align-items: center; justify-content: center;
   background: var(--light-bg);}
.standard-card .card-icon svg{width: 24px; height: 24px; color: var(--navy);}
.standard-card h3{font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-heading);}
.standard-card .card-scope{font-size: 13px; font-weight: 600; color: var(--teal); margin-bottom: 10px;}
.standard-card .card-industries{font-size: 13px; color: var(--text-muted); line-height: 1.5;}
.standard-card .card-industries strong{color: var(--text-body); font-weight: 600;}
@media (max-width: 1024px){.standards-grid{grid-template-columns: repeat(2, 1fr);}}
@media (max-width: 500px){.standards-grid{grid-template-columns: 1fr;}}
.halal-saso{background: var(--light-bg);}
.hs-grid{display: grid; grid-template-columns: 1fr 1fr; gap: 32px;}
.hs-card{background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px;
   border: 1px solid var(--border-light); transition: all var(--transition);}
.hs-card:hover{border-color: rgba(31,26,81,0.12); box-shadow: var(--shadow-lg);}
.hs-card .hs-icon{width: 56px; height: 56px; border-radius: var(--radius);
   background: linear-gradient(135deg, var(--navy), var(--teal));
   display: flex; align-items: center; justify-content: center; margin-bottom: 20px;}
.hs-card .hs-icon svg{width: 28px; height: 28px; color: var(--white);}
.hs-card h3{font-size: 20px; font-weight: 700; margin-bottom: 16px;}
.hs-card .hs-detail{display: flex; gap: 8px; margin-bottom: 10px; font-size: 14px; line-height: 1.6;}
.hs-card .hs-detail .hs-label{font-weight: 600; color: var(--text-heading); min-width: 100px; flex-shrink: 0;}
.hs-card .hs-detail .hs-value{color: var(--text-body);}
.hs-card .hs-tags{display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;}
.hs-card .hs-tag{background: rgba(31,26,81,0.05); color: var(--navy);
   padding: 4px 14px; border-radius: var(--radius-pill);
   font-size: 12px; font-weight: 600;}
@media (max-width: 768px){.hs-grid{grid-template-columns: 1fr;}}
.page-hero{background:linear-gradient(135deg,var(--navy) 0%,var(--navy-dark) 40%,#1a1444 100%);padding:60px 0 50px;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;top:-50%;right:-20%;width:800px;height:800px;background:radial-gradient(circle,rgba(228,159,55,0.08) 0%,transparent 70%);pointer-events:none}
.page-hero .container{position:relative;z-index:1}
.page-hero .breadcrumb{font-size:14px;color:rgba(255,255,255,0.5);margin-bottom:16px}
.page-hero .breadcrumb a{color:rgba(255,255,255,0.7);transition:color var(--transition)}
.page-hero .breadcrumb a:hover{color:var(--gold)}
.page-hero .hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(228,159,55,0.12);border:1px solid rgba(228,159,55,0.25);padding:8px 20px;border-radius:var(--radius-pill);font-size:13px;font-weight:600;color:var(--gold-light);margin-bottom:20px}
.page-hero h1{font-size:clamp(32px,5vw,48px);font-weight:800;color:var(--white);line-height:1.1;margin-bottom:16px;letter-spacing:-0.03em}
.page-hero h1 .highlight{background:linear-gradient(135deg,var(--gold),var(--gold-light));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.page-hero .hero-sub{font-size:17px;color:rgba(255,255,255,0.7);max-width:600px;line-height:1.7}
.section-alt{background:var(--light-bg)}
.anchor-nav{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin-bottom:48px}
.anchor-nav a{display:inline-flex;align-items:center;gap:6px;padding:10px 24px;background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-pill);font-size:14px;font-weight:600;color:var(--text-heading);transition:all var(--transition)}
.anchor-nav a:hover,.anchor-nav a.active{background:var(--navy);color:var(--white);border-color:var(--navy)}
.policy-section{margin-bottom:64px;scroll-margin-top:100px}
.policy-section h2{font-size:clamp(24px,3.5vw,32px);font-weight:800;margin-bottom:20px;letter-spacing:-0.02em;display:flex;align-items:center;gap:16px}
.policy-section h2 .p-icon{width:48px;height:48px;border-radius:var(--radius);background:linear-gradient(135deg,var(--navy),var(--teal));display:flex;align-items:center;justify-content:center;flex-shrink:0}
.policy-section h2 .p-icon svg{width:24px;height:24px;color:var(--white)}
.policy-section>p{font-size:16px;line-height:1.8;color:var(--text-body);margin-bottom:16px;max-width:900px}
.policy-list{margin-top:20px;max-width:900px}
.policy-list li{font-size:15px;line-height:1.8;color:var(--text-body);padding:8px 0;padding-inline-start:28px;position:relative}
.policy-list li::before{content:'';position:absolute;left:0;top:16px;width:10px;height:10px;border-radius:50%;background:var(--gold)}
html[dir="rtl"] .policy-list li::before{left:auto;right:0}
.policy-list li strong{color:var(--text-heading);font-weight:600}
.policy-divider{height:1px;background:var(--border);margin:0 0 64px}
.legal-content{padding:80px 0}
.legal-content .container{max-width:860px}
.legal-section{margin-bottom:48px;scroll-margin-top:100px}
.legal-section h2{font-size:clamp(22px,3vw,28px);font-weight:800;margin-bottom:16px;letter-spacing:-0.02em;color:var(--navy);display:flex;align-items:center;gap:14px}
.legal-section h2 .s-icon{width:44px;height:44px;border-radius:var(--radius);background:linear-gradient(135deg,var(--navy),var(--teal));display:flex;align-items:center;justify-content:center;flex-shrink:0}
.legal-section h2 .s-icon svg{width:22px;height:22px;color:var(--white)}
.legal-section p{font-size:15px;line-height:1.8;color:var(--text-body);margin-bottom:12px;max-width:860px}
.legal-section ul{margin-top:12px;margin-bottom:16px;max-width:860px}
.legal-section ul li{font-size:15px;line-height:1.8;color:var(--text-body);padding:6px 0;padding-inline-start:28px;position:relative}
.legal-section ul li::before{content:'';position:absolute;left:0;top:14px;width:8px;height:8px;border-radius:50%;background:var(--gold)}
html[dir="rtl"] .legal-section ul li::before{left:auto;right:0}
.legal-section ul li strong{color:var(--text-heading);font-weight:600}
.legal-divider{height:1px;background:var(--border);margin:0 0 48px}
.legal-section h3{font-size:17px;font-weight:700;color:var(--text-heading);margin:20px 0 10px}
.verify-card{max-width:600px;margin:0 auto;background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:48px;box-shadow:var(--shadow-lg);text-align:center}
.verify-card .v-icon{width:72px;height:72px;border-radius:50%;margin:0 auto 24px;background:linear-gradient(135deg,var(--navy),var(--teal));display:flex;align-items:center;justify-content:center}
.verify-card .v-icon svg{width:32px;height:32px;color:var(--white)}
.verify-card h2{font-size:24px;font-weight:800;margin-bottom:8px}
.verify-card>p{font-size:15px;color:var(--text-body);margin-bottom:32px}
.verify-form{display:flex;gap:12px;margin-bottom:24px}
.verify-form input{flex:1;padding:14px 20px;border:2px solid var(--border);border-radius:var(--radius-sm);font-size:15px;color:var(--text-heading);transition:border-color var(--transition);outline:none}
.verify-form input:focus{border-color:var(--navy)}
.verify-form input::placeholder{color:var(--text-muted)}
.verify-form button{padding:14px 28px;background:var(--gold);color:var(--white);font-size:15px;font-weight:700;border-radius:var(--radius-sm);transition:all var(--transition);box-shadow:0 2px 8px rgba(228,159,55,0.3);white-space:nowrap}
.verify-form button:hover{background:var(--gold-dark);transform:translateY(-1px);box-shadow:0 4px 12px rgba(228,159,55,0.4)}
@media(max-width:500px){.verify-form{flex-direction:column}.verify-card{padding:32px 24px}}
.verify-result{display:none;padding:20px;border-radius:var(--radius);margin-bottom:20px;font-size:14px;line-height:1.6;text-align:left}
.verify-result.show{display:block;animation:fadeIn 0.3s ease}
.verify-result.info{background:rgba(34,91,123,0.08);border:1px solid rgba(34,91,123,0.2);color:var(--teal)}
.verify-result.info strong{color:var(--teal)}
.verify-note{font-size:13px;color:var(--text-muted);line-height:1.6}
.verify-note a{color:var(--navy);font-weight:600}
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:900px;margin:0 auto}
.info-card{text-align:center;padding:32px 20px;background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);transition:all var(--transition)}
.info-card:hover{border-color:rgba(31,26,81,0.12);box-shadow:var(--shadow-md)}
.info-card .i-icon{width:56px;height:56px;border-radius:50%;margin:0 auto 16px;background:linear-gradient(135deg,var(--navy),var(--teal));display:flex;align-items:center;justify-content:center}
.info-card .i-icon svg{width:24px;height:24px;color:var(--white)}
.info-card h3{font-size:15px;font-weight:700;margin-bottom:8px}
.info-card p{font-size:13px;color:var(--text-muted);line-height:1.5}
@media(max-width:700px){.info-grid{grid-template-columns:1fr}}
.error-section{min-height:calc(100vh - 300px);display:flex;align-items:center;justify-content:center;padding:80px 24px;text-align:center;background:var(--light-bg)}
.error-content{max-width:560px}
.error-code{font-size:clamp(100px,20vw,180px);font-weight:800;line-height:1;color:var(--navy);letter-spacing:-0.05em;background:linear-gradient(135deg,var(--navy),var(--teal));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:16px}
.error-content h1{font-size:clamp(24px,4vw,36px);font-weight:800;margin-bottom:16px;color:var(--text-heading)}
.error-content p{font-size:17px;color:var(--text-body);line-height:1.7;margin-bottom:36px}
.error-actions{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap}
.error-btn-primary{display:inline-flex;align-items:center;gap:8px;padding:16px 32px;background:var(--gold);color:var(--white);font-size:16px;font-weight:600;border-radius:var(--radius-sm);transition:all var(--transition);box-shadow:0 4px 16px rgba(228,159,55,0.35)}
.error-btn-primary:hover{background:var(--gold-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(228,159,55,0.4)}
.error-btn-secondary{display:inline-flex;align-items:center;gap:8px;padding:16px 32px;background:var(--white);color:var(--navy);font-size:16px;font-weight:600;border-radius:var(--radius-sm);border:2px solid var(--border);transition:all var(--transition)}
.error-btn-secondary:hover{border-color:var(--navy);box-shadow:var(--shadow-md)}
.overview-grid{display:grid;grid-template-columns:1.2fr 0.8fr;gap:48px;align-items:start}
.overview-text h2{font-size:clamp(26px,4vw,34px);font-weight:800;margin-bottom:20px;letter-spacing:-0.02em}
.overview-text p{font-size:16px;line-height:1.8;color:var(--text-body);margin-bottom:16px}
.key-facts{background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:32px;box-shadow:var(--shadow-md);border-top:3px solid var(--gold);transition:all 0.4s cubic-bezier(0.4,0,0.2,1)}
.key-facts:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.key-facts h3{font-size:18px;font-weight:700;margin-bottom:20px;color:var(--text-heading)}
.key-facts .fact{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid var(--border-light);font-size:14px}
.key-facts .fact:last-child{border-bottom:none}
.key-facts .fact-label{font-weight:600;color:var(--text-heading)}
.key-facts .fact-value{color:var(--text-body);text-align:right}
@media(max-width:900px){.overview-grid{grid-template-columns:1fr;gap:32px}}
.benefits-list{display:grid;grid-template-columns:1fr 1fr;gap:16px;max-width:900px;margin:0 auto}
.benefit-item{display:flex;align-items:flex-start;gap:12px;background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius);padding:20px;border-top:3px solid transparent;transition:all 0.4s cubic-bezier(0.4,0,0.2,1)}
.benefit-item:hover{border-color:rgba(31,26,81,0.15);border-top-color:var(--gold);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.benefit-icon{width:36px;height:36px;border-radius:var(--radius-sm);background:rgba(34,91,123,0.08);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.benefit-icon svg{width:18px;height:18px;color:var(--teal)}
.benefit-item p{font-size:14px;line-height:1.6;color:var(--text-body)}
@media(max-width:700px){.benefits-list{grid-template-columns:1fr}}
.who-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:900px;margin:0 auto}
.who-card{text-align:center;padding:32px 20px;background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);border-top:3px solid transparent;transition:all 0.4s cubic-bezier(0.4,0,0.2,1)}
.who-card:hover{border-color:rgba(31,26,81,0.12);border-top-color:var(--gold);box-shadow:var(--shadow-md);transform:translateY(-4px)}
.who-card .who-icon{width:56px;height:56px;border-radius:50%;margin:0 auto 16px;background:linear-gradient(135deg,var(--navy),var(--teal));display:flex;align-items:center;justify-content:center}
.who-card .who-icon svg{width:24px;height:24px;color:var(--white)}
.who-card h3{font-size:15px;font-weight:700;margin-bottom:6px}
.who-card p{font-size:13px;color:var(--text-muted);line-height:1.5}
@media(max-width:700px){.who-grid{grid-template-columns:1fr}}
.stagger-1{transition-delay:.1s}
.stagger-2{transition-delay:.2s}
.stagger-3{transition-delay:.3s}
.stagger-4{transition-delay:.4s}
.stagger-5{transition-delay:.5s}
.stagger-6{transition-delay:.6s}

/* ============================================================
   ADDITIONAL PAGE STYLES
   For pages without .bak files (about, contact, services/index, 404)
   ============================================================ */

/* ===== ABOUT PAGE ===== */
.about-overview{background:var(--white)}
.about-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:64px;align-items:start}
.about-content h5{display:inline-flex;align-items:center;gap:6px;background:rgba(31,26,81,0.05);color:var(--navy);padding:6px 16px;border-radius:var(--radius-pill);font-size:13px;font-weight:600;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.06em}
.about-content h2{font-size:clamp(28px,4vw,36px);font-weight:800;margin-bottom:24px;letter-spacing:-0.02em;line-height:1.2}
.about-content p{font-size:16px;color:var(--text-body);line-height:1.8;margin-bottom:18px}
.stats-cards{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.stat-card{background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:28px 24px;text-align:center;transition:all var(--transition);border-top:3px solid var(--gold)}
.stat-card:hover{border-color:rgba(31,26,81,0.12);box-shadow:var(--shadow-md);transform:translateY(-3px)}
.stat-card .stat-num{font-size:36px;font-weight:800;color:var(--navy);line-height:1;margin-bottom:6px;font-feature-settings:"tnum" 1}
.stat-card .stat-label{font-size:13px;color:var(--text-muted);font-weight:500;line-height:1.4}
@media(max-width:900px){.about-grid{grid-template-columns:1fr;gap:48px}}
@media(max-width:560px){.stats-cards{grid-template-columns:1fr 1fr;gap:12px}.stat-card{padding:20px 16px}.stat-card .stat-num{font-size:28px}}

.mission-vision{background:var(--light-bg)}
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:1100px;margin:0 auto}
.mv-card{background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:40px 36px;transition:all var(--transition);border-top:3px solid transparent}
.mv-card:hover{border-color:rgba(31,26,81,0.12);border-top-color:var(--gold);box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.mv-icon{width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,var(--navy),var(--teal));display:flex;align-items:center;justify-content:center;margin-bottom:24px}
.mv-icon svg{width:26px;height:26px;color:var(--white)}
.mv-card h3{font-size:22px;font-weight:800;margin-bottom:14px;color:var(--text-heading);letter-spacing:-0.01em}
.mv-card p{font-size:15px;color:var(--text-body);line-height:1.7}
@media(max-width:768px){.mv-grid{grid-template-columns:1fr}.mv-card{padding:32px 24px}}

.accreditation{background:var(--white)}
.accred-inner{display:grid;grid-template-columns:240px 1fr;gap:56px;align-items:center;max-width:1000px;margin:0 auto}
.accred-badge{display:flex;align-items:center;justify-content:center;background:var(--light-bg);border-radius:var(--radius-lg);padding:32px;border:1px solid var(--border-light)}
.accred-badge img{width:100%;height:auto;max-width:180px;filter:drop-shadow(0 4px 12px rgba(31,26,81,0.08))}
.accred-content h2{font-size:clamp(24px,3vw,32px);font-weight:800;margin-bottom:20px;color:var(--text-heading);letter-spacing:-0.01em}
.accred-content p{font-size:15px;color:var(--text-body);line-height:1.7;margin-bottom:16px}
.accred-highlight{display:inline-flex;align-items:center;gap:8px;background:rgba(228,159,55,0.1);border:1px solid rgba(228,159,55,0.25);padding:12px 20px;border-radius:var(--radius-pill);font-size:14px;font-weight:600;color:var(--gold-dark);margin-top:12px}
.accred-highlight svg{color:var(--gold)}
@media(max-width:768px){.accred-inner{grid-template-columns:1fr;gap:32px;text-align:center}.accred-badge{max-width:240px;margin:0 auto}}

.principles{background:var(--light-bg)}
.principles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1100px;margin:0 auto}
.principle-card-lg{background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:32px 28px;transition:all var(--transition);border-top:3px solid transparent;text-align:left}
.principle-card-lg:hover{border-color:rgba(31,26,81,0.12);border-top-color:var(--gold);box-shadow:var(--shadow-md);transform:translateY(-4px)}
.principle-card-lg .p-icon{width:48px;height:48px;border-radius:var(--radius-sm);background:rgba(34,91,123,0.08);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.principle-card-lg .p-icon svg{width:22px;height:22px;color:var(--teal)}
.principle-card-lg h3{font-size:18px;font-weight:800;margin-bottom:12px;color:var(--text-heading);letter-spacing:-0.01em}
.principle-card-lg p{font-size:14px;color:var(--text-body);line-height:1.7}
@media(max-width:900px){.principles-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.principles-grid{grid-template-columns:1fr}}

/* ===== CONTACT PAGE ===== */
.contact-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:40px;align-items:start;max-width:1100px;margin:0 auto}
.contact-form-card{background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow)}
.contact-form-card h2{font-size:26px;font-weight:800;margin-bottom:8px;color:var(--text-heading);letter-spacing:-0.01em}
.form-subtitle{font-size:14px;color:var(--text-muted);margin-bottom:28px;line-height:1.6}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:18px}
.form-group{margin-bottom:18px;display:flex;flex-direction:column}
.form-row .form-group{margin-bottom:0}
.form-group label{font-size:13px;font-weight:600;color:var(--text-heading);margin-bottom:8px;display:block}
.form-group .required{color:var(--gold-dark);margin-left:2px}
.form-group input,.form-group select,.form-group textarea{font-family:inherit;width:100%;padding:13px 16px;font-size:15px;color:var(--text-heading);background:var(--white);border:1px solid var(--border);border-radius:var(--radius-sm);transition:all var(--transition);outline:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--navy);box-shadow:0 0 0 3px rgba(31,26,81,0.08)}
.form-group textarea{min-height:140px;resize:vertical;line-height:1.6}
.form-group .error-msg{display:none;color:#dc2626;font-size:12px;font-weight:500;margin-top:6px}
.form-group.has-error input,.form-group.has-error select,.form-group.has-error textarea{border-color:#dc2626;background:rgba(220,38,38,0.02)}
.form-group.has-error .error-msg{display:block}
.btn-submit{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:16px 32px;background:var(--gold);color:var(--white);font-size:15px;font-weight:600;border-radius:var(--radius-sm);border:none;cursor:pointer;transition:all var(--transition);width:auto;margin-top:8px;box-shadow:0 4px 14px rgba(228,159,55,0.3);position:relative;font-family:inherit}
.btn-submit:hover{background:var(--gold-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(228,159,55,0.4)}
.btn-submit:disabled{opacity:0.6;cursor:not-allowed;transform:none}
.btn-submit .btn-text{display:inline-flex;align-items:center;gap:8px}
.btn-submit.loading .btn-text{display:none}
.btn-submit .spinner{display:none;width:20px;height:20px;border:2px solid rgba(255,255,255,0.3);border-top-color:var(--white);border-radius:50%;animation:spin 0.7s linear infinite}
.btn-submit.loading .spinner{display:inline-block}
@keyframes spin{to{transform:rotate(360deg)}}

.contact-info-cards{display:flex;flex-direction:column;gap:16px}
.contact-info-card{display:flex;align-items:flex-start;gap:18px;background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:24px;transition:all var(--transition);border-left:3px solid transparent}
.contact-info-card:hover{border-color:rgba(31,26,81,0.12);border-left-color:var(--gold);box-shadow:var(--shadow-md);transform:translateX(2px)}
.info-icon{width:46px;height:46px;border-radius:var(--radius-sm);background:rgba(34,91,123,0.08);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.info-icon svg{width:22px;height:22px;color:var(--teal)}
.contact-info-card h3{font-size:14px;font-weight:700;color:var(--text-heading);margin-bottom:4px;letter-spacing:0.01em}
.contact-info-card p{font-size:14px;color:var(--text-body);line-height:1.6;margin:0}
.contact-info-card a{color:var(--navy);font-weight:600;transition:color var(--transition)}
.contact-info-card a:hover{color:var(--gold)}
@media(max-width:900px){.contact-grid{grid-template-columns:1fr;gap:32px}.contact-form-card{padding:32px 24px}.form-row{grid-template-columns:1fr;gap:0}}

/* Toast notification */
.toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(80px);background:var(--text-heading);color:var(--white);padding:14px 24px;border-radius:var(--radius-sm);font-size:14px;font-weight:500;box-shadow:0 8px 24px rgba(0,0,0,0.2);z-index:10001;opacity:0;pointer-events:none;transition:all 0.35s cubic-bezier(0.4,0,0.2,1);max-width:90vw}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
.toast.success{background:#059669}
.toast.error{background:#dc2626}

/* ===== SERVICES INDEX PAGE ===== */
.svc-filter-tabs{display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap;margin-bottom:40px}
.svc-filter{padding:9px 20px;background:var(--white);border:1px solid var(--border);border-radius:var(--radius-pill);font-size:13.5px;font-weight:600;color:var(--text-body);cursor:pointer;transition:all var(--transition);font-family:inherit}
.svc-filter:hover{border-color:var(--navy);color:var(--navy)}
.svc-filter.active{background:var(--navy);border-color:var(--navy);color:var(--white)}
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.svc-card{background:var(--card-bg);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:28px 24px;transition:all 0.4s cubic-bezier(0.4,0,0.2,1);position:relative;overflow:hidden;border-top:3px solid transparent}
.svc-card::after{content:'';position:absolute;top:0;left:50%;right:50%;height:3px;background:linear-gradient(90deg,var(--gold),var(--gold-light));transition:all 0.3s cubic-bezier(0.4,0,0.2,1)}
.svc-card:hover{border-color:rgba(31,26,81,0.15);box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.svc-card:hover::after{left:0;right:0}
.svc-card.hidden{display:none}
.svc-card .card-icon{width:48px;height:48px;border-radius:var(--radius-sm);background:linear-gradient(135deg,var(--navy),var(--teal));display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.svc-card .card-icon svg{width:22px;height:22px;color:var(--white)}
.card-std-badge{display:inline-block;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--gold);background:rgba(228,159,55,0.1);padding:4px 10px;border-radius:var(--radius-pill);margin-bottom:10px}
.svc-card h3{font-size:16px;font-weight:700;margin-bottom:10px;color:var(--text-heading);line-height:1.3;letter-spacing:-0.01em}
.svc-card p{font-size:13px;color:var(--text-body);line-height:1.6;margin-bottom:14px}
.svc-card .card-link{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--gold);transition:gap var(--transition)}
.svc-card .card-link:hover{color:var(--gold-dark);gap:8px}
@media(max-width:1024px){.svc-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.svc-grid{grid-template-columns:1fr}.svc-filter{padding:7px 16px;font-size:12.5px}}

/* ===== 404 PAGE additions ===== */
.error-page{min-height:60vh}
.error-msg{font-size:16px;color:var(--text-body);line-height:1.7;margin-bottom:32px;max-width:500px;margin-inline:auto}

/* ===== POLICIES / LEGAL pages additions ===== */
.legal{padding:80px 0;background:var(--white)}
.legal .container{max-width:820px}
.legal h2{font-size:24px;font-weight:800;margin:36px 0 14px;color:var(--text-heading);letter-spacing:-0.01em}
.legal h3{font-size:18px;font-weight:700;margin:24px 0 10px;color:var(--text-heading)}
.legal p{font-size:15px;color:var(--text-body);line-height:1.8;margin-bottom:14px}
.legal ul,.legal ol{margin:0 0 18px 24px;padding:0}
.legal li{font-size:15px;color:var(--text-body);line-height:1.8;margin-bottom:8px;list-style:disc}

/* ===== Misc shared additions ===== */
.btn--secondary{display:inline-flex;align-items:center;gap:8px;padding:10px 24px;background:transparent;color:var(--text-body);font-size:14px;font-weight:500;border:1px solid var(--border);border-radius:var(--radius-sm);transition:all var(--transition);cursor:pointer;text-decoration:none}
.btn--secondary:hover{border-color:var(--navy);color:var(--navy)}

.mobile-sub{padding-left:16px}
.mobile-sub a{font-size:14px;color:var(--text-body);font-weight:400}

/* ========================================================================
   HOMEPAGE REDESIGN — hp-* sections
   ======================================================================== */

/* ---------- Section 1: Stats Bar ---------- */
.hp-stats{
 background:linear-gradient(135deg, var(--gold) 0%, #d4882c 100%);
 padding:40px 0;
 position:relative;
 z-index:2;
}
.hp-stats__grid{
 display:grid;
 grid-template-columns:repeat(4, 1fr);
 gap:24px;
 text-align:center;
}
.hp-stats__item{
 display:flex;
 flex-direction:column;
 align-items:center;
 gap:4px;
}
.hp-stats__number{
 font-family:'Outfit', sans-serif;
 font-size:42px;
 font-weight:800;
 color:#fff;
 line-height:1;
 letter-spacing:-0.02em;
}
.hp-stats__label{
 font-family:'Outfit', sans-serif;
 font-size:14px;
 font-weight:500;
 color:rgba(255,255,255,0.85);
 text-transform:uppercase;
 letter-spacing:0.08em;
}
@media(max-width:768px){
 .hp-stats__grid{grid-template-columns:repeat(2,1fr);gap:28px 16px}
 .hp-stats__number{font-size:34px}
}
@media(max-width:480px){
 .hp-stats__grid{grid-template-columns:repeat(2,1fr)}
 .hp-stats__number{font-size:30px}
 .hp-stats__label{font-size:12px}
}

/* ---------- Section 2: Services Overview ---------- */
.hp-services{
 padding:100px 0 80px;
 background:var(--light-bg);
}
.hp-services__head{
 text-align:center;
 margin-bottom:56px;
}
.hp-services__head h5{
 display:inline-flex;
 align-items:center;
 gap:6px;
 font-family:'Outfit', sans-serif;
 font-size:13px;
 font-weight:600;
 text-transform:uppercase;
 letter-spacing:0.08em;
 color:var(--gold);
 margin-bottom:12px;
}
.hp-services__head h2{
 font-family:'Outfit', sans-serif;
 font-size:40px;
 font-weight:800;
 color:var(--text-heading);
 margin-bottom:16px;
 letter-spacing:-0.02em;
 line-height:1.15;
}
.hp-services__head p{
 font-family:'Outfit', sans-serif;
 font-size:17px;
 color:var(--text-body);
 line-height:1.7;
 max-width:640px;
 margin:0 auto;
}

.hp-services__grid{
 display:grid;
 grid-template-columns:repeat(2, 1fr);
 gap:24px;
 margin-bottom:40px;
}
.hp-services__card{
 position:relative;
 display:flex;
 flex-direction:column;
 justify-content:flex-end;
 min-height:340px;
 border-radius:var(--radius-lg);
 overflow:hidden;
 background-size:cover;
 background-position:center;
 text-decoration:none;
 transition:transform 0.35s ease, box-shadow 0.35s ease;
}
.hp-services__card:hover{
 transform:translateY(-4px);
 box-shadow:0 20px 50px rgba(31,26,81,0.18);
}
.hp-services__card-overlay{
 position:absolute;
 inset:0;
 background:linear-gradient(to top, rgba(31,26,81,0.88) 0%, rgba(31,26,81,0.3) 50%, rgba(31,26,81,0.05) 100%);
 transition:background 0.35s ease;
}
.hp-services__card:hover .hp-services__card-overlay{
 background:linear-gradient(to top, rgba(31,26,81,0.92) 0%, rgba(31,26,81,0.45) 55%, rgba(31,26,81,0.1) 100%);
}
.hp-services__card-content{
 position:relative;
 z-index:2;
 padding:32px;
}
.hp-services__card-content h3{
 font-family:'Outfit', sans-serif;
 font-size:24px;
 font-weight:700;
 color:#fff;
 margin-bottom:4px;
 letter-spacing:-0.01em;
}
.hp-services__card-std{
 display:inline-block;
 font-family:'Outfit', sans-serif;
 font-size:12px;
 font-weight:600;
 text-transform:uppercase;
 letter-spacing:0.08em;
 color:var(--gold);
 margin-bottom:10px;
}
.hp-services__card-content p{
 font-family:'Outfit', sans-serif;
 font-size:14px;
 color:rgba(255,255,255,0.8);
 line-height:1.6;
 margin-bottom:14px;
 max-width:380px;
}
.hp-services__card-link{
 font-family:'Outfit', sans-serif;
 font-size:14px;
 font-weight:600;
 color:var(--gold);
 transition:letter-spacing 0.2s ease;
}
.hp-services__card:hover .hp-services__card-link{
 letter-spacing:0.03em;
}

.hp-services__view-all{
 text-align:center;
 margin-bottom:48px;
}
.hp-services__view-all-link{
 font-family:'Outfit', sans-serif;
 font-size:15px;
 font-weight:600;
 color:var(--gold);
 text-decoration:none;
 transition:color 0.2s;
}
.hp-services__view-all-link:hover{
 color:var(--gold-dark);
}

/* Additional services cards */
.hp-services-more{
 display:grid;
 grid-template-columns:repeat(4, 1fr);
 gap:20px;
}
.hp-services-more__card{
 display:flex;
 flex-direction:column;
 padding:28px 24px;
 background:var(--white);
 border-radius:var(--radius);
 border:1px solid var(--border);
 text-decoration:none;
 transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hp-services-more__card:hover{
 transform:translateY(-3px);
 box-shadow:0 8px 24px rgba(31,26,81,0.1);
 border-color:var(--gold);
}
.hp-services-more__std{
 font-family:'Outfit', sans-serif;
 font-size:11px;
 font-weight:700;
 text-transform:uppercase;
 letter-spacing:0.08em;
 color:var(--gold);
 margin-bottom:6px;
}
.hp-services-more__card h4{
 font-family:'Outfit', sans-serif;
 font-size:16px;
 font-weight:700;
 color:var(--text-heading);
 margin-bottom:12px;
 letter-spacing:-0.01em;
}
.hp-services-more__link{
 font-family:'Outfit', sans-serif;
 font-size:13px;
 font-weight:600;
 color:var(--teal);
 margin-top:auto;
}
.hp-services-more__card:hover .hp-services-more__link{
 color:var(--gold);
}

@media(max-width:900px){
 .hp-services__grid{grid-template-columns:1fr}
 .hp-services__card{min-height:280px}
 .hp-services-more{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
 .hp-services{padding:64px 0 56px}
 .hp-services__head h2{font-size:28px}
 .hp-services__card{min-height:240px}
 .hp-services__card-content h3{font-size:20px}
 .hp-services-more{grid-template-columns:1fr}
}

/* ---------- Section 3: About ---------- */
.hp-about{
 padding:100px 0;
 background:var(--white);
}
.hp-about__grid{
 display:grid;
 grid-template-columns:1fr 1fr;
 gap:64px;
 align-items:center;
}
.hp-about__image img{
 width:100%;
 height:auto;
 border-radius:var(--radius-lg);
 object-fit:cover;
 aspect-ratio:4/3;
}
.hp-about__content h5{
 display:inline-flex;
 align-items:center;
 gap:6px;
 font-family:'Outfit', sans-serif;
 font-size:13px;
 font-weight:600;
 text-transform:uppercase;
 letter-spacing:0.08em;
 color:var(--gold);
 margin-bottom:12px;
}
.hp-about__content h2{
 font-family:'Outfit', sans-serif;
 font-size:36px;
 font-weight:800;
 color:var(--text-heading);
 margin-bottom:20px;
 letter-spacing:-0.02em;
 line-height:1.15;
}
.hp-about__content p{
 font-family:'Outfit', sans-serif;
 font-size:15px;
 color:var(--text-body);
 line-height:1.75;
 margin-bottom:16px;
}
.hp-about__quote{
 font-family:'Outfit', sans-serif;
 font-size:15px;
 font-style:italic;
 color:var(--text-heading);
 line-height:1.7;
 border-left:3px solid var(--gold);
 padding:16px 0 16px 20px;
 margin:24px 0 28px;
 background:rgba(228,159,55,0.04);
 border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}
.hp-about__link{
 font-family:'Outfit', sans-serif;
 font-size:15px;
 font-weight:600;
 color:var(--gold);
 text-decoration:none;
 transition:color 0.2s;
}
.hp-about__link:hover{
 color:var(--gold-dark);
}
@media(max-width:900px){
 .hp-about__grid{grid-template-columns:1fr;gap:40px}
 .hp-about__image{order:-1}
 .hp-about{padding:64px 0}
 .hp-about__content h2{font-size:28px}
}

/* ---------- Section 4: Process ---------- */
.hp-process{
 padding:100px 0;
 background:var(--light-bg);
}
.hp-process__head{
 text-align:center;
 margin-bottom:64px;
}
.hp-process__head h5{
 display:inline-flex;
 align-items:center;
 gap:6px;
 font-family:'Outfit', sans-serif;
 font-size:13px;
 font-weight:600;
 text-transform:uppercase;
 letter-spacing:0.08em;
 color:var(--gold);
 margin-bottom:12px;
}
.hp-process__head h2{
 font-family:'Outfit', sans-serif;
 font-size:40px;
 font-weight:800;
 color:var(--text-heading);
 margin-bottom:16px;
 letter-spacing:-0.02em;
 line-height:1.15;
}
.hp-process__head p{
 font-family:'Outfit', sans-serif;
 font-size:17px;
 color:var(--text-body);
 line-height:1.7;
 max-width:600px;
 margin:0 auto;
}
.hp-process__steps{
 display:flex;
 align-items:flex-start;
 justify-content:center;
 gap:0;
}
.hp-process__step{
 flex:1;
 max-width:340px;
 text-align:center;
 padding:0 24px;
}
.hp-process__number{
 font-family:'Outfit', sans-serif;
 font-size:64px;
 font-weight:900;
 color:var(--gold);
 line-height:1;
 margin-bottom:16px;
 opacity:0.25;
 letter-spacing:-0.04em;
}
.hp-process__step h3{
 font-family:'Outfit', sans-serif;
 font-size:20px;
 font-weight:700;
 color:var(--text-heading);
 margin-bottom:12px;
 letter-spacing:-0.01em;
}
.hp-process__step p{
 font-family:'Outfit', sans-serif;
 font-size:14px;
 color:var(--text-body);
 line-height:1.7;
}
.hp-process__connector{
 flex-shrink:0;
 display:flex;
 align-items:center;
 padding-top:28px;
}
@media(max-width:900px){
 .hp-process__steps{flex-direction:column;align-items:center;gap:40px}
 .hp-process__connector{display:none}
 .hp-process__step{max-width:480px}
}
@media(max-width:600px){
 .hp-process{padding:64px 0}
 .hp-process__head h2{font-size:28px}
 .hp-process__number{font-size:48px}
}

/* ---------- Section 5: Industries ---------- */
.hp-industries{
 padding:100px 0;
 background:var(--white);
}
.hp-industries__head{
 text-align:center;
 margin-bottom:56px;
}
.hp-industries__head h5{
 display:inline-flex;
 align-items:center;
 gap:6px;
 font-family:'Outfit', sans-serif;
 font-size:13px;
 font-weight:600;
 text-transform:uppercase;
 letter-spacing:0.08em;
 color:var(--gold);
 margin-bottom:12px;
}
.hp-industries__head h2{
 font-family:'Outfit', sans-serif;
 font-size:40px;
 font-weight:800;
 color:var(--text-heading);
 margin-bottom:16px;
 letter-spacing:-0.02em;
 line-height:1.15;
}
.hp-industries__head p{
 font-family:'Outfit', sans-serif;
 font-size:17px;
 color:var(--text-body);
 line-height:1.7;
 max-width:640px;
 margin:0 auto;
}
.hp-industries__grid{
 display:grid;
 grid-template-columns:repeat(3, 1fr);
 gap:24px;
}
.hp-industries__card{
 position:relative;
 border-radius:var(--radius-lg);
 overflow:hidden;
 min-height:220px;
 background-size:cover;
 background-position:center;
 display:flex;
 align-items:flex-end;
 transition:transform 0.3s ease;
}
.hp-industries__card:hover{
 transform:translateY(-4px);
}
.hp-industries__card-overlay{
 position:absolute;
 inset:0;
 background:linear-gradient(to top, rgba(31,26,81,0.82) 0%, rgba(31,26,81,0.2) 60%, transparent 100%);
}
.hp-industries__card-name{
 position:relative;
 z-index:2;
 font-family:'Outfit', sans-serif;
 font-size:18px;
 font-weight:700;
 color:#fff;
 padding:24px;
 letter-spacing:-0.01em;
}
@media(max-width:900px){
 .hp-industries__grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
 .hp-industries{padding:64px 0}
 .hp-industries__head h2{font-size:28px}
 .hp-industries__grid{grid-template-columns:1fr}
 .hp-industries__card{min-height:180px}
}

/* ---------- Section 6: Why Choose TQS ---------- */
.hp-why{
 padding:100px 0;
 background:var(--light-bg);
}
.hp-why__grid{
 display:grid;
 grid-template-columns:1fr 1fr;
 gap:64px;
 align-items:center;
}
.hp-why__content h5{
 display:inline-flex;
 align-items:center;
 gap:6px;
 font-family:'Outfit', sans-serif;
 font-size:13px;
 font-weight:600;
 text-transform:uppercase;
 letter-spacing:0.08em;
 color:var(--gold);
 margin-bottom:12px;
}
.hp-why__content h2{
 font-family:'Outfit', sans-serif;
 font-size:36px;
 font-weight:800;
 color:var(--text-heading);
 margin-bottom:32px;
 letter-spacing:-0.02em;
 line-height:1.15;
}
.hp-why__list{
 display:flex;
 flex-direction:column;
 gap:28px;
}
.hp-why__item{
 display:flex;
 gap:16px;
 align-items:flex-start;
}
.hp-why__icon{
 flex-shrink:0;
 width:44px;
 height:44px;
 border-radius:var(--radius-sm);
 background:linear-gradient(135deg, var(--navy), var(--teal));
 display:flex;
 align-items:center;
 justify-content:center;
}
.hp-why__icon svg{
 width:20px;
 height:20px;
 color:#fff;
}
.hp-why__item h4{
 font-family:'Outfit', sans-serif;
 font-size:16px;
 font-weight:700;
 color:var(--text-heading);
 margin-bottom:4px;
 letter-spacing:-0.01em;
}
.hp-why__item p{
 font-family:'Outfit', sans-serif;
 font-size:14px;
 color:var(--text-body);
 line-height:1.7;
}
.hp-why__image img{
 width:100%;
 height:auto;
 border-radius:var(--radius-lg);
 object-fit:cover;
 aspect-ratio:4/3;
}
@media(max-width:900px){
 .hp-why__grid{grid-template-columns:1fr;gap:40px}
 .hp-why__image{order:-1}
 .hp-why{padding:64px 0}
 .hp-why__content h2{font-size:28px}
}

/* ---------- Section 8: CTA ---------- */
.hp-cta{
 position:relative;
 background-size:cover;
 background-position:center;
 padding:100px 0;
}
.hp-cta__overlay{
 position:absolute;
 inset:0;
 background:rgba(31,26,81,0.85);
}
.hp-cta__content{
 position:relative;
 z-index:2;
 text-align:center;
 max-width:680px;
 margin:0 auto;
}
.hp-cta__content h2{
 font-family:'Outfit', sans-serif;
 font-size:40px;
 font-weight:800;
 color:#fff;
 margin-bottom:18px;
 letter-spacing:-0.02em;
 line-height:1.15;
}
.hp-cta__content p{
 font-family:'Outfit', sans-serif;
 font-size:17px;
 color:rgba(255,255,255,0.8);
 line-height:1.7;
 margin-bottom:36px;
}
.hp-cta__buttons{
 display:flex;
 gap:16px;
 justify-content:center;
 flex-wrap:wrap;
}
.hp-cta__btn{
 display:inline-flex;
 align-items:center;
 gap:8px;
 font-family:'Outfit', sans-serif;
 font-size:15px;
 font-weight:600;
 padding:14px 32px;
 border-radius:var(--radius-sm);
 text-decoration:none;
 cursor:pointer;
 transition:all 0.25s ease;
 border:2px solid transparent;
}
.hp-cta__btn--primary{
 background:var(--gold);
 color:#fff;
 border-color:var(--gold);
}
.hp-cta__btn--primary:hover{
 background:var(--gold-dark);
 border-color:var(--gold-dark);
 transform:translateY(-2px);
 box-shadow:0 8px 24px rgba(228,159,55,0.3);
}
.hp-cta__btn--outline{
 background:transparent;
 color:#fff;
 border-color:rgba(255,255,255,0.4);
}
.hp-cta__btn--outline:hover{
 border-color:#fff;
 background:rgba(255,255,255,0.08);
 transform:translateY(-2px);
}
@media(max-width:600px){
 .hp-cta{padding:64px 0}
 .hp-cta__content h2{font-size:28px}
 .hp-cta__buttons{flex-direction:column;align-items:center}
 .hp-cta__btn{width:100%;justify-content:center;max-width:320px}
}

/* ==========================================================================
   HOMEPAGE REDESIGN — hp- prefixed classes
   ========================================================================== */

/* ----- Shared: Section Headings ----- */
.hp-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.hp-section-head h5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(31,26,81,0.05);
  color: var(--navy);
  font-family: 'Outfit', var(--font);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.hp-section-head h2 {
  font-family: 'Outfit', var(--font);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.hp-section-head p {
  font-size: 15.5px;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ----- Shared: Scroll Reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Shared: Image hover zoom ----- */
.hp-about-img img,
.hp-why-img img,
.hp-ind-card,
.hp-svc-card {
  overflow: hidden;
}
.hp-about-img img,
.hp-why-img img {
  transition: transform 0.6s ease;
}
.hp-about-img:hover img,
.hp-why-img:hover img {
  transform: scale(1.03);
}


/* ==========================================================================
   1. HP-STATS — Full-width gold stats bar
   ========================================================================== */
.hp-stats {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 40px 24px;
}
.hp-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  gap: 0;
}
.hp-stat {
  text-align: center;
  padding: 16px 20px;
  position: relative;
}
/* Vertical separators */
.hp-stat + .hp-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
}
.hp-stat-number {
  display: block;
  font-family: 'Outfit', var(--font);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.hp-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

/* Stats responsive: 2x2 on mobile */
@media (max-width: 640px) {
  .hp-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .hp-stat-number { font-size: 34px; }
  /* Remove left border on first item of second row */
  .hp-stat:nth-child(3)::before { display: none; }
}


/* ==========================================================================
   2. HP-SERVICES — Service cards grid
   ========================================================================== */
.hp-services {
  background: var(--white);
  padding: 100px 0;
}
.hp-services .container {
  max-width: var(--container);
}

/* 2x2 large image cards */
.hp-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.hp-svc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: box-shadow var(--transition);
}
/* Dark gradient overlay */
.hp-svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}
.hp-svc-card:hover::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.78) 100%);
}
/* Background image zoom on hover */
.hp-svc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}
.hp-svc-card:hover .hp-svc-card-bg {
  transform: scale(1.05);
}
/* Card content */
.hp-svc-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px;
  width: 100%;
}
.hp-svc-card-content h3 {
  font-family: 'Outfit', var(--font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hp-svc-card-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 14px;
}
.hp-svc-card-content .hp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}
.hp-svc-card-content .hp-card-link:hover {
  color: var(--gold-light);
  gap: 10px;
}

/* Smaller service cards row */
.hp-services-more {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.hp-services-more-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.hp-services-more-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}
.hp-services-more-card .hp-smc-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.hp-services-more-card h4 {
  font-family: 'Outfit', var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hp-services-more-card .hp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}
.hp-services-more-card .hp-card-link:hover {
  color: var(--gold-dark);
  gap: 10px;
}

/* "View All Services" centered link */
.hp-services-viewall {
  text-align: center;
}
.hp-services-viewall a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', var(--font);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--transition), color var(--transition);
}
.hp-services-viewall a:hover {
  color: var(--gold);
  gap: 10px;
}

/* Services responsive */
@media (max-width: 900px) {
  .hp-svc-grid { grid-template-columns: 1fr; }
  .hp-services-more { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hp-services { padding: 64px 0; }
  .hp-services-more { grid-template-columns: 1fr; }
  .hp-svc-card { min-height: 260px; }
}


/* ==========================================================================
   3. HP-ABOUT — About split section
   ========================================================================== */
.hp-about {
  background: var(--light-bg);
  padding: 100px 0;
}
.hp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Left: Image */
.hp-about-img {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.hp-about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Right: Text */
.hp-about-text h5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(31,26,81,0.05);
  color: var(--navy);
  font-family: 'Outfit', var(--font);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.hp-about-text h2 {
  font-family: 'Outfit', var(--font);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 20px;
}
.hp-about-text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
}
.hp-about-text blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  font-size: 15px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
}
.hp-about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', var(--font);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 8px;
  transition: gap var(--transition), color var(--transition);
}
.hp-about-link:hover {
  color: var(--gold);
  gap: 10px;
}

/* About responsive */
@media (max-width: 900px) {
  .hp-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hp-about-img img { height: 360px; }
}
@media (max-width: 560px) {
  .hp-about { padding: 64px 0; }
  .hp-about-img img { height: 280px; }
}


/* ==========================================================================
   4. HP-PROCESS — Our Process steps
   ========================================================================== */
.hp-process {
  background: var(--white);
  padding: 100px 0;
}
.hp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.hp-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-top-width 0.25s ease;
}
.hp-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-width: 5px;
}
.hp-step-number {
  font-family: 'Outfit', var(--font);
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.hp-step h3 {
  font-family: 'Outfit', var(--font);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hp-step p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.65;
}

/* Process responsive */
@media (max-width: 900px) {
  .hp-process-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 560px) {
  .hp-process { padding: 64px 0; }
}


/* ==========================================================================
   5. HP-INDUSTRIES — Industry cards
   ========================================================================== */
.hp-industries {
  background: var(--light-bg);
  padding: 100px 0;
}
.hp-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.hp-ind-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
}
/* Dark gradient overlay */
.hp-ind-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}
.hp-ind-card:hover::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.72) 100%);
}
/* Background zoom on hover */
.hp-ind-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}
.hp-ind-card:hover .hp-ind-card-bg {
  transform: scale(1.08);
}
.hp-ind-card h3 {
  position: relative;
  z-index: 2;
  font-family: 'Outfit', var(--font);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 20px 16px;
  letter-spacing: -0.01em;
}

/* Industries responsive */
@media (max-width: 900px) {
  .hp-ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hp-industries { padding: 64px 0; }
  .hp-ind-grid { grid-template-columns: 1fr; }
  .hp-ind-card { height: 180px; }
}


/* ==========================================================================
   6. HP-WHY — Why Choose Us
   ========================================================================== */
.hp-why {
  background: var(--white);
  padding: 100px 0;
}
.hp-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Left: items list */
.hp-why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hp-why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.hp-why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.hp-why-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hp-why-item h4 {
  font-family: 'Outfit', var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hp-why-item p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.65;
}

/* Right: image */
.hp-why-img {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.hp-why-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Why responsive */
@media (max-width: 900px) {
  .hp-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hp-why-img { order: -1; }
  .hp-why-img img { height: 320px; }
}
@media (max-width: 560px) {
  .hp-why { padding: 64px 0; }
  .hp-why-img img { height: 260px; }
}


/* ==========================================================================
   7. HP-CTA — Call to Action with parallax background
   ========================================================================== */
.hp-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* Dark overlay */
.hp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,12,40,0.8);
  z-index: 1;
}
.hp-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.hp-cta-content h2 {
  font-family: 'Outfit', var(--font);
  font-size: clamp(28px, 4.5vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hp-cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hp-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}
/* Primary: gold */
.hp-cta-btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.hp-cta-btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(228,159,55,0.3);
}
/* Outline: white */
.hp-cta-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.hp-cta-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* CTA responsive */
@media (max-width: 560px) {
  .hp-cta { padding: 72px 0; background-attachment: scroll; }
  .hp-cta-buttons { flex-direction: column; gap: 12px; }
  .hp-cta-btn { width: 100%; justify-content: center; }
}

/* Parallax fallback for iOS/mobile */
@supports (-webkit-overflow-scrolling: touch) {
  .hp-cta { background-attachment: scroll; }
}
@media (hover: none) {
  .hp-cta { background-attachment: scroll; }
}

