:root {
  /* Makro-like neutral + crisp SaaS palette */
  --bg: #0b0d12;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.48);
  --border: rgba(255, 255, 255, 0.14);
  --border-2: rgba(255, 255, 255, 0.20);

  /* Accent (keep your brand red, but make it more “product UI” than aggressive) */
  --accent: #cc2b2b;
  --accent-2: #ff4d4d;
  --accent-ink: #0b0d12;

  --surface: rgba(255, 255, 255, 0.08);
  --surface-solid: rgba(255, 255, 255, 0.10);
  --surface-2: rgba(255, 255, 255, 0.12);
  --surface-dark: rgba(11, 13, 18, 0.62);

  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-heading: var(--font-body);

  --radius: 18px;
  --radius-sm: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 10px 34px rgba(0, 0, 0, 0.28);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.40);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 260ms var(--ease-out);

  --gradient-accent: linear-gradient(135deg, rgba(204, 43, 43, 0.95) 0%, rgba(255, 77, 77, 0.92) 100%);
  --gradient-dark: radial-gradient(1200px 620px at 18% 10%, rgba(255, 77, 77, 0.18), transparent 55%),
    radial-gradient(920px 540px at 82% 28%, rgba(204, 43, 43, 0.12), transparent 58%),
    linear-gradient(180deg, #07080c 0%, #0b0d12 48%, #07080c 100%);

  --focus: 0 0 0 4px rgba(204, 43, 43, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition), transform var(--transition); }
ul { list-style: none; }
.container {
  width: min(1120px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding-inline: clamp(14px, 4vw, 24px);
}
.section { padding: clamp(48px, 8vw, 72px) 0; position: relative; }

/* ------------------------------------------------------------ */
/* Alternating alignment rhythm (section headers only)           */
/* ------------------------------------------------------------ */
.section.align-left > .container > .mini-title,
.section.align-left > .container > h2,
.section.align-left > .container > p.muted {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section.align-right > .container > .mini-title,
.section.align-right > .container > h2,
.section.align-right > .container > p.muted {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.section.align-center > .container > .mini-title,
.section.align-center > .container > h2,
.section.align-center > .container > p.muted {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Keep header content from becoming too wide */
.section.align-left > .container > h2,
.section.align-right > .container > h2,
.section.align-center > .container > h2,
.section.align-left > .container > p.muted,
.section.align-right > .container > p.muted,
.section.align-center > .container > p.muted {
  max-width: 58rem;
}

/* Make the mini-title pill position correctly (block + fit-content) */
.section.align-left > .container > .mini-title,
.section.align-right > .container > .mini-title,
.section.align-center > .container > .mini-title {
  display: flex;          /* becomes block-level so auto margins work */
  width: fit-content;
}
.section.align-left > .container > .mini-title { margin-left: 0; margin-right: auto; }
.section.align-right > .container > .mini-title { margin-left: auto; margin-right: 0; }
.section.align-center > .container > .mini-title { margin-left: auto; margin-right: auto; }

/* Same alignment behavior for custom sections (logo/testimonials) */
.logo-section.align-left .container > .mini-title,
.logo-section.align-left .container > h2,
.logo-section.align-left .container > p.muted,
.testimonials-section.align-left .testimonials-container > .mini-title,
.testimonials-section.align-left .testimonials-container > h2,
.testimonials-section.align-left .testimonials-container > p.muted {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.logo-section.align-right .container > .mini-title,
.logo-section.align-right .container > h2,
.logo-section.align-right .container > p.muted,
.testimonials-section.align-right .testimonials-container > .mini-title,
.testimonials-section.align-right .testimonials-container > h2,
.testimonials-section.align-right .testimonials-container > p.muted {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.logo-section.align-center .container > .mini-title,
.logo-section.align-center .container > h2,
.logo-section.align-center .container > p.muted,
.testimonials-section.align-center .testimonials-container > .mini-title,
.testimonials-section.align-center .testimonials-container > h2,
.testimonials-section.align-center .testimonials-container > p.muted {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure the mini-title pill itself moves left/right/center */
.logo-section.align-left .container > .mini-title,
.logo-section.align-right .container > .mini-title,
.logo-section.align-center .container > .mini-title,
.testimonials-section.align-left .testimonials-container > .mini-title,
.testimonials-section.align-right .testimonials-container > .mini-title,
.testimonials-section.align-center .testimonials-container > .mini-title {
  display: flex;
  width: fit-content;
}
.logo-section.align-left .container > .mini-title,
.testimonials-section.align-left .testimonials-container > .mini-title { margin-left: 0; margin-right: auto; }
.logo-section.align-right .container > .mini-title,
.testimonials-section.align-right .testimonials-container > .mini-title { margin-left: auto; margin-right: 0; }
.logo-section.align-center .container > .mini-title,
.testimonials-section.align-center .testimonials-container > .mini-title { margin-left: auto; margin-right: auto; }

/* Gradient background across the whole site */
body { background: var(--gradient-dark); }

/* Every section gets the gradient "glow" (except hero video section) */
.section:not(.hero-split)::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 520px at 10% 6%, rgba(255, 77, 77, 0.14), transparent 60%),
    radial-gradient(700px 520px at 92% 20%, rgba(204, 43, 43, 0.10), transparent 62%),
    radial-gradient(520px 420px at 55% 80%, rgba(255, 255, 255, 0.05), transparent 66%);
  pointer-events: none;
}

.section > .container { position: relative; z-index: 2; }

/* Keep class names, but unify to gradient background */
.dark-section { background: transparent; color: var(--fg); overflow: clip; }
.dark-section::before { display: none; }
.light-section { background: transparent; color: var(--fg); }
h1, h2, h3, h4 { font-family: var(--font-heading); letter-spacing: -0.02em; line-height: 1.03; }
h1 { font-size: clamp(2.35rem, 5vw, 4.55rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.2vw, 3.2rem); margin-bottom: 18px; font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 650; letter-spacing: -0.015em; }
p { margin-bottom: 16px; }
.muted { color: var(--muted); }
.dark-section .muted { color: var(--muted); }

:where(button, a, input, select, textarea):focus-visible { outline: none; box-shadow: var(--focus); border-color: rgba(204, 43, 43, 0.35); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition), filter var(--transition);
  will-change: transform;
  transform: translateY(var(--lift, 0px));
}
.btn:hover { --lift: -1px; }
.btn:active { --lift: 0px; }
/* Glass buttons */
.btn-primary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.btn-primary:hover { background: rgba(255, 255, 255, 0.18); box-shadow: var(--shadow); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); box-shadow: var(--shadow-sm); }
.dark-section .btn-secondary { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.92); border-color: rgba(255, 255, 255, 0.18); }
.dark-section .btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }

/* Header: white/gray gradient */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 242, 246, 0.86) 100%);
  backdrop-filter: blur(16px);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid rgba(11, 13, 18, 0.10);
}

/* Top contact bar */
.topbar {
  background:
    radial-gradient(900px 140px at 20% 10%, rgba(255, 77, 77, 0.18), transparent 55%),
    radial-gradient(760px 140px at 85% 30%, rgba(204, 43, 43, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(11, 13, 18, 0.96) 0%, rgba(7, 8, 12, 0.92) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  font-size: 0.84rem;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.topbar-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.94);
}
.topbar-ico {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.86);
}
.topbar-link--whatsapp .topbar-ico {
  background: rgba(34, 197, 94, 0.20);
  color: rgba(187, 247, 208, 0.98);
}
.topbar-ico .emoji-svg,
.topbar-ico > svg {
  width: 14px;
  height: 14px;
  margin: 0;
}
.topbar-ico .emoji-svg svg,
.topbar-ico > svg { display: block; width: 100%; height: 100%; }

@media (max-width: 520px) {
  .topbar-inner { justify-content: center; }
  .topbar-right { width: 100%; justify-content: center; }
}

/* Premium SVG badges for card headings */
.icon-badge {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.icon-badge svg { width: 15px; height: 15px; display: block; }
.icon-badge--img img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.card-heading-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-heading-with-icon .icon-badge { margin-right: 0; flex: 0 0 auto; }
.card-heading-with-icon span { min-width: 0; }

/* Premium icons used inside cards (services/industries tiles) */
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 10px;
  background: linear-gradient(180deg, rgba(11, 18, 34, 0.06), rgba(11, 18, 34, 0.02));
  border: 1px solid rgba(11, 18, 34, 0.10);
  box-shadow: 0 10px 24px rgba(11, 18, 34, 0.08);
}
.card-icon svg { width: 22px; height: 22px; display: block; color: rgba(11, 18, 34, 0.86); }
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 239, 244, 0.92) 100%);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  border-bottom-color: rgba(11, 13, 18, 0.14);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 18px);
  min-width: 0;
  flex-wrap: nowrap;
}
.logo {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  width: clamp(100px, 28vw, 210px);
  height: clamp(30px, 7vw, 52px);
  background: url("images/redhot-logo.png") center / contain no-repeat;
}
.logo-rh, .logo-text { display: none; }
.site-footer .logo {
  width: clamp(180px, 22vw, 260px);
  height: clamp(50px, 8vw, 72px);
}
.nav-menu {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 28px);
  font-size: 0.9rem;
  font-weight: 600;
}
.nav-menu a { position: relative; padding: 6px 0; }
.nav-menu a { color: rgba(11, 13, 18, 0.82); }
.nav-menu a::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px; background: rgba(11, 13, 18, 0.78); transition: width var(--transition), opacity var(--transition); opacity: 0.75; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { opacity: 1; }
.nav-menu a:hover { opacity: 0.92; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.menu-toggle { border: 0; background: transparent; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.hamburger { width: 20px; height: 2px; background: rgba(11, 13, 18, 0.78); position: relative; }
.hamburger::before, .hamburger::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: rgba(11, 13, 18, 0.78); }
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.mobile-menu {
  display: block;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  overflow: clip;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(11, 13, 18, 0.62);
  backdrop-filter: blur(16px);
  transition: max-height 420ms var(--ease-out), opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.mobile-menu.open {
  max-height: 80vh;
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}
.mobile-menu ul { width: min(1200px, 92%); margin: 0 auto; padding: 12px 0 16px; display: grid; gap: 8px; }
.mobile-menu a { display: block; padding: 8px 0; font-weight: 600; }
.mobile-menu a.active { opacity: 0.72; }

.hero { min-height: calc(100vh - 74px); display: flex; align-items: center; }
/* Inner pages use .hero-split without .hero-layout; keep content full-width and centered in the flex column */
.hero.hero-split {
  flex-direction: column;
  justify-content: center;
}
.hero.hero-split > .container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}
/* About / services / etc.: plain container (no .hero-layout) — match homepage hero centering */
.hero.hero-split > .container:not(.hero-layout) {
  text-align: center;
}
.hero.hero-split > .container:not(.hero-layout) h1 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.hero.hero-split > .container:not(.hero-layout) p {
  margin-left: auto;
  margin-right: auto;
}
.hero.hero-split > .container:not(.hero-layout) .hero-actions {
  justify-content: center;
}
.hero .intro { max-width: 780px; }
.hero-split { background: transparent; }
.hero-split::before { display: none; }
.hero-split p,
.hero-split p.muted {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.05vw, 1.14rem);
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.hero-split p.muted { color: rgba(255, 255, 255, 0.80); }
.hero-split p.muted strong,
.hero-split p strong { color: rgba(255, 255, 255, 0.96); }
.dark-section p.muted { color: rgba(255, 255, 255, 0.78); }
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: clip;
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 18%, rgba(0, 0, 0, 0.20), transparent 58%),
    radial-gradient(720px 520px at 82% 26%, rgba(0, 0, 0, 0.22), transparent 62%),
    linear-gradient(180deg, rgba(7, 8, 12, 0.72) 0%, rgba(7, 8, 12, 0.56) 46%, rgba(7, 8, 12, 0.78) 100%);
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05) brightness(0.85);
  transform: scale(1.04);
}
.hero-layout {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 24px;
  min-height: calc(100vh - 74px);
  position: relative;
}
.hero-word {
  display: inline-block;
  will-change: transform, opacity;
}
.hero-word.is-highlight {
  padding: 0.08em 0.32em;
  border-radius: 0.45em;
  background: linear-gradient(
    90deg,
    rgba(255, 77, 77, 0.22),
    rgba(255, 138, 61, 0.18),
    rgba(123, 97, 255, 0.18)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.hero-center {
  text-align: center;
  max-width: 820px;
  position: relative;
  z-index: 3;
  padding-inline: 10px;
  will-change: transform;
  transition: transform 220ms ease-out;
}
.hero-center .hero-actions { justify-content: center; }

/* Leading word/phrase in hero h1 — gradient pill (inner pages + reference layout) */
.hero-title-pill {
  display: inline-block;
  padding: 0.15em 0.55em 0.17em;
  margin: 0 0.28em 0.08em 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  vertical-align: middle;
  color: #ffffff !important;
  background: linear-gradient(
    135deg,
    rgba(150, 42, 68, 0.98) 0%,
    rgba(88, 48, 128, 0.96) 45%,
    rgba(42, 68, 138, 0.94) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-split .hero-center h1 {
  line-height: 1.12;
}
.hero-split .hero-center h1:has(br) {
  line-height: 1.22;
}
/* Gradient span inside hero h1 must stay clipped; parent h1 forces white */
.hero-split h1 .text-gradient {
  color: transparent !important;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 520px) {
  .hero-title-pill {
    margin-bottom: 0.1em;
  }
}
.hero-center .hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
  position: relative;
  z-index: 4;
}
.hero-center .hero-trust p {
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 13, 18, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.25;
}

.hero-float-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
  transition: transform 260ms ease-out;
}
.hero-ui-card {
  position: absolute;
  width: min(220px, 34vw);
  padding: 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  animation: floatCard 7s ease-in-out infinite;
}
.hero-ui-card h4 {
  margin: 2px 0 4px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #fff;
  line-height: 1.1;
}
.ui-card-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.ui-card-meta {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.ui-card-1 { top: 6%; left: 2%; transform: rotate(-8deg); animation-delay: 0s; }
.ui-card-2 { top: 7%; right: 2%; transform: rotate(8deg); animation-delay: .5s; }
.ui-card-3 { top: 35%; left: -2%; transform: rotate(-6deg); animation-delay: 1s; }
.ui-card-4 { top: 36%; right: -2%; transform: rotate(6deg); animation-delay: 1.5s; }
.ui-card-5 { bottom: -1%; left: 6%; transform: rotate(-5deg); animation-delay: .8s; }
.ui-card-6 { bottom: -1%; right: 6%; transform: rotate(5deg); animation-delay: 1.2s; }

@keyframes floatCard {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}
.hero-panel { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18); color: #fff; box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35); backdrop-filter: blur(14px); }
.hero-panel h3 { margin-bottom: 12px; }
.hero-badge { margin-bottom: 16px; }
.mini-title {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mini-title-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.86);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22));
}
.mini-title-icon svg { width: 18px; height: 18px; display: block; }
.dark-section .mini-title { color: rgba(255, 255, 255, 0.82); border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.08); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-trust { display: grid; gap: 6px; margin-top: 18px; }
.hero-trust p { margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 0.94rem; }
.animated-accent { width: 120px; height: 3px; margin: 26px 0; background: var(--gradient-accent); animation: pulseLine 2.5s infinite ease-in-out; border-radius: 999px; }
@keyframes pulseLine { 0%, 100% { transform: scaleX(1); opacity: 1; } 50% { transform: scaleX(1.6); opacity: 0.5; } }

