/* =========================================================================
   ZegalWorks Design System
   Typefaces : Work Sans (display / brand)  ·  Manrope (UI / body)
   Palette   : Warm paper + signal orange (from brand mark), ink black
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  /* --- Brand color ramp (derived from logo gradient) --- */
  --orange-50:  #FFF4E8;
  --orange-100: #FFE4C4;
  --orange-300: #FFB066;
  --orange-400: #FF9433;
  --orange-600: #FF7A00;
  --orange-700: #E65E00;
  --orange-900: #7A3300;

  /* --- Ink / neutrals (warm-black, not pure gray) --- */
  --ink-900: #14120F;
  --ink-700: #3A362F;
  --ink-500: #6E685E;
  --ink-300: #A39C8F;
  --ink-100: #EDE7DC;

  /* --- Surfaces --- */
  --paper:     #FFFFFF;
  --paper-alt: #FBF7F1;
  --line:      #ECE4D6;

  /* --- Semantic --- */
  --focus-ring: #1E6FE6;

  /* --- Type --- */
  --font-display: 'Work Sans', 'Inter', sans-serif;
  --font-body: 'Manrope', 'Inter', sans-serif;

  /* --- Spacing scale --- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* --- Radius --- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* --- Shadow --- */
  --shadow-sm: 0 1px 2px rgba(20,18,15,0.04), 0 2px 8px rgba(20,18,15,0.04);
  --shadow-md: 0 4px 12px rgba(20,18,15,0.05), 0 12px 32px rgba(20,18,15,0.07);
  --shadow-lg: 0 8px 24px rgba(20,18,15,0.08), 0 24px 64px rgba(20,18,15,0.10);

  /* --- Motion --- */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 500ms;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                            */
/* ---------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, svg{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font: inherit; cursor: pointer; }
h1,h2,h3,h4{ font-family: var(--font-display); color: var(--ink-900); margin: 0; line-height: 1.1; }

:focus-visible{
  outline: 2.5px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink-900);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  z-index: 1000;
}
.skip-link:focus{ left: 0; }

/* ---------------------------------------------------------------------- */
/* Layout helpers                                                          */
/* ---------------------------------------------------------------------- */
.container{
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.section{ padding-block: var(--space-9); }
.section-alt{ background: var(--paper-alt); }
@media (max-width: 720px){
  .section{ padding-block: var(--space-7); }
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-700);
  background: var(--orange-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}
.eyebrow::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-600);
}

.section-head{
  max-width: 640px;
  margin-bottom: var(--space-8);
}
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head h2{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}
.section-head p{
  font-size: 17px;
  color: var(--ink-500);
}

.text-balance{ text-wrap: balance; }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 26px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 15.5px;
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: var(--paper);
  box-shadow: 0 1px 2px rgba(230,94,0,0.15), 0 8px 20px rgba(230,94,0,0.25);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 4px 8px rgba(230,94,0,0.2), 0 14px 28px rgba(230,94,0,0.3); }
.btn-primary:active{ transform: translateY(0); }
.btn-secondary{
  background: var(--paper);
  color: var(--ink-900);
  border-color: var(--line);
}
.btn-secondary:hover{ border-color: var(--ink-300); background: var(--paper-alt); }
.btn-ghost{
  background: transparent;
  color: var(--ink-900);
  padding-inline: 4px;
  font-weight: 700;
}
.btn-ghost .arrow{ transition: transform var(--dur-fast) var(--ease); }
.btn-ghost:hover .arrow{ transform: translateX(4px); }
.btn-sm{ padding: 10px 18px; font-size: 14px; }
.btn-block{ width: 100%; }

/* ---------------------------------------------------------------------- */
/* Header / Navigation                                                     */
/* ---------------------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--space-5);
}
.brand{ display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img{ height: 42px; width: auto; }

.nav-primary{
  display: none;
}
@media (min-width: 960px){
  .nav-primary{
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex: 1;
    justify-content: center;
  }
}
.nav-link{
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink-700);
  background: none;
  border: none;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
button.nav-link{ appearance: none; -webkit-appearance: none; }
.nav-link:hover{ background: var(--orange-50); color: var(--orange-700); }
.nav-link .chev{ width: 14px; height: 14px; transition: transform var(--dur-base) var(--ease); }
.has-menu:hover .chev, .has-menu.open .chev{ transform: rotate(180deg); }

.nav-actions{ display: flex; align-items: center; gap: var(--space-3); }
.nav-actions .btn-secondary{ display: none; }
@media (min-width: 720px){ .nav-actions .btn-secondary{ display: inline-flex; } }

/* Mega menu */
.mega{
  position: absolute;
  left: 0; right: 0; top: 76px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), visibility var(--dur-base);
}
.has-menu:hover .mega,
.has-menu.open .mega{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner{ padding-block: var(--space-7); }
.mega-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.mega-card{
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.mega-card:hover{ border-color: var(--line); background: var(--paper-alt); transform: translateY(-2px); }
.mega-icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-700);
}
.mega-card h4{ font-size: 16px; font-weight: 700; }
.mega-card p{ font-size: 13.5px; color: var(--ink-500); margin: 0; }

.mega-services{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.mega-col-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: var(--space-3);
}
.mega-services a{
  display: block;
  padding: 8px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  border-radius: 6px;
  transition: color var(--dur-fast) var(--ease);
}
.mega-services a:hover{ color: var(--orange-700); }

/* Mobile nav */
.nav-toggle{
  display: flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--paper);
}
@media (min-width: 960px){ .nav-toggle{ display: none; } }

