/* ============================================================
   Mostaqbal Wahed — Design System
   ============================================================ */

:root {
  /* Brand colors */
  --navy-900: #06152B;
  --navy-800: #0B1F3A;
  --navy-700: #132C4D;
  --navy-600: #1D3D65;
  --navy-100: #E7ECF3;
  --gold-600: #B4863A;
  --gold-500: #C9A24B;
  --gold-400: #DCBC72;
  --gold-100: #F4E9D2;
  --bg: #F7F6F3;
  --surface: #FFFFFF;
  --text: #1B2230;
  --text-muted: #5B6472;
  --text-on-dark: #F3F1EA;
  --text-on-dark-muted: #B7C0D1;
  --border: #E4E1D8;
  --success: #2F7A4F;

  /* Typography */
  --font-head: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--text-muted); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(201, 162, 75, 0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(247, 246, 243, 0.35);
  color: var(--text-on-dark);
}
.btn-outline:hover { background: rgba(247, 246, 243, 0.1); border-color: var(--text-on-dark); transform: translateY(-3px); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline-dark:hover { background: var(--navy-800); color: var(--text-on-dark); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(6, 21, 43, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--text-on-dark); }
.logo .mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}
.logo .mark svg { width: 22px; height: 22px; }
.logo .word-ar { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em; color: var(--gold-400); }

.nav-desktop { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold-500);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-on-dark); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-on-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-phone svg { width: 17px; height: 17px; color: var(--gold-400); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy-900);
  z-index: 1050;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.4s var(--ease), visibility 0.4s, transform 0.4s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-on-dark);
  padding: 14px 0;
}
.mobile-menu .btn { margin-top: 28px; }
.mobile-menu-foot {
  position: absolute;
  bottom: 40px;
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-on-dark);
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  overflow: hidden;
  padding-top: 120px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(201,162,75,0.16), transparent 45%),
                     radial-gradient(circle at 85% 80%, rgba(201,162,75,0.10), transparent 50%);
  pointer-events: none;
}
.hero-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
  mix-blend-mode: luminosity;
}
.hero-bg-fade {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, var(--navy-900) 15%, rgba(6,21,43,0.65) 55%, rgba(6,21,43,0.35) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 10px;
  border-radius: 999px;
  background: rgba(247,246,243,0.08);
  border: 1px solid rgba(201,162,75,0.35);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 4px rgba(201,162,75,0.2); }
.hero h1 {
  color: var(--text-on-dark);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--gold-400); }
.hero-lede {
  font-size: 1.15rem;
  color: var(--text-on-dark-muted);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--text-on-dark); }
.hero-trust span { font-size: 0.82rem; color: var(--text-on-dark-muted); }

.hero-card {
  position: relative;
  background: rgba(247,246,243,0.06);
  border: 1px solid rgba(247,246,243,0.14);
  border-radius: var(--radius-lg);
  padding: 10px;
  backdrop-filter: blur(6px);
}
.hero-card img { border-radius: calc(var(--radius-lg) - 6px); aspect-ratio: 4/3.4; object-fit: cover; }
.hero-card-tag {
  position: absolute;
  bottom: -18px; left: 24px;
  background: var(--surface);
  color: var(--navy-800);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 10px;
}
.hero-card-tag svg { width: 20px; height: 20px; color: var(--gold-600); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; margin-top: 20px; }
}

/* ---------- Inner page hero (banner) ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 100px;
  color: var(--text-on-dark);
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(201,162,75,0.16), transparent 50%);
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; mix-blend-mode: luminosity; }
.page-hero-fade { position: absolute; inset: 0; background: linear-gradient(120deg, var(--navy-900) 25%, rgba(6,21,43,0.55) 70%, rgba(6,21,43,0.3) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--text-on-dark-muted); margin-bottom: 20px; font-family: var(--font-head); }
.breadcrumb a { color: var(--gold-400); }
.page-hero h1 { color: var(--text-on-dark); font-size: clamp(2.1rem, 4vw, 3rem); max-width: 720px; }
.page-hero p { color: var(--text-on-dark-muted); max-width: 620px; font-size: 1.08rem; margin-top: 16px; }

/* ---------- Cards / Services grid ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy-100);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background 0.4s var(--ease);
}
.service-icon svg { width: 26px; height: 26px; color: var(--navy-800); }
.service-card:hover .service-icon { background: var(--navy-800); }
.service-card:hover .service-icon svg { color: var(--gold-400); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--gold-600); }
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Why us / feature list ---------- */
.feature-row { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold-100);
  display: grid; place-items: center;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--gold-600); }