.cards-grid, .stats-grid, .steps-grid, .case-grid, .industry-grid, .insight-grid, .podcast-grid, .events-grid { display: grid; gap: 16px; }
.cards-grid { margin: 10px 0 22px; }
.cards-grid + p { margin-top: 0 !important; }
.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  will-change: transform;
  backdrop-filter: blur(14px);
}

/* High-profile hover interactions: tilt + shine */
.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt:hover {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-3px);
}
.card::after,
.steps-grid .step::after,
.stat-box::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.32) 48%, transparent 58%);
  transform: translateX(-35%) rotate(18deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out), transform 520ms var(--ease-out);
}
.card:hover::after,
.steps-grid .step:hover::after,
.stat-box:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
  transform: translateX(35%) rotate(18deg);
}

/* Title interactions */
.section:not(.hero-split) h2 {
  transition: transform 260ms var(--ease-out), letter-spacing 260ms var(--ease-out);
}
.section:not(.hero-split) h2:hover {
  transform: translateY(-1px);
  letter-spacing: -0.02em;
}
.section:not(.hero-split) h2::after {
  transition: filter 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.section:not(.hero-split) h2:hover::after {
  filter: saturate(1.15) brightness(1.05);
  transform: scaleX(1.04);
}

/* Section hover depth */
main > section.section:not(.hero-split) {
  transition: transform 320ms var(--ease-out);
}
main > section.section:not(.hero-split):hover {
  transform: none;
}
.dark-section .card,
.section.dark-section .card { background: #ffffff; border-color: rgba(11, 18, 34, 0.10); box-shadow: var(--shadow-sm); color: rgba(11, 18, 34, 0.92); }
.dark-section .card h3,
.section.dark-section .card h3 { color: rgba(11, 18, 34, 0.96); }
.dark-section .card p,
.section.dark-section .card p { color: rgba(11, 18, 34, 0.78); }
.dark-section .card li,
.section.dark-section .card li { color: rgba(11, 18, 34, 0.82); }
.card:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: var(--border-2); }
.card-accent { border-bottom: 4px solid rgba(204, 43, 43, 0.82); }
.icon { width: 44px; height: 44px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(204, 43, 43, 0.10); color: rgba(204, 43, 43, 0.95); font-weight: 700; margin-bottom: 10px; }
.stat-box { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); text-align: center; padding: 22px 14px; }
.stat-value { font-family: var(--font-heading); font-size: 2rem; }
.steps-grid .step { position: relative; padding: 20px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); backdrop-filter: blur(14px); }
.step-number { color: rgba(255, 255, 255, 0.62); font-family: var(--font-heading); font-size: 1.05rem; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; }
.case-tag, .badge { display: inline-block; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.82); font-size: 0.78rem; font-weight: 650; letter-spacing: 0.05em; text-transform: uppercase; backdrop-filter: blur(12px); }
.dark-section .case-tag, .dark-section .badge { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.82); }
.big-number { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem); color: rgba(204, 43, 43, 0.95); letter-spacing: -0.02em; }
.testimonial-card { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-lg); padding: 20px; }
.testimonial-card p:last-child { margin-bottom: 0; }
.feature-list { margin: 0 0 18px; padding-left: 18px; display: grid; gap: 8px; }
.feature-list li { color: #d8d8d8; }
.founder-strip { display: grid; gap: 18px; align-items: center; }
.avatar { width: 84px; height: 84px; border-radius: 50%; background: #d8d8d8; }
.faq-wrap { max-width: 920px; }
.cta-band {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(18px);
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-btn { border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; background: rgba(255, 255, 255, 0.82); cursor: pointer; transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.filter-btn:hover { transform: translateY(-1px); }
.filter-btn.active { border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.12); }

/* Readable links on dark glass */
.card a, .step a, .footer-col a, .accordion-content-inner a {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 4px;
}
.card a:hover, .step a:hover, .footer-col a:hover, .accordion-content-inner a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.44);
}

/* Header CTA capsule */
.site-header .btn {
  padding: clamp(8px, 1.8vw, 10px) clamp(12px, 2.8vw, 16px);
  border-radius: 999px;
  font-size: clamp(0.78rem, 2.6vw, 0.9rem);
  line-height: 1;
  white-space: nowrap;
}
.site-header .btn-primary {
  background: rgba(11, 13, 18, 0.92);
  color: #ffffff;
  border-color: rgba(11, 13, 18, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(0px);
}
.site-header .btn-primary:hover {
  background: rgba(11, 13, 18, 0.98);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}
.accordion-item { border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(14px); }
.accordion-header {
  width: 100%;
  padding: 16px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.accordion-header span { color: rgba(255, 255, 255, 0.70); }
.accordion-header:hover { background: rgba(255, 255, 255, 0.04); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: transparent; }
.accordion-content-inner { padding: 0 16px 16px; }
.timeline { border-left: 2px solid rgba(255, 255, 255, 0.14); margin-left: 8px; padding-left: 18px; display: grid; gap: 18px; }
.timeline-item { position: relative; }
.timeline-item::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: rgba(204, 43, 43, 0.95); position: absolute; left: -24px; top: 7px; }
.contact-grid { display: grid; gap: 22px; }
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-aside__block .mini-title { margin-bottom: 8px; }
.contact-aside__block > p { margin: 0; }
.contact-aside__block > p + p { margin-top: 10px; }
.contact-aside__sep { opacity: 0.45; padding: 0 0.25em; }

/* About page — leadership / founder cards */
.about-leadership > .container > .mini-title,
.about-leadership > .container > h2,
.about-leadership > .container > .founder-lead {
  text-align: center;
}
.section.about-leadership > .container > h2::after {
  left: 50%;
  transform: translateX(-50%);
}
.about-leadership .founder-lead {
  max-width: 42rem;
  margin: 0 auto 4px;
}
.about-leadership .founder-grid {
  display: grid;
  gap: clamp(18px, 3vw, 22px);
  margin-top: clamp(22px, 4vw, 32px);
}
@media (min-width: 768px) {
  .about-leadership .founder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}
.about-leadership .founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 26px);
  align-items: start;
  padding: clamp(22px, 4vw, 30px);
  text-align: left;
}
@media (max-width: 540px) {
  .about-leadership .founder-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .about-leadership .founder-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-leadership .founder-card__link {
    justify-content: center;
  }
}
.about-leadership .founder-photo-wrap {
  width: clamp(76px, 15vw, 96px);
  height: clamp(76px, 15vw, 96px);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 14px 36px rgba(8, 12, 24, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #e8ecf4 0%, #d4dae8 100%);
}
.about-leadership .founder-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.about-leadership .founder-card__role {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5) !important;
}
.about-leadership .founder-card__name {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-size: clamp(1.32rem, 3vw, 1.62rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(15, 23, 42, 0.98) !important;
}
.about-leadership .founder-card__bio {
  margin: 0 0 18px;
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.74) !important;
}
.about-leadership .founder-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 650;
  color: rgba(15, 23, 42, 0.88) !important;
  text-decoration: none;
  border-bottom: 2px solid rgba(204, 43, 43, 0.35);
  padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.about-leadership .founder-card__link:hover {
  color: #b91c1c !important;
  border-bottom-color: rgba(185, 28, 28, 0.65);
}
.about-leadership .founder-card__link .founder-card__ext {
  flex-shrink: 0;
  opacity: 0.7;
}
.about-leadership .founder-team-note {
  margin-top: clamp(22px, 4vw, 30px);
  text-align: center;
  padding: clamp(24px, 4vw, 34px) clamp(20px, 4vw, 28px);
}
.about-leadership .founder-team-note__title {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-size: clamp(1.12rem, 2.4vw, 1.32rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.98) !important;
}
.about-leadership .founder-team-note__text {
  margin: 0 auto;
  max-width: 52rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.72) !important;
}

/* About page — journey (light) */
.about-journey__intro {
  margin-bottom: clamp(6px, 2vw, 12px);
}
.about-journey__layout {
  display: grid;
  gap: clamp(22px, 4vw, 36px);
  align-items: start;
  margin-top: clamp(8px, 2vw, 16px);
}
@media (min-width: 860px) {
  .about-journey__layout {
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  }
}
.about-journey__aside {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 28px);
  background: linear-gradient(
    155deg,
    rgba(255, 59, 59, 0.08) 0%,
    rgba(255, 138, 61, 0.05) 45%,
    rgba(123, 97, 255, 0.06) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
@media (min-width: 860px) {
  .about-journey__aside {
    position: sticky;
    top: 96px;
  }
}
.about-journey__mark {
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-size: clamp(2.35rem, 5.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.about-journey__mark-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.52) !important;
}
.about-journey__aside-note {
  margin: 10px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.58) !important;
}
.about-journey__body {
  padding: clamp(4px, 1.5vw, 10px) 0;
}
.about-journey__kicker {
  position: relative;
  margin: 0 0 18px;
  padding-left: 20px;
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-size: clamp(1.04rem, 2.2vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.94) !important;
}
.about-journey__kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 4px;
  border-radius: 999px;
  background: var(--gradient-brand);
}

/* About page — vision & mission (always 2 columns on desktop, not 3-col cards-grid) */
.section.about-direction .about-direction__intro {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}
.section.about-direction .about-direction__intro h2::after {
  left: 50%;
  transform: translateX(-50%);
}
.about-direction__lead {
  margin-top: 10px;
}
.about-direction .about-direction-grid {
  display: grid;
  gap: clamp(18px, 3vw, 22px);
  margin-top: clamp(24px, 4vw, 36px);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .about-direction .about-direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}
.about-pillar {
  position: relative;
  height: 100%;
  padding: clamp(24px, 3vw, 30px) clamp(20px, 3vw, 26px);
  padding-top: clamp(28px, 3.5vw, 34px);
  display: flex;
  flex-direction: column;
}
.about-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 3vw, 28px);
  width: min(72px, 28%);
  height: 4px;
  border-radius: 999px;
  background: var(--gradient-brand);
}
.about-pillar--mission::before {
  background: linear-gradient(90deg, #7b61ff 0%, #12c2e9 72%, #22c55e 100%);
}
.about-pillar__title {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-size: clamp(1.18rem, 2.5vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(15, 23, 42, 0.98) !important;
}
.about-pillar__tagline {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.52) !important;
}
.about-pillar__copy {
  margin: 0;
  flex: 1;
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.76) !important;
}

