/* ============================================================
   ALOFT SOLUTIONS INDIA — Design System v2.0 (Light Theme)
   April 2026
============================================================ */

/* 1. Variables */
:root {
  /* Backgrounds */
  --bg:     #F7FAF8;
  --bg-2:   #E8F5EC;
  --bg-3:   #FFFFFF;

  /* Cards */
  --card:   #FFFFFF;
  --card-h: #F0FAF3;

  /* Borders */
  --border:   rgba(3,117,62,0.15);
  --border-h: rgba(3,117,62,0.45);

  /* Brand Colors */
  --cyan:    #16A34A;
  --cyan-d:  rgba(22,163,74,0.1);
  --purple:  #03753E;
  --purple-d:rgba(3,117,62,0.1);
  --green:   #05A152;
  --green-d: rgba(5,161,82,0.1);
  --pink:    #F43F5E;
  --pink-d:  rgba(244,63,94,0.1);
  --gold:    #F59E0B;

  /* Text */
  --t1: #0F172A;
  --t2: #334155;
  --t3: #64748B;

  /* Gradients */
  --grad:   linear-gradient(135deg, #03753E, #16A34A);
  --grad-r: linear-gradient(135deg, #16A34A, #03753E);
  --grad-g: linear-gradient(135deg, #05A152, #03753E);
  --grad-p: linear-gradient(135deg, #F43F5E, #03753E);

  /* Shadows */
  --shadow:   0 8px 40px rgba(3,117,62,0.13);
  --shadow-c: 0 4px 24px rgba(22,163,74,0.2);
  --shadow-p: 0 4px 24px rgba(3,117,62,0.2);

  --r:    14px;
  --r-sm: 8px;
  --r-lg: 22px;
  --r-f:  999px;

  --ease:    cubic-bezier(0.4,0,0.2,1);
  --tr:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --tr-slow: all 0.6s cubic-bezier(0.4,0,0.2,1);

  --nav-h: 72px;
  --py:    96px;
  --wrap:  1200px;
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* 3. Layout */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
section { padding: var(--py) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 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; }
.flex-c { display: flex; align-items: center; justify-content: center; }
.flex-b { display: flex; align-items: center; justify-content: space-between; }

.tc { text-align: center; }
.tc .sec-desc { margin: 0 auto; }
.tc .sec-tag { justify-content: center; }
.tc .sec-tag::before { display: none; }
.tc .sec-tag::after { content: ''; width: 22px; height: 2px; background: var(--purple); display: block; }

/* 4. Typography */
h1,h2,h3,h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.025em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.sec-tag::before { content: ''; width: 22px; height: 2px; background: var(--purple); display: block; }

.sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--t1);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.sec-desc {
  font-size: 1.05rem;
  color: var(--t2);
  max-width: 560px;
  line-height: 1.8;
}

/* 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--r-f);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(3,117,62,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(3,117,62,0.45); }

.btn-ghost {
  background: rgba(3,117,62,0.08);
  border: 1px solid rgba(3,117,62,0.2);
  color: var(--purple);
}
.btn-ghost:hover { background: rgba(3,117,62,0.14); border-color: rgba(99,102,241,0.4); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(22,163,74,0.4);
  color: var(--cyan);
  background: var(--cyan-d);
}
.btn-outline:hover { background: var(--cyan); color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* 6. Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--tr);
}
.nav.scrolled {
  background: rgba(247,250,248,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(3,117,62,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 52px; width: auto; display: block; object-fit: contain; }
.nav-brand { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #03753E;
  border-bottom: 2px solid #16A34A;
  padding-bottom: 3px;
  margin-bottom: 3px;
}
.nav-brand-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #03753E;
  letter-spacing: 0.01em;
  margin-top: 3px;
}
@media (max-width: 1100px) {
  .nav-brand-name { font-size: 1rem; }
  .nav-brand-tag { font-size: 0.65rem; }
}
@media (max-width: 860px) {
  .nav-brand { display: none; }
}
.logo-mark { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--t3); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 7px 13px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t2);
  transition: var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--purple); background: var(--purple-d); }

.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr);
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(3,117,62,0.15);
}
.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; pointer-events: all; }
.nav-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: var(--t2);
  transition: var(--tr);
}
.nav-drop-item:hover { background: var(--bg-2); color: var(--t1); }
.v-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.nav-cta {
  padding: 9px 22px;
  background: var(--grad);
  border-radius: var(--r-f);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-left: 10px;
  box-shadow: 0 4px 16px rgba(3,117,62,0.35);
  transition: var(--tr);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(3,117,62,0.45); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--t2); border-radius: 2px; transition: var(--tr); }

.nav-mob {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(3,117,62,0.1);
}
.nav-mob.open { display: flex; }
.nav-mob .nav-link { padding: 12px 16px; width: 100%; display: block; font-size: 0.95rem; color: var(--t2); }
.nav-mob .nav-link:hover { color: var(--purple); background: var(--purple-d); }

/* 7. Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 80% 30%, rgba(3,117,62,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 20% 70%, rgba(22,163,74,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(244,63,94,0.06) 0%, transparent 55%),
    #F8FAFF;
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(3,117,62,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3,117,62,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, black 20%, transparent 80%);
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(3,117,62,0.09);
  border: 1px solid rgba(3,117,62,0.25);
  border-radius: var(--r-f);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 26px;
}
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); animation: pulse 2s ease infinite; }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  color: var(--t1);
}
.hero-desc { font-size: 1.1rem; color: var(--t2); max-width: 510px; line-height: 1.8; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-n {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-l { font-size: 0.78rem; color: var(--t3); font-weight: 500; margin-top: 2px; }

/* 8. Page Hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(3,117,62,0.1) 0%, transparent 65%),
    linear-gradient(180deg, #E8F5EC 0%, #F7FAF8 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  color: var(--t1);
}
.page-hero-desc { font-size: 1.1rem; color: var(--t2); max-width: 580px; line-height: 1.8; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--t3);
  margin-bottom: 24px;
}
.page-hero .breadcrumb a { color: var(--purple); transition: var(--tr); }
.page-hero .breadcrumb a:hover { color: var(--t1); }

/* 9. Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(3,117,62,0.06);
}
.card:hover { background: var(--card-h); border-color: var(--border-h); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(3,117,62,0.14); }

/* 10. Vertical Cards */
.vc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(3,117,62,0.06);
}
.vc::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #03753E 0%, #16A34A 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.vc:hover::after { transform: scaleX(1); }
.vc:hover { background: var(--card-h); transform: translateY(-6px); box-shadow: var(--shadow); }
.vc p { text-align: justify; }
.client-trust-grid { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 960px) { .client-trust-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px) { .client-trust-grid { grid-template-columns: 1fr !important; } }

.vc-badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--vc-bg, var(--purple-d));
  border: 1px solid var(--vc-c, var(--purple));
  border-radius: var(--r-f);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vc-c, var(--purple));
  margin: 0 auto 20px;
}

