/* =========================================================
   A A NAFADA SOLUTIONS — Global Design System
   ========================================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties (Brand Tokens) --- */
:root {
  --navy:      #07152F;
  --blue:      #0B6FB8;
  --blue-dark: #085d9c;
  --blue-light:#e8f2fb;
  --white:     #FFFFFF;
  --neutral:   #F4F7FA;
  --charcoal:  #111111;
  --muted:     #5D6673;
  --border:    #D9E1E8;
  --success:   #1a8a4a;
  --error:     #c0392b;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --shadow-sm: 0 1px 4px rgba(7,21,47,0.07);
  --shadow-md: 0 4px 20px rgba(7,21,47,0.10);
  --shadow-lg: 0 8px 40px rgba(7,21,47,0.14);

  --transition: 0.22s ease;

  --container: 1200px;
  --header-h:  72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  overflow-wrap: break-word;
}

img { display: block; max-width: 100%; height: auto; }
svg { max-width: 100%; }
a   { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.22;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--muted); font-size: 1rem; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
section.compact { padding: 64px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 620px; margin: 16px auto 0; font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  min-height: 44px;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11,111,184,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--neutral);
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--neutral);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-3px);
}

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-neutral { background: var(--neutral); color: var(--muted); }

/* =========================================================
   HEADER
   ========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: all var(--transition);
}
#site-header.transparent {
  background: transparent;
}
#site-header.solid {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
/* Real logo image — solid header (white bg logo) */
.header-logo .logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--transition);
}
.header-logo .logo-img-light { display: block; }   /* for solid white header */
.header-logo .logo-img-dark  { display: none; }    /* for transparent dark header */

#site-header.transparent .logo-img-light { display: none; }
#site-header.transparent .logo-img-dark  { display: block; }

/* Legacy text logo (hidden — kept as fallback) */
.header-logo .logo-mark { display: none; }
.header-logo .logo-text { display: none; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--blue);
  background: var(--blue-light);
}
#site-header.transparent .header-nav a { color: var(--white); }
#site-header.transparent .header-nav a:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
#site-header.transparent .hamburger span { background: var(--white); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--blue); background: var(--blue-light); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2347 55%, #0a3a6b 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230B6FB8' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-content { }
.hero-content .eyebrow { color: #7ab8e8; }
.hero-content h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; }
.hero-content h1 span { color: #7ab8e8; }
.hero-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 24px 0 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  aspect-ratio: 4/3.5;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* Interior page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #0a2d5a);
  padding: calc(var(--header-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230B6FB8' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 620px; margin-top: 20px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; color: var(--blue); }
.trust-item span { font-size: 0.88rem; font-weight: 600; color: var(--navy); }

/* =========================================================
   SOLUTION CARDS
   ========================================================= */
.solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.solution-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-4px);
}
.solution-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--neutral);
}
.solution-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.solution-card:hover .solution-card-img img { transform: scale(1.05); }
.solution-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.solution-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
  flex-shrink: 0;
}
.solution-card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.solution-card-body p { font-size: 0.9rem; flex: 1; margin-bottom: 20px; }
.solution-card-body a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.solution-card-body a:hover { gap: 10px; }

/* =========================================================
   PRODUCT TILES
   ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue);
}
.product-card-img {
  aspect-ratio: 3/2;
  background: var(--neutral);
  overflow: hidden;
  flex-shrink: 0;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-body h4 { font-size: 1rem; margin-bottom: 6px; }
.product-card-body p { font-size: 0.85rem; margin-bottom: 12px; line-height: 1.5; }
.product-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.product-card-body .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* =========================================================
   SECTOR TILES
   ========================================================= */
