/* ============================================
   BLOOMSOFTGLOBAL — CORPORATE PROFESSIONAL
   Font: DM Sans + DM Serif Display
   Theme: Navy Blue · Slate · Steel
============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --navy:        #0B1F3A;
  --navy-2:      #122B50;
  --navy-3:      #1A3A6B;
  --blue:        #1E5AA8;
  --blue-2:      #2970D6;
  --blue-light:  #E8F1FB;
  --blue-pale:   #F0F6FF;
  --slate:       #3D5270;
  --slate-2:     #5B6E87;
  --muted:       #7C8EA3;
  --muted-2:     #A8B6C4;
  --border:      #D8E3EE;
  --border-2:    #BFD0E3;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --bg:          #F4F7FB;
  --ink:         #0B1F3A;
  --accent:      #E8760A;
  --accent-2:    #F59333;
  --accent-pale: #FEF4E8;
  --green:       #0E7A5A;
  --green-pale:  #E6F6F1;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --section-pad: 96px;
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --shadow-sm:   0 1px 4px rgba(11,31,58,0.07);
  --shadow:      0 4px 16px rgba(11,31,58,0.10);
  --shadow-lg:   0 12px 40px rgba(11,31,58,0.14);
  --t: 0.22s;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--blue-2);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--blue-2); }
.section-title strong { font-style: normal; color: var(--navy); }

.section-sub {
  font-size: 17px;
  color: var(--slate-2);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--blue-2);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(41,112,214,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-2);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--blue-2);
  color: var(--blue-2);
  background: var(--blue-pale);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--white);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn-white:hover {
  background: var(--blue-pale);
  transform: translateY(-1px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.btn-sm {
  font-size: 13px;
  padding: 9px 18px;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(11,31,58,0.08);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.wa-tooltip {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: #fff;
  color: #111;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  white-space: nowrap;
  display: none;
}

.whatsapp-float:hover + .wa-tooltip,
.wa-tooltip:hover {
  display: block;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-name span { color: var(--blue-2); }
.logo-tag {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-2);
  padding: 7px 14px;
  border-radius: 6px;
  transition: all var(--t) var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--bg);
}
.nav-link.active { font-weight: 600; color: var(--blue-2); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-2);
  transition: color var(--t);
}
.header-phone:hover { color: var(--blue-2); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 48px 24px;
  border-top: 1px solid var(--border);
  gap: 2px;
  background: var(--white);
}
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 6px;
}
.mobile-nav a:hover { background: var(--bg); }
.site-header.open .mobile-nav { display: flex; }

/* ── HERO ── */
.hero {
  padding: 130px 0 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,112,214,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,112,214,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(41,112,214,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-left { }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,147,51,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(245,147,51,0); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero-headline em { font-style: italic; color: #7DBAFF; }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.16s ease both;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.6s 0.22s ease both;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.6s 0.28s ease both;
}
.ht-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ht-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.ht-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.ht-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

.hero-right {
  animation: fadeUp 0.6s 0.12s ease both;
}
.hero-dashboard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hd-bar {
  background: rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hd-dots { display: flex; gap: 6px; }
.hd-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.hd-dots span:nth-child(1) { background: #FF5F57; }
.hd-dots span:nth-child(2) { background: #FFBD2E; }
.hd-dots span:nth-child(3) { background: #28CA41; }
.hd-url { font-size: 11px; font-family: monospace; color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); padding: 3px 10px; border-radius: 4px; }
.hd-body { padding: 20px; }
.hd-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.hd-metric {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px;
}
.hdm-val { font-size: 20px; font-weight: 700; color: var(--white); display: block; }
.hdm-lbl { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-top: 2px; }
.hdm-up { font-size: 10px; color: #4ADE80; font-weight: 600; margin-top: 4px; display: block; }
.hd-chart { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 14px; margin-bottom: 10px; }
.hd-chart-title { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 10px; }
.hd-bars { display: flex; align-items: flex-end; gap: 4px; height: 64px; }
.hd-bar-item { flex: 1; border-radius: 3px 3px 0 0; background: rgba(41,112,214,0.3); transition: background 0.2s; }
.hd-bar-item.active { background: var(--blue-2); }
.hd-table { background: rgba(255,255,255,0.04); border-radius: 8px; overflow: hidden; }
.hdt-head { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hdt-head span { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.06em; }
.hdt-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.hdt-row:last-child { border-bottom: none; }
.hdt-row span { font-size: 12px; color: rgba(255,255,255,0.7); }
.hdt-row span.green { color: #4ADE80; font-weight: 600; }
.hdt-row span.yellow { color: #FCD34D; font-weight: 600; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── CLIENTS BAR ── */
.clients-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.clients-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.clients-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  flex-shrink: 0;
}
.client-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.client-logo {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: -0.01em;
  transition: color var(--t);
  flex-shrink: 0;
}
.client-logo:hover { color: var(--slate); }

/* ── INTRO SECTION ── */
.intro-section { padding: var(--section-pad) 0; background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-left .section-title { margin-bottom: 24px; }
.intro-right p {
  font-size: 16px;
  color: var(--slate-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.intro-right p:last-of-type { margin-bottom: 28px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-2);
  transition: gap var(--t);
}
.text-link:hover { gap: 10px; }
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.is-stat {
  background: var(--white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.is-val {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.is-label { font-size: 13px; color: var(--muted); font-weight: 400; }

/* ── SERVICES ── */
.services-section { padding: var(--section-pad) 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 56px; }
.svc-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  transition: background var(--t) var(--ease);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-2);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.svc-card:hover { background: var(--blue-pale); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.svc-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--blue-2); }
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.svc-card p { font-size: 14px; color: var(--slate-2); line-height: 1.7; margin-bottom: 20px; }
.svc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}
.svc-link:hover { gap: 10px; }

/* ── FEATURES / WHY ── */
.why-section { padding: var(--section-pad) 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-left { position: sticky; top: 90px; }
.why-items { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--t);
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-item:hover { padding-left: 6px; }
.wi-icon-wrap {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.wi-icon-wrap svg { width: 18px; height: 18px; stroke: var(--blue-2); }
.wi-body h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}
.wi-body p { font-size: 14px; color: var(--slate-2); line-height: 1.7; }

/* ── PROCESS ── */
.process-section { padding: var(--section-pad) 0; background: var(--navy); }
.process-section .eyebrow { color: #7DBAFF; }
.process-section .eyebrow::before { background: #7DBAFF; }
.process-section .section-title { color: var(--white); }
.process-section .section-title em { color: #7DBAFF; }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 64px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px; left: 10%; right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}
.ps-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.ps-dot {
  width: 48px; height: 48px;
  background: rgba(41,112,214,0.2);
  border: 1px solid rgba(41,112,214,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 16px;
  color: #7DBAFF;
}
.ps-step h4 { font-family: var(--font-display); font-size: 15px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.ps-step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.ps-tag {
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  color: rgba(125,186,255,0.9);
  background: rgba(41,112,214,0.12);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ── TESTIMONIALS ── */
.testi-section { padding: var(--section-pad) 0; background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--t) var(--ease);
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testi-card-large {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}
.testi-card-sm .testi-text { font-size: 15px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.ta-photo-sm { width: 38px; height: 38px; }
.ta-meta strong { font-size: 14px; font-weight: 600; color: var(--navy); display: block; }
.ta-meta span { font-size: 13px; color: var(--muted); }
.testi-badge {
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 14px;
  align-self: flex-start;
}
.testi-stack { display: flex; flex-direction: column; gap: 24px; }

/* ── CTA ── */
.cta-section { padding: var(--section-pad) 0; background: var(--white); }
.cta-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,112,214,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,112,214,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(41,112,214,0.2) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: #7DBAFF; }
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 120px 0 64px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-header .hero-bg-pattern { opacity: 0.6; }
.ph-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ph-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  animation: fadeUp 0.5s ease both;
}
.ph-title em { font-style: italic; color: #7DBAFF; }
.ph-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.ph-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ph-stat {
  background: rgba(255,255,255,0.04);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ph-stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.ph-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── ABOUT ── */
.story-section { padding: var(--section-pad) 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px,4vw,48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 28px;
}
.story-text h2 em { font-style: italic; color: var(--blue-2); }
.story-text p { font-size: 15px; color: var(--slate-2); line-height: 1.8; margin-bottom: 18px; }
.story-text p.lead { font-size: 17px; color: var(--slate); }

.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--blue-2);
  width: 52px;
  flex-shrink: 0;
  margin-top: 2px;
}
.tl-dot {
  width: 10px; height: 10px;
  background: var(--border-2);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  transition: background var(--t);
}
.tl-item:hover .tl-dot { background: var(--blue-2); }
.tl-body strong { font-size: 14px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 3px; }
.tl-body span { font-size: 13px; color: var(--muted); }

/* ── TEAM ── */
.team-section { padding: var(--section-pad) 0; background: var(--bg); }
.team-tier-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

/* ── LEADER CARD (Pasan — big horizontal card) ── */
.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  transition: all var(--t) var(--ease);
}
.leader-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.leader-img-wrap {
  width: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 220px;
}
.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s;
}
.leader-card:hover .leader-img { transform: scale(1.04); }
.leader-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.leader-role {
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-2);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.leader-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--navy); }
.leader-body p { font-size: 13px; color: var(--slate-2); line-height: 1.7; flex: 1; }
.leader-facts { display: flex; flex-direction: column; gap: 6px; padding-top: 12px; border-top: 1px solid var(--border); }
.lf-row { display: flex; gap: 8px; }
.lf-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); width: 76px; flex-shrink: 0; }
.lf-val { font-size: 12px; color: var(--slate); }

/* ── SIDEBAR CARDS (Chamod & Sachintha — smaller horizontal cards beside Pasan) ── */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;               /* horizontal layout like leader card */
  flex-direction: row;
  transition: all var(--t) var(--ease);
}
.sidebar-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--border-2); }

.sidebar-img-wrap {
  width: 130px;
  flex-shrink: 0;
  overflow: hidden;
  align-self: stretch;
  min-height: 160px;
}
.sidebar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s;
}
.sidebar-card:hover .sidebar-img { transform: scale(1.05); }

.sidebar-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-role {
  display: inline-flex;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-2);
  background: var(--blue-light);
  padding: 3px 8px;
  border-radius: 100px;
  align-self: flex-start;
}
.sidebar-body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.sidebar-body p {
  font-size: 12px;
  color: var(--slate-2);
  line-height: 1.65;
  flex: 1;
}
.sidebar-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px; }
.sidebar-tags span {
  font-size: 9px;
  font-weight: 500;
  padding: 2px 7px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--slate-2);
}

/* ── OLD CORE CARD (kept for other pages if needed) ── */
.core-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.core-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.core-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--border-2); }
.core-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.core-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.core-card:hover .core-img { transform: scale(1.06); }
.core-body { padding: 16px; }
.core-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--navy); margin-bottom: 2px; }
.core-role { font-size: 11px; font-weight: 600; color: var(--blue-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.core-card p { font-size: 13px; color: var(--slate-2); line-height: 1.6; margin-bottom: 12px; }
.core-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.core-tags span { font-size: 10px; font-weight: 500; padding: 3px 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; color: var(--slate-2); }

/* Values */
.values-section { padding: var(--section-pad) 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--t);
}
.value-card:hover { background: var(--blue-pale); border-color: var(--border-2); }
.vc-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: 14px;
  font-style: italic;
}
.value-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--slate-2); line-height: 1.7; }