/* 11. Stats */
.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: var(--tr);
  box-shadow: 0 2px 12px rgba(3,117,62,0.06);
}
.stat-card:hover { border-color: var(--border-h); transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label { font-size: 0.85rem; color: var(--t2); margin-top: 8px; font-weight: 500; }

/* 12. Feature List */
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--t2); }
.feat-check {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(3,117,62,0.1);
  border: 1px solid rgba(3,117,62,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.6rem;
  color: var(--purple);
  font-weight: 900;
}

/* 13. CTA Band */
.cta-band {
  background: linear-gradient(135deg, rgba(3,117,62,0.07) 0%, rgba(22,163,74,0.07) 100%);
  border: 1.5px solid rgba(3,117,62,0.18);
  border-radius: var(--r-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% -20%, rgba(3,117,62,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* 14. Forms */
.f-group { margin-bottom: 20px; }
.f-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--t2); margin-bottom: 7px; }
.f-input, .f-select, .f-textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid rgba(79,70,229,0.15);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--t1);
  transition: var(--tr);
  outline: none;
}
.f-input::placeholder, .f-textarea::placeholder { color: #94A3B8; }
.f-input:focus, .f-select:focus, .f-textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(3,117,62,0.12); }
.f-textarea { resize: vertical; min-height: 130px; }
.f-select option { background: #FFFFFF; color: var(--t1); }

/* 15. Footer (Dark Forest Green for strong contrast) */
.footer { background: linear-gradient(90deg, #03753E 0%, #0B3D1F 100%); border-top: none; padding: 72px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 52px; }
.foot-desc { font-size: 0.98rem; color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 320px; margin: 16px 0 24px; }
.foot-social { display: flex; gap: 10px; }
.soc-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: var(--tr);
}
.soc-link:hover { background: rgba(22,163,74,0.25); border-color: rgba(22,163,74,0.5); color: #16A34A; }
.foot-col-title { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.95); margin-bottom: 18px; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-link { font-size: 0.98rem; color: rgba(255,255,255,0.78); transition: var(--tr); }
.foot-link:hover { color: #BBF7D0; transform: translateX(4px); }
.foot-ci { display: flex; align-items: flex-start; gap: 10px; font-size: 0.98rem; color: rgba(255,255,255,0.85); margin-bottom: 12px; line-height: 1.5; }
.foot-ci-icon { color: #BBF7D0; flex-shrink: 0; margin-top: 1px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.65); flex-wrap: wrap; gap: 12px; }

/* Footer logo override for dark bg */
.footer-logo-img { height: 72px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand .nav-brand-name { color: #ffffff; border-bottom-color: rgba(255,255,255,0.85); font-size: 1.2rem; }
.footer-brand .nav-brand-tag { color: rgba(255,255,255,0.92); font-size: 0.78rem; }
.footer-brand { display: flex !important; }
.footer .logo-name { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer .logo-sub { color: rgba(255,255,255,0.4); }
.footer .btn-outline { border-color: rgba(22,163,74,0.45); color: #16A34A; background: rgba(22,163,74,0.1); }
.footer .btn-outline:hover { background: #16A34A; color: #fff; }

/* 16. WhatsApp Float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--tr);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37,211,102,0.55); }

/* 17. Tags */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-f);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--t3);
}
.tag-cyan   { background: var(--cyan-d);   border-color: rgba(22,163,74,0.3);  color: #16A34A; }
.tag-purple { background: var(--purple-d); border-color: rgba(3,117,62,0.3);  color: #03753E; }
.tag-green  { background: var(--green-d);  border-color: rgba(5,161,82,0.3);  color: #059669; }
.tag-pink   { background: var(--pink-d);   border-color: rgba(244,63,94,0.3);   color: #E11D48; }

/* 18. Contact Info Cards */
.ci-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: var(--tr);
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(3,117,62,0.05);
}
.ci-card:hover { border-color: var(--border-h); box-shadow: var(--shadow); }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--cyan-d);
  border: 1px solid rgba(22,163,74,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* 19. Industry Logo Cards */
.ind-logo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 26px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
  min-height: 72px;
  box-shadow: 0 2px 8px rgba(3,117,62,0.04);
}
.ind-logo:hover { background: var(--card-h); border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow); }
.ind-logo span { font-size: 0.8rem; font-weight: 700; color: var(--t3); letter-spacing: 0.02em; transition: var(--tr); }
.ind-logo:hover span { color: var(--purple); }

/* 20. Testimonials */
.testi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: var(--tr);
  box-shadow: 0 2px 12px rgba(3,117,62,0.06);
}
.testi:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-text { font-size: 0.95rem; color: var(--t2); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 0.875rem; font-weight: 700; color: var(--t1); }
.testi-role { font-size: 0.78rem; color: var(--t3); }
.stars { color: #F59E0B; font-size: 0.8rem; margin-bottom: 16px; letter-spacing: 2px; }

/* 21. Differentiator cards */
.diff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: var(--tr);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(3,117,62,0.05);
}
.diff-card:hover { background: var(--card-h); border-color: var(--border-h); transform: translateX(6px); box-shadow: var(--shadow); }
.diff-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 50px;
}

/* 22. Process steps */
.process-step { display: flex; gap: 24px; align-items: flex-start; padding-bottom: 36px; position: relative; }
.process-step::before { content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--purple), transparent); opacity: 0.2; }
.process-step:last-child::before { display: none; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(3,117,62,0.3);
}
.step-body h4 { font-size: 1rem; font-weight: 700; color: var(--t1); margin-bottom: 6px; }
.step-body p { font-size: 0.875rem; color: var(--t2); line-height: 1.7; }

/* 23. Section BG variants */
.bg-alt { background: var(--bg-2); }
.bg-r1 {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(3,117,62,0.08) 0%, transparent 65%),
    var(--bg);
}
.bg-r2 {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(22,163,74,0.08) 0%, transparent 65%),
    var(--bg);
}

/* 24. Scroll Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.show { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* 25. Animations */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* 26. Comparison Table */
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.comp-table th { font-size: 0.78rem; font-weight: 700; color: var(--t3); letter-spacing: 0.08em; text-transform: uppercase; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table .col-aloft { color: var(--purple); font-weight: 700; }
.comp-table .col-other { color: var(--t3); }
.comp-yes::before { content: '✓ '; color: var(--green); font-weight: 900; }
.comp-no::before { content: '✗ '; color: #EF4444; font-weight: 900; }

/* 27. FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 0;
  font-size: 0.95rem; font-weight: 600; color: var(--t1);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  transition: var(--tr);
}
.faq-q:hover { color: var(--purple); }
.faq-icon { font-size: 1.2rem; color: var(--t3); transition: var(--tr); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--purple); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: 0.9rem; color: var(--t2); line-height: 1.8; padding-bottom: 20px; }

/* 28. Values grid */
.value-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: var(--tr);
  box-shadow: 0 2px 8px rgba(3,117,62,0.05);
}
.value-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--t1); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--t2); line-height: 1.7; }