.feature-row h4 { margin-bottom: 6px; font-size: 1.05rem; }
.feature-row p { margin: 0; font-size: 0.95rem; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { position: relative; padding: 34px 26px 26px; background: var(--surface); border-radius: var(--radius-md); border: 1px solid var(--border); }
.process-step .step-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-100);
  -webkit-text-stroke: 1.5px var(--gold-500);
  position: absolute;
  top: 10px; right: 20px;
  line-height: 1;
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; padding-right: 40px; }
.process-step p { font-size: 0.93rem; margin: 0; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--navy-900);
  color: var(--text-on-dark);
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-400); }
.stat span { font-size: 0.86rem; color: var(--text-on-dark-muted); letter-spacing: 0.02em; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 64px 48px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--text-on-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(201,162,75,0.22), transparent 55%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--text-on-dark); margin-bottom: 8px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-banner p { color: var(--text-on-dark-muted); margin: 0; max-width: 460px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--text-on-dark-muted); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(247,246,243,0.1); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--text-on-dark-muted); margin: 16px 0 20px; max-width: 320px; font-size: 0.92rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(247,246,243,0.08);
  display: grid; place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.footer-social a:hover { background: var(--gold-500); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; color: var(--text-on-dark); }
.footer-col h5 { font-family: var(--font-head); color: var(--text-on-dark); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; margin-bottom: 14px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy-900);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: sticky;
  top: 110px;
}
.contact-info-card h3 { color: var(--text-on-dark); }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(247,246,243,0.12);
  transition: gap 0.3s var(--ease);
}
.contact-method:last-of-type { border-bottom: none; }
.contact-method:hover { gap: 20px; }
.contact-method .icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(201,162,75,0.15); display: grid; place-items: center; flex-shrink: 0; }
.contact-method .icon svg { width: 21px; height: 21px; color: var(--gold-400); }
.contact-method span { display: block; font-size: 0.78rem; color: var(--text-on-dark-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-method strong { font-family: var(--font-head); font-size: 1.02rem; color: var(--text-on-dark); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-size: 0.86rem; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.84rem; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  align-items: center; gap: 12px;
  background: rgba(47,122,79,0.1);
  border: 1px solid rgba(47,122,79,0.3);
  color: var(--success);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- FAQ (accordion) ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 4px;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--navy-800);
}
.faq-q .plus { width: 22px; height: 22px; position: relative; flex-shrink: 0; margin-left: 20px; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--gold-600); border-radius: 2px; transition: transform 0.35s var(--ease); }
.faq-q .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 4px 22px; margin: 0; font-size: 0.95rem; }

/* ---------- Sectors / tags ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy-700);
  transition: border-color 0.3s, transform 0.3s;
}
.tag-pill:hover { border-color: var(--gold-500); transform: translateY(-2px); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform 0.3s var(--ease);
  animation: float-pulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.value-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
}
@media (max-width: 560px) { .value-badge { right: 10px; bottom: -16px; padding: 12px 16px; } }
.value-badge svg { width: 26px; height: 26px; color: var(--gold-600); }
.value-badge strong { display: block; font-family: var(--font-head); color: var(--navy-800); font-size: 1rem; }
.value-badge span { font-size: 0.78rem; color: var(--text-muted); }

.list-check { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.list-check li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; color: var(--text); }
.list-check svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; margin-top: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold-500); color: var(--navy-900);
  padding: 12px 20px; z-index: 2000; border-radius: 0 0 8px 0;
  font-family: var(--font-head); font-weight: 600;
}
.skip-link:focus { left: 0; }