form { display: grid; gap: 12px; }
input, select, textarea { width: 100%; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 12px; padding: 12px 14px; font-family: var(--font-body); background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.92); transition: box-shadow var(--transition), border-color var(--transition), background var(--transition); backdrop-filter: blur(12px); }
input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.55); }
input:focus, select:focus, textarea:focus { border-color: rgba(255, 77, 77, 0.35); box-shadow: var(--focus); }
textarea { min-height: 130px; resize: vertical; }
.lead-strip {
  background: #0b0d12 !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.lead-strip::before {
  display: none;
}
.lead-strip h1,
.lead-strip h2,
.lead-strip h3,
.lead-strip p,
.lead-strip li,
.lead-strip label,
.lead-strip .muted {
  color: #ffffff !important;
}
.lead-form-grid,
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 16px;
}
.lead-form-grid button,
.contact-form-grid button {
  width: 100%;
}
.lead-form-grid .btn {
  min-height: 46px;
  white-space: nowrap;
}

/* =================================================================== */
/* Premium gradient submit button (used on home page lead + contact)    */
/* =================================================================== */
.uiverse-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 220px;
  height: 56px;
  padding: 6px 6px 6px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #ffffff;
  background:
    linear-gradient(135deg, #ff4d4d 0%, #ff8a3d 38%, #ff4d8a 68%, #7b61ff 100%);
  background-size: 220% 220%;
  background-position: 0% 50%;
  box-shadow:
    0 20px 44px rgba(255, 77, 77, 0.28),
    0 8px 18px rgba(123, 97, 255, 0.20),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    background-position 600ms ease;
  will-change: transform, box-shadow, background-position;
}

/* Subtle top highlight (glassy curve) */
.uiverse-submit::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 4px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0));
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

/* Outer glow that intensifies on hover */
.uiverse-submit::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.55), rgba(123, 97, 255, 0.55));
  filter: blur(14px);
  opacity: 0.55;
  z-index: -1;
  transition: opacity 260ms ease, filter 260ms ease;
  pointer-events: none;
}

/* Animated shimmer that sweeps across on hover */
.uiverse-submit__shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 2;
  transition: left 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.uiverse-submit__text {
  position: relative;
  z-index: 3;
  color: #ffffff !important;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.uiverse-submit__icon {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 260ms ease,
    border-color 260ms ease;
}
.uiverse-submit__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover state: lift, brighter glow, shimmer sweep, gradient drift, icon zoom */
.uiverse-submit:hover {
  transform: translateY(-2px) scale(1.015);
  background-position: 100% 50%;
  box-shadow:
    0 26px 56px rgba(255, 77, 77, 0.36),
    0 12px 26px rgba(123, 97, 255, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.30);
}
.uiverse-submit:hover::after {
  opacity: 0.85;
  filter: blur(18px);
}
.uiverse-submit:hover .uiverse-submit__shine {
  left: 110%;
}
.uiverse-submit:hover .uiverse-submit__icon {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.45);
  transform: rotate(-4deg) scale(1.04);
}
.uiverse-submit:hover .uiverse-submit__icon svg {
  transform: translateX(2px);
}

.uiverse-submit:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 120ms;
}

.uiverse-submit:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.55),
    0 0 0 8px rgba(255, 77, 77, 0.40),
    0 24px 50px rgba(255, 77, 77, 0.30);
}

/* Subtle slow ambient pulse so the button feels "alive" before hover */
@keyframes btnAmbient {
  0%, 100% { box-shadow:
      0 20px 44px rgba(255, 77, 77, 0.28),
      0 8px 18px rgba(123, 97, 255, 0.20),
      inset 0 0 0 1px rgba(255, 255, 255, 0.22); }
  50%      { box-shadow:
      0 24px 52px rgba(255, 77, 77, 0.34),
      0 10px 22px rgba(123, 97, 255, 0.26),
      inset 0 0 0 1px rgba(255, 255, 255, 0.26); }
}
.uiverse-submit.btn-pulse:not(:hover) {
  animation: btnAmbient 3.6s ease-in-out infinite;
}

/* Lead-strip variant — slightly tighter so it fits the dark form grid */
.lead-strip .lead-form-grid .uiverse-submit {
  width: 210px;
  height: 54px;
}
.lead-strip .lead-form-grid .uiverse-submit .uiverse-submit__icon {
  width: 42px;
  height: 42px;
}

/* CTA-band variant — wider for the longer "SEND MESSAGE" label */
.section.cta-band .contact-form-grid .uiverse-submit.uiverse-submit--cta {
  width: 240px;
  height: 58px;
}
.section.cta-band .contact-form-grid .uiverse-submit.uiverse-submit--cta .uiverse-submit__icon {
  width: 46px;
  height: 46px;
}
.section.cta-band .contact-form-grid .uiverse-submit.uiverse-submit--cta .uiverse-submit__text {
  font-size: 0.88rem;
}

@media (prefers-reduced-motion: reduce) {
  .uiverse-submit,
  .uiverse-submit::after,
  .uiverse-submit__shine,
  .uiverse-submit__icon,
  .uiverse-submit__icon svg { transition: none !important; animation: none !important; }
}

@media (max-width: 520px) {
  .lead-strip .lead-form-grid .uiverse-submit { width: 100%; }
  .section.cta-band .contact-form-grid .uiverse-submit.uiverse-submit--cta { width: 100%; }
}
.lead-strip input,
.lead-strip textarea {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
}
.lead-strip input::placeholder,
.lead-strip textarea::placeholder {
  color: rgba(255, 255, 255, 0.72) !important;
}
.lead-strip .btn-primary {
  background: #0b1730 !important;
  border-color: #0b1730 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(7, 15, 34, 0.32) !important;
}
.trust-icons-row p {
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.trust-icons-row p::before {
  content: "★";
  color: #ffd166;
}
.tag-row-title {
  margin: 18px 0 10px;
  font-weight: 650;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.stats-grid-four {
  grid-template-columns: 1fr;
}
.result-list {
  padding-left: 0;
}
.result-list li {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  gap: 10px;
}
.result-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ff4d4d, #7b61ff);
  flex: 0 0 22px;
}
/* (Removed) old trusted-by/logo grid styles */
/* (Removed) old testimonials meta styles */
.hero-trust p {
  font-weight: 600;
}
.badge {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 6px 16px rgba(15, 23, 42, 0.08);
}
.map-placeholder, .calendly-placeholder, .proof-placeholder, .media-thumb {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 150px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(16px);
}

/* Contact page — Google Maps embed */
.contact-map {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.96);
}
.contact-map__frame {
  display: block;
  width: 100%;
  height: min(320px, 55vw);
  min-height: 220px;
  border: 0;
  vertical-align: middle;
}
.contact-map__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  color: rgba(15, 23, 42, 0.88) !important;
  background: linear-gradient(180deg, rgba(255, 77, 77, 0.08), rgba(123, 97, 255, 0.06));
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  transition: color 200ms ease, background 200ms ease;
}
.contact-map__link::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: currentColor;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>') center / contain no-repeat;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>') center / contain no-repeat;
  opacity: 0.65;
}
.contact-map__link:hover {
  color: #ff4d4d !important;
  background: linear-gradient(180deg, rgba(255, 77, 77, 0.12), rgba(123, 97, 255, 0.08));
}

/* Footer: white/gray gradient */
.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(235, 238, 244, 0.92) 100%);
  color: rgba(11, 13, 18, 0.90);
  padding: 60px 0 22px;
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(11, 13, 18, 0.10);
}
.footer-grid { display: grid; gap: 20px; }
.footer-col h4 { margin-bottom: 8px; }
.site-footer .muted { color: rgba(11, 13, 18, 0.60); }
.footer-col a { display: block; color: rgba(11, 13, 18, 0.70); margin-bottom: 6px; }
.footer-col a:hover { color: rgba(11, 13, 18, 0.92); text-decoration: underline; }
.footer-bottom { margin-top: 18px; border-top: 1px solid rgba(11, 13, 18, 0.10); padding-top: 14px; color: rgba(11, 13, 18, 0.60); font-size: 0.9rem; }

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 84px;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  overflow: visible;
  box-shadow: none;
  z-index: 1002;
}
.floating-whatsapp::before {
  content: "";
  width: 36px;
  height: 36px;
  background: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg") center/contain no-repeat;
}
.floating-whatsapp::after {
  content: "Enquire now";
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) scale(0.96);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 13, 18, 0.92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-indent: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  animation: enquirePop 1.9s ease-in-out infinite;
  z-index: 1003;
}
.floating-whatsapp:hover { transform: translateY(-1px) scale(1.03); }
.floating-whatsapp:hover::after { animation-play-state: paused; }

@keyframes enquirePop {
  0%, 100% { transform: translateY(-50%) scale(0.96); opacity: 0.88; }
  50% { transform: translateY(-50%) scale(1); opacity: 1; }
}
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 13, 18, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 10px clamp(12px, 4vw, 20px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex;
  gap: 10px;
  z-index: 1001;
  backdrop-filter: blur(18px);
  max-width: 100%;
  box-sizing: border-box;
}
.mobile-sticky-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: 10px;
  font-size: clamp(0.72rem, 2.8vw, 0.88rem);
}

.fade-in { opacity: 1; transform: none; filter: none; }
html.js .fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s var(--ease-out); filter: blur(8px); }
html.js .fade-in.visible { opacity: 1; transform: translateY(0); filter: blur(0px); }
.section-hidden {
  opacity: 0;
  transform: translateY(40px);
}
.section-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scene-item {
  will-change: transform, opacity;
}
.section-pin {
  min-height: 100vh;
}

/* Hero video should be the only background layer */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .section-hidden,
  .section-visible {
    opacity: 1 !important;
    transform: none !important;
  }
  .fade-in { opacity: 1; transform: none; filter: none; }
}

@media (min-width: 480px) { .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .menu-toggle { display: none; }
  .nav-menu { display: flex; }
  .mobile-menu { display: none !important; }
  .logo { flex: 0 0 auto; }
  .nav-menu { flex: 1 1 auto; min-width: 0; }
  .header-actions { flex: 0 0 auto; margin-left: auto; }
  .hero-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); position: relative; }
  .steps-grid::before { content: ""; position: absolute; top: 44px; left: 8%; width: 84%; height: 2px; background: rgba(255, 255, 255, 0.10); z-index: 0; }
  .steps-grid .step { z-index: 1; }
  .service-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .case-grid, .industry-grid, .insight-grid, .podcast-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  /* (Removed) old .testimonial-grid layout */
  .founder-strip { grid-template-columns: auto 1fr auto; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid { grid-template-columns: 2fr repeat(4, 1fr); }
  .mobile-sticky-cta { display: none !important; }
  .floating-whatsapp { bottom: 20px; }
  .events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lead-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lead-form-grid button {
    grid-column: 1 / -1;
    width: max-content;
    min-width: 180px;
    justify-self: start;
  }
  .lead-strip .lead-form-grid .uiverse-submit {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .contact-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-form-grid textarea,
  .contact-form-grid button { grid-column: 1 / -1; }
  .contact-form-grid button { width: max-content; min-width: 160px; }
  /* (Removed) .logo-track-static layout (old trusted-by section) */
}
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-actions .btn { min-width: 200px; }
  .stats-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  /* (Removed) .logo-track-static layout (old trusted-by section) */
}

/* ---------------------------------------------- */
/* White premium theme + section-by-section styles */
/* ---------------------------------------------- */

:root {
  --bg: #ffffff;
  --fg: #0b1222;
  --muted: rgba(11, 18, 34, 0.68);
  --muted-2: rgba(11, 18, 34, 0.52);
  --border: rgba(11, 18, 34, 0.10);
  --border-2: rgba(11, 18, 34, 0.16);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.96);

  --c1: #ff3b3b;
  --c2: #ff8a3d;
  --c3: #7b61ff;
  --c4: #12c2e9;
  --c5: #22c55e;

  --shadow-sm: 0 12px 28px rgba(11, 18, 34, 0.08);
  --shadow: 0 20px 60px rgba(11, 18, 34, 0.12);
  --shadow-lg: 0 34px 110px rgba(11, 18, 34, 0.16);

  --gradient-brand: linear-gradient(90deg, var(--c1) 0%, var(--c2) 38%, var(--c3) 76%, var(--c4) 100%);
  --focus: 0 0 0 4px rgba(123, 97, 255, 0.22);
}

body {
  color: var(--fg);
  background: #ffffff;
}

/* Keep hero video section dark + cinematic */
.hero-video::after {
  background:
    radial-gradient(900px 520px at 20% 18%, rgba(0, 0, 0, 0.26), transparent 58%),
    radial-gradient(720px 520px at 82% 26%, rgba(0, 0, 0, 0.28), transparent 62%),
    linear-gradient(180deg, rgba(7, 8, 12, 0.78) 0%, rgba(7, 8, 12, 0.58) 46%, rgba(7, 8, 12, 0.82) 100%);
}