.mobile-panel{
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--paper);
  z-index: 99;
  overflow-y: auto;
  padding: var(--space-5);
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease);
}
.mobile-panel.open{ transform: translateX(0); }
@media (min-width: 960px){ .mobile-panel{ display: none; } }
.mobile-group summary{
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px;
  font-weight: 700;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.mobile-group summary::-webkit-details-marker{ display: none; }
.mobile-group[open] summary .chev{ transform: rotate(180deg); }
.mobile-sub{ padding: 8px 4px 20px; display: flex; flex-direction: column; gap: 4px; }
.mobile-sub a{ padding: 10px 8px; font-weight: 600; color: var(--ink-700); border-radius: 8px; }
.mobile-sub a:hover{ background: var(--orange-50); }
.mobile-panel > a{ display: block; padding: 16px 4px; font-weight: 700; font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-cta{ margin-top: var(--space-6); display: flex; flex-direction: column; gap: 12px; }

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero{
  position: relative;
  overflow: hidden;
  padding-block: var(--space-9) var(--space-8);
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(680px 420px at 82% 8%, var(--orange-50) 0%, rgba(255,244,232,0) 70%);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 940px){
  .hero-grid{ grid-template-columns: 1.05fr 0.95fr; }
}
.hero-copy h1{
  font-size: clamp(38px, 5.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.hero-copy h1 em{
  font-style: normal;
  background: linear-gradient(100deg, var(--orange-600), var(--orange-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p.lead{
  font-size: 19px;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: var(--space-6);
}
.hero-ctas{ display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-7); }
.hero-trust{
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.hero-trust-item{ display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink-500); }
.hero-trust-item svg{ color: var(--orange-600); flex-shrink: 0; }

.hero-art{ position: relative; }
.hero-art .float-card{
  position: absolute;
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-900);
  animation: float 5s ease-in-out infinite;
}
.hero-art .float-card.card-a{ top: 8%; left: -4%; animation-delay: .2s; }
.hero-art .float-card.card-b{ bottom: 10%; right: -2%; animation-delay: 1s; }
.hero-art .float-card .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--success, #1E9E5A); }
@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* ---------------------------------------------------------------------- */
/* Logo strip                                                              */
/* ---------------------------------------------------------------------- */
.logo-strip{ padding-block: var(--space-6); border-block: 1px solid var(--line); }
.logo-strip-inner{ display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.logo-strip-label{ font-size: 13px; font-weight: 700; color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.logo-row{ display: flex; align-items: center; gap: var(--space-7); flex-wrap: wrap; opacity: 0.55; filter: grayscale(1); }
.logo-row span{ font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink-700); }

/* ---------------------------------------------------------------------- */
/* Grid of cards (generic)                                                 */
/* ---------------------------------------------------------------------- */
.grid{ display: grid; gap: var(--space-5); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px){ .grid-4{ grid-template-columns: repeat(2, 1fr); } .grid-3{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; } }

.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

/* Industry card */
.industry-card{ display: flex; flex-direction: column; gap: var(--space-4); }
.industry-icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-50);
  color: var(--orange-700);
}
.industry-card h3{ font-size: 19px; font-weight: 700; }
.industry-card p{ font-size: 14.5px; color: var(--ink-500); margin: 0; flex: 1; }
.industry-card .btn-ghost{ margin-top: auto; font-size: 14px; }

/* Feature / service card */
.feature-card{ display: flex; flex-direction: column; gap: var(--space-3); }
.feature-card .feature-icon{
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
  transition: transform var(--dur-base) var(--ease);
}
.feature-card:hover .feature-icon{ transform: scale(1.08) rotate(-2deg); }
.feature-card h3{ font-size: 18px; font-weight: 700; }
.feature-card p{ font-size: 14.5px; color: var(--ink-500); margin: 0; }
.tag-row{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--space-2); }

/* Service category accents — subtle tinted background, matching icon colour */
.accent-registration{ background: rgba(255,122,0,0.12); color: #FF7A00; }
.accent-tax{ background: rgba(22,163,74,0.12); color: #16A34A; }
.accent-compliance{ background: rgba(37,99,235,0.12); color: #2563EB; }
.accent-accounting{ background: rgba(124,58,237,0.12); color: #7C3AED; }
.accent-legal{ background: rgba(220,38,38,0.12); color: #DC2626; }
.accent-ip{ background: rgba(79,70,229,0.12); color: #4F46E5; }
.accent-licenses{ background: rgba(13,148,136,0.12); color: #0D9488; }

/* "View all services" CTA card — brand orange, white type */
.feature-card-cta{
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  border-color: transparent;
  color: var(--paper);
}
.feature-card-cta:hover{ box-shadow: 0 10px 28px rgba(230,94,0,0.32); }
.feature-card-cta h3{ color: var(--paper); }
.feature-card-cta p{ color: rgba(255,255,255,0.82); }
.feature-icon-cta{
  background: rgba(255,255,255,0.18);
  color: var(--paper);
}
.feature-card-cta:hover .feature-icon-cta{ transform: scale(1.08) rotate(-2deg); background: rgba(255,255,255,0.26); }
.feature-card-cta-link{ color: var(--paper); margin-top: auto; }
.feature-card-cta-link .arrow{ transition: transform var(--dur-fast) var(--ease); }
.feature-card-cta:hover .feature-card-cta-link .arrow{ transform: translateX(4px); }
.tag{
  font-size: 12px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-alt);
  color: var(--ink-500);
  border: 1px solid var(--line);
}

/* ---------------------------------------------------------------------- */
/* Registration Packages (homepage)                                       */
/* ---------------------------------------------------------------------- */
.reg-grid{ margin-bottom: var(--space-8); align-items: stretch; }
.reg-icon{
  background: var(--orange-50);
  color: var(--orange-700);
  margin-bottom: var(--space-3);
}
.price-card-highlight .reg-icon{ background: var(--ink-900); color: var(--orange-300); }

.reg-highlight{
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-500);
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  margin-bottom: var(--space-5);
  text-align: center;
}
.reg-highlight-accent{
  background: var(--orange-50);
  border-color: var(--orange-100);
  color: var(--orange-700);
}

.price-card-highlight{ border: 1.5px solid var(--orange-300); box-shadow: var(--shadow-lg); }

.reg-support-cta{
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: var(--space-7) var(--space-6);
  border-radius: var(--r-lg);
  background: var(--paper-alt);
  border: 1px solid var(--line);
}
.reg-support-cta h3{ font-size: 22px; font-weight: 700; margin-bottom: var(--space-3); }
.reg-support-cta p{ font-size: 15.5px; color: var(--ink-500); margin: 0 0 var(--space-5); }

/* ---------------------------------------------------------------------- */
/* Why ZegalWorks                                                          */
/* ---------------------------------------------------------------------- */
.why-grid{ align-items: stretch; }
.why-icon{
  background: var(--orange-50);
  color: var(--orange-700);
}
.why-us .feature-card{ background: var(--paper); }

/* ---------------------------------------------------------------------- */
/* Pricing card primitives — shared by Registration Packages              */
/* ---------------------------------------------------------------------- */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
  margin-bottom: var(--space-9);
}
@media (max-width: 940px){ .pricing-grid{ grid-template-columns: 1fr; max-width: 460px; margin-inline: auto var(--space-9); } }

.price-card{
  display: flex;
  flex-direction: column;
  position: relative;
  padding: var(--space-7) var(--space-6) var(--space-6);
}
.price-card-highlight{
  border-color: transparent;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
@media (max-width: 940px){ .price-card-highlight{ transform: none; } }
.price-card-highlight:hover{ transform: scale(1.03) translateY(-4px); }
.price-badge{
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(230,94,0,0.3);
  white-space: nowrap;
}
.price-card-head h3{ font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.price-best-for{ font-size: 14px; color: var(--ink-500); margin: 0 0 var(--space-5); min-height: 40px; }
.price-features{ display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--space-6); flex: 1; }
.price-features li{ display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink-700); }
.price-check{
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.price-card-highlight .price-check{ background: var(--orange-600); color: var(--paper); }
.price-tag{ display: flex; align-items: baseline; gap: 8px; margin-bottom: var(--space-5); padding-top: var(--space-5); border-top: 1px solid var(--line); }
.price-from{ font-size: 12.5px; font-weight: 700; color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.04em; }
.price-amount{ font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--ink-900); }
.price-period{ font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink-500); }

/* ---------------------------------------------------------------------- */
/* Dedicated Ops Team split section + comparison                          */
/* ---------------------------------------------------------------------- */
.ops-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-9);
}
@media (min-width: 940px){
  .ops-grid{ grid-template-columns: 1fr 0.95fr; gap: var(--space-9); }
}
.ops-copy h2{ font-size: clamp(28px, 4vw, 40px); margin-bottom: var(--space-3); }
.ops-copy .lead{ font-size: 18px; color: var(--ink-500); max-width: 480px; margin-bottom: var(--space-4); }
.ops-support{ font-size: 15.5px; color: var(--ink-500); max-width: 460px; margin-bottom: var(--space-6); }

.ops-art{ position: relative; max-width: 460px; margin-inline: auto; }
.ops-node-label{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  fill: var(--ink-700);
}

.compare-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-6);
  align-items: stretch;
}
@media (max-width: 780px){
  .compare-grid{ grid-template-columns: 1fr; }
}
.compare-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-7) var(--space-6);
}
.compare-traditional{ background: var(--paper-alt); }
.compare-zegal{
  border-color: transparent;
  box-shadow: var(--shadow-md);
  position: relative;
}
.compare-zegal::before{
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-700));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.compare-kicker{
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.compare-zegal .compare-kicker{ color: var(--orange-700); }
.compare-card h3{ font-size: 20px; font-weight: 700; margin: var(--space-2) 0 var(--space-5); }
.compare-list{ display: flex; flex-direction: column; gap: var(--space-3); }
.compare-list li{
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
}
.compare-icon{
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.compare-icon-x{ background: var(--ink-100); color: var(--ink-300); }
.compare-icon-check{ background: var(--orange-600); color: var(--paper); }
.compare-traditional .compare-list li{ color: var(--ink-500); }

.compare-vs{
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  justify-self: center;
  align-self: center;
}
@media (max-width: 780px){
  .compare-vs{ margin-block: -4px; }
}

.compare-cta{ text-align: center; margin-top: var(--space-8); }

/* ---------------------------------------------------------------------- */
/* Signature: 7 Stages scroll timeline                                     */
/* ---------------------------------------------------------------------- */
.stages{ position: relative; }
.stages-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 1040px){
  .stages-layout{ grid-template-columns: 1fr 450px; }
}
.stages-head{ text-align: left; max-width: 560px; margin-bottom: var(--space-9); }
@media (max-width: 1039px){ .stages-head{ text-align: center; margin-inline: auto; } }
.stages-rail{
  position: relative;
  max-width: 640px;
}
@media (max-width: 1039px){ .stages-rail{ max-width: 880px; margin-inline: auto; } }
.stages-art{
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.stages-art img{ width: 100%; height: auto; display: block; }
@media (min-width: 1040px){
  .stages-art{ position: sticky; top: 100px; max-width: 450px; margin-inline: auto; }
}
@media (max-width: 1039px){
  .stages-art{ max-width: 450px; margin-inline: auto; }
}
.stages-rail::before{
  content: "";
  position: absolute;
  left: 27px;
  top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
@media (min-width: 720px){ .stages-rail::before{ left: 27px; } }
.stages-progress{
  position: absolute;
  left: 27px;
  top: 6px;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, var(--orange-600), var(--orange-700));
  transition: height 60ms linear;
}
.stage{
  position: relative;
  display: flex;
  gap: var(--space-5);
  padding-bottom: var(--space-8);
  opacity: 0.4;
  transform: translateX(-6px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.stage:last-child{ padding-bottom: 0; }
.stage.is-active{ opacity: 1; transform: translateX(0); }
.stage-num{
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-300);
  transition: all var(--dur-base) var(--ease);
}
.stage.is-active .stage-num{
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: var(--paper);
  box-shadow: 0 6px 16px rgba(230,94,0,0.3);
}
.stage-body{ padding-top: 6px; }
.stage-body .stage-label{ font-size: 12.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange-700); margin-bottom: 4px; display:block; }
.stage-body h3{ font-size: 21px; font-weight: 700; margin-bottom: 6px; }
.stage-body p{ font-size: 15px; color: var(--ink-500); max-width: 480px; margin:0; }
.stage-body .stage-tools-label{
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: var(--space-4);
  margin-bottom: 8px;
}
.stage-body .tag-row{ margin-top: 0; max-width: 520px; }
.stage-body .tag-row .tag{
  font-size: 12.5px;
  padding: 5px 12px;
  background: var(--paper);
}

/* ---------------------------------------------------------------------- */
/* Stats band                                                              */
/* ---------------------------------------------------------------------- */
.stats-band{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-xl);
  background-color: var(--ink-900);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.09) 1px, transparent 0),
    radial-gradient(620px 280px at 88% -15%, rgba(255,122,0,0.22), transparent 62%),
    radial-gradient(420px 220px at 6% 118%, rgba(255,122,0,0.12), transparent 60%);
  background-size: 22px 22px, 100% 100%, 100% 100%;
  padding: var(--space-8) var(--space-6);
  color: var(--paper);
}
.stats-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); text-align: center; }
@media (max-width: 720px){ .stats-grid{ grid-template-columns: repeat(2, 1fr); } }
.stat-num{ font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 700; color: var(--paper); }
.stat-num .accent{ color: var(--orange-400); }
.stat-label{ font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 600; }