.sector-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.sector-card {
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}
.sector-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sector-card:hover h3,
.sector-card:hover p { color: var(--white); }
.sector-card:hover p { color: rgba(255,255,255,0.7); }
.sector-icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: all var(--transition);
}
.sector-card:hover .sector-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.sector-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.sector-card p { font-size: 0.88rem; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2d5a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230B6FB8' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   PROOF / WHY US
   ========================================================= */
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.proof-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--neutral);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.proof-item:hover { border-color: var(--blue); background: var(--blue-light); }
.proof-item .proof-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}
.proof-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.proof-item p { font-size: 0.875rem; }

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-brand .logo-img-footer {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Legacy — hidden */
.footer-brand .logo-mark { display: none; }
.footer-brand .logo-name { display: none; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 0.85rem;
}
.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
}

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact p svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 48px auto 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 24px; }

/* =========================================================
   FORMS
   ========================================================= */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
}
.form-label .req { color: var(--blue); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,111,184,0.12);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--error);
}
.form-error {
  display: none;
  font-size: 0.82rem;
  color: var(--error);
  margin-top: 5px;
}
.form-error.visible { display: block; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235D6673' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.file-input {
  padding: 10px 14px;
  cursor: pointer;
}
.file-input::file-selector-button {
  padding: 6px 14px;
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  margin-right: 12px;
  transition: all var(--transition);
}
.file-input::file-selector-button:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--blue);
}
.form-check span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

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

.form-submit-area { margin-top: 8px; }
.form-submit-area .btn { width: 100%; justify-content: center; padding: 16px 28px; }

.form-success {
  display: none;
  background: #edfaf3;
  border: 1px solid #a8e6c4;
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  margin-top: 24px;
}
.form-success.visible { display: block; }
.form-success h4 { color: var(--success); margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: #2d7a4f; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-info-block {
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
}
.contact-info-block h3 { margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-item-text h5 { font-size: 0.85rem; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact-item-text a:hover { color: var(--blue); }

/* =========================================================
   PRODUCTS FILTER
   ========================================================= */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.filter-search-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: center;
}
.search-input-wrap {
  flex: 1;
  position: relative;
}
.search-input-wrap svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.search-input-wrap input {
  padding-left: 44px;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* =========================================================
   PROJECTS
   ========================================================= */
.project-cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.project-cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.project-cat-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.project-cat-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}
.project-cat-card h4 { margin-bottom: 8px; }
.project-cat-card p { font-size: 0.875rem; }

/* =========================================================
   ABOUT PAGE SPECIFICS
   ========================================================= */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.process-step h4 { font-size: 0.94rem; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; }

.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.value-card {
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.value-card h4 { margin-bottom: 10px; color: var(--navy); font-size: 1rem; }
.value-card h4 span { color: var(--blue); }
.value-card p { font-size: 0.9rem; }

.company-facts {
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fact-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--border);
}
.fact-row:last-child { border-bottom: none; }
.fact-label {
  padding: 16px 24px;
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  border-right: 1px solid var(--border);
}
.fact-value {
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--charcoal);
}

/* =========================================================
   LEADERSHIP / CEO SECTION
   ========================================================= */
.ceo-profile-section {
  background: var(--white);
  padding: 96px 0;
}
.ceo-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.ceo-card:hover {
  border-color: rgba(11, 111, 184, 0.4);
  box-shadow: var(--shadow-md);
}
.ceo-image-col {
  position: relative;
}
.ceo-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7, 21, 47, 0.18);
  border: 1px solid rgba(11, 111, 184, 0.25);
  background: var(--navy);
  aspect-ratio: 3/4;
}
.ceo-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.4s ease;
}
.ceo-card:hover .ceo-photo {
  transform: scale(1.02);
}
.ceo-badge-floating {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 21, 47, 0.88) 45%, rgba(7, 21, 47, 0.98) 100%);
  padding: 36px 20px 16px;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.ceo-badge-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.ceo-badge-role {
  font-size: 0.82rem;
  color: #7ab8e8;
  font-weight: 500;
  margin-top: 2px;
}
.ceo-bio-col {
  display: flex;
  flex-direction: column;
}
.ceo-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ceo-name {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.ceo-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
  margin: 6px 0 18px;
}
.ceo-bio-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.ceo-bio-text p:last-child {
  margin-bottom: 0;
}
.ceo-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.ceo-highlight-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: all var(--transition);
}
.ceo-highlight-item:hover {
  border-color: var(--blue);
}
.ceo-highlight-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.ceo-highlight-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 992px) {
  .ceo-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px;
  }
  .ceo-image-col {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 580px) {
  .ceo-highlights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ceo-name {
    font-size: 1.6rem;
  }
  .ceo-card {
    padding: 24px 16px;
  }
}