/* Light header (premium glass) on white */
.site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 250, 255, 0.78) 100%);
  border-bottom: 1px solid rgba(11, 18, 34, 0.10);
  backdrop-filter: blur(18px);
}
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 255, 0.90) 100%);
  box-shadow: 0 16px 48px rgba(11, 18, 34, 0.12);
}
.nav-menu a { color: rgba(11, 18, 34, 0.86); }
.nav-menu a::after { background: rgba(11, 18, 34, 0.78); }
.hamburger, .hamburger::before, .hamburger::after { background: rgba(11, 18, 34, 0.78); }

/* Sections: white base, but each section feels different via variants */
.section { padding: 86px 0; }
.section:not(.hero-split)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}

/* Variant A: soft gradient wash + fine grain */
main > section.section:not(.hero-split):nth-of-type(2n)::before {
  background:
    radial-gradient(900px 540px at 14% 18%, rgba(255, 59, 59, 0.10), transparent 62%),
    radial-gradient(820px 520px at 86% 22%, rgba(123, 97, 255, 0.10), transparent 64%),
    radial-gradient(760px 520px at 44% 88%, rgba(18, 194, 233, 0.08), transparent 66%),
    linear-gradient(180deg, rgba(248, 250, 255, 0.82), rgba(255, 255, 255, 0.92));
}

/* Variant B: dotted tech pattern */
main > section.section:not(.hero-split):nth-of-type(2n + 1)::before {
  background:
    radial-gradient(900px 560px at 18% 12%, rgba(255, 138, 61, 0.10), transparent 66%),
    radial-gradient(860px 560px at 88% 22%, rgba(34, 197, 94, 0.08), transparent 66%),
    radial-gradient(rgba(11, 18, 34, 0.08) 0.7px, transparent 0.7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 255, 0.90));
  background-size: auto, auto, 12px 12px, auto;
}

/* Make content sit above section backgrounds */
.section > .container { position: relative; z-index: 2; }

/* Typography: animated gradient accent for highlights */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* Headings get a premium underline + subtle shimmer */
.section:not(.hero-split) h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.section:not(.hero-split) h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(220px, 52%);
  height: 4px;
  border-radius: 999px;
  background: var(--gradient-brand);
  background-size: 220% 220%;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Cards: premium “border glow” frame + hover depth */
.card {
  position: relative;
  background: var(--card-bg, rgba(255, 255, 255, 0.86));
  border: 1px solid var(--card-border, rgba(11, 18, 34, 0.10));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  overflow: hidden;
  min-width: 0;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.42), rgba(255, 138, 61, 0.30), rgba(123, 97, 255, 0.34), rgba(18, 194, 233, 0.28));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0.22;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 18, 34, 0.14);
}
.card:hover::before { opacity: 0.36; }

/* Single light card style across the site (theme is light) */
.section.light-section,
.section.dark-section {
  --card-bg: #ffffff;
  --card-border: rgba(11, 18, 34, 0.10);
}
/* Force-readable card content */
.section .card { color: rgba(11, 18, 34, 0.92) !important; }
.section .card h3 { color: rgba(11, 18, 34, 0.96) !important; }
.section .card p { color: rgba(11, 18, 34, 0.78) !important; }
.section .card li { color: rgba(11, 18, 34, 0.82) !important; }
.section .card .muted { color: rgba(11, 18, 34, 0.66) !important; }

/* Grid safety: prevent narrow collapsing cards */
.cards-grid { align-items: stretch; grid-auto-rows: 1fr; }
.cards-grid > * { min-width: 0; }

/* Buttons: multiple color combinations */
.btn-primary {
  background: var(--gradient-brand);
  color: #0b1222;
  border-color: rgba(11, 18, 34, 0.10);
  box-shadow: 0 14px 40px rgba(123, 97, 255, 0.20);
}
.btn-primary:hover { box-shadow: 0 18px 62px rgba(255, 59, 59, 0.16), 0 18px 62px rgba(123, 97, 255, 0.16); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: rgba(11, 18, 34, 0.9);
  border-color: rgba(11, 18, 34, 0.14);
}

/* Black CTA for Explore/Learn More buttons */
.btn-dark {
  background: #0b1222;
  color: #ffffff !important;
  border-color: #0b1222;
  box-shadow: 0 14px 40px rgba(11, 18, 34, 0.18);
}
.btn-dark:hover {
  background: #060a14;
  box-shadow: 0 18px 62px rgba(11, 18, 34, 0.22);
}
/* Ensure dark buttons win over section-wide btn-secondary overrides */
.section:not(.hero-split) .btn.btn-dark,
.section.cta-band .btn.btn-dark {
  background: #0b1222 !important;
  color: #ffffff !important;
  border-color: #0b1222 !important;
}
.section:not(.hero-split) .btn.btn-dark:hover,
.section.cta-band .btn.btn-dark:hover {
  background: #060a14 !important;
}
/* Filters on light sections */
.filter-btn {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(11, 18, 34, 0.12);
  color: rgba(11, 18, 34, 0.86);
}
.filter-btn.active {
  background: rgba(11, 18, 34, 0.92);
  border-color: rgba(11, 18, 34, 0.92);
  color: #ffffff;
}

/* Footer (stay premium, but aligned with white site) */
.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 255, 0.90) 100%);
  color: rgba(11, 18, 34, 0.90);
  border-top: 1px solid rgba(11, 18, 34, 0.10);
  box-shadow: 0 -24px 90px rgba(11, 18, 34, 0.10);
}
.footer-col a { color: rgba(11, 18, 34, 0.72); }
.footer-col a:hover { color: rgba(11, 18, 34, 0.95); }
.site-footer h4::after { background: var(--gradient-brand); }

/* ---------------------------------------------- */
/* Section content polish (readability on white)   */
/* ---------------------------------------------- */
.section:not(.hero-split) .muted { color: rgba(11, 18, 34, 0.72) !important; }
.section:not(.hero-split) p,
.section:not(.hero-split) li,
.section:not(.hero-split) span,
.section:not(.hero-split) strong,
.section:not(.hero-split) em,
.section:not(.hero-split) label {
  color: rgba(11, 18, 34, 0.92);
}
.section:not(.hero-split) .feature-list li { color: rgba(11, 18, 34, 0.82) !important; }
.section:not(.hero-split) .badge,
.section:not(.hero-split) .mini-title {
  background: rgba(11, 18, 34, 0.04) !important;
  border-color: rgba(11, 18, 34, 0.12) !important;
  color: rgba(11, 18, 34, 0.78) !important;
}
.section:not(.hero-split) .mini-title-icon { color: rgba(11, 18, 34, 0.74) !important; }

/* Card typography consistency on light sections */
.section:not(.hero-split) .card h3 {
  margin: 2px 0 8px;
  font-size: clamp(1.06rem, 1.2vw, 1.18rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.section:not(.hero-split) .card p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.82);
}
.section:not(.hero-split) .card p:last-child { margin-bottom: 0; }
.section:not(.hero-split) .card ul,
.section:not(.hero-split) .card ol { margin: 8px 0 0; padding-left: 18px; }
.section:not(.hero-split) .card li { color: rgba(15, 23, 42, 0.82); }

/* ---------------------------------------------- */
/* Stats section: make numbers stand out           */
/* ---------------------------------------------- */
.stat-box {
  position: relative;
  background:
    radial-gradient(520px 220px at 20% 10%, rgba(255, 59, 59, 0.10), transparent 58%),
    radial-gradient(520px 220px at 82% 12%, rgba(123, 97, 255, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 18, 34, 0.10);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat-value {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  margin-bottom: 10px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 26px rgba(123, 97, 255, 0.14));
}
/* Make first stat (e.g., 9.5X) the hero */
.stats-grid .stat-box:first-child,
.stats-grid-four .stat-box:first-child {
  border-color: rgba(123, 97, 255, 0.18);
  box-shadow: var(--shadow);
}
.stats-grid .stat-box:first-child .stat-value,
.stats-grid-four .stat-box:first-child .stat-value {
  font-size: clamp(2.6rem, 4.6vw, 3.6rem);
  filter: drop-shadow(0 22px 32px rgba(255, 59, 59, 0.12)) drop-shadow(0 22px 32px rgba(123, 97, 255, 0.12));
}

/* Keep header CTA premium (avoid older overrides) */
.site-header .btn-primary {
  background: #0b1222 !important;
  color: #ffffff !important;
  border-color: #0b1222 !important;
  box-shadow: 0 14px 40px rgba(11, 18, 34, 0.16) !important;
}
.site-header .btn-primary:hover {
  background: #060a14 !important;
  box-shadow: 0 18px 62px rgba(11, 18, 34, 0.22) !important;
}

/* ---------------------------------------------- */
/* Collision safety (hero floating cards)          */
/* ---------------------------------------------- */
@media (max-width: 1400px) {
  .hero-float-cards {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(980px, 100%);
    margin-top: 10px;
    pointer-events: auto;
  }
  .hero-ui-card {
    position: static;
    width: 100%;
    transform: none !important;
    animation: none;
  }
}

/* ------------------------------ */
/* Sendr-style theme overrides    */
/* ------------------------------ */
:root {
  --bg: #f7f8fc;
  --fg: #0f172a;
  --muted: rgba(15, 23, 42, 0.68);
  --muted-2: rgba(15, 23, 42, 0.5);
  --border: rgba(15, 23, 42, 0.10);
  --border-2: rgba(15, 23, 42, 0.16);
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.94);
  --surface-dark: rgba(15, 23, 42, 0.80);
  --shadow-sm: 0 12px 26px rgba(15, 23, 42, 0.08);
  --shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 72px rgba(15, 23, 42, 0.16);
  --gradient-dark:
    radial-gradient(900px 520px at 8% 0%, rgba(78, 111, 255, 0.10), transparent 62%),
    radial-gradient(900px 620px at 92% 15%, rgba(128, 98, 255, 0.08), transparent 66%),
    linear-gradient(180deg, #f9faff 0%, #f5f7ff 44%, #f7f8fc 100%);
}

body {
  color: var(--fg);
  background: var(--gradient-dark);
}

.section:not(.hero-split)::before {
  background:
    radial-gradient(680px 500px at 10% 5%, rgba(78, 111, 255, 0.08), transparent 62%),
    radial-gradient(680px 500px at 92% 20%, rgba(128, 98, 255, 0.06), transparent 64%);
}

.dark-section,
.light-section {
  color: var(--fg);
}
.muted,
.dark-section .muted {
  color: var(--muted);
}

/* Header + nav */
.site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 248, 253, 0.90) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 245, 252, 0.94) 100%);
  border-bottom-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}
.nav-menu a,
.mobile-menu a {
  color: rgba(15, 23, 42, 0.86);
}
.nav-menu a::after {
  background: rgba(15, 23, 42, 0.78);
}
.mobile-menu {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 248, 252, 0.92) 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