/* ---------------------------------------------------------------------- */
/* Testimonials — spotlight + stacked bento layout                        */
/* ---------------------------------------------------------------------- */
.testimonial-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}
@media (max-width: 860px){ .testimonial-grid{ grid-template-columns: 1fr; } }

.testimonial-spotlight{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
  background: var(--ink-900);
  background-image: radial-gradient(420px 260px at 100% 0%, rgba(255,122,0,0.28), transparent 65%);
  border-radius: var(--r-lg);
  padding: var(--space-8) var(--space-7);
  box-shadow: var(--shadow-lg);
}
.testimonial-spotlight .quote{ font-size: 22px; font-weight: 600; line-height: 1.5; color: var(--paper); letter-spacing: -0.01em; margin: 0; }
.testimonial-spotlight .avatar-light{ background: rgba(255,255,255,0.14); color: var(--orange-300); }
.testimonial-spotlight .testimonial-person .name{ color: var(--paper); }
.testimonial-spotlight .testimonial-person .role{ color: rgba(255,255,255,0.6); }

.testimonial-stack{ display: flex; flex-direction: column; gap: var(--space-5); }
.testimonial-card-sm{ display: flex; flex-direction: column; gap: var(--space-4); flex: 1; }
.testimonial-card-sm .quote{ font-size: 15px; color: var(--ink-700); margin: 0; }