/* 29. Team Cards */
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  transition: var(--tr);
  box-shadow: 0 2px 12px rgba(3,117,62,0.06);
}
.team-card:hover { border-color: var(--border-h); transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: #fff;
}
.team-name { font-size: 1rem; font-weight: 700; color: var(--t1); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--purple); font-weight: 600; margin-bottom: 10px; }
.team-desc { font-size: 0.82rem; color: var(--t3); line-height: 1.65; }

/* 30. Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--purple), var(--cyan)); opacity: 0.25; }
.tl-item { position: relative; padding-bottom: 32px; }
.tl-item::before { content: ''; position: absolute; left: -25px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--purple); border: 2px solid var(--bg); box-shadow: 0 0 0 3px rgba(3,117,62,0.2); }
.tl-year { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; color: var(--purple); margin-bottom: 4px; }
.tl-title { font-size: 0.95rem; font-weight: 700; color: var(--t1); margin-bottom: 4px; }
.tl-desc { font-size: 0.83rem; color: var(--t2); line-height: 1.65; }

/* 31. Office cards */
.office-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: var(--tr);
  box-shadow: 0 2px 8px rgba(3,117,62,0.05);
}
.office-card:hover { border-color: var(--border-h); box-shadow: var(--shadow); }

/* 32. Industry page cards */
.ind-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(3,117,62,0.06);
}
.ind-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ic-grad, var(--grad));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.ind-card:hover::after { transform: scaleX(1); }
.ind-card:hover { background: var(--card-h); transform: translateY(-5px); box-shadow: var(--shadow); }
.ind-icon { font-size: 2.4rem; margin-bottom: 16px; }
.ind-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--t1); margin-bottom: 10px; }
.ind-card p { font-size: 0.875rem; color: var(--t2); line-height: 1.75; margin-bottom: 16px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* 33. Contact form card */
.form-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(3,117,62,0.08);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
}