/* =========================================================
   SOLUTIONS DETAIL PAGE
   ========================================================= */
.solution-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.solution-section:last-of-type { border-bottom: none; }
.solution-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.solution-detail-inner.reverse { direction: rtl; }
.solution-detail-inner.reverse > * { direction: ltr; }
.solution-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.solution-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.solution-detail-content .solution-features {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}
.solution-features li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.text-center { text-align: center; }
.text-navy { color: var(--navy) !important; }
.text-blue { color: var(--blue) !important; }
.text-muted { color: var(--muted) !important; }
.text-white { color: var(--white) !important; }
.bg-neutral { background: var(--neutral); }
.bg-navy { background: var(--navy); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }

/* Entrance animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.18s; }
.fade-up:nth-child(4) { transition-delay: 0.26s; }
.fade-up:nth-child(5) { transition-delay: 0.34s; }
.fade-up:nth-child(6) { transition-delay: 0.42s; }

/* =========================================================
   404 PAGE
   ========================================================= */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.error-page h1 { font-size: clamp(5rem, 12vw, 10rem); color: var(--border); font-weight: 800; line-height: 1; }
.error-page h2 { font-size: 1.8rem; margin-bottom: 16px; }
.error-page p { margin-bottom: 36px; }

/* =========================================================
   RESPONSIVE — Full Multi-Breakpoint System
   Breakpoints: 1400 | 1200 | 1024 | 900 | 768 | 600 | 480 | 380
   ========================================================= */

/* ----------------------------------------------------------
   LARGE DESKTOP  ≥ 1400px  (wide screens, 4K)
   ---------------------------------------------------------- */
@media (min-width: 1400px) {
  :root { --container: 1320px; }
  h1 { font-size: 3.4rem; }
  .hero-content h1 { font-size: 3.8rem; }
  .solutions-grid { grid-template-columns: repeat(3,1fr); }
  .product-grid   { grid-template-columns: repeat(4,1fr); }
}

/* ----------------------------------------------------------
   DESKTOP  1200px–1399px  (standard laptop/monitor)
   Nothing special needed — base styles handle this
   ---------------------------------------------------------- */

/* ----------------------------------------------------------
   SMALL DESKTOP / LARGE TABLET  1024px–1199px
   ---------------------------------------------------------- */
@media (max-width: 1199px) {
  :root { --container: 960px; }

  /* Logo sizing */
  .logo-img         { height: 46px; }
  .logo-img-footer  { height: 50px; }

  /* Header */
  .header-nav a { padding: 8px 10px; font-size: 0.88rem; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 72px 24px;
  }
  .hero-content h1 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }

  /* Solutions 3-col stays */
  .solutions-grid { gap: 20px; }

  /* Products: 3 → 3 (stays) */
  .product-grid { gap: 20px; }

  /* Sectors: 3 stays */
  .sector-grid { gap: 16px; }

  /* Proof grid: 4 → 2×2 */
  .proof-grid { grid-template-columns: repeat(2,1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }

  /* About process */
  .process-timeline { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .process-timeline::before { right: 16%; left: 16%; }
}

/* ----------------------------------------------------------
   TABLET LANDSCAPE  900px–1023px
   ---------------------------------------------------------- */
@media (max-width: 1023px) {
  :root {
    --container: 100%;
    --header-h: 68px;
  }

  /* Logo */
  .logo-img       { height: 44px; }
  .logo-img-footer{ height: 48px; }

  /* Header: hide some nav links, keep key ones */
  .header-nav a { padding: 7px 9px; font-size: 0.85rem; }
  .header-actions .btn { padding: 10px 18px; font-size: 0.85rem; }

  /* Hero: stack */
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 24px 60px;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-image   { max-width: 520px; margin: 0 auto; }

  /* Solutions: 2-col */
  .solutions-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  /* Products: 2-col */
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  /* Project cats: 2-col */
  .project-cat-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  /* Sectors: 2-col */
  .sector-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }

  /* Proof: 2-col */
  .proof-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  /* About */
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }

  /* Solution detail alternating layout */
  .solution-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .solution-detail-inner.reverse { direction: ltr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Footer: 2×2 */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Process timeline */
  .process-timeline { grid-template-columns: 1fr; gap: 24px; }
  .process-timeline::before { display: none; }
  .process-step { display: flex; gap: 16px; text-align: left; align-items: flex-start; }
  .process-num  { margin: 0; flex-shrink: 0; }

  /* Fact row */
  .fact-row { grid-template-columns: 180px 1fr; }
}