/* ── SERVICES DETAIL PAGE ── */
.svc-sticky-nav {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.svc-sticky-nav .container { display: flex; overflow-x: auto; }
.ssn-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 16px 18px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--t);
}
.ssn-link:hover { color: var(--navy); border-color: var(--border-2); }
.ssn-link.active-link { color: var(--blue-2); border-color: var(--blue-2); }

.svc-detail-section { padding: var(--section-pad) 0; background: var(--white); }
.svc-detail-section.alt { background: var(--bg); }
.sds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sds-num {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: -14px;
  display: block;
  font-style: italic;
}
.sds-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sds-icon svg { width: 26px; height: 26px; stroke: var(--blue-2); }
.sds-title {
  font-family: var(--font-display);
  font-size: clamp(32px,4vw,44px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.sds-title em { font-style: italic; color: var(--blue-2); }
.sds-intro { font-size: 16px; color: var(--slate-2); line-height: 1.8; margin-bottom: 28px; }
.sds-list-title { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.sds-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; }
.sds-list li { font-size: 15px; color: var(--slate); padding-left: 18px; position: relative; line-height: 1.5; }
.sds-list li::before { content: '–'; position: absolute; left: 0; color: var(--blue-2); font-weight: 600; }

.sds-tech-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.svc-detail-section.alt .sds-tech-card { background: var(--white); }
.stc-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.tech-group { margin-bottom: 14px; }
.tech-group:last-child { margin-bottom: 0; }
.tg-label { font-size: 11px; font-weight: 600; color: var(--muted-2); margin-bottom: 7px; }
.tg-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.tg-chips span {
  font-size: 12px;
  font-weight: 500;
  font-family: monospace;
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--navy);
  transition: all var(--t);
}
.svc-detail-section.alt .tg-chips span { background: var(--bg); }
.tg-chips span:hover { border-color: var(--blue-2); color: var(--blue-2); }

.sds-case {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sdc-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.sds-case h5 { font-family: var(--font-display); font-size: 17px; color: var(--white); margin-bottom: 8px; }
.sds-case p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 14px; }
.sdc-metrics { display: flex; gap: 8px; flex-wrap: wrap; }
.sdc-metrics span {
  font-size: 11px;
  font-weight: 600;
  color: #7DBAFF;
  background: rgba(41,112,214,0.15);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── PORTFOLIO ── */
.portfolio-section { padding: var(--section-pad) 0; background: var(--white); }
.port-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.pf-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
}
.pf-btn.active, .pf-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.port-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  transition: all 0.3s var(--ease);
}
.port-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pf-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-2); margin-bottom: 10px; }
.pf-title { font-family: var(--font-display); font-size: clamp(28px,3.5vw,42px); font-weight: 400; color: var(--navy); margin-bottom: 14px; }
.pf-title em { font-style: italic; color: var(--blue-2); }
.pf-desc { font-size: 15px; color: var(--slate-2); line-height: 1.75; margin-bottom: 24px; }
.pf-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 20px; }
.pfm-val { font-family: var(--font-display); font-size: 22px; color: var(--blue-2); display: block; }
.pfm-label { font-size: 12px; color: var(--muted); }
.pf-stack { display: flex; gap: 6px; flex-wrap: wrap; }
.pf-stack span { font-size: 11px; font-weight: 500; padding: 3px 9px; background: var(--white); border: 1px solid var(--border); border-radius: 4px; color: var(--slate); font-family: monospace; }