/* Buttons */
.btn-primary {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.22);
  backdrop-filter: none;
}
.btn-primary:hover {
  background: #0b1222;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.28);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: rgba(15, 23, 42, 0.9);
  border-color: rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.96);
}
.btn .btn-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: currentColor;
  opacity: 0.95;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.btn .btn-icon.icon-arrow { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 12h11.2l-4.6-4.6L13 6l7 7-7 7-1.4-1.4 4.6-4.6H5z'/%3E%3C/svg%3E"); -webkit-mask-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 12h11.2l-4.6-4.6L13 6l7 7-7 7-1.4-1.4 4.6-4.6H5z'/%3E%3C/svg%3E\"); }
.btn .btn-icon.icon-chat { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E"); -webkit-mask-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E\"); }
.btn .btn-icon.icon-send { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m3 12 18-9-4 18-5.5-6.5z'/%3E%3C/svg%3E"); -webkit-mask-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m3 12 18-9-4 18-5.5-6.5z'/%3E%3C/svg%3E\"); }
.btn .btn-icon.icon-star { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 2.8 6 6.6.7-4.9 4.3 1.4 6.5L12 16.2 6.1 19.5 7.5 13 2.6 8.7 9.2 8z'/%3E%3C/svg%3E"); -webkit-mask-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 2.8 6 6.6.7-4.9 4.3 1.4 6.5L12 16.2 6.1 19.5 7.5 13 2.6 8.7 9.2 8z'/%3E%3C/svg%3E\"); }
.btn .btn-icon.icon-grid { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 3h8v8H3zm10 0h8v8h-8zM3 13h8v8H3zm10 0h8v8h-8z'/%3E%3C/svg%3E"); -webkit-mask-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 3h8v8H3zm10 0h8v8h-8zM3 13h8v8H3zm10 0h8v8h-8z'/%3E%3C/svg%3E\"); }
.text-gradient {
  background: linear-gradient(90deg, #ff4d4d 0%, #ff8a3d 45%, #7b61ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.text-highlight {
  display: inline;
  padding: 0 0.3em;
  border-radius: 0.35em;
  background: linear-gradient(90deg, rgba(255, 77, 77, 0.16), rgba(123, 97, 255, 0.14));
  box-decoration-break: clone;
}
.site-header .btn-primary {
  background: #111827;
  border-color: #111827;
}

/* Cards + content surfaces */
.card,
.steps-grid .step,
.accordion-item,
.map-placeholder,
.calendly-placeholder,
.proof-placeholder,
.media-thumb,
.stat-box,
.testimonial-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.card a,
.step a,
.accordion-content-inner a {
  color: rgba(15, 23, 42, 0.92);
  text-decoration-color: rgba(15, 23, 42, 0.24);
}
.hero-ui-card,
.hero-panel {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
}
.hero-center .hero-trust p {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.95);
}

/* FAQ readability on light sections */
.accordion-header {
  color: rgba(15, 23, 42, 0.92);
}
.accordion-header span {
  color: rgba(15, 23, 42, 0.55);
}
.accordion-header:hover {
  background: rgba(15, 23, 42, 0.04);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 244, 252, 0.92) 100%);
  color: rgba(15, 23, 42, 0.88);
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}
.site-footer .muted {
  color: rgba(15, 23, 42, 0.62);
}
.footer-col a {
  color: rgba(15, 23, 42, 0.72);
}
.footer-col a:hover {
  color: rgba(15, 23, 42, 0.95);
}
.footer-bottom {
  color: rgba(15, 23, 42, 0.6);
  border-top-color: rgba(15, 23, 42, 0.10);
}

/* Final contrast fixes (non-hero sections) */
.section:not(.hero-split),
.section:not(.hero-split) h1,
.section:not(.hero-split) h2,
.section:not(.hero-split) h3,
.section:not(.hero-split) h4,
.section:not(.hero-split) h5,
.section:not(.hero-split) h6,
.section:not(.hero-split) p,
.section:not(.hero-split) li,
.section:not(.hero-split) span,
.section:not(.hero-split) strong,
.section:not(.hero-split) em,
.section:not(.hero-split) label,
.section:not(.hero-split) blockquote,
.section:not(.hero-split) figcaption {
  color: rgba(15, 23, 42, 0.92) !important;
}
.section:not(.hero-split) a {
  color: rgba(15, 23, 42, 0.92) !important;
}
.section:not(.hero-split) .feature-list li {
  color: rgba(15, 23, 42, 0.86) !important;
}
.section:not(.hero-split) .step-number {
  color: rgba(15, 23, 42, 0.6) !important;
}
.section:not(.hero-split) .big-number {
  color: #cc1f1f !important;
}
.section:not(.hero-split) .stat-value {
  color: rgba(15, 23, 42, 0.95) !important;
}
.section:not(.hero-split) .mini-title {
  color: rgba(15, 23, 42, 0.78) !important;
  background: rgba(15, 23, 42, 0.06) !important;
  border-color: rgba(15, 23, 42, 0.14) !important;
}
.section:not(.hero-split) .case-tag,
.section:not(.hero-split) .badge {
  color: rgba(15, 23, 42, 0.82) !important;
  background: rgba(15, 23, 42, 0.06) !important;
  border-color: rgba(15, 23, 42, 0.14) !important;
}
.section:not(.hero-split) input,
.section:not(.hero-split) select,
.section:not(.hero-split) textarea {
  color: rgba(15, 23, 42, 0.92) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(15, 23, 42, 0.16) !important;
}
.section:not(.hero-split) input::placeholder,
.section:not(.hero-split) textarea::placeholder {
  color: rgba(15, 23, 42, 0.5) !important;
}

/* CTA band: keep light background, dark text */
.section.cta-band,
.section.cta-band h1,
.section.cta-band h2,
.section.cta-band h3,
.section.cta-band h4,
.section.cta-band p,
.section.cta-band li,
.section.cta-band span,
.section.cta-band strong {
  color: rgba(15, 23, 42, 0.92) !important;
}
.section.cta-band a {
  color: rgba(15, 23, 42, 0.92) !important;
}
.section.cta-band .btn-primary {
  background: #111827 !important;
  border-color: #111827 !important;
  color: #ffffff !important;
}
.section.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.86) !important;
  color: rgba(15, 23, 42, 0.9) !important;
  border-color: rgba(15, 23, 42, 0.16) !important;
}
.section.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.96) !important;
}
.section.cta-band .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.section:not(.hero-split) h2 {
  position: relative;
  display: block;
  padding-bottom: 8px;
  margin-top: 4px;
}
.section:not(.hero-split) h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(180px, 45%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4d4d, #7b61ff);
}
.section:not(.hero-split) .mini-title::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff8a3d, #ff4d4d 55%, #7b61ff);
  display: inline-block;
}
.btn-primary,
.section:not(.hero-split) .btn-primary,
.section.cta-band .btn-primary {
  color: #ffffff !important;
}
.btn-secondary,
.section:not(.hero-split) .btn-secondary,
.section.cta-band .btn-secondary {
  color: rgba(15, 23, 42, 0.95) !important;
}
.section:not(.hero-split) .btn-secondary {
  background: rgba(255, 255, 255, 0.95) !important;
}
.section:not(.hero-split) input,
.section:not(.hero-split) select,
.section:not(.hero-split) textarea {
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.04), 0 10px 28px rgba(15, 23, 42, 0.06);
}
.section:not(.hero-split) input:focus,
.section:not(.hero-split) select:focus,
.section:not(.hero-split) textarea:focus {
  border-color: rgba(255, 77, 77, 0.45) !important;
}
.cards-grid .card h3,
.steps-grid .step h3,
.testimonial-card strong {
  color: rgba(15, 23, 42, 0.98) !important;
}

/* Testimonials marquee section (Sendr-inspired) */
.testimonials-marquee-section {
  background-color: #f7f8fb !important;
  background-image: radial-gradient(rgba(15, 23, 42, 0.11) 0.7px, transparent 0.7px) !important;
  background-size: 10px 10px !important;
}
.testimonials-marquee-section::before {
  display: none !important;
}
.testimonials-wrap {
  text-align: center;
}
.testimonials-wrap .mini-title {
  background: rgba(15, 23, 42, 0.06) !important;
  color: rgba(15, 23, 42, 0.74) !important;
  border-color: rgba(15, 23, 42, 0.16) !important;
}

.quote-marquee {
  overflow: hidden;
  margin: 12px auto 28px;
  width: min(1120px, 98%);
}
.quote-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 16px;
  animation: quoteMarquee 42s linear infinite;
}
.client-marquee-card {
  width: min(360px, 78vw);
  min-height: 200px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  display: grid;
  align-content: space-between;
  text-align: left;
}
.client-marquee-card p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.88) !important;
}
.client-marquee-card h3 {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(15, 23, 42, 0.94) !important;
}
.client-marquee-card span {
  margin-top: 4px;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.62) !important;
}

@keyframes quoteMarquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Logo carousel (Trusted by) */
.logo-section { padding: 64px 0; }
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: min(1120px, 100%);
  margin: 0 auto;
}
.logo-section .container { text-align: center; }
.logo-section .muted { margin: 0 0 40px; }