/* ----------------------------------------------------------
   TABLET PORTRAIT  768px–899px
   ---------------------------------------------------------- */
@media (max-width: 899px) {
  :root { --header-h: 64px; }
  section { padding: 72px 0; }

  /* Logo */
  .logo-img       { height: 42px; }
  .logo-img-footer{ height: 46px; }

  /* Hide nav links, show hamburger */
  .header-nav              { display: none; }
  .header-actions .btn     { display: none; }
  .hamburger               { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 64px 20px 56px;
    gap: 32px;
  }
  .hero-content .eyebrow { display: inline-block; }
  .hero-actions { justify-content: center; gap: 12px; }
  .hero-image   { max-width: 480px; margin: 0 auto; }

  /* Trust bar: 2 columns */
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .trust-item:last-child,
  .trust-item:nth-last-child(2) { border-bottom: none; }

  /* Solutions: 2-col */
  .solutions-grid    { grid-template-columns: repeat(2,1fr); }

  /* Products: 2-col */
  .product-grid      { grid-template-columns: repeat(2,1fr); }

  /* Sectors: 2-col */
  .sector-grid       { grid-template-columns: repeat(2,1fr); }

  /* Projects: 2-col */
  .project-cat-grid  { grid-template-columns: repeat(2,1fr); }

  /* Proof: 2-col */
  .proof-grid        { grid-template-columns: repeat(2,1fr); }

  /* About values: 2-col */
  .values-grid       { grid-template-columns: repeat(2,1fr); }

  /* Footer: 2-col */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Page hero */
  .page-hero { padding-calc: calc(var(--header-h) + 60px) 0 60px; }
  .page-hero h1 { font-size: clamp(1.6rem, 4vw, 2rem); }

  /* Section header */
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 0.95rem; }
}

/* ----------------------------------------------------------
   MOBILE LANDSCAPE + LARGE PHONES  600px–767px
   ---------------------------------------------------------- */