.pf-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-browser {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pfb-bar {
  height: 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}
.pfb-dots { display: flex; gap: 5px; }
.pfb-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border-2); }
.pfb-dots span:nth-child(1) { background: #FF5F57; }
.pfb-dots span:nth-child(2) { background: #FFBD2E; }
.pfb-dots span:nth-child(3) { background: #28CA41; }
.pfb-body { display: flex; height: 160px; }
.pfb-sidebar { width: 44px; background: var(--navy); }
.pfb-main { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.pfb-header { height: 18px; background: var(--bg); border-radius: 4px; }
.pfb-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.pfb-card { height: 34px; border-radius: 6px; }
.pfb-chart { flex: 1; background: var(--bg); border-radius: 4px; }

.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.pg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--border-2); }
.pg-visual { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.pg-body { padding: 20px; }
.pg-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-2); margin-bottom: 6px; }
.pg-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
.pg-body p { font-size: 13px; color: var(--slate-2); line-height: 1.6; margin-bottom: 10px; }
.pg-result { font-size: 12px; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.pg-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.pg-tags span { font-size: 10px; font-weight: 500; padding: 2px 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; color: var(--slate-2); font-family: monospace; }

.awards-section { padding: var(--section-pad) 0; background: var(--bg); }
.awards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--t);
}
.award-card:hover { border-color: var(--blue-2); transform: translateY(-2px); }
.aw-year { font-size: 12px; font-weight: 600; color: var(--blue-2); letter-spacing: 0.06em; margin-bottom: 6px; }
.aw-name { font-family: var(--font-display); font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.aw-project { font-size: 13px; color: var(--muted); }

/* ── CONTACT ── */
.contact-hero {
  padding: 120px 0 64px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.cf-header h2 { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
.cf-header p { font-size: 15px; color: var(--slate-2); line-height: 1.7; margin-bottom: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group label { font-size: 13px; font-weight: 600; color: var(--slate); }
.req { color: #E23B3B; }
.cf-group input, .cf-group select, .cf-group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(41,112,214,0.1);
}
.cf-group input::placeholder, .cf-group textarea::placeholder { color: var(--muted-2); }
.cf-group select { cursor: pointer; }
.cf-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.cf-checks { display: flex; flex-direction: column; gap: 10px; }
.cf-check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--slate-2); }
.cf-check input { display: none; }
.cf-check-box {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border-2);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.cf-check input:checked + .cf-check-box { background: var(--blue-2); border-color: var(--blue-2); }
.cf-check input:checked + .cf-check-box::after { content: '✓'; font-size: 10px; color: #fff; font-weight: 700; }

.btn-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue-2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.01em;
}
.btn-form-submit:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(41,112,214,0.3); }
.cf-disclaimer { font-size: 12px; color: var(--muted-2); text-align: center; margin-top: -6px; }
.cf-disclaimer a { color: var(--blue-2); }

.form-success { display: none; text-align: center; padding: 56px 20px; }
.fss-icon { width: 64px; height: 64px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; margin: 0 auto 20px; }
.form-success h3 { font-family: var(--font-display); font-size: 26px; color: var(--navy); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--slate-2); line-height: 1.7; }