/* Make headings match other light sections (RESULTS style) */
.logo-section .mini-title,
.testimonials-section .mini-title {
  color: rgba(15, 23, 42, 0.78) !important;
  background: rgba(15, 23, 42, 0.06) !important;
  border-color: rgba(15, 23, 42, 0.14) !important;
}
.logo-section .mini-title-icon,
.testimonials-section .mini-title-icon {
  color: rgba(15, 23, 42, 0.74) !important;
}
.logo-section .mini-title::before,
.testimonials-section .mini-title::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff8a3d, #ff4d4d 55%, #7b61ff);
  display: inline-block;
}
.logo-section h2,
.testimonials-section h2 {
  color: rgba(15, 23, 42, 0.92) !important;
}
.logo-section .muted,
.testimonials-section .muted {
  color: rgba(15, 23, 42, 0.66) !important;
}
.carousel-track-outer { overflow: hidden; }
.carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(32px, 4vw, 56px);
  flex-shrink: 0;
}
.carousel-item img {
  height: clamp(56px, 8.5vw, 96px);
  width: auto;
  max-width: min(420px, 62vw);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.07));
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  backface-visibility: hidden;
  image-rendering: auto;
  -webkit-user-drag: none;
}
.carousel-item img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 14px rgba(15, 23, 42, 0.1));
}
.fade-left {
  position: absolute; left: 0; top: 0; bottom: 0; width: clamp(64px, 10vw, 100px);
  background: linear-gradient(to right, #fff, transparent);
  pointer-events: none; z-index: 2;
}
.fade-right {
  position: absolute; right: 0; top: 0; bottom: 0; width: clamp(64px, 10vw, 100px);
  background: linear-gradient(to left, #fff, transparent);
  pointer-events: none; z-index: 2;
}

/* Match fades to non-white backgrounds automatically */
body.mono-theme .fade-left { background: linear-gradient(to right, var(--bg, #fff), transparent); }
body.mono-theme .fade-right { background: linear-gradient(to left, var(--bg, #fff), transparent); }

/* Testimonials vertical columns */
.testimonials-section {
  padding: 80px 20px;
  background: #fff;
  overflow: hidden;
}
.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
/* (Removed) old testimonials heading/badge styles (now uses .mini-title + h2 + .muted) */
.testimonials-container .muted { margin: 0 0 40px; }
.testimonials-columns-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 740px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(280px, 100%);
  max-width: 100%;
  min-width: 0;
  flex-shrink: 0;
}
.col-md { display: none; }
.col-lg { display: none; }
@media (min-width: 768px) { .col-md { display: flex; } }
@media (min-width: 1024px) { .col-lg { display: flex; } }

.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-align: left;
  flex-shrink: 0;
}
.testimonial-card p {
  margin: 0 0 20px;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #111;
}
.author-role {
  font-size: 0.82rem;
  color: #888;
}

/* Match testimonials white background to themed pages */
body.mono-theme .testimonials-section { background: var(--bg, #fff); }
body.mono-theme .testimonial-card { background: var(--surface, #fff); }

/* Small-screen safety */
@media (max-width: 520px) {
  .logo-section { padding: 48px 0; }
  .logo-section .muted { margin-bottom: 28px; }
  .carousel-wrapper { max-width: 100%; padding: 0 12px; }
  .carousel-item { padding: 0 clamp(22px, 6vw, 36px); }

  .testimonials-section { padding: 64px 16px; }
  .testimonials-columns-wrapper { gap: 14px; max-height: 620px; }
  .testimonials-col { gap: 16px; }
  .testimonial-card { padding: 22px; border-radius: 20px; }
}

/* ------------------------------------------------------------ */
/* Service page templates (to avoid copy-paste feel)             */
/* ------------------------------------------------------------ */

.tmpl-bento .cards-grid {
  margin-top: 18px;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px;
}
@media (min-width: 640px) {
  .tmpl-bento .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .tmpl-bento .cards-grid > .card { grid-column: span 1; }
  .tmpl-bento .cards-grid > .card:last-child:nth-child(odd) { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .tmpl-bento .cards-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
  .tmpl-bento .cards-grid > .card { grid-column: span 6; }
  .tmpl-bento .cards-grid > .card:nth-child(1) { grid-column: span 7; }
  .tmpl-bento .cards-grid > .card:nth-child(2) { grid-column: span 5; }
  .tmpl-bento .cards-grid > .card:nth-child(3) { grid-column: span 5; }
  .tmpl-bento .cards-grid > .card:nth-child(4) { grid-column: span 7; }
  .tmpl-bento .cards-grid > .card:nth-child(5) { grid-column: span 12; }
  .tmpl-bento .cards-grid > .card:nth-child(6) { grid-column: span 6; }
  .tmpl-bento .cards-grid > .card:nth-child(7) { grid-column: span 6; }
  .tmpl-bento .cards-grid > .card:nth-child(8) { grid-column: span 12; }
  .tmpl-bento .cards-grid > .card:nth-child(9) { grid-column: span 6; }
}

.tmpl-proof .stats-grid { margin-top: 18px; }
.tmpl-proof .stat-box { position: relative; overflow: hidden; }
.tmpl-proof .stat-box::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(520px 220px at 20% 10%, rgba(255, 77, 77, 0.10), transparent 58%),
              radial-gradient(520px 220px at 82% 12%, rgba(123, 97, 255, 0.10), transparent 60%);
  opacity: .9;
  pointer-events:none;
}
.tmpl-proof .stat-box > *{ position:relative; z-index:1; }

/* Improve gradient-number contrast on light sections */
.section.light-section .stat-value {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: rgba(11, 18, 34, 0.96);
  filter: none;
}

.tmpl-split .split-grid{
  display:grid;
  gap: 18px;
  align-items:start;
}
@media (min-width: 900px){
  .tmpl-split .split-grid{
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 22px;
  }
}
.tmpl-split .split-panel{
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  padding: 18px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.section.light-section.tmpl-split .split-panel{
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.92);
}
.tmpl-split .split-panel h3{ margin: 10px 0 10px; }

.tmpl-stack .feature-list{
  display: grid;
  gap: 10px;
  padding-left: 0;
}
.tmpl-stack .feature-list li{
  list-style: none;
  position: relative;
  padding-left: 22px;
}
.tmpl-stack .feature-list li::before{
  content:"";
  position:absolute;
  left: 2px;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 59, 59, 0.95), rgba(123, 97, 255, 0.9));
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
@media (min-width: 900px){
  .tmpl-stack .feature-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 12px;
  }
}

.tmpl-process .timeline{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.tmpl-process .timeline-item{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.92);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.section.dark-section.tmpl-process .timeline-item{
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
}
.tmpl-process .timeline-item h3{ margin: 0 0 8px; }

.tmpl-faq .accordion-item{
  background: rgba(255,255,255,0.92);
  border-color: rgba(15, 23, 42, 0.12);
}
.section.dark-section.tmpl-faq .accordion-item{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

/* (Removed) About quote block styles (reverted section content) */
.section:not(.hero-split) .muted {
  color: rgba(15, 23, 42, 0.66) !important;
}
.section:not(.hero-split) .card,
.section:not(.hero-split) .step,
.section:not(.hero-split) .accordion-item,
.section:not(.hero-split) .stat-box,
.section:not(.hero-split) .testimonial-card {
  color: rgba(15, 23, 42, 0.9);
}
.section:not(.hero-split) .card a,
.section:not(.hero-split) .step a,
.section:not(.hero-split) .accordion-content-inner a {
  color: rgba(15, 23, 42, 0.9);
  text-decoration-color: rgba(15, 23, 42, 0.22);
}

/* Keep CTA forms clearly visible over late global overrides */
.section.lead-strip,
.section.lead-strip h1,
.section.lead-strip h2,
.section.lead-strip h3,
.section.lead-strip h4,
.section.lead-strip p,
.section.lead-strip li,
.section.lead-strip span,
.section.lead-strip strong,
.section.lead-strip label {
  color: #ffffff !important;
}
.section.lead-strip .mini-title,
.section.lead-strip .badge {
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}
.section.lead-strip input,
.section.lead-strip select,
.section.lead-strip textarea {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.section.lead-strip input::placeholder,
.section.lead-strip textarea::placeholder {
  color: rgba(255, 255, 255, 0.72) !important;
}
.section.lead-strip .btn-primary {
  background: #0b1730 !important;
  border-color: #0b1730 !important;
  color: #ffffff !important;
}
.section.cta-band .contact-form-grid,
.section.lead-strip .lead-form-grid {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.12);
}
.section.lead-strip .lead-form-grid {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}
.section.lead-strip .trust-icons-row p::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #ffd166;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 2.8 6 6.6.7-4.9 4.3 1.4 6.5L12 16.2 6.1 19.5 7.5 13 2.6 8.7 9.2 8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 2.8 6 6.6.7-4.9 4.3 1.4 6.5L12 16.2 6.1 19.5 7.5 13 2.6 8.7 9.2 8z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

/* Footer — dark glass + red/orange/purple accent system (matches site theme) */
.site-footer {
  position: relative;
  padding: 64px 0 28px !important;
  overflow: hidden;
  background:
    radial-gradient(780px 420px at 14% 8%, rgba(255, 77, 77, 0.22), transparent 56%),
    radial-gradient(680px 380px at 92% 72%, rgba(123, 97, 255, 0.18), transparent 58%),
    radial-gradient(520px 280px at 48% 50%, rgba(255, 138, 61, 0.08), transparent 62%),
    linear-gradient(168deg, #070a12 0%, #0f172a 46%, #111827 100%) !important;
  color: rgba(248, 250, 252, 0.94) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 -20px 60px rgba(15, 23, 42, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff4d4d 0%, #ff8a3d 42%, #7b61ff 88%);
  opacity: 0.95;
  pointer-events: none;
}
.site-footer > .container {
  position: relative;
  z-index: 1;
}
.site-footer .footer-grid {
  gap: clamp(24px, 4vw, 32px);
}
.site-footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94) !important;
  margin-bottom: 14px;
}
.site-footer h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4d4d, #7b61ff);
}
.site-footer p {
  color: rgba(248, 250, 252, 0.88) !important;
}
.site-footer .muted {
  color: rgba(226, 232, 240, 0.72) !important;
}
.site-footer .footer-col:first-child .muted {
  color: rgba(226, 232, 240, 0.74) !important;
  max-width: 28rem;
  line-height: 1.55;
}
.site-footer .footer-col a {
  color: rgba(255, 255, 255, 0.78) !important;
  margin-bottom: 8px;
  text-decoration: none !important;
}
.site-footer .footer-col a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(255, 77, 77, 0.55) !important;
}
.site-footer .footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.62) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Hero text visibility fix (text on dark video) */
.hero-split,
.hero-split h1,
.hero-split h2,
.hero-split h3,
.hero-split h4,
.hero-split p,
.hero-split li,
.hero-split .muted {
  color: #ffffff !important;
}
.hero-split .badge,
.hero-split .hero-badge {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  color: #ffffff !important;
}
.hero-split .hero-trust p {
  background: rgba(11, 13, 18, 0.42) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
}
.hero-split .hero-ui-card {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  color: #ffffff !important;
}
.hero-split .hero-ui-card h4,
.hero-split .hero-ui-card .ui-card-label,
.hero-split .hero-ui-card .ui-card-meta {
  color: #ffffff !important;
}
.hero-split .btn-primary {
  background: linear-gradient(145deg, #2c3f5c 0%, #1a2744 42%, #121a2e 100%) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  color: #f8fafc !important;
  box-shadow:
    0 12px 32px rgba(8, 12, 24, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}
.hero-split .btn-primary:hover {
  filter: brightness(1.07);
  border-color: rgba(255, 255, 255, 0.32) !important;
  box-shadow:
    0 16px 42px rgba(8, 12, 24, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}
.hero-split .btn-secondary {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .hero-layout { min-height: auto; padding-top: 26px; padding-bottom: 26px; }
  .hero-float-cards {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 8px;
    pointer-events: auto;
  }
  .hero-ui-card {
    position: static;
    width: 100%;
    transform: none !important;
    animation: none;
  }
  .hero-center { text-align: center; }
  .hero-center .hero-actions,
  .hero-center .hero-trust { justify-content: center; }
}

/* Tablet/small laptop: avoid overlap by using arranged grid instead of absolute float */
@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding-top: 26px;
    padding-bottom: 20px;
  }
  .hero-center {
    max-width: 760px;
  }
  .hero-float-cards {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(920px, 100%);
    margin-top: 6px;
    pointer-events: auto;
  }
  .hero-ui-card {
    position: static;
    width: 100%;
    transform: none !important;
    animation: none;
    min-height: 106px;
  }
}

@media (max-width: 920px) {
  .hero-float-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ------------------------------ */
/* Services dropdown (navbar)     */
/* ------------------------------ */
.services-nav-item { position: relative; }

.services-nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.services-nav-item:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.services-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.services-dropdown a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* Mobile: services sub-links */
.mobile-services-sub {
  display: none;
  padding-left: 16px;
}
.mobile-services-sub.open {
  display: block;
}
.mobile-services-sub a {
  display: block;
  padding: 10px 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.72;
}

.services-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.services-mobile-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

/* Mobile: industries sub-links (match services behavior) */
.mobile-industries-sub {
  display: none;
  padding-left: 16px;
}
.mobile-industries-sub.open {
  display: block;
}
.mobile-industries-sub a {
  display: block;
  padding: 10px 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.72;
}
.industries-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.industries-mobile-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
}


/* =================================================================== */
/* DEFINITIVE OVERRIDES — single source of truth for cards & sections   */
/* (Appended last so it wins over all earlier conflicting rules)        */
/* =================================================================== */

/* The whole site uses a light theme — both dark-section and
   light-section render over a light background. Use one consistent
   white card style everywhere with strong text contrast. */
.section .card,
.section .card.card,
.dark-section .card,
.section.dark-section .card,
.light-section .card,
.section.light-section .card {
  background: #ffffff !important;
  border: 1px solid rgba(11, 18, 34, 0.10) !important;
  color: rgba(11, 18, 34, 0.92) !important;
  backdrop-filter: none !important;
}

.section .card h3,
.section .card h4,
.dark-section .card h3,
.section.dark-section .card h3 {
  color: rgba(11, 18, 34, 0.96) !important;
}
.section .card p,
.dark-section .card p,
.section.dark-section .card p {
  color: rgba(11, 18, 34, 0.78) !important;
}
.section .card li,
.section .card .feature-list li,
.dark-section .card li,
.section.dark-section .card li,
.dark-section .card .feature-list li,
.section.dark-section .card .feature-list li {
  color: rgba(11, 18, 34, 0.82) !important;
}
.section .card .muted,
.dark-section .card .muted,
.section.dark-section .card .muted {
  color: rgba(11, 18, 34, 0.66) !important;
}

/* Grid safety: stop cards from collapsing into thin columns */
.cards-grid {
  align-items: stretch;
}
.cards-grid > * {
  min-width: 0;
}

/* Make sure cards in a card-grid never become narrower than ~260px on
   any screen (the original "thin vertical column" bug). */
@media (max-width: 1023px) {
  .tmpl-bento .cards-grid,
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)) !important;
  }
}


/* Split panels (services pages tmpl-split) */
.section .split-panel,
.section.dark-section .split-panel,
.section.light-section .split-panel,
.tmpl-split .split-panel {
  background: #ffffff !important;
  border: 1px solid rgba(11, 18, 34, 0.10) !important;
  color: rgba(11, 18, 34, 0.92) !important;
  backdrop-filter: none !important;
}
.section .split-panel h3,
.section .split-panel h4 { color: rgba(11, 18, 34, 0.96) !important; }
.section .split-panel p,
.section .split-panel li { color: rgba(11, 18, 34, 0.82) !important; }
.section .split-panel .muted { color: rgba(11, 18, 34, 0.66) !important; }

/* Timeline (process) cards */
.section .timeline-item,
.section.dark-section .timeline-item,
.section.light-section .timeline-item,
.tmpl-process .timeline-item {
  background: #ffffff !important;
  border: 1px solid rgba(11, 18, 34, 0.10) !important;
  color: rgba(11, 18, 34, 0.92) !important;
  backdrop-filter: none !important;
}
.section .timeline-item h3 { color: rgba(11, 18, 34, 0.96) !important; }
.section .timeline-item p { color: rgba(11, 18, 34, 0.78) !important; }

/* Accordion (FAQ) */
.section .accordion-item,
.section.dark-section .accordion-item,
.section.light-section .accordion-item,
.tmpl-faq .accordion-item {
  background: #ffffff !important;
  border: 1px solid rgba(11, 18, 34, 0.10) !important;
  color: rgba(11, 18, 34, 0.92) !important;
  backdrop-filter: none !important;
}
.section .accordion-header { color: rgba(11, 18, 34, 0.96) !important; }
.section .accordion-content-inner,
.section .accordion-content-inner p { color: rgba(11, 18, 34, 0.78) !important; }

/* Stat boxes */
.section .stat-box,
.section.dark-section .stat-box,
.section.light-section .stat-box {
  background: #ffffff !important;
  border: 1px solid rgba(11, 18, 34, 0.10) !important;
}
.section .stat-box p { color: rgba(11, 18, 34, 0.72) !important; }

/* Steps (numbered grid) */
.section .step,
.section.dark-section .step,
.section.light-section .step,
.steps-grid .step {
  background: #ffffff !important;
  border: 1px solid rgba(11, 18, 34, 0.10) !important;
  color: rgba(11, 18, 34, 0.92) !important;
  backdrop-filter: none !important;
}
.section .step h3 { color: rgba(11, 18, 34, 0.96) !important; }
.section .step p { color: rgba(11, 18, 34, 0.78) !important; }
.section .step-number { color: rgba(11, 18, 34, 0.66) !important; }

/* Badges / case-tags inside light pages
   (Excluded: .hero / .hero-split sections, where the dark video backdrop
   needs light/white badge text. Also excluded: .hero-badge specifically.) */
.section:not(.hero):not(.hero-split) .badge:not(.hero-badge),
.section:not(.hero):not(.hero-split) .case-tag,
.dark-section:not(.hero):not(.hero-split) .badge:not(.hero-badge),
.section.dark-section:not(.hero):not(.hero-split) .badge:not(.hero-badge),
.dark-section:not(.hero):not(.hero-split) .case-tag,
.section.dark-section:not(.hero):not(.hero-split) .case-tag {
  background: rgba(11, 18, 34, 0.04) !important;
  border-color: rgba(11, 18, 34, 0.12) !important;
  color: rgba(11, 18, 34, 0.78) !important;
  backdrop-filter: none !important;
}

/* Hero-badge: keep premium glass look on dark video */
.hero .hero-badge,
.hero-split .hero-badge,
.section.hero .hero-badge,
.section.hero-split .hero-badge {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}


/* =================================================================== */
/* Section heads with unique bordered/patterned styles (auto-applied)   */
/* =================================================================== */
.section-head {
  position: relative;
  padding: 22px 24px;
  margin: 0 0 26px;
  border-radius: 22px;
  border: 1px solid rgba(11, 18, 34, 0.10);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 255, 0.88));
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.section-head .mini-title {
  margin-bottom: 10px;
}
.section-head h2 {
  margin: 0 0 10px !important;
  padding-bottom: 0 !important;
}
.section-head h2::after { display: none !important; }
.section-head > p {
  margin: 0 !important;
}
.section-head::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}
.section-head::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff4d4d, #ff8a3d, #7b61ff, #12c2e9);
  opacity: 0.7;
  border-radius: 0 0 22px 22px;
}

/* Pattern 1 — Dot grid + red glow */
.section-head--p1::before {
  background:
    radial-gradient(circle at 8px 8px, rgba(255, 77, 77, 0.32) 1.4px, transparent 2.2px) 0 0/18px 18px,
    radial-gradient(620px 280px at -10% -30%, rgba(255, 77, 77, 0.14), transparent 60%);
}
.section-head--p1 .mini-title-icon { color: #ff4d4d; }
.section-head--p1 .mini-title { background: rgba(255, 77, 77, 0.08) !important; border-color: rgba(255, 77, 77, 0.30) !important; color: #b03434 !important; }

/* Pattern 2 — Horizontal lines + purple glow */
.section-head--p2::before {
  background:
    linear-gradient(rgba(123, 97, 255, 0.14) 1px, transparent 1px) 0 0/100% 22px,
    radial-gradient(620px 280px at 110% -30%, rgba(123, 97, 255, 0.14), transparent 60%);
}
.section-head--p2 .mini-title-icon { color: #7b61ff; }
.section-head--p2 .mini-title { background: rgba(123, 97, 255, 0.08) !important; border-color: rgba(123, 97, 255, 0.30) !important; color: #5747b5 !important; }

/* Pattern 3 — Diagonal stripes + orange glow */
.section-head--p3::before {
  background:
    repeating-linear-gradient(45deg, rgba(255, 138, 61, 0.14) 0 1px, transparent 1px 14px),
    radial-gradient(620px 280px at 50% -50%, rgba(255, 138, 61, 0.14), transparent 60%);
}
.section-head--p3 .mini-title-icon { color: #d27330; }
.section-head--p3 .mini-title { background: rgba(255, 138, 61, 0.10) !important; border-color: rgba(255, 138, 61, 0.32) !important; color: #99511e !important; }

/* Pattern 4 — Cyan grid + cyan glow */
.section-head--p4::before {
  background:
    linear-gradient(rgba(18, 194, 233, 0.10) 1px, transparent 1px) 0 0/100% 26px,
    linear-gradient(90deg, rgba(18, 194, 233, 0.10) 1px, transparent 1px) 0 0/26px 100%,
    radial-gradient(620px 280px at 50% 120%, rgba(18, 194, 233, 0.16), transparent 60%);
}
.section-head--p4 .mini-title-icon { color: #0fa5c1; }
.section-head--p4 .mini-title { background: rgba(18, 194, 233, 0.10) !important; border-color: rgba(18, 194, 233, 0.32) !important; color: #157e90 !important; }

/* Mobile padding adjustments */
@media (max-width: 600px) {
  .section-head { padding: 18px 16px; border-radius: 18px; }
}


/* =================================================================== */
/* Premium paragraph + list polish across all pages and subpages        */
/* =================================================================== */

/* Lead paragraph (the one inside .section-head) — larger, bolder */
.section-head > p {
  font-size: clamp(1.02rem, 1.18vw, 1.14rem) !important;
  line-height: 1.6 !important;
  color: rgba(11, 18, 34, 0.84) !important;
  max-width: 70ch;
}

/* Subsequent body paragraphs — left brand-accent bar (desktop); headings get matching inset below */
.section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container.fade-in > p,
.section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container > p {
  position: relative;
  padding: 4px 0 4px 18px;
  margin: 12px 0 16px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #ff4d4d, #7b61ff) 1;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(11, 18, 34, 0.86);
  max-width: 72ch;
}
@media (min-width: 768px) {
  .section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container.fade-in > .mini-title,
  .section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container > .mini-title,
  .section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container.fade-in > h2,
  .section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container > h2,
  .section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container.fade-in > h3,
  .section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container > h3 {
    padding-left: 18px;
    box-sizing: border-box;
  }
}
.section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container.fade-in > p.muted,
.section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container > p.muted {
  color: rgba(11, 18, 34, 0.74) !important;
}

/* Subtle quote/decoration on the very first lead paragraph */
.section-head > p::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #ff4d4d, #ff8a3d);
  margin: 0 10px 6px 0;
  vertical-align: middle;
  border-radius: 3px;
}

/* Premium bullet markers for feature-lists in containers */
.section:not(.hero):not(.hero-split) .container > .feature-list,
.section:not(.hero):not(.hero-split) .container.fade-in > .feature-list {
  list-style: none !important;
  padding-left: 0 !important;
  display: grid;
  gap: 12px;
  margin: 14px 0 22px;
}
.section:not(.hero):not(.hero-split) .container > .feature-list > li,
.section:not(.hero):not(.hero-split) .container.fade-in > .feature-list > li {
  position: relative;
  padding: 12px 14px 12px 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.04), rgba(123, 97, 255, 0.04)) !important;
  border: 1px solid rgba(11, 18, 34, 0.06);
  color: rgba(11, 18, 34, 0.86) !important;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.section:not(.hero):not(.hero-split) .container > .feature-list > li::before,
.section:not(.hero):not(.hero-split) .container.fade-in > .feature-list > li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ff4d4d, #7b61ff);
  box-shadow: 0 0 0 4px rgba(123, 97, 255, 0.10);
}
.section:not(.hero):not(.hero-split) .container > .feature-list > li::after,
.section:not(.hero):not(.hero-split) .container.fade-in > .feature-list > li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(0%, -50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.section:not(.hero):not(.hero-split) .container > .feature-list > li:hover,
.section:not(.hero):not(.hero-split) .container.fade-in > .feature-list > li:hover {
  transform: translateX(2px);
  border-color: rgba(123, 97, 255, 0.20);
  box-shadow: 0 8px 22px rgba(123, 97, 255, 0.10);
}

/* On 2-column screens, feature list flows in 2 columns */
@media (min-width: 760px) {
  .section:not(.hero):not(.hero-split) .container > .feature-list,
  .section:not(.hero):not(.hero-split) .container.fade-in > .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile/tablet: drop paragraph accent inset so titles, lists, and body copy share one flush edge */
@media (max-width: 767px) {
  .section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container.fade-in > p,
  .section:not(.hero):not(.hero-split):not(.lead-strip):not(.cta-band) .container > p {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
    border-image: none;
  }
}

/* =================================================================== */
/* Industries section — premium gradient buttons grid                   */
/* =================================================================== */
.industries-band .industry-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}
.industry-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
  overflow: hidden;
  isolation: isolate;
}
.industry-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(180px 120px at 0% 0%, rgba(255, 77, 77, 0.10), transparent 60%),
    radial-gradient(180px 120px at 100% 100%, rgba(123, 97, 255, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 240ms ease;
  z-index: -1;
  pointer-events: none;
}
.industry-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.55), rgba(123, 97, 255, 0.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}
.industry-btn:hover,
.industry-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
  border-color: transparent;
  outline: none;
}
.industry-btn:hover::before,
.industry-btn:focus-visible::before { opacity: 1; }
.industry-btn:hover::after,
.industry-btn:focus-visible::after { opacity: 1; }

.industry-btn__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.08), rgba(123, 97, 255, 0.08));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.industry-btn__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.industry-btn:hover .industry-btn__icon,
.industry-btn:focus-visible .industry-btn__icon {
  transform: scale(1.06) rotate(-3deg);
}

.industry-btn__label {
  flex: 1 1 auto;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: inherit;
  min-width: 0;
}

.industry-btn__arrow {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: rgba(15, 23, 42, 0.42);
  transition: color 220ms ease, transform 220ms ease;
}
.industry-btn__arrow svg { width: 18px; height: 18px; display: block; }
.industry-btn:hover .industry-btn__arrow,
.industry-btn:focus-visible .industry-btn__arrow {
  color: #ff4d4d;
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .industries-band .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .industry-btn { padding: 12px 12px; gap: 10px; border-radius: 14px; }
  .industry-btn__icon { width: 36px; height: 36px; border-radius: 10px; }
  .industry-btn__icon svg { width: 22px; height: 22px; }
  .industry-btn__label { font-size: 13.5px; }
  .industry-btn__arrow { width: 18px; height: 18px; }
  .industry-btn__arrow svg { width: 14px; height: 14px; }
}
@media (max-width: 360px) {
  .industries-band .industry-grid { grid-template-columns: 1fr; }
}

/* =================================================================== */
/* Inline emoji-as-SVG wrapper (replaces all emoji characters globally) */
/* =================================================================== */
.emoji-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -0.18em;
  width: 1.15em;
  height: 1.15em;
  line-height: 1;
  margin: 0 0.18em;
  flex: 0 0 auto;
}
.emoji-svg:first-child { margin-left: 0; }
.emoji-svg:last-child { margin-right: 0; }
.emoji-svg svg { width: 1em; height: 1em; display: block; }

/* Slightly larger when used as the only icon in a heading */
h1 > .emoji-svg, h2 > .emoji-svg, h3 > .emoji-svg, h4 > .emoji-svg {
  width: 1.05em;
  height: 1.05em;
}
h3 > .emoji-svg:first-child { margin-right: 0.45em; }

/* Larger inside feature-list bullet lines (visual punch) */
.feature-list > li > .emoji-svg:first-child,
.section .container .feature-list > li > .emoji-svg:first-child {
  width: 1.35em;
  height: 1.35em;
  margin-right: 0.55em;
}

/* Larger when used inside the legacy icon-badge slot */
.card-heading-with-icon > .emoji-svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* The replaced check / cross images keep their badge frame look */
.icon-badge.icon-badge--img > .emoji-svg {
  width: 18px;
  height: 18px;
  margin: 0;
}

/* =================================================================== */
/* Visually-hidden helper (a11y)                                        */
/* =================================================================== */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* =================================================================== */
/* Premium HEADER polish                                                */
/* =================================================================== */
.site-header { position: sticky; top: 0; }
.site-header::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    #ff4d4d 0%,
    #ff8a3d 28%,
    #ff4d8a 56%,
    #7b61ff 82%,
    #12c2e9 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  z-index: 5;
  pointer-events: none;
  animation: headerStripe 12s linear infinite;
  opacity: 0.92;
}
@keyframes headerStripe {
  0%   { background-position:   0% 50%; }
  100% { background-position: 200% 50%; }
}

.site-header.scrolled {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  border-bottom-color: rgba(15, 23, 42, 0.08) !important;
}

/* Refined nav typography & interactions */
.nav-menu {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase;
}
.nav-menu a {
  position: relative;
  padding: 10px 2px !important;
  color: rgba(15, 23, 42, 0.74) !important;
  transition: color 220ms ease, transform 220ms ease;
}
.nav-menu a:hover {
  color: rgba(255, 77, 77, 0.95) !important;
  transform: translateY(-1px);
}
.nav-menu a.active { color: rgba(15, 23, 42, 0.96) !important; }

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4d4d 0%, #ff8a3d 50%, #7b61ff 100%) !important;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1 !important;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100% !important;
}

/* Dropdown chevron arrow (injected by main.js) */
.nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 6px;
  margin-left: 6px;
  vertical-align: 2px;
  color: currentColor;
  opacity: 0.65;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}