@media (max-width: 767px) {
  :root { --header-h: 56px; }
  section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Header & Logo */
  .header-inner {
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-logo {
    display: flex;
    align-items: center;
    line-height: 0;
  }
  .header-logo .logo-img {
    height: 50px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
  }
  .logo-img       { height: 50px; }
  .logo-img-footer{ height: 44px; }

  /* Nav always hidden, hamburger shown */
  .header-nav          { display: none !important; }
  .header-actions .btn { display: none !important; }
  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 6px;
    min-width: 40px;
    min-height: 40px;
    margin-right: -4px;
  }
  .hamburger span {
    width: 22px;
    height: 2px;
  }

  /* Buttons wrap text cleanly on mobile */
  .btn { white-space: normal; text-align: center; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 56px 16px 48px;
    gap: 28px;
  }
  .hero-content h1 { font-size: clamp(1.75rem, 5.5vw, 2.4rem); }
  .hero-content p  { font-size: 0.98rem; margin: 18px 0 28px; }
  .hero-actions    {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-image      { max-width: 400px; margin: 0 auto; }

  /* Trust bar: clean mobile services list */
  .trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .trust-bar-inner {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    max-width: 100%;
  }
  .trust-item,
  .trust-item:nth-child(odd),
  .trust-item:nth-child(even),
  .trust-item:nth-last-child(2) {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 4px;
    width: 100%;
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .trust-item:last-child {
    border-bottom: none !important;
  }
  .trust-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--blue);
  }
  .trust-item span {
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
  }

  /* All multi-col grids → 1-col */
  .solutions-grid,
  .product-grid,
  .sector-grid,
  .project-cat-grid,
  .proof-grid,
  .grid-2, .grid-3, .grid-4,
  .values-grid   { grid-template-columns: 1fr; }

  /* Form rows → 1 col */
  .form-row { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  .contact-layout { gap: 32px; }
  .contact-info-block { padding: 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  #site-footer { padding: 60px 0 0; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-band .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Buttons */
  .btn-lg { padding: 15px 24px; font-size: 0.94rem; }

  /* Process timeline */
  .process-timeline { gap: 20px; }
  .process-step { flex-direction: row; gap: 14px; text-align: left; }
  .process-num  { width: 44px; height: 44px; font-size: 1rem; flex-shrink: 0; }

  /* Fact table */
  .fact-row { grid-template-columns: 1fr; }
  .fact-label { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 20px 8px; }
  .fact-value { padding: 8px 20px 16px; }

  /* Solution detail section */
  .solution-section { padding: 56px 0; }

  /* Filter bar */
  .filter-search-row { flex-direction: column; gap: 12px; }
  .filter-search-row .btn { width: 100%; justify-content: center; }
  .filter-chips { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filter-chips::-webkit-scrollbar { height: 3px; }
  .filter-chips::-webkit-scrollbar-track { background: transparent; }
  .filter-chips::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

  /* Page hero */
  .page-hero { padding: calc(var(--header-h) + 48px) 0 48px; }
  .page-hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .page-hero p  { font-size: 0.95rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.8rem; }

  /* Solutions anchor nav on solutions page */
  .page-hero div[style*="flex"] { overflow-x: auto; flex-wrap: nowrap !important; padding-bottom: 4px; }
}

/* ----------------------------------------------------------
   MOBILE  480px–599px  (standard phones)
   ---------------------------------------------------------- */
@media (max-width: 599px) {
  :root { --header-h: 56px; }
  section { padding: 52px 0; }

  /* Typography scale-down */
  h2 { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  h3 { font-size: 1.1rem; }

  /* Hero */
  .hero-content h1 { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  .hero-inner { padding: 48px 16px 40px; }
  .hero-image { border-radius: 10px; }

  /* Logo image */
  .header-logo .logo-img { height: 50px; max-height: 52px; }
  .logo-img { height: 50px; }

  /* Solution cards */
  .solution-card-body { padding: 20px; }
  .solution-card-body h3 { font-size: 1.05rem; }

  /* Product cards */
  .product-card-body { padding: 16px; }

  /* Sector cards */
  .sector-card { padding: 24px 20px; }
  .sector-icon { width: 44px; height: 44px; }

  /* Project cat cards */
  .project-cat-card { padding: 24px 20px; }
  .project-cat-icon { width: 52px; height: 52px; }

  /* About */
  .value-card { padding: 24px; }
  .contact-info-block { padding: 20px; }
  .contact-item { gap: 12px; }
  .contact-item-icon { width: 40px; height: 40px; }

  /* Footer */
  .footer-social a { width: 34px; height: 34px; }
  .footer-col h5 { font-size: 0.78rem; }
  .footer-col ul li a { font-size: 0.875rem; }

  /* Proof items */
  .proof-item { padding: 24px 16px; }
  .proof-item .proof-icon { width: 48px; height: 48px; }

  /* Form */
  .form-input, .form-select, .form-textarea {
    font-size: 1rem; /* prevent iOS zoom */
    padding: 13px 14px;
  }
  .form-submit-area .btn { font-size: 0.95rem; }

  /* CTA band */
  .cta-band h2 { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .cta-band p  { font-size: 0.92rem; }

  /* Section header */
  .section-header { margin-bottom: 32px; }
  .section-header p { font-size: 0.9rem; }

  /* Buttons smaller */
  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .btn-sm { padding: 9px 16px; font-size: 0.82rem; }
  .btn-lg { padding: 14px 22px; font-size: 0.92rem; }
}

/* ----------------------------------------------------------
   SMALL MOBILE  380px–479px  (small Android phones)
   ---------------------------------------------------------- */
@media (max-width: 479px) {
  :root { --header-h: 70px; }
  section { padding: 44px 0; }
  .container { padding: 0 14px; }

  /* Hero */
  .hero-content h1 { font-size: clamp(1.45rem, 7vw, 1.9rem); }
  .hero-content p  { font-size: 0.9rem; margin: 14px 0 24px; }
  .hero-inner { padding: 44px 14px 36px; }

  /* Logo */
  .header-logo .logo-img { height: 48px; max-height: 50px; }
  .logo-img { height: 48px; }

  /* Hamburger more tap-friendly */
  .hamburger { padding: 6px; }

  /* Mobile nav */
  .mobile-nav { padding: 24px 16px; }
  .mobile-nav a { font-size: 1rem; padding: 13px 14px; }

  /* Cards: reduce padding */
  .solution-card-body { padding: 16px; }
  .card { padding: 20px; }
  .value-card { padding: 20px; }
  .sector-card { padding: 20px 16px; }
  .proof-item  { padding: 20px 14px; }
  .contact-info-block { padding: 18px; }

  /* Typography */
  h2 { font-size: clamp(1.2rem, 6vw, 1.6rem); }
  h3 { font-size: 1rem; }
  .eyebrow { font-size: 0.7rem; }

  /* Section header */
  .section-header { margin-bottom: 28px; }
  .section-header p { font-size: 0.875rem; }

  /* Trust bar: clean mobile services list */
  .trust-item,
  .trust-item:nth-child(odd),
  .trust-item:nth-child(even),
  .trust-item:nth-last-child(2) {
    padding: 15px 4px;
  }
  .trust-item span { font-size: 0.90rem; }

  /* Footer */
  .footer-inner { gap: 24px; }
  #site-footer { padding: 48px 0 0; }
  .footer-bottom { padding: 16px 14px; }

  /* Buttons full-width on tiny screens */
  .cta-band .btn  { width: 100%; max-width: none; }
  .hero-actions .btn { max-width: none; }

  /* Filter chips: ensure scrollable */
  .filter-chips { gap: 6px; }
  .chip { padding: 7px 14px; font-size: 0.8rem; white-space: nowrap; }

  /* Form */
  .form-group { margin-bottom: 16px; }
  .form-label { font-size: 0.84rem; }

  /* Page hero */
  .page-hero { padding: calc(var(--header-h) + 36px) 0 40px; }
  .page-hero h1 { font-size: clamp(1.3rem, 6vw, 1.7rem); }
  .page-hero p  { font-size: 0.9rem; }

  /* Solutions anchor buttons on solutions page hero */
  .page-hero .btn-sm { padding: 8px 14px; font-size: 0.8rem; }
}

/* ----------------------------------------------------------
   VERY SMALL PHONES  ≤ 360px
   ---------------------------------------------------------- */
@media (max-width: 360px) {
  :root { --header-h: 64px; }
  .header-logo .logo-img { height: 42px; max-height: 44px; }
  .logo-img { height: 42px; }
  .hero-content h1 { font-size: 1.35rem; }
  section { padding: 40px 0; }
  .container { padding: 0 12px; }
  .mobile-nav a { font-size: 0.95rem; }
  .btn { padding: 11px 18px; font-size: 0.875rem; }

  /* Trust bar: very small phones */
  .trust-item,
  .trust-item:nth-child(odd),
  .trust-item:nth-child(even),
  .trust-item:nth-last-child(2) {
    padding: 13px 2px;
    gap: 10px;
  }
  .trust-item span { font-size: 0.86rem; }
}

/* ----------------------------------------------------------
   PRINT  (clean, ink-friendly)
   ---------------------------------------------------------- */
@media print {
  #site-header, .mobile-nav, .hamburger,
  .cta-band, #site-footer, .hero-actions,
  .btn { display: none !important; }
  .hero { min-height: auto; padding: 24px 0 !important; }
  .hero-bg { display: none; }
  .hero-content h1, .hero-content p { color: #000 !important; }
  body { font-size: 11pt; line-height: 1.5; }
  h1,h2,h3 { color: #07152F; page-break-after: avoid; }
  .solution-card, .product-card, .sector-card { break-inside: avoid; border: 1px solid #ccc; }
  .solutions-grid, .product-grid { grid-template-columns: repeat(2,1fr); }
}

/* ----------------------------------------------------------
   PREFERS REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration:  0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* ----------------------------------------------------------
   HIGH CONTRAST MODE support
   ---------------------------------------------------------- */
@media (forced-colors: active) {
  .btn-primary { border: 2px solid ButtonText; }
  .header-nav a { border-radius: 0; }
}

/* ----------------------------------------------------------
   COOKIE CONSENT BANNER (PRD §20.14)
   ---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 16px 24px;
  box-shadow: 0 -6px 24px rgba(7,21,47,0.3);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: var(--container);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  flex: 1;
  min-width: 260px;
}
.cookie-banner-text a {
  color: #7ab8e8;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 8px 18px;
  font-size: 0.84rem;
}
.cookie-banner-actions .btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.cookie-banner-actions .btn-secondary:hover {
  background: var(--neutral);
  color: var(--navy);
  border-color: var(--neutral);
}
@media (max-width: 580px) {
  .cookie-banner { padding: 14px 16px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; }
  .cookie-banner-actions .btn { flex: 1; text-align: center; }
}

/* =========================================================
   WHATSAPP CONSULTATION STYLING
   ========================================================= */
.whatsapp-consultation-banner {
  background: linear-gradient(135deg, #07152F 0%, #0d2850 100%);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(7, 21, 47, 0.08);
}
.whatsapp-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}
.whatsapp-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.whatsapp-banner-content h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.whatsapp-banner-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.4;
}
.whatsapp-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  border: 2px solid #25D366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  font-size: 0.88rem;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  font-size: 0.88rem;
}
.btn-whatsapp-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

/* Floating WhatsApp Quick Consultation Button & Popover */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
}
.floating-whatsapp {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.floating-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}
.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.floating-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(7, 21, 47, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 74px;
}

/* WhatsApp Consultation Popover Card */
.whatsapp-popover {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 310px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(7, 21, 47, 0.22);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  overflow: hidden;
  z-index: 1000;
}
.whatsapp-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.whatsapp-popover-header {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.whatsapp-popover-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatsapp-popover-title strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}
.whatsapp-popover-title span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.whatsapp-popover-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.whatsapp-popover-close:hover {
  color: var(--white);
}
.whatsapp-popover-body {
  padding: 14px 16px;
}
.whatsapp-popover-body p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 12px;
}
.whatsapp-popover-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.whatsapp-choice-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}
.whatsapp-choice-btn:hover {
  background: #eefbf3;
  border-color: #25D366;
  transform: translateX(2px);
}
.whatsapp-choice-info {
  display: flex;
  flex-direction: column;
}
.whatsapp-choice-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}
.whatsapp-choice-num {
  font-size: 0.86rem;
  font-weight: 700;
  color: #1a8a4a;
}
.whatsapp-choice-arrow {
  color: #25D366;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Footer contact links */
.footer-contact p a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-contact p a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 580px) {
  .floating-whatsapp-wrap {
    bottom: 20px;
    right: 20px;
  }
  .floating-whatsapp {
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
  .floating-whatsapp-tooltip {
    display: none;
  }
  .whatsapp-popover {
    width: min(300px, calc(100vw - 40px));
    right: 0;
  }
}

/* =========================================================
   AFRICAN CITIES REGIONAL FOOTPRINT (ABOUT PAGE)
   ========================================================= */
.african-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(7, 21, 47, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(7, 21, 47, 0.12);
  border-color: var(--blue);
}
.city-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.city-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.city-card:hover .city-card-img img {
  transform: scale(1.05);
}
.city-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 21, 47, 0.85);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.city-card-body {
  padding: 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.city-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.city-card-body p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
}
.city-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* =========================================================
   CEO GLOBAL ENGAGEMENT GALLERY (ABOUT PAGE)
   ========================================================= */
.ceo-gallery-section {
  margin-top: 48px;
}
.ceo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.ceo-gallery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(7, 21, 47, 0.06);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.ceo-gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(7, 21, 47, 0.14);
  border-color: var(--blue);
}
.ceo-gallery-img {
  height: 440px;
  overflow: hidden;
  position: relative;
  background: #07152f;
  cursor: pointer;
}
.ceo-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ceo-gallery-img img.img-byd {
  object-position: center 60%;
}
.ceo-gallery-img img.img-robot {
  object-position: center 20%;
}
.ceo-gallery-img img.img-hardware {
  object-position: center 36%;
}
.ceo-gallery-img img.img-aviation {
  object-fit: cover;
  object-position: center 50%;
}
.ceo-gallery-img img.img-trade {
  object-position: center 65%;
}
.ceo-gallery-card:hover .ceo-gallery-img img {
  transform: scale(1.03);
}



.ceo-gallery-caption {
  padding: 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ceo-gallery-caption h5 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 700;
}
.ceo-gallery-caption p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-lightbox .lightbox-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7, 21, 47, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gallery-lightbox .lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}
.gallery-lightbox .lightbox-caption {
  margin-top: 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}
.gallery-lightbox .lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  transition: color var(--transition);
}
.gallery-lightbox .lightbox-close:hover {
  color: #7ab8e8;
}