/* 34. WhatsApp CTA card (contact page) */
.wa-cta-card {
  background: linear-gradient(135deg, rgba(37,211,102,0.07), rgba(37,211,102,0.03));
  border: 1.5px solid rgba(37,211,102,0.25);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  transition: var(--tr);
}
.wa-cta-card:hover { border-color: rgba(37,211,102,0.5); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.12); }
.wa-icon-big {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

/* 35. Services page specific */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.svc-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.83rem; color: var(--t2);
  transition: var(--tr);
}
.svc-item:hover { background: var(--card); border-color: var(--border-h); color: var(--t1); box-shadow: 0 2px 8px rgba(3,117,62,0.08); }
.svc-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.p-step {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  transition: var(--tr);
  position: relative;
}
.p-step:last-child { border-right: 1px solid var(--border); }
.p-step:hover { background: var(--card-h); z-index: 1; border-color: var(--border-h); box-shadow: var(--shadow); }
.p-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

/* 36. Industries strip (home) */
.ind-strip-item {
  padding: 10px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-f);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t2);
  transition: var(--tr);
  box-shadow: 0 1px 6px rgba(3,117,62,0.05);
}
.ind-strip-item:hover { background: var(--purple-d); border-color: rgba(3,117,62,0.35); color: var(--purple); transform: translateY(-2px); }