.nav-chevron svg { width: 100%; height: 100%; display: block; }
.services-nav-item:hover .nav-chevron,
.industries-nav-item:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Premium dropdown surface (overrides earlier .services-dropdown) */
.services-dropdown {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.97) 0%, rgba(8, 12, 22, 0.97) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  padding: 12px 10px !important;
  min-width: 250px !important;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 77, 77, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(-6px) !important;
  transition: opacity 240ms ease, visibility 240ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.services-nav-item:hover .services-dropdown {
  transform: translateX(-50%) translateY(0) !important;
}
.services-dropdown::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff4d4d 0%, #ff8a3d 50%, #7b61ff 100%);
}
.services-dropdown a {
  position: relative;
  padding: 11px 14px 11px 16px !important;
  border-radius: 10px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78) !important;
  transition: background 220ms ease, color 220ms ease, padding-left 220ms ease !important;
}
.services-dropdown a::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff4d4d 0%, #7b61ff 100%);
  transition: width 220ms ease;
}
.services-dropdown a:hover {
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.14), rgba(123, 97, 255, 0.10)) !important;
  color: #ffffff !important;
  padding-left: 22px !important;
}
.services-dropdown a:hover::before { width: 3px; }

/* Header CTA button — slight refinement */
.site-header .btn-primary {
  border-radius: 999px !important;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(255, 77, 77, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.site-header .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(255, 77, 77, 0.34);
}

/* =================================================================== */
/* Premium FOOTER — newsletter + social + legal                         */
/* =================================================================== */

/* Top section above the column grid */
.site-footer .footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 38px);
  margin-bottom: clamp(28px, 4vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  z-index: 1;
}
@media (min-width: 860px) {
  .site-footer .footer-top {
    grid-template-columns: 1.25fr 1fr;
    align-items: start;
  }
}

.footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78) !important;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 14px;
}
.footer-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ff8a3d, #ff4d4d 55%, #7b61ff);
  box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.18);
}

.footer-newsletter h3 {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  margin: 0 0 10px;
  color: #ffffff !important;
}
.footer-newsletter p {
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.78) !important;
  max-width: 32rem;
}
.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  max-width: 460px;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.footer-newsletter-form:focus-within {
  border-color: rgba(255, 77, 77, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.18);
}
.footer-newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: #ffffff !important;
  font-family: inherit;
  font-size: 0.94rem;
  height: 38px;
  padding: 0;
}
.footer-newsletter-form input::placeholder {
  color: rgba(226, 232, 240, 0.55);
}
.footer-newsletter-form button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  padding: 0 18px;
  height: 40px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  background: linear-gradient(135deg, #ff4d4d 0%, #ff8a3d 50%, #7b61ff 100%);
  box-shadow: 0 10px 24px rgba(255, 77, 77, 0.32);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.footer-newsletter-form button svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 220ms ease;
}
.footer-newsletter-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 16px 32px rgba(255, 77, 77, 0.42);
}
.footer-newsletter-form button:hover svg { transform: translateX(3px); }
.footer-newsletter-note {
  margin: 12px 0 0 !important;
  font-size: 0.78rem;
  color: rgba(203, 213, 225, 0.62) !important;
}

/* Right column — follow + trust */
.footer-social h4 {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: #ffffff !important;
  letter-spacing: 0;
  text-transform: none;
}
.footer-social h4::after { display: none; }
.footer-social p {
  margin: 0 0 14px;
  color: rgba(226, 232, 240, 0.74) !important;
}
.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.social-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.86) !important;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}
.social-icon:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.20), rgba(123, 97, 255, 0.20));
  border-color: rgba(255, 77, 77, 0.55);
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(255, 77, 77, 0.30);
}
.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social-icon--linkedin:hover  { box-shadow: 0 12px 28px rgba(10, 102, 194, 0.45); border-color: rgba(10, 102, 194, 0.65); }
.social-icon--instagram:hover { box-shadow: 0 12px 28px rgba(225, 48, 108, 0.40); border-color: rgba(225, 48, 108, 0.65); }
.social-icon--youtube:hover   { box-shadow: 0 12px 28px rgba(255, 0, 0, 0.40);    border-color: rgba(255, 60, 60, 0.65); }
.social-icon--facebook:hover  { box-shadow: 0 12px 28px rgba(24, 119, 242, 0.40); border-color: rgba(24, 119, 242, 0.65); }
.social-icon--x:hover         { box-shadow: 0 12px 28px rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.55); }
.social-icon--whatsapp:hover  { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45); border-color: rgba(37, 211, 102, 0.70); }

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d4d, #7b61ff);
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.10);
}

/* Bottom row — copyright + legal links side-by-side */
.site-footer .footer-bottom {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between !important;
  gap: 14px;
}
.footer-copy { color: rgba(203, 213, 225, 0.66) !important; font-size: 0.86rem; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}
.footer-legal a {
  color: rgba(203, 213, 225, 0.78) !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 220ms ease;
  margin: 0 !important;
}
.footer-legal a + a::before {
  content: "·";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(203, 213, 225, 0.40);
}
.footer-legal a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Footer columns — premium polish on the existing grid */
.site-footer .footer-col h4 {
  position: relative;
}
.site-footer .footer-col a {
  position: relative;
  display: block !important;
  width: fit-content;
  max-width: 100%;
  padding: 4px 0 !important;
  margin-bottom: 4px !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  transition: color 220ms ease, padding-left 220ms ease;
}
.site-footer .footer-col a:hover {
  padding-left: 14px !important;
}
.site-footer .footer-col a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff4d4d, #7b61ff);
  transition: width 220ms ease;
}
.site-footer .footer-col a:hover::before {
  width: 10px;
}

/* Keep support email on one line */
.site-footer .footer-col a[href^="mailto:"] {
  white-space: nowrap;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

/* Mobile touch-up */
@media (max-width: 600px) {
  .site-footer { padding: 56px 0 22px !important; }
  .footer-newsletter-form { padding: 6px 6px 6px 14px; }
  .footer-newsletter-form input { font-size: 0.92rem; }
  .footer-newsletter-form button { padding: 0 14px; font-size: 0.82rem; }
  .social-icon { width: 38px; height: 38px; border-radius: 10px; }
  .site-footer .footer-bottom { justify-content: center !important; }
}

/* =================================================================== */
/* Form submit — loading state + Toast notifications                    */
/* =================================================================== */

/* Disabled / loading state for any submit button */
button[type="submit"].is-loading,
input[type="submit"].is-loading,
button[type="submit"]:disabled {
  cursor: progress;
  filter: saturate(0.8) brightness(0.95);
  pointer-events: none;
}
button[type="submit"].is-loading::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: rhSpin 0.8s linear infinite;
  z-index: 5;
}
.uiverse-submit.is-loading .uiverse-submit__icon svg { opacity: 0; }
.footer-newsletter-form button.is-loading svg { opacity: 0.35; }
@keyframes rhSpin { to { transform: rotate(360deg); } }

/* Toast host — fixed bottom-right */
.rh-toast-host {
  position: fixed;
  right: clamp(12px, 3vw, 24px);
  bottom: clamp(80px, 12vw, 110px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: min(420px, calc(100vw - 32px));
}
.rh-toast {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 38px 14px 14px;
  border-radius: 16px;
  background: #ffffff;
  color: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.18),
    0 6px 14px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: translateY(16px);
  opacity: 0;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease;
}
.rh-toast.is-in {
  transform: translateY(0);
  opacity: 1;
}
.rh-toast.is-out {
  transform: translateY(8px);
  opacity: 0;
}
.rh-toast::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #22c55e 0%, #10b981 100%);
}
.rh-toast--error::before {
  background: linear-gradient(180deg, #ff4d4d 0%, #ff8a3d 100%);
}
.rh-toast__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
}
.rh-toast__icon svg { width: 28px; height: 28px; display: block; }
.rh-toast__body {
  flex: 1 1 auto;
  min-width: 0;
}
.rh-toast__body strong {
  display: block;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1.25;
  margin-bottom: 4px;
  color: rgba(15, 23, 42, 0.96);
}
.rh-toast__body p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.70);
}
.rh-toast__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  color: rgba(15, 23, 42, 0.55);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.rh-toast__close:hover {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.92);
}

@media (max-width: 520px) {
  .rh-toast-host {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  .rh-toast { border-radius: 14px; }
}

/* =================================================================== */
/* Global responsive hardening — all viewports / no horizontal jank      */
/* =================================================================== */

.site-header {
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

.header-actions {
  flex-shrink: 0;
  gap: clamp(6px, 1.5vw, 10px);
}
.site-header .btn-primary {
  padding-inline: clamp(10px, 2.5vw, 16px);
  font-size: clamp(0.72rem, 2.6vw, 0.88rem);
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
  .floating-whatsapp {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

@media (max-width: 420px) {
  .floating-whatsapp::after {
    display: none;
  }
}

.hero-actions {
  max-width: 100%;
}
@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-width: 0 !important;
  }
}

.cards-grid,
.stats-grid,
.steps-grid,
.case-grid,
.industry-grid,
.insight-grid,
.podcast-grid,
.events-grid,
.footer-grid,
.contact-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .stats-grid,
  .stats-grid-four {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .steps-grid:not(.problem-grid) {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .steps-grid::before {
    display: none !important;
  }
}

.steps-grid.problem-grid {
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 560px) {
  .steps-grid.problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .steps-grid.problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.carousel-wrapper {
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .carousel-item {
    padding: 0 clamp(18px, 5vw, 32px);
  }
  .fade-left,
  .fade-right {
    width: clamp(36px, 12vw, 56px);
  }
}

.tag-row .badge,
.tag-row a.badge {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.lead-form-grid,
.contact-form-grid,
.footer-newsletter-form {
  max-width: 100%;
  min-width: 0;
}

.contact-map,
.contact-map__frame {
  max-width: 100%;
}

.uiverse-submit {
  max-width: 100%;
}

.section > .container,
.logo-section > .container,
.testimonials-container {
  min-width: 0;
}

pre,
code {
  overflow-x: auto;
  max-width: 100%;
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 380px) {
  .nav-wrap {
    gap: 6px;
  }
  .logo {
    width: min(120px, 42vw);
  }
}

/* =================================================================== */
/* Mobile: center-align primary page content                             */
/* =================================================================== */
@media (max-width: 767px) {
  main {
    text-align: center;
  }

  main .section .container,
  main .logo-section > .container,
  main .testimonials-section .testimonials-container {
    text-align: center;
  }

  .hero.hero-split > .container {
    text-align: center;
  }

  main .section .container > .mini-title,
  main .logo-section > .container > .mini-title,
  main .testimonials-section .testimonials-container > .mini-title {
    margin-inline: auto;
  }

  main .section .container > h1,
  main .section .container > h2,
  main .section .container > h3,
  main .section .container > h4,
  main .section .container > p,
  main .section .container > ul,
  main .section .container > ol {
    margin-inline: auto;
    width: 100%;
    max-width: 100%;
  }

  main .founder-strip {
    justify-items: center;
    text-align: center;
  }

  main .hero-actions,
  main .hero-trust,
  main .trust-icons-row {
    justify-content: center;
  }

  main .tag-row,
  main .filters {
    justify-content: center;
  }

  main .lead-form-grid,
  main .contact-form-grid {
    justify-items: stretch;
  }

  /* Card grids: single column + safe minmax(0) — beats auto-fit/260px and bento spans on phones */
  main .cards-grid,
  main .case-grid,
  main .industry-grid,
  main .insight-grid,
  main .podcast-grid,
  main .events-grid,
  .tmpl-bento .cards-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .tmpl-bento .cards-grid > .card {
    grid-column: span 1 !important;
  }
  main .cards-grid > *,
  main .case-grid > *,
  main .industry-grid > *,
  main .insight-grid > *,
  main .podcast-grid > *,
  main .events-grid > * {
    max-width: 100%;
    min-width: 0;
  }

  main .footer-newsletter-form {
    justify-items: stretch;
  }

  main .cards-grid > *,
  main .stats-grid > *,
  main .steps-grid .step,
  main .case-grid > *,
  main .industry-grid > *,
  main article.card {
    text-align: center;
  }

  main .card .tag-row,
  main .card .btn {
    margin-inline: auto;
  }

  main .container .feature-list > li {
    padding: 48px 16px 16px;
    text-align: center;
  }
  main .container .feature-list > li::before {
    left: 50%;
    right: auto;
    top: 16px;
    transform: translateX(-50%);
  }
  main .container .feature-list > li::after {
    left: 50%;
    right: auto;
    top: 22px;
    transform: translate(-50%, 0) rotate(45deg);
  }

  main .timeline {
    margin-inline: auto;
    max-width: 40rem;
    border-left: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    text-align: center;
  }
  main .timeline-item {
    padding-top: 14px;
    border-top: 1px solid rgba(11, 18, 34, 0.12);
  }
  main .timeline-item:first-child {
    border-top: none;
    padding-top: 0;
  }
  main .timeline-item::before {
    display: none;
  }

  main .accordion-header {
    text-align: center;
    justify-content: center;
    gap: 10px;
  }

  main form,
  main .lead-form-grid,
  main .contact-form-grid {
    text-align: center;
    justify-items: stretch;
  }

  main .lead-form-grid button,
  main .contact-form-grid button,
  main .uiverse-submit {
    margin-inline: auto;
    justify-self: center;
  }

  main input,
  main textarea,
  main select {
    text-align: center;
  }

  main .calendly-placeholder {
    margin-inline: auto;
  }

  main pre,
  main code,
  main .table-wrap {
    text-align: initial;
  }

  main .testimonial-card {
    text-align: center;
  }
  main .testimonial-author {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-footer .footer-top,
  .site-footer .footer-grid,
  .site-footer .footer-bottom,
  .site-footer .footer-col {
    text-align: center;
    justify-items: center;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
  }

  .site-footer .footer-col a {
    margin-inline: auto !important;
  }

  .site-footer .footer-newsletter-form,
  .site-footer .footer-social-row,
  .site-footer .footer-trust-row {
    justify-content: center;
  }

  .site-footer .footer-legal {
    justify-content: center;
  }

  .mobile-sticky-cta {
    justify-content: center;
  }
}