@media (max-width: 991px) {
  .ceo-gallery-img {
    height: 380px;
  }
}
@media (max-width: 600px) {
  .ceo-gallery-img {
    height: 320px;
  }
}

@media (max-width: 1100px) {
  .african-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ceo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .african-cities-grid {
    grid-template-columns: 1fr;
  }
  .ceo-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CONSULTATION SPOTLIGHT (HOMEPAGE)
   ========================================================= */
.consultation-spotlight {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--neutral) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.consultation-spotlight-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.consultation-spotlight-image {
  position: relative;
}

.consultation-spotlight-image .image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(7, 21, 47, 0.16);
  border: 1px solid rgba(11, 111, 184, 0.15);
  background: var(--navy);
}

.consultation-spotlight-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.consultation-spotlight-image:hover img {
  transform: scale(1.025);
}

.consultation-spotlight-image .image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(7, 21, 47, 0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.consultation-spotlight-image .badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.consultation-spotlight-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.consultation-spotlight-content .lead-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.consultation-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.consultation-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.consultation-feature-item .feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.consultation-feature-item div {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--charcoal);
}

.consultation-feature-item strong {
  color: var(--navy);
  margin-right: 4px;
}

.consultation-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .consultation-spotlight {
    padding: 60px 0;
  }
  .consultation-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .consultation-spotlight-image img {
    height: 380px;
  }
  .consultation-spotlight-content h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 580px) {
  .consultation-spotlight-image img {
    height: 280px;
  }
  .consultation-spotlight-image .image-badge {
    bottom: 12px;
    left: 12px;
    font-size: 0.75rem;
    padding: 8px 14px;
  }
  .consultation-spotlight-content h2 {
    font-size: 1.6rem;
  }
  .consultation-actions {
    flex-direction: column;
    width: 100%;
  }
  .consultation-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