/* 37. Insights page */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 20px 0 10px;
}
.filter-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-size: 0.82rem; font-weight: 600; color: var(--t2);
  cursor: pointer; transition: var(--tr);
  font-family: var(--ff);
}
.filter-btn:hover { border-color: var(--border-h); color: var(--purple); background: var(--purple-d); }
.filter-btn.active { background: var(--purple); border-color: var(--purple); color: #fff; }
.filter-btn.active .v-dot { opacity: 0.8; }

.insight-featured {
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--card), var(--card-h));
  border: 1.5px solid var(--border-h);
  border-radius: var(--r);
  border-left: 4px solid var(--purple);
  margin-bottom: 12px;
  transition: var(--tr);
}
.insight-featured:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.insight-featured-badge { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.insight-featured-title {
  font-size: 1.35rem; font-weight: 800; color: var(--t1);
  line-height: 1.45; margin-bottom: 14px;
}
.insight-featured-excerpt {
  font-size: 0.93rem; color: var(--t2); line-height: 1.8;
  margin-bottom: 24px; max-width: 860px;
}
.insight-featured-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.insight-meta-date {
  font-size: 0.78rem; color: var(--t3); font-weight: 500;
}

.insights-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.insight-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: var(--tr);
  position: relative; overflow: hidden;
}
.insight-card::after {
  content: ''; position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.insight-card:hover::after { transform: scaleX(1); }
.insight-card:hover { background: var(--card-h); border-color: var(--border-h); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(3,117,62,0.13); }
.insight-cat-bar { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.insight-icon { font-size: 2rem; line-height: 1; }
.insight-title { font-size: 0.97rem; font-weight: 800; color: var(--t1); line-height: 1.5; }
.insight-excerpt { font-size: 0.84rem; color: var(--t2); line-height: 1.75; flex: 1; }
.insight-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.insight-read-more {
  font-size: 0.82rem; font-weight: 700; color: var(--purple);
  text-decoration: none; white-space: nowrap;
  transition: var(--tr);
}
.insight-read-more:hover { color: var(--green); transform: translateX(3px); display: inline-block; }

.insight-newsletter {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
  padding: 48px 52px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.insight-nl-form { display: flex; flex-direction: column; align-items: center; min-width: 220px; }

/* Insights responsive */
@media (max-width: 1100px) {
  .insights-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .insight-featured { padding: 26px 24px; }
  .insight-featured-title { font-size: 1.1rem; }
  .insight-newsletter { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
}
@media (max-width: 620px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight-featured-footer { flex-direction: column; align-items: flex-start; }
}

/* 38b. Key Services strip (under main nav) */
.key-strip {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: linear-gradient(90deg, #03753E 0%, #0B3D1F 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 14px rgba(3,117,62,0.18);
}
.key-strip-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.key-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.25;
  border-right: 1px solid rgba(255,255,255,0.10);
  transition: background 0.18s ease, color 0.18s ease;
}
.key-lbl {
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}
.key-item:last-child { border-right: none; }
.key-item:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}
.key-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  font-size: 0.78rem;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .key-strip-inner {
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .key-strip-inner::-webkit-scrollbar { height: 4px; }
  .key-strip-inner::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 2px; }
  .key-item {
    flex: 0 0 auto;
    min-width: 150px;
    font-size: 0.8rem;
    padding: 11px 14px;
    white-space: nowrap;
  }
  .key-item .key-lbl { white-space: nowrap; }
}
@media (max-width: 760px) {
  body { padding-top: var(--nav-h); }
  .key-strip { position: static; margin-top: 0; }
  .key-item { min-width: 140px; padding: 10px 12px; font-size: 0.78rem; }
  .key-item .key-lbl { display: inline; }
  .hero { padding-top: 0; min-height: auto; }
  .page-hero { padding-top: 24px; padding-bottom: 56px; }
}

/* 38f. CTA band background image */
.cta-bg {
  background-image: linear-gradient(rgba(255,255,255,0.10), rgba(255,255,255,0.15)), url('/img/Ready-to-Navigate-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(3,117,62,0.15);
}
.cta-bg h2 { text-shadow: 0 2px 6px rgba(255,255,255,0.85); }
.cta-bg p { text-shadow: 0 1px 4px rgba(255,255,255,0.85); }

/* 38e. Logo Marquee (clients & partners) */
.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 12px 0 4px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: logoScroll 38s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--t2);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(3,117,62,0.06);
  transition: var(--tr);
}
.logo-pill:hover {
  background: var(--card-h);
  border-color: var(--purple);
  color: var(--purple);
}
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes logoScrollRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.logo-track-rev { animation: logoScrollRev 42s linear infinite; }
.logo-marquee + .logo-marquee { margin-top: 18px; }
.logo-pill-img {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  min-width: 200px;
  padding: 18px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(3,117,62,0.06);
  transition: var(--tr);
}
.logo-pill-img img {
  max-height: 80px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.92;
  transition: var(--tr);
}
.logo-pill-img:hover { border-color: var(--purple); transform: translateY(-2px); }
.logo-pill-img:hover img { filter: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .logo-track, .logo-track-rev { animation: none; }
}

/* 38d. Our Offerings — End-to-End Regulatory Solutions */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.offer-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px 24px;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  scroll-margin-top: 180px;
}
.offer-card.flash-highlight {
  box-shadow: 0 0 0 3px rgba(22,163,74,0.55), 0 18px 44px rgba(3,117,62,0.18);
  transform: translateY(-2px);
}
.offer-card:hover {
  background: var(--card-h);
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(3,117,62,0.12);
}
.offer-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
  margin-bottom: 18px;
  border-radius: 0;
  font-size: 1.5rem;
  color: #03753E;
}
.offer-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.offer-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--t1);
  margin-bottom: 14px;
  min-height: 44px;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  flex: 1;
}
.offer-list li {
  position: relative;
  font-size: 0.78rem;
  color: var(--t2);
  line-height: 1.55;
  padding: 6px 0 6px 16px;
  border-bottom: 1px dashed rgba(3,117,62,0.10);
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--purple);
  font-weight: 800;
  font-size: 0.95rem;
}
.offer-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: gap 0.18s ease;
}
.offer-more:hover { gap: 10px; color: var(--cyan); }