.contact-info-col { display: flex; flex-direction: column; gap: 18px; }
.ci-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.ci-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--navy); margin-bottom: 18px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.ci-item:last-child { margin-bottom: 0; }
.ci-icon {
  width: 36px; height: 36px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 16px; height: 16px; stroke: var(--blue-2); }
.ci-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); margin-bottom: 3px; }
.ci-val { font-size: 14px; font-weight: 600; color: var(--navy); }
.ci-val a { color: var(--navy); }
.ci-val a:hover { color: var(--blue-2); }
.ci-note { font-size: 12px; color: var(--muted); }

.office-item { display: flex; gap: 12px; margin-bottom: 14px; }
.office-item:last-child { margin-bottom: 0; }
.office-flag { font-size: 20px; flex-shrink: 0; }
.office-body strong { font-size: 14px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 2px; }
.office-body p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.office-tz { font-size: 11px; font-weight: 600; color: var(--blue-2); display: block; margin-top: 3px; }

.trust-card { background: var(--blue-pale); border-color: rgba(41,112,214,0.2) !important; }
.trust-item { display: flex; gap: 10px; margin-bottom: 14px; }
.trust-item:last-child { margin-bottom: 0; }
.trust-check { width: 18px; height: 18px; background: var(--blue-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; margin-top: 2px; }
.trust-body strong { font-size: 13px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 2px; }
.trust-body p { font-size: 12px; color: var(--slate-2); line-height: 1.5; }

.faq-section { padding: var(--section-pad) 0; background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: all var(--t); }
.faq-item:hover { border-color: var(--border-2); transform: translateY(-2px); }
.faq-item h4 { font-family: var(--font-display); font-size: 17px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.faq-item p { font-size: 14px; color: var(--slate-2); line-height: 1.7; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 72px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: rgba(255,255,255,0.3); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 260px; margin-top: 12px; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.fsoc {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--t);
}
.fsoc:hover { background: var(--blue-2); border-color: var(--blue-2); color: #fff; }
.fsoc svg { width: 14px; height: 14px; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.footer-col h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 14px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); display: block; margin-bottom: 8px; transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.footer-address { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; margin-top: 8px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.28); transition: color var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .intro-grid, .why-grid, .story-grid, .fp-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-left { position: static; }
  .team-leadership, .leadership-grid { grid-template-columns: 1fr; }
  .sds-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .core-grid { grid-template-columns: 1fr 1fr; }
  /* Stack the leadership row on tablet */
  .leadership-row { grid-template-columns: 1fr !important; }
  .sidebar-stack { flex-direction: row !important; }
}
@media (max-width: 768px) {
  .main-nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .mobile-nav { padding: 16px 24px 24px; }
  .hero { padding-top: 100px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .port-featured { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .ph-inner { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  /* Full stack on mobile */
  .leadership-row { grid-template-columns: 1fr !important; }
  .sidebar-stack { flex-direction: column !important; }
  .sidebar-card { flex-direction: column !important; }
  .sidebar-img-wrap { width: 100% !important; min-height: 200px !important; }
}
@media (max-width: 520px) {
  .port-grid { grid-template-columns: 1fr; }
  .core-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .ph-stat-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}