/* ═══════════════════════════════════════════════════════════
   DamaNova Theme — Main Stylesheet
   Brand: Blue #3D63DD | Teal #26C6A2 | Amber #FF8A00
   Fonts: Poppins (headings/UI) + Inter (body)
═══════════════════════════════════════════════════════════ */

/* ─── 1. CUSTOM PROPERTIES ─── */
:root {
  --primary:    #3D63DD;
  --primary-dk: #2B4EC0;
  --secondary:  #26C6A2;
  --accent:     #FF8A00;
  --dark:       #1E2B4A;
  --mid:        #5B6D8A;
  --muted:      #8FA0BA;
  --light:      #F6F9FF;
  --border:     #E0E8F5;
  --white:      #FFFFFF;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 4px rgba(30,43,74,0.07);
  --shadow-md: 0 4px 20px rgba(30,43,74,0.11);
  --shadow-lg: 0 12px 40px rgba(30,43,74,0.15);
  --shadow-xl: 0 20px 60px rgba(30,43,74,0.18);

  --max-w: 1180px;
  --pad-x: clamp(16px, 4vw, 40px);

  --section-py: clamp(64px, 8vw, 104px);
}

/* ─── 2. RESET + BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ─── 3. TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: 0; }
h5 { font-size: 15px; font-weight: 600; letter-spacing: 0; }
p  { line-height: 1.7; }

.body-lg { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65; }
.body-sm { font-size: 14px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ─── 4. LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── 5. UTILITIES ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0; white-space: nowrap;
}
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-light { background: var(--light); }
.bg-dark  { background: var(--dark);  }

/* ─── 6. BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  padding: 13px 28px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  box-shadow: 0 6px 20px rgba(61,99,221,0.35);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #E57A00;
  border-color: #E57A00;
  box-shadow: 0 6px 20px rgba(255,138,0,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--light);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost-inv {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-inv:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn-sm  { padding: 9px 20px; font-size: 13px; border-radius: 10px; }
.btn-lg  { padding: 17px 36px; font-size: 16px; border-radius: var(--r-lg); }
.btn-xl  { padding: 20px 44px; font-size: 17px; border-radius: var(--r-lg); }

/* ─── 7. LOGO ─── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--primary);
  border-radius: 11px;
  gap: 4px;
  flex-shrink: 0;
}
.logo-icon.sz-md { width: 40px; height: 40px; padding: 9px 9px 8px; gap: 4px; }
.logo-icon.sz-sm { width: 32px; height: 32px; padding: 7px 7px 6px; gap: 3px; }
.logo-icon .bar  { display: block; background: white; border-radius: 2px; }
.logo-icon.sz-md .b1 { width: 5px; height: 8px; }
.logo-icon.sz-md .b2 { width: 5px; height: 14px; }
.logo-icon.sz-md .b3 { width: 5px; height: 20px; }
.logo-icon.sz-sm .b1 { width: 4px; height: 6px; }
.logo-icon.sz-sm .b2 { width: 4px; height: 10px; }
.logo-icon.sz-sm .b3 { width: 4px; height: 15px; }

.wordmark {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.wm-dama { color: var(--dark); font-weight: 400; }
.wm-nova { color: var(--primary); font-weight: 700; }
.wm-dama-inv { color: rgba(255,255,255,0.8); font-weight: 400; }
.wm-nova-inv { color: var(--secondary); font-weight: 700; }

/* ─── 8. SITE HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* ─── 9. PRIMARY NAVIGATION ─── */
.primary-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-list li a {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-list li a:hover,
.nav-list li.current-menu-item a,
.nav-list li.current_page_item a {
  color: var(--primary);
  background: rgba(61,99,221,0.06);
}
.header-actions { display: flex; align-items: center; gap: 12px; }

/* ─── 10. MOBILE MENU ─── */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px;
  flex-shrink: 0;
}
.hbg { display: flex; flex-direction: column; gap: 5px; }
.hbg span { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
[aria-expanded="true"] .hbg span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
[aria-expanded="true"] .hbg span:nth-child(2) { opacity: 0; transform: scaleX(0); }
[aria-expanded="true"] .hbg span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── 11. SITE FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding-top: 72px;
  padding-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-tagline {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 10px;
}
.footer-desc { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--secondary); }
.footer-contact li a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ─── 12. HERO ─── */
.hero {
  padding: clamp(72px, 10vw, 120px) 0 clamp(64px, 8vw, 104px);
  background: var(--light);
  background-image: radial-gradient(circle, rgba(61,99,221,0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: rgba(61,99,221,0.1);
  border: 1px solid rgba(61,99,221,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  margin-bottom: 24px;
  color: var(--dark);
}
.hero-title span { color: var(--primary); }
.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
}
.trust-item svg { color: var(--secondary); flex-shrink: 0; }

/* ─── 13. HERO VISUAL ─── */
.hero-visual {
  position: relative;
  height: 440px;
  flex-shrink: 0;
}
.hv-window {
  position: absolute;
  top: 10px;
  left: 0;
  right: 80px;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hv-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #F3F6FD;
  border-bottom: 1px solid var(--border);
}
.hv-dots { display: flex; gap: 6px; }
.hv-dots span { display: block; width: 11px; height: 11px; border-radius: 50%; }
.hv-dots span:nth-child(1) { background: #FF5F57; }
.hv-dots span:nth-child(2) { background: #FEBC2E; }
.hv-dots span:nth-child(3) { background: #28C840; }
.hv-url {
  flex: 1;
  text-align: center;
  font-family: 'Inter', monospace;
  font-size: 11px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
}
.hv-body { padding: 20px 18px; }
.hv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.hv-stat {
  background: var(--light);
  border-radius: var(--r-md);
  padding: 12px 10px;
  text-align: center;
}
.hv-stat-val {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hv-stat-key { font-size: 10px; color: var(--muted); }
.hv-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  background: var(--light);
  border-radius: var(--r-md);
  padding: 10px 12px 8px;
  margin-bottom: 16px;
}
.hv-cb {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--primary);
  opacity: 0.6;
  min-height: 6px;
}
.hv-cb:nth-child(even) { background: var(--secondary); }
.hv-cb:last-child { opacity: 1; }
.hv-list { display: flex; flex-direction: column; gap: 9px; }
.hv-li { display: flex; align-items: center; gap: 10px; }
.dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.dot.done    { background: var(--secondary); }
.dot.active  { background: var(--accent); }
.dot.pending { background: var(--border); }
.hv-li-line { height: 8px; background: var(--border); border-radius: 4px; }
.hv-li-line.lg { width: 72%; }
.hv-li-line.md { width: 52%; }
.hv-li-line.sm { width: 38%; }

/* Floating notification cards */
.hv-notif {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--border);
  z-index: 2;
}
.hv-notif-1 { top: 0; right: 0; animation: float 4s ease-in-out infinite; }
.hv-notif-2 { bottom: 40px; right: 0; animation: float 4s ease-in-out infinite 2s; }
.hv-notif-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hv-notif-title { font-family: var(--font-head); font-weight: 600; color: var(--dark); font-size: 12px; line-height: 1.2; }
.hv-notif-sub   { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ─── 14. SECTION ANATOMY ─── */
.section { padding: var(--section-py) 0; }
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header.text-center { max-width: 680px; margin-inline: auto; }
.section-title { margin-bottom: 16px; }
.section-desc { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.7; color: var(--mid); }

/* ─── 15. SERVICE CARDS (HOMEPAGE GRID) ─── */
.services-grid-hp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.srv-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.srv-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.srv-icon.blue   { background: rgba(61,99,221,0.1);  color: var(--primary); }
.srv-icon.teal   { background: rgba(38,198,162,0.12); color: #1BA887; }
.srv-icon.amber  { background: rgba(255,138,0,0.1);   color: var(--accent); }
.srv-title { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.srv-desc  { font-size: 14px; line-height: 1.65; color: var(--mid); margin-bottom: 20px; flex: 1; }
.srv-link  {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap 0.2s;
}
.srv-link:hover { gap: 9px; }

/* ─── 16. PROCESS STEPS ─── */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  background: var(--primary);
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(61,99,221,0.3);
}
.step:nth-child(2) .step-num { background: var(--secondary); box-shadow: 0 6px 20px rgba(38,198,162,0.3); }
.step:nth-child(3) .step-num { background: var(--accent);    box-shadow: 0 6px 20px rgba(255,138,0,0.3); }
.step:nth-child(4) .step-num { background: #7B5CFA;           box-shadow: 0 6px 20px rgba(123,92,250,0.3); }
.step:nth-child(5) .step-num { background: var(--dark);       box-shadow: 0 6px 20px rgba(30,43,74,0.3); }
.step-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-desc { font-size: 13px; line-height: 1.6; color: var(--mid); }

/* ─── 17. WHO WE HELP ─── */
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.who-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.who-icon { font-size: 32px; margin-bottom: 16px; }
.who-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.who-desc  { font-size: 14px; line-height: 1.65; color: var(--mid); }

/* ─── 18. WHY CHOOSE US ─── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.why-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow 0.25s;
}
.why-item:hover { box-shadow: var(--shadow-sm); }
.why-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(61,99,221,0.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.why-body {}
.why-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-desc  { font-size: 14px; line-height: 1.65; }

/* ─── 19. CTA BANNER ─── */
.cta-banner {
  background: var(--dark);
  padding: clamp(64px, 8vw, 96px) 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-content { max-width: 560px; }
.cta-label  { display: inline-block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--secondary); margin-bottom: 16px; }
.cta-title  { color: var(--white); margin-bottom: 16px; }
.cta-desc   { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.65; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── 20. PAGE HERO (inner pages) ─── */
.page-hero {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--light);
  background-image: radial-gradient(circle, rgba(61,99,221,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.page-hero-label { margin-bottom: 16px; }
.page-hero-title { margin-bottom: 18px; max-width: 700px; }
.page-hero-desc  { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65; max-width: 580px; }

/* ─── 21. SERVICES PAGE ─── */
.services-list { display: flex; flex-direction: column; gap: 2px; }
.srv-full {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.srv-full:last-child { border-bottom: none; }
.srv-full-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: flex-start;
}
.srv-full-meta {}
.srv-full-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.srv-full-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.srv-full-name { font-size: 22px; font-weight: 700; color: var(--dark); font-family: var(--font-head); margin-bottom: 0; }
.srv-full-body {}
.srv-full-desc { font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.srv-full-client-wording {
  background: var(--light);
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 15px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 24px;
}
.srv-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.srv-tag {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 13px;
}

/* ─── 22. ABOUT PAGE ─── */
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 420px;
}
.av-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: var(--r-xl);
  opacity: 0.08;
}
.av-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.av-card-main { top: 40px; left: 24px; right: 40px; }
.av-card-float { bottom: 40px; right: 0; left: 40px; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.mv-card.mission { background: var(--primary); border-color: var(--primary); }
.mv-card.vision  { background: var(--white); }
.mv-card-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.mission .mv-card-label { color: rgba(255,255,255,0.6); }
.vision  .mv-card-label { color: var(--primary); }
.mv-card-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.mission .mv-card-title { color: var(--white); }
.vision  .mv-card-title { color: var(--dark); }
.mv-card-text  { font-size: 15px; line-height: 1.7; }
.mission .mv-card-text { color: rgba(255,255,255,0.75); }
.vision  .mv-card-text { color: var(--mid); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.value-emoji { font-size: 28px; margin-bottom: 14px; }
.value-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-desc  { font-size: 14px; line-height: 1.65; }

.industries-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-tag {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  transition: background 0.2s, border-color 0.2s;
}
.industry-tag:hover { background: var(--light); border-color: var(--primary); color: var(--primary); }

/* ─── 23. CONTACT PAGE ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: flex-start;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon {
  width: 44px; height: 44px;
  background: rgba(61,99,221,0.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.cd-label { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cd-value { font-size: 15px; font-weight: 500; color: var(--dark); font-family: var(--font-head); }
.cd-value a { color: var(--primary); }
.cd-value a:hover { text-decoration: underline; }
.cd-note  { font-size: 13px; color: var(--mid); margin-top: 2px; }

/* ─── 24. CONTACT FORM ─── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-title   { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-subtitle{ font-size: 14px; color: var(--mid); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61,99,221,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%235B6D8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 4px; }
.form-notice { font-size: 14px; margin-top: 12px; padding: 12px 16px; border-radius: var(--r-sm); display: none; }
.form-notice.success { background: #E8F5E9; color: #2E7D32; display: block; }
.form-notice.error   { background: #FFEBEE; color: #C62828; display: block; }

/* ─── 25. SCROLL ANIMATIONS ─── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.animate.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ─── 26. RESPONSIVE — TABLET (≤ 960px) ─── */
@media (max-width: 960px) {
  .hero-inner              { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual             { height: 320px; max-width: 480px; margin-inline: auto; }
  .hv-window               { right: 40px; }
  .services-grid-hp        { grid-template-columns: repeat(2, 1fr); }
  .process-track           { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-track::before   { display: none; }
  .who-grid                { grid-template-columns: repeat(2, 1fr); }
  .footer-grid             { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-story-inner       { grid-template-columns: 1fr; }
  .about-visual            { height: 280px; }
  .srv-full-inner          { grid-template-columns: 1fr; gap: 24px; }
  .contact-layout          { grid-template-columns: 1fr; }
  .contact-form-wrap       { order: -1; }
  .values-grid             { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4         { grid-template-columns: repeat(2, 1fr); }
}

/* ─── RESPONSIVE — NAV COLLAPSE (≤ 860px) ───
   Moves the hamburger breakpoint up from the content breakpoints so the
   desktop nav + header CTA never get squeezed on tablets or landscape phones. */
@media (max-width: 860px) {
  .primary-nav             { display: none; position: fixed !important; inset: 72px 0 0; height: calc(100vh - 72px); background: var(--white) !important; opacity: 1 !important; padding: 24px 20px; z-index: 9999 !important; border-top: 1px solid var(--border); overflow-y: auto; box-shadow: var(--shadow-lg); }
  .primary-nav.is-open     { display: block !important; }
  .nav-list                { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-list li             { width: 100%; }
  .nav-list li a           { font-size: 17px; padding: 12px 16px; border-radius: var(--r-md); width: 100%; }
  .menu-toggle             { display: flex; align-items: center; justify-content: center; margin-left: auto; }
  .header-actions          { display: none; }
}

/* ─── RESPONSIVE — MOBILE (≤ 640px) ─── */
@media (max-width: 640px) {
  .hero-visual             { display: none; }
  .hero-inner              { gap: 0; }
  .services-grid-hp        { grid-template-columns: 1fr; }
  .process-track           { grid-template-columns: 1fr; row-gap: 28px; }
  .step                    { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; padding: 0; }
  .step-num                { width: 48px; height: 48px; font-size: 17px; margin-bottom: 0; }
  .step-body               { display: flex; flex-direction: column; }
  .step-name               { margin-bottom: 4px; }
  .who-grid                { grid-template-columns: 1fr; }
  .why-grid                { grid-template-columns: 1fr; }
  .why-item                { flex-direction: column; gap: 14px; }
  .mv-grid                 { grid-template-columns: 1fr; }
  .values-grid             { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-banner-inner        { flex-direction: column; text-align: center; }
  .cta-actions             { justify-content: center; }
  .footer-grid             { grid-template-columns: 1fr; gap: 24px; }
  .form-row                { grid-template-columns: 1fr; }
  .hero-actions            { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap       { padding: 24px; }
  .hv-window               { right: 0; }
  .hv-notif                { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   27. STATIC-SITE ADDITIONS
   Semantic classes replacing the inline styles the WordPress theme used,
   so brand colours live in one place (:root above) and templates stay clean.
═══════════════════════════════════════════════════════════ */
:root {
  --purple: #7B5CFA;
  --teal-dk: #1BA887;
}

/* Icon tints (What we do / Why us) */
.why-icon-wrap.tint-teal   { background: rgba(38,198,162,0.10); color: var(--teal-dk); }
.why-icon-wrap.tint-amber  { background: rgba(255,138,0,0.10);  color: var(--accent); }
.why-icon-wrap.tint-purple { background: rgba(123,92,250,0.10); color: var(--purple); }

/* Services page icon tiles */
.srv-full-icon.blue  { background: rgba(61,99,221,0.10);  color: var(--primary); }
.srv-full-icon.teal  { background: rgba(38,198,162,0.12); color: var(--teal-dk); }
.srv-full-icon.amber { background: rgba(255,138,0,0.10);  color: var(--accent); }

/* About — story column */
.about-story-title { margin-bottom: 20px; }
.about-p { margin-bottom: 18px; }
.about-p-last { margin-bottom: 28px; }
.about-facts { display: flex; flex-direction: column; gap: 12px; }
.trust-item-lg { font-size: 15px; }

/* About — decorative visual cards */
.av-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.av-steps { display: flex; flex-direction: column; gap: 10px; }
.av-step  { display: flex; align-items: center; gap: 10px; }
.av-step-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 700;
}
.av-step-1 { background: var(--primary); }
.av-step-2 { background: var(--secondary); }
.av-step-3 { background: var(--accent); }
.av-step-4 { background: var(--purple); }
.av-step-5 { background: var(--dark); }
.av-step-name { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--dark); }
.av-goal-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.av-goal-quote { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.5; }
.industries-header { max-width: 640px; margin-inline: auto; margin-bottom: 40px; }

/* Contact — details column */
.contact-details-title { margin-bottom: 8px; font-size: clamp(24px, 2.5vw, 36px); }
.contact-details-desc  { margin-bottom: 36px; font-size: 16px; line-height: 1.7; }
.next-steps {
  margin-top: 16px; padding: 28px;
  background: var(--light); border-radius: var(--r-lg); border: 1px solid var(--border);
}
.next-steps-title { font-size: 16px; font-family: var(--font-head); font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.next-steps-list { display: flex; flex-direction: column; gap: 12px; }
.next-step { display: flex; gap: 12px; align-items: flex-start; }
.next-step p { font-size: 14px; line-height: 1.6; }
.next-step-num {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 700;
}
.next-step-1 { background: var(--primary); }
.next-step-2 { background: var(--secondary); }
.next-step-3 { background: var(--accent); }

/* Contact — form */
.req { color: var(--accent); }
.btn-block { width: 100%; }
.form-consent { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.6; }
.form-consent a { text-decoration: underline; }
/* Honeypot: removed from the visual and accessibility flow, still present for bots */
.hp-field { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Language switch in nav (only rendered when >1 locale is enabled) */
.nav-lang a { font-weight: 600; opacity: 0.85; }

/* Long-form text pages (privacy) */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: clamp(20px, 2vw, 26px); margin: 36px 0 12px; }
.prose p, .prose li { font-size: 16px; line-height: 1.75; color: var(--mid); }
.prose ul { list-style: disc; padding-inline-start: 22px; margin: 12px 0; }
.prose li { margin-bottom: 6px; }
.prose-meta { font-size: 14px; color: var(--muted); margin-bottom: 8px; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hv-notif { animation: none !important; }
  html { scroll-behavior: auto; }
}