@media (max-width: 1180px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .offer-card { padding: 22px 18px 20px; }
}
@media (max-width: 520px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* 38c. About Aloft section responsive */
@media (max-width: 800px) {
  .about-aloft-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about-aloft-grid > div:first-child { justify-content: center !important; }
}

/* 39. Responsive */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .logos-grid { grid-template-columns: repeat(3,1fr) !important; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .p-step { border-right: 1px solid var(--border); }
}
@media (max-width: 900px) {
  :root { --py: 72px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .cta-band { padding: 48px 32px; }
  .hero-stats { gap: 24px; }
  .svc-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 620px) {
  :root { --py: 56px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .wrap { padding: 0 16px; }
  .card { padding: 22px; }
  .vc { padding: 28px; }
  .cta-band { padding: 36px 20px; }
  .testi { padding: 28px 22px; }
  .diff-card { flex-direction: column; gap: 10px; }
  .form-card { padding: 28px 20px; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .process-grid { grid-template-columns: 1fr; }
  .p-step { border-right: 1px solid var(--border); }
  .logos-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* 39. OUR APPROACH — How We Work With You */
.approach-sec { position: relative; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.approach-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(3,117,62,0.25) 50%, transparent 50%);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.approach-card {
  background: #fff;
  border: 1px solid rgba(3,117,62,0.10);
  border-radius: 18px;
  padding: 28px 22px 26px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 22px rgba(3,117,62,0.06);
  transition: var(--tr);
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(3,117,62,0.12);
  border-color: rgba(3,117,62,0.22);
}
.approach-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
}
.approach-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8F5EE 0%, #D6F0E0 100%);
  border: 1.5px dashed rgba(3,117,62,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-step {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #16A34A, #03753E);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(3,117,62,0.3);
  border: 2px solid #fff;
}
.approach-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 12px;
}
.approach-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, #16A34A, #03753E);
  border-radius: 2px;
}
.approach-text {
  font-size: 0.875rem;
  color: var(--t2);
  line-height: 1.7;
}
.approach-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid rgba(3,117,62,0.15);
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.92rem;
  color: var(--t2);
  text-align: center;
  box-shadow: 0 6px 20px rgba(3,117,62,0.06);
}
.approach-footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #E8F5EE;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid::before { display: none; }
}
@media (max-width: 540px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-footer { border-radius: 16px; flex-direction: column; }
}

/* 40. LEADERSHIP — Meet Our Directors */
.leader-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.leader-card {
  background: #fff;
  border: 1px solid rgba(3,117,62,0.10);
  border-radius: 22px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-column-gap: 36px;
  grid-row-gap: 16px;
  align-items: start;
  box-shadow: 0 8px 28px rgba(3,117,62,0.07);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.leader-card > .leader-head { grid-column: 1; grid-row: 1 / span 4; }
.leader-card > .leader-bio { grid-column: 2; grid-row: 1; margin: 0; }
.leader-card > .leader-block:nth-of-type(1) { grid-column: 2; grid-row: 2; }
.leader-card > .leader-block:nth-of-type(2) { grid-column: 2; grid-row: 3; }
/* Second card: image on the right */
.leader-grid > .leader-card:nth-child(2) { grid-template-columns: 1fr 280px; }
.leader-grid > .leader-card:nth-child(2) > .leader-head { grid-column: 2; }
.leader-grid > .leader-card:nth-child(2) > .leader-bio,
.leader-grid > .leader-card:nth-child(2) > .leader-block:nth-of-type(1),
.leader-grid > .leader-card:nth-child(2) > .leader-block:nth-of-type(2) { grid-column: 1; }
.leader-head {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.leader-head-text { flex: 1; min-width: 0; padding-top: 14px; text-align: left; }
.leader-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, #16A34A, #03753E);
}
.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(3,117,62,0.13);
  border-color: rgba(3,117,62,0.22);
}
.leader-photo {
  width: 280px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #E8F5EE 0%, #D6F0E0 100%);
  box-shadow: 0 8px 22px rgba(3,117,62,0.16);
  border: 3px solid #fff;
  outline: 1px solid rgba(3,117,62,0.10);
  display: block;
  object-fit: contain;
}
.leader-body { min-width: 0; }
.leader-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--t1);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.leader-role {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.leader-domain {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--t2);
  line-height: 1.45;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .leader-domain { white-space: normal; font-size: 0.92rem; }
}
.leader-bio {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 18px;
}
.leader-block { margin-top: 14px; }
.leader-block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.leader-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16A34A, #03753E);
  flex-shrink: 0;
}
.leader-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.leader-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--t2);
  line-height: 1.6;
}
.leader-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16A34A;
  font-weight: 800;
  font-size: 0.85rem;
}
.leader-quote {
  position: relative;
  max-width: 880px;
  margin: 44px auto 0;
  background: #fff;
  border: 1px solid rgba(3,117,62,0.12);
  border-left: 4px solid #03753E;
  border-radius: 16px;
  padding: 24px 28px 24px 64px;
  box-shadow: 0 6px 20px rgba(3,117,62,0.06);
}
.leader-quote-mark {
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: #03753E;
  opacity: 0.35;
  font-weight: 700;
}
.leader-quote p {
  font-size: 0.98rem;
  color: var(--t2);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}
@media (max-width: 860px) {
  .leader-card,
  .leader-grid > .leader-card:nth-child(2) {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .leader-card > .leader-head,
  .leader-card > .leader-bio,
  .leader-card > .leader-block:nth-of-type(1),
  .leader-card > .leader-block:nth-of-type(2),
  .leader-grid > .leader-card:nth-child(2) > .leader-head,
  .leader-grid > .leader-card:nth-child(2) > .leader-bio,
  .leader-grid > .leader-card:nth-child(2) > .leader-block:nth-of-type(1),
  .leader-grid > .leader-card:nth-child(2) > .leader-block:nth-of-type(2) {
    grid-column: 1;
    grid-row: auto;
  }
  .leader-head { flex-direction: column; align-items: center; text-align: center; }
  .leader-head-text { text-align: center; padding-top: 12px; }
  .leader-photo { width: 220px; max-width: 100%; margin: 0 auto; }
  .leader-name { font-size: 1.35rem; }
}
/* About: "Why Aloft" text + commitment image — single column on mobile */
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-why-grid { grid-template-columns: 1fr; gap: 36px; }
}