.testimonial-stars{
  color: var(--orange-400);
  letter-spacing: 3px;
  font-size: 16px;
  line-height: 1;
}
.testimonial-stars-sm{ font-size: 13px; letter-spacing: 2px; color: var(--orange-600); }

.testimonial-person{ display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar{
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-300), var(--orange-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.testimonial-person .name{ font-weight: 700; font-size: 14.5px; color: var(--ink-900); }
.testimonial-person .role{ font-size: 13px; color: var(--ink-500); }

/* ---------------------------------------------------------------------- */
/* FAQ accordion                                                           */
/* ---------------------------------------------------------------------- */
.faq-list{ max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item{ border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); overflow: hidden; }
.faq-q{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
}
.faq-q .plus{
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange-700);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-base) var(--ease);
}
.faq-item.open .faq-q .plus{ transform: rotate(135deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease);
}
.faq-a-inner{ padding: 0 24px 22px; font-size: 15px; color: var(--ink-500); max-width: 640px; }

/* ---------------------------------------------------------------------- */
/* CTA band                                                                */
/* ---------------------------------------------------------------------- */
.cta-band{
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: var(--space-9) var(--space-6);
  text-align: center;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-900));
  isolation: isolate;
}
.cta-band::before{
  content:"";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.18), transparent 60%);
  z-index: -1;
}
.cta-band h2{ color: var(--paper); font-size: clamp(28px, 4vw, 38px); margin-bottom: var(--space-3); }
.cta-band p{ color: rgba(255,255,255,0.85); font-size: 17px; max-width: 520px; margin-inline: auto; margin-top: 0; margin-bottom: var(--space-6); }
.cta-band .btn-primary{ background: var(--paper); color: var(--orange-700); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-band .btn-primary:hover{ background: var(--paper); color: var(--orange-900); }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer{ background: var(--paper-alt); border-top: 1px solid var(--line); padding-top: var(--space-9); }
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--space-6);
  padding-bottom: var(--space-8);
}
@media (max-width: 900px){ .footer-top{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand p{ font-size: 14.5px; color: var(--ink-500); max-width: 260px; margin-top: var(--space-4); }
.footer-col h4{ font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-300); margin-bottom: var(--space-4); }
.footer-col a{ display: block; font-size: 14.5px; font-weight: 600; color: var(--ink-700); padding: 6px 0; }
.footer-col a:hover{ color: var(--orange-700); }
.footer-social{ display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a{ width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover{ background: var(--orange-50); border-color: transparent; color: var(--orange-700); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding-block: var(--space-5);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3);
  font-size: 13.5px; color: var(--ink-500);
}
.footer-bottom-links{ display: flex; gap: var(--space-5); flex-wrap: wrap; }

/* ---------------------------------------------------------------------- */
/* Accessibility utility                                                   */
/* ---------------------------------------------------------------------- */
.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------- */
/* Services hero — ecosystem illustration                                  */
/* ---------------------------------------------------------------------- */
.eco-illustration{
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}
@media (max-width: 780px) and (min-width: 561px){
  .eco-illustration{ max-width: 380px; }
}
.eco-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}
.eco-blob-a{ width: 52%; height: 52%; top: -6%; right: -8%; background: radial-gradient(circle, rgba(255,148,51,0.30), transparent 70%); }
.eco-blob-b{ width: 44%; height: 44%; bottom: -8%; left: -10%; background: radial-gradient(circle, rgba(255,122,0,0.16), transparent 70%); }

/* Connector lines — draw in first, on a normalized 0–1 path length */
.eco-lines{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.eco-lines line{
  stroke: var(--orange-300);
  stroke-width: 0.5;
  opacity: 0.6;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s var(--ease);
}

/* Centre hub — fixed, never animated, holds the official logo mark */
.eco-hub{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1.5px solid rgba(255,255,255,0.95);
  box-shadow: 0 10px 28px rgba(230,94,0,0.20), 0 2px 10px rgba(20,18,15,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15%;
  z-index: 3;
}
.eco-hub img{ width: 100%; height: 100%; object-fit: contain; display: block; }

/* Cards wrapper — display:contents on desktop so children position         */
/* against .eco-illustration; becomes a real stacked grid on mobile.        */
.eco-cards{ display: contents; }

/* Positioning layer — absolute placement + one-time intro animation only.  */
/* This element's final transform never changes, so nothing can drift.     */
.eco-card-pos{
  position: absolute;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 2;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

/* Floating layer — nested inside the positioning layer so the gentle bob   */
/* never touches the anchor point set above.                                */
.eco-card-float{ animation: eco-float 4.5s ease-in-out infinite; }
@keyframes eco-float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-3px); }
}

.eco-card{
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 9px 13px;
  min-height: 42px;
  white-space: nowrap;
}
.eco-card-icon{
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.eco-card-label{ font-size: 11.5px; font-weight: 700; color: var(--ink-900); }

@media (max-width: 620px) and (min-width: 561px){
  .eco-card{ padding: 7px 10px; gap: 6px; min-height: 36px; }
  .eco-card-icon{ width: 22px; height: 22px; border-radius: 7px; }
  .eco-card-icon svg{ width: 13px; height: 13px; }
  .eco-card-label{ font-size: 10px; }
}

/* Below 561px: radial geometry gets too tight to stay pixel-perfect, so   */
/* the illustration stacks cleanly instead — hub on top, cards in a grid.  */
@media (max-width: 560px){
  .eco-illustration{
    max-width: 340px;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }
  .eco-lines,
  .eco-blob{ display: none; }
  .eco-hub{
    position: static;
    transform: none;
    width: 92px;
  }
  .eco-cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
  .eco-card-pos{
    position: static;
    transform: none !important;
    opacity: 1 !important;
  }
  .eco-card-float{ animation: none; }
  .eco-card{ min-height: 48px; }
}

/* ---------------------------------------------------------------------- */
/* Services page — search panel                                            */
/* ---------------------------------------------------------------------- */
.search-panel{ max-width: 720px; margin-inline: auto; text-align: center; }
.search-box{
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.search-box:focus-within{ border-color: var(--orange-400); box-shadow: 0 0 0 4px var(--orange-50); }
.search-box svg{ color: var(--ink-300); flex-shrink: 0; }
.search-input{ border: none; outline: none; background: transparent; font: inherit; font-size: 16px; width: 100%; color: var(--ink-900); }
.search-input::placeholder{ color: var(--ink-300); }
.search-chips{ display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: var(--space-4); }
.search-chips-label{ font-size: 13px; font-weight: 700; color: var(--ink-300); margin-right: 4px; }
.chip{ font: inherit; padding: 7px 14px; transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.chip:hover{ background: var(--orange-50); color: var(--orange-700); border-color: transparent; }
.search-empty{ margin-top: var(--space-5); font-size: 14.5px; color: var(--ink-500); }

/* ---------------------------------------------------------------------- */
/* Services page — category cards (8th accent + count)                    */
/* ---------------------------------------------------------------------- */
.accent-payroll{ background: rgba(219,39,119,0.12); color: #DB2777; }
.category-count{ font-size: 13px; font-weight: 700; color: var(--ink-300); margin-top: -8px; }

/* ---------------------------------------------------------------------- */
/* Services page — grouped service listing                                 */
/* ---------------------------------------------------------------------- */
.service-group{ margin-bottom: var(--space-9); scroll-margin-top: 100px; }
.service-group:last-child{ margin-bottom: 0; }
.service-group-title{ font-size: 22px; font-weight: 700; margin-bottom: var(--space-5); padding-bottom: var(--space-3); border-bottom: 1px solid var(--line); }
.service-card{ display: flex; flex-direction: column; gap: 10px; padding: var(--space-5); }
.service-icon{ width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.service-card h4{ font-size: 15.5px; font-weight: 700; color: var(--ink-900); margin: 0; }
.service-card p{ font-size: 13.5px; color: var(--ink-500); margin: 0; flex: 1; }
.service-card .btn-ghost{ font-size: 13.5px; margin-top: 4px; }
.service-card.is-hidden{ display: none; }
.service-group.is-hidden{ display: none; }

/* ---------------------------------------------------------------------- */
/* Reusable centered button row (used by multi-button CTA bands)          */
/* ---------------------------------------------------------------------- */
.cta-actions{ display: flex; justify-content: center; gap: var(--space-4); flex-wrap: wrap; }

/* ---------------------------------------------------------------------- */
/* Scroll reveal utility                                                   */
/* ---------------------------------------------------------------------- */
.reveal{ transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.in-view{ opacity: 1 !important; transform: translateY(0) !important; }

/* ---------------------------------------------------------------------- */
/* Healthcare solution page — hero theme + trust strip                    */
/* ---------------------------------------------------------------------- */
.hero-healthcare .hero-bg{
  background: linear-gradient(180deg, #EAF5FF 0%, #FFFFFF 65%);
}
.eco-illustration-blue .eco-blob-blue-a{ background: radial-gradient(circle, rgba(37,99,235,0.20), transparent 70%); }
.eco-illustration-blue .eco-blob-blue-b{ background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%); }
.eco-illustration-blue .eco-lines-blue line{ stroke: #93C5FD; }
.accent-healthcare{ background: rgba(37,99,235,0.12); color: #2563EB; }
.eco-illustration-blue .eco-card{
  background: rgba(234,245,255,0.78);
  border-color: rgba(255,255,255,0.85);
}

.hc-trust-strip{
  background: #EAF5FF;
  padding-block: var(--space-5);
  border-block: 1px solid rgba(37,99,235,0.12);
}
.hc-trust-strip-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hc-trust-tag{
  background: var(--paper);
  border-color: rgba(37,99,235,0.18);
  color: #1E4FBF;
}

/* ---------------------------------------------------------------------- */
/* Healthcare solution page — challenges section                          */
/* ---------------------------------------------------------------------- */
.hc-challenges-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 900px){ .hc-challenges-grid{ grid-template-columns: 1fr; } }
.hc-challenges-copy .lead{ font-size: 17px; color: var(--ink-500); margin-bottom: var(--space-6); }
.hc-stress-art{ max-width: 340px; margin-inline: auto; }
.hc-challenges-cards{ gap: var(--space-4); }
.hc-challenge-card{ padding: var(--space-5); }
.hc-challenge-card h3{ font-size: 16px; }
.hc-challenge-card p{ font-size: 13.5px; }

/* ---------------------------------------------------------------------- */
/* Healthcare solution page — larger centered hub illustration            */
/* ---------------------------------------------------------------------- */
.eco-illustration-hub{ max-width: 560px; }
.eco-hub-lg{ width: 20%; }

/* ---------------------------------------------------------------------- */
/* Healthcare solution page — services grid tweaks                        */
/* ---------------------------------------------------------------------- */
.hc-services-grid .service-card{ padding: var(--space-6); }
.hc-service-card h3{ font-size: 16.5px; font-weight: 700; color: var(--ink-900); margin: 0; }

/* ---------------------------------------------------------------------- */
/* Healthcare solution page — horizontal process timeline                 */
/* ---------------------------------------------------------------------- */
.hc-process-track{
  position: relative;
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  padding: 10px 4px 14px;
  scroll-padding-inline: 4px;
}
.hc-process-line{
  position: absolute;
  left: 28px; right: 28px; top: 38px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.hc-process-progress{
  position: absolute;
  left: 28px; top: 38px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-600), var(--orange-700));
  z-index: 1;
  transition: width 1.4s var(--ease);
}
.hc-process.in-view .hc-process-progress{ width: calc(100% - 56px); }
.hc-process-step{
  position: relative;
  z-index: 2;
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hc-process-num{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-300);
  margin-bottom: 14px;
  transition: all var(--dur-base) var(--ease);
}
.hc-process.in-view .hc-process-num{
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: var(--paper);
  box-shadow: 0 6px 16px rgba(230,94,0,0.3);
}
.hc-process-step h3{ font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.hc-process-step p{ font-size: 12.5px; color: var(--ink-500); margin: 0; }
@media (max-width: 720px){
  .hc-process-step{ flex: 0 0 130px; }
}

/* ---------------------------------------------------------------------- */
/* Healthcare solution page — alternating Why ZegalWorks rows              */
/* ---------------------------------------------------------------------- */
.alt-rows{ display: flex; flex-direction: column; gap: var(--space-9); }
.alt-row{ display: flex; align-items: center; gap: var(--space-8); }
.alt-row-reverse{ flex-direction: row-reverse; }
.alt-row-media{ flex: 0 0 220px; max-width: 220px; }
.alt-row-content{ flex: 1; }
.alt-row-content h3{ font-size: 22px; font-weight: 700; margin-bottom: var(--space-3); }
.alt-row-content p{ font-size: 15.5px; color: var(--ink-500); margin: 0; max-width: 520px; }
@media (max-width: 780px){
  .alt-row, .alt-row-reverse{ flex-direction: column; text-align: center; }
  .alt-row-media{ max-width: 180px; }
  .alt-row-content p{ margin-inline: auto; }
}

/* ---------------------------------------------------------------------- */
/* Healthcare solution page — blue CTA band + local SEO                   */
/* ---------------------------------------------------------------------- */
.cta-band-blue{
  background: linear-gradient(135deg, #2563EB, #1E4FBF);
}
.cta-band-blue::before{
  background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.22), transparent 60%);
}
.cta-band-blue .btn-primary{ color: #1E4FBF; }
.cta-band-blue .btn-primary:hover{ color: #16368C; }

.hc-local-seo p{ max-width: 720px; margin-inline: auto; }
.hc-city-chips{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-6);
}


/* ---------------------------------------------------------------------- */
/* Healthcare page — hero v3 (premium industry-specific hero)             */
/* ---------------------------------------------------------------------- */
.hc-hero-v3{
  position: relative;
  overflow: hidden;
  padding-block: var(--space-9) var(--space-8);
}
.hc-hero-v3-bg{
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #F7FBFF 0%, #EAF4FF 100%);
}

.hc-hero-v3-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 940px){
  .hc-hero-v3-grid{ grid-template-columns: 0.95fr 1.05fr; }
}

.hc-hero-v3-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1E4FBF;
  background: rgba(11,107,255,0.08);
  border: 1px solid rgba(11,107,255,0.14);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: var(--space-5);
}
.hc-hero-v3-badge-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1EA85E;
  flex-shrink: 0;
}

.hc-hero-v3-copy h1{
  font-size: clamp(36px, 4.8vw, 54px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.hc-hero-v3-copy .lead{ max-width: 500px; margin-bottom: var(--space-6); }
.hc-hero-v3-trust{ row-gap: 10px; column-gap: var(--space-5); }

/* --- Right composition --- */
.hc-hero-v3-art{
  position: relative;
  max-width: 460px;
  margin-inline: auto;
}
.hc-hero-v3-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(54px);
  pointer-events: none;
  z-index: -1;
}
.hc-hero-v3-glow-a{ width: 62%; height: 62%; top: -10%; right: -12%; background: radial-gradient(circle, rgba(11,107,255,0.16), transparent 70%); }
.hc-hero-v3-glow-b{ width: 50%; height: 50%; bottom: -10%; left: -12%; background: radial-gradient(circle, rgba(255,122,0,0.08), transparent 70%); }

.hc-hero-v3-ecosystem{
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  z-index: 0;
}

.hc-hero-v3-photo{
  position: relative;
  z-index: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,60,150,0.16), 0 4px 14px rgba(11,60,150,0.10);
  border: 1px solid rgba(255,255,255,0.7);
}
.hc-hero-v3-photo svg{ display: block; }

/* Floating cards reuse .eco-card-pos for the safe reveal-then-position    */
/* pattern already established, but are placed with hero-specific offsets  */
/* and rendered via .hc-float-card instead of .eco-card.                   */
.hc-cards-v3{ position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hc-cards-v3 .eco-card-pos{ position: absolute; transform: none; }
.hc-cards-v3 .eco-card-pos.is-hidden-init{ opacity: 0; transform: translateY(10px) scale(0.92); }

.hc-card-pos-1{ top: 4%;  left: -8%; }
.hc-card-pos-2{ top: 16%; right: -12%; }
.hc-card-pos-3{ top: 46%; left: -14%; }
.hc-card-pos-4{ top: 58%; right: -16%; }
.hc-card-pos-5{ bottom: 2%; left: 4%; }
.hc-card-pos-6{ bottom: -4%; right: 2%; }

.hc-float-card{
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 10px 14px;
  white-space: nowrap;
  animation: float 5.5s ease-in-out infinite;
  pointer-events: auto;
}
.hc-card-pos-2 .hc-float-card{ animation-delay: 0.8s; }
.hc-card-pos-3 .hc-float-card{ animation-delay: 1.6s; }
.hc-card-pos-4 .hc-float-card{ animation-delay: 2.4s; }
.hc-card-pos-5 .hc-float-card{ animation-delay: 3.2s; }
.hc-card-pos-6 .hc-float-card{ animation-delay: 4s; }

.hc-float-icon{
  width: 30px; height: 30px;
  border-radius: 9px;
  background: rgba(11,107,255,0.12);
  color: #0B6BFF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-float-label{ font-size: 12.5px; font-weight: 700; color: var(--ink-900); }

@media (max-width: 900px){
  .hc-card-pos-1{ left: -2%; }
  .hc-card-pos-2{ right: -4%; }
  .hc-card-pos-3{ left: -4%; }
  .hc-card-pos-4{ right: -6%; }
}

@media (max-width: 640px){
  .hc-hero-v3-copy{ text-align: center; }
  .hc-hero-v3-copy .lead{ margin-inline: auto; }
  .hc-hero-v3-copy .hero-ctas{ flex-direction: column; align-items: stretch; }
  .hc-hero-v3-trust{ justify-content: center; }
  .hc-hero-v3-art{ max-width: 320px; }
  .hc-hero-v3-ecosystem{ display: none; }
  .hc-cards-v3{ position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: var(--space-5); }
  .hc-cards-v3 .eco-card-pos{ position: static; }
  .hc-float-card{ animation: none; white-space: normal; }
}

/* ---------------------------------------------------------------------- */
/* Healthcare page — licence cards                                        */
/* ---------------------------------------------------------------------- */
.hc-licence-grid{ gap: var(--space-4); }
.hc-licence-card{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--space-5);
}
.hc-licence-icon{
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-licence-card h3{ font-size: 15px; font-weight: 700; color: var(--ink-900); margin: 0; }

/* ---------------------------------------------------------------------- */
/* MSME solutions page — warm hero theme                                  */
/* ---------------------------------------------------------------------- */
.msme-hero-bg{
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #FFFDFB 0%, #FFF9F3 100%);
}
.msme-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-700);
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: var(--space-5);
}
.msme-badge-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FFA940;
  flex-shrink: 0;
}
/* ---------------------------------------------------------------------- */
/* MSME solutions page — Business Growth theme (green)                    */
/* Page-scoped custom properties: declared under .msme-page so they only  */
/* apply within this page's <main> and can never affect Healthcare,       */
/* Startups, Freelancers, or any other page sharing this stylesheet.      */
/* ---------------------------------------------------------------------- */
.msme-page{
  --msme-primary: #2E7D32;
  --msme-dark: #1B5E20;
  --msme-light: #EAF7EC;
  --msme-accent: #66BB6A;
}

/* Eyebrows — page-scoped override of the shared .eyebrow component */
.msme-page .eyebrow{ color: var(--msme-dark); background: var(--msme-light); }
.msme-page .eyebrow::before{ background: var(--msme-primary); }

/* Buttons that belong only to this page (hero + final CTA) */
.msme-page .btn-primary{
  background: linear-gradient(135deg, var(--msme-primary), var(--msme-dark));
  box-shadow: 0 1px 2px rgba(27,94,32,0.15), 0 8px 20px rgba(27,94,32,0.25);
}
.msme-page .btn-primary:hover{
  box-shadow: 0 4px 8px rgba(27,94,32,0.2), 0 14px 28px rgba(27,94,32,0.3);
}
.msme-page .btn-secondary:hover{ border-color: var(--msme-accent); background: var(--msme-light); }

/* Timeline — vertical Business Journey rail + horizontal Compliance Calendar */
.msme-page .stage.is-active .stage-num,
.msme-page .stages-progress{
  background: linear-gradient(180deg, var(--msme-primary), var(--msme-dark));
}
.msme-page .stage-body .stage-label{ color: var(--msme-dark); }
.msme-page .hc-process.in-view .hc-process-num,
.msme-page .hc-process-progress{
  background: linear-gradient(90deg, var(--msme-primary), var(--msme-dark));
}
.msme-page .hc-process.in-view .hc-process-num{ box-shadow: 0 6px 16px rgba(27,94,32,0.3); }

/* Final CTA band */
.msme-cta-green{ background: linear-gradient(135deg, var(--msme-primary), var(--msme-dark)); }
.msme-cta-green::before{ background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.2), transparent 60%); }
.msme-cta-green .btn-primary{ background: var(--paper); color: var(--msme-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.msme-cta-green .btn-primary:hover{ background: var(--paper); color: var(--msme-primary); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.msme-section-alt{ background: var(--msme-light); }

/* Used by the Startups page's ecosystem illustration (kept here since it's  */
/* a shared, page-agnostic warm-tint variant, not specific to any one page). */
.eco-illustration-warm .eco-blob-warm-a{ background: radial-gradient(circle, rgba(255,169,64,0.24), transparent 70%); }
.eco-illustration-warm .eco-blob-warm-b{ background: radial-gradient(circle, rgba(255,122,0,0.14), transparent 70%); }
.eco-illustration-warm .eco-lines-warm line{ stroke: var(--orange-300); }
.eco-illustration-warm .eco-card{
  background: rgba(255,249,243,0.8);
  border-color: rgba(255,255,255,0.85);
}

/* ---------------------------------------------------------------------- */
/* MSME solutions page — green hero theme + trust strip                   */
/* Reuses the exact hc-hero-v3 structure from Healthcare, recoloured      */
/* green instead of blue/orange, so every solution page shares one hero   */
/* system.                                                                */
/* ---------------------------------------------------------------------- */
.msme-hero-theme .hc-hero-v3-bg{
  background: linear-gradient(180deg, #F7FCF8 0%, var(--msme-light) 100%);
}
.msme-hero-theme .hc-hero-v3-badge{
  color: var(--msme-dark);
  background: rgba(46,125,50,0.08);
  border-color: rgba(46,125,50,0.16);
}
.msme-hero-theme .hc-hero-v3-badge-dot{ background: var(--msme-accent); }
.msme-hero-theme .hc-float-icon{ background: rgba(46,125,50,0.12); color: var(--msme-primary); }
.msme-hero-theme .hc-hero-v3-copy h1 em{
  background: linear-gradient(100deg, var(--msme-primary), var(--msme-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.msme-trust-strip{
  background: var(--msme-light);
  padding-block: var(--space-5);
  border-block: 1px solid rgba(46,125,50,0.12);
}
.msme-trust-tag{
  background: var(--paper);
  border-color: rgba(46,125,50,0.18);
  color: var(--msme-dark);
}


/* ---------------------------------------------------------------------- */
/* WhatsApp floating action button (site-wide)                            */
/* ---------------------------------------------------------------------- */
.whatsapp-fab{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.4), 0 2px 8px rgba(20,18,15,0.12);
  z-index: 90;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.whatsapp-fab:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37,211,102,0.48), 0 4px 10px rgba(20,18,15,0.16);
}
.whatsapp-fab:focus-visible{ outline: 2.5px solid var(--focus-ring); outline-offset: 3px; }
@media (max-width: 640px){
  .whatsapp-fab{ right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-fab svg{ width: 24px; height: 24px; }
}

/* ---------------------------------------------------------------------- */
/* Startups page — industry cards with structured detail (dl)             */
/* ---------------------------------------------------------------------- */
.su-industries-grid{ gap: var(--space-5); }
.su-industry-card{ display: flex; flex-direction: column; gap: 10px; }
.su-industry-badge{
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.su-industry-card h3{ font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.su-industry-dl{ margin: 0; display: flex; flex-direction: column; gap: 10px; }
.su-industry-dl dt{
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin: 0;
}
.su-industry-dl dd{
  font-size: 13.5px;
  color: var(--ink-500);
  margin: 2px 0 0;
  line-height: 1.5;
}

/* ---------------------------------------------------------------------- */
/* Freelancers & Consultants page — purple brand extension                */
/* Reuses the exact hc-hero-v3 / eco-illustration / cta-band structure    */
/* already established for Healthcare (blue) and MSMEs (warm orange),     */
/* recoloured purple so every solution page shares one component system. */
/* ---------------------------------------------------------------------- */
.fl-hero-purple .hc-hero-v3-bg{
  background: linear-gradient(180deg, #FBFAFF 0%, #F4F1FF 100%);
}
.fl-hero-purple .hc-hero-v3-badge{
  color: #4F46D8;
  background: rgba(109,94,249,0.08);
  border-color: rgba(109,94,249,0.16);
}
.fl-hero-purple .hc-hero-v3-badge-dot{ background: #9B8CFF; }
.fl-hero-purple .hc-float-icon{ background: rgba(109,94,249,0.12); color: #6D5EF9; }
.fl-hero-purple .hc-hero-v3-copy h1 em{
  background: linear-gradient(100deg, #6D5EF9, #4F46D8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fl-section-alt{ background: #F4F1FF; }

.fl-glow-a{ background: radial-gradient(circle, rgba(155,140,255,0.28), transparent 70%) !important; }
.fl-glow-b{ background: radial-gradient(circle, rgba(109,94,249,0.16), transparent 70%) !important; }

.fl-cta-purple{
  background: linear-gradient(135deg, #6D5EF9, #4F46D8);
}
.fl-cta-purple::before{
  background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.2), transparent 60%);
}
.fl-cta-purple .btn-primary{ color: #4F46D8; }
.fl-cta-purple .btn-primary:hover{ color: #3B3499; }

/* Why Freelancers Lose Money — problem-to-solution card */
.fl-loss-card{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.fl-loss-problem{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
}
.fl-loss-x{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(220,38,38,0.1);
  color: #DC2626;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.fl-loss-consequence{ font-size: 13.5px; color: var(--ink-500); margin: 0 0 0 30px; }
.fl-loss-arrow{ color: #9B8CFF; margin-left: 8px; }
.fl-loss-solution{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: #4F46D8;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.fl-loss-check{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #6D5EF9;
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* Startups solutions page — Technology theme (indigo)                    */
/* Page-scoped custom properties: declared under .su-page so they only    */
/* apply within this page's <main> and can never affect Healthcare,       */
/* MSMEs, Freelancers, Home, or any other page sharing this stylesheet.   */
/* ---------------------------------------------------------------------- */
.su-page{
  --su-primary: #4F46E5;
  --su-dark: #312E81;
  --su-light: #EEF2FF;
  --su-accent: #818CF8;
}

/* Eyebrows — page-scoped override of the shared .eyebrow component */
.su-page .eyebrow{ color: var(--su-dark); background: var(--su-light); }
.su-page .eyebrow::before{ background: var(--su-primary); }

/* Buttons that belong only to this page (hero + final CTA) */
.su-page .btn-primary{
  background: linear-gradient(135deg, var(--su-primary), var(--su-dark));
  box-shadow: 0 1px 2px rgba(49,46,129,0.15), 0 8px 20px rgba(49,46,129,0.25);
}
.su-page .btn-primary:hover{
  box-shadow: 0 4px 8px rgba(49,46,129,0.2), 0 14px 28px rgba(49,46,129,0.3);
}
.su-page .btn-secondary:hover{ border-color: var(--su-accent); background: var(--su-light); }

/* Timeline — vertical Founder Journey rail + horizontal Compliance Timeline */
.su-page .stage.is-active .stage-num,
.su-page .stages-progress{
  background: linear-gradient(180deg, var(--su-primary), var(--su-dark));
}
.su-page .stage-body .stage-label{ color: var(--su-dark); }
.su-page .hc-process.in-view .hc-process-num,
.su-page .hc-process-progress{
  background: linear-gradient(90deg, var(--su-primary), var(--su-dark));
}
.su-page .hc-process.in-view .hc-process-num{ box-shadow: 0 6px 16px rgba(49,46,129,0.3); }

/* Ecosystem illustration — tint the glow/blobs indigo; icon chips keep the  */
/* shared multi-colour accent system used across every solution page.       */
.su-page .eco-blob-a{ background: radial-gradient(circle, rgba(129,140,248,0.30), transparent 70%); }
.su-page .eco-blob-b{ background: radial-gradient(circle, rgba(79,70,229,0.16), transparent 70%); }
.su-page .eco-lines line{ stroke: var(--su-accent); }

/* Industry cards (dl-based) */
.su-page .su-industry-dl dt{ color: var(--su-primary); }

/* Final CTA band */
.su-cta-indigo{ background: linear-gradient(135deg, var(--su-primary), var(--su-dark)); }
.su-cta-indigo::before{ background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.2), transparent 60%); }
.su-cta-indigo .btn-primary{ background: var(--paper); color: var(--su-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.su-cta-indigo .btn-primary:hover{ background: var(--paper); color: var(--su-primary); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.su-section-alt{ background: var(--su-light); }

/* ---------------------------------------------------------------------- */
/* Startups solutions page — indigo hero theme                            */
/* Reuses the exact hc-hero-v3 structure shared with Healthcare, MSMEs,   */
/* and Freelancers, recoloured indigo, so every solution page shares one  */
/* hero system with its own identity.                                    */
/* ---------------------------------------------------------------------- */
.su-hero-theme .hc-hero-v3-bg{
  background: linear-gradient(180deg, #FAFAFF 0%, var(--su-light) 100%);
}
.su-hero-theme .hc-hero-v3-badge{
  color: var(--su-dark);
  background: rgba(79,70,229,0.08);
  border-color: rgba(79,70,229,0.16);
}
.su-hero-theme .hc-hero-v3-badge-dot{ background: var(--su-accent); }
.su-hero-theme .hc-float-icon{ background: rgba(79,70,229,0.12); color: var(--su-primary); }
.su-hero-theme .hc-hero-v3-copy h1 em{
  background: linear-gradient(100deg, var(--su-primary), var(--su-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
