/* Super Fast Tech Solutions — Dark minimal marketing (full-bleed, large type, sparse rhythm) */

:root {
  --bg-page: #000000;
  --bg-surface: #0d0d0d;
  --bg-soft: #080808;
  --bg-muted: #111111;
  --bg-inverse: #ffffff;
  --bg-inverse-soft: #f5f5f5;

  --ink: #ffffff;
  --ink-muted: #a1a1a6;
  --ink-soft: #6e6e73;

  --text-1: var(--ink);
  --text-2: var(--ink-muted);
  --text-3: var(--ink-soft);

  --primary: #ffffff;
  --primary-light: #ffffff;
  --primary-deep: #d4d4d4;
  --primary-glow: rgba(255, 255, 255, 0.08);
  --primary-ultra: rgba(255, 255, 255, 0.04);

  --accent-warm: #c2410c;
  --teal: #34d399;

  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --border-blue: rgba(255, 255, 255, 0.18);

  --shadow-xs: 0 0 0 1px rgba(255, 255, 255, 0.06);
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 24px 64px rgba(0, 0, 0, 0.65);
  --shadow-lg: 0 48px 100px rgba(0, 0, 0, 0.75);

  --font-display: "Barlow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --section-py: clamp(88px, 14vw, 140px);
  --container: 1200px;
  --nav-h: 52px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);

  --gold: #d4af37;

  --bg-1: var(--bg-page);
  --bg-2: var(--bg-soft);
  --bg-3: var(--bg-muted);
  --bg-card: var(--bg-surface);
  --bg-elevated: #141414;
  --accent: var(--primary);
  --accent-light: var(--primary-light);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body,
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-page);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

.muted {
  color: var(--ink-muted);
}

.text-primary {
  color: #fff;
}

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

/* Skip link: no visible text until keyboard focus (avoids stray “Skip” on screen) */
.skip-link:not(:focus):not(:focus-visible) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 10001;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  background: #fff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  outline: 2px solid #000;
  outline-offset: 2px;
}

#main:focus {
  outline: none;
}

#main:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.honeypot {
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  position: absolute;
  left: -9999px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

section {
  scroll-margin-top: 120px;
}

main {
  min-height: 50vh;
}

.display {
  font-family: var(--font-display);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.022em;
  font-weight: 600;
}

h1 {
  line-height: 1.06;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}

.hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.gradient-text {
  background: linear-gradient(120deg, #ffffff 0%, #b3b3b8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero .hero-copy > h1 .hero-line-dim,
.hero .hero-line-dim {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

/* Buttons */
.btn {
  border: none;
  cursor: pointer;
  padding: 11px 22px;
  border-radius: 980px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 200ms var(--ease),
    box-shadow 200ms var(--ease),
    background-color 180ms ease;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}

.btn.accent {
  background: #ffffff;
  color: #000000;
}

.btn.primary {
  background: #ffffff;
  color: #000000;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn.accent:hover {
  background: #e5e5e5;
}

.btn.full {
  width: 100%;
}

.btn.pill {
  border-radius: 980px;
}

.hero .btn.secondary {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-muted);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 4px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.check-list.mini li {
  padding-left: 26px;
  font-size: 14px;
}

.check-list li::after {
  content: "";
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  width: 5px;
  height: 10px;
  position: absolute;
  left: 7px;
  top: 7px;
}

.big-cta .check-list li {
  color: rgba(0, 0, 0, 0.72);
}

.big-cta .check-list li::before {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
}

.big-cta .check-list li::after {
  border-color: #000000;
}

/* Top chrome */
.top-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--ink-soft);
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
}

.top-bar-social {
  margin-left: auto;
  display: inline-flex;
  gap: 8px;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--ink-soft);
}

.top-bar-social a:hover {
  color: var(--ink);
  border-color: var(--border-strong);
  background: var(--bg-page);
}

.top-bar-link {
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.top-bar-loc i {
  color: var(--ink-muted);
}

.top-bar-sep {
  opacity: 0.6;
}

/* Nav */
.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(120%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar-wrap.scrolled {
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--nav-h);
}

.logo {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.04em;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.footer-logo.logo {
  align-items: center;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-main {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-main > li > a,
.nav-drop-btn {
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 8px;
}

.nav-drop-btn .ms-ico {
  font-size: 11px;
  opacity: 0.7;
  transition: transform 180ms var(--ease);
}

.nav-drop-btn[aria-expanded="true"] .ms-ico {
  transform: rotate(-180deg);
}

.nav-main > li > a:hover,
.nav-drop-btn:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  white-space: nowrap;
}

.nav-main .mega {
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  pointer-events: none;
}

.nav-main .dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  pointer-events: none;
}

.has-mega.acc-open > .mega,
.has-dropdown.acc-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-main > li.has-mega {
  position: static;
}

.has-dropdown {
  position: relative;
}

.nav-main > li.has-mega.acc-open,
.nav-main > li.has-dropdown.acc-open {
  z-index: 120;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  padding: 24px 0 28px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 110;
}

.mega-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(200px, 1.08fr) minmax(0, 1fr) minmax(0, 1fr) minmax(252px, 300px);
  align-items: start;
}

@media (max-width: 1180px) {
  .mega-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mega-col-spotlight {
    grid-column: 1 / -1;
    padding-bottom: 14px;
    margin-bottom: 2px;
    border-bottom: 1px solid var(--border);
    border-right: none;
    padding-right: 0;
  }

  .mega-cta-card {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

.mega-col-spotlight {
  padding-right: clamp(8px, 1.8vw, 16px);
  border-right: 1px solid var(--border);
}

.mega-spot-main {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-page);
  text-decoration: none;
  color: var(--ink);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.mega-spot-main:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.mega-spot-main i {
  margin-top: 2px;
  flex-shrink: 0;
}

.mega-col {
  display: grid;
  gap: 4px;
}

.mega-col a {
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 12px;
  padding: 10px 11px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}

.mega-col a:hover {
  background: var(--bg-page);
  border-color: var(--border);
}

.mega-label {
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
}

.mega-cta-card {
  background: linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.mega-cta-kicker {
  color: var(--ink-muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin: 0;
  font-weight: 700;
}

.mega-cta-title {
  font-size: 18px;
  margin: 8px 0 12px;
  font-weight: 600;
  line-height: 1.3;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(0);
  translate: none;
  min-width: 260px;
  margin-top: 0;
  padding: 10px 8px 8px;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  display: grid;
  box-shadow: var(--shadow-md);
  z-index: 115;
}

.dropdown a {
  text-decoration: none;
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--bg-page);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.nav-overlay.open {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.nav-overlay {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-main .mega {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    padding: 10px;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 6px;
  }

  .has-mega.acc-open > .mega,
  .nav-main .has-dropdown.acc-open > .dropdown {
    display: block;
  }

  .nav-main .dropdown {
    position: relative;
    top: unset;
    left: 0;
    transform: none;
    translate: none;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: 1px solid var(--border);
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-col-spotlight {
    border-right: none;
    padding-right: 0;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(100%, 392px);
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: calc(var(--nav-h) + 14px) 18px;
    gap: 14px;
    transform: translateX(100%);
    transition: transform 280ms var(--ease);
    align-items: stretch;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .nav-panel.open {
    transform: translateX(0);
  }

  .nav-main {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  html.nav-open body {
    overflow: hidden;
  }
}

.has-dropdown.acc-open > .nav-drop-btn,
.has-mega.acc-open > .nav-drop-btn {
  color: var(--ink);
}

/* Hero */
.hero.hero-wrap {
  min-height: calc(100vh - 96px);
  display: grid;
}

.hero {
  position: relative;
  overflow: clip;
  background: #000000;
  color: #f5f5f7;
}

.hero-dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.035) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.5;
}

.hero-orb1,
.hero-orb2,
.hero-orb3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-orb1 {
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  left: -12%;
  top: -22%;
  background: rgba(255, 255, 255, 0.06);
}

.hero-orb2 {
  width: min(360px, 55vw);
  height: min(360px, 55vw);
  right: -6%;
  top: 8%;
  background: rgba(255, 255, 255, 0.035);
}

.hero-orb3 {
  width: min(280px, 45vw);
  height: min(280px, 45vw);
  left: 40%;
  bottom: -24%;
  background: rgba(255, 255, 255, 0.045);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 32px);
  align-items: end;
  padding: clamp(56px, 12vw, 120px) 0 clamp(48px, 10vw, 88px);
  max-width: 920px;
}

.hero-copy h1 {
  font-size: clamp(42px, 7vw, 92px);
  margin: 8px 0 20px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #ffffff;
}

.hero-copy h1 .hero-line-dim {
  display: block;
  margin-top: 0.06em;
}

.hero-copy .hero-sub,
.hero-copy p.hero-sub {
  color: rgba(235, 235, 245, 0.72);
  font-size: clamp(17px, 2.1vw, 19px);
  max-width: 52ch;
  margin-bottom: 24px;
  line-height: 1.58;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-trust .trust-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 11px;
  border-radius: 11px;
  font-size: 12px;
  display: grid;
  gap: 6px;
  color: rgba(245, 245, 247, 0.86);
}

.ti-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: #fff;
}

.hero-vis {
  position: relative;
  min-height: 400px;
}

.hero-stack-card {
  position: absolute;
  width: min(100%, 288px);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  animation: floatCard 11s ease-in-out infinite alternate;
}

.hero-stack-card h4 {
  margin: 10px 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.hero-stack-card p {
  margin: 0;
  color: rgba(235, 235, 245, 0.7);
}

.hs1 {
  right: 4%;
  top: 10%;
}

.hs2 {
  right: calc(38% + 8px);
  top: auto;
  bottom: calc(50% + 8px);
  animation-delay: 1s;
}

.hs3 {
  right: calc(52% + 24px);
  top: auto;
  bottom: 8%;
  animation-delay: 2s;
}

.hs-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 600;
}

.hs-pill.good {
  background: rgba(4, 120, 87, 0.25);
}

.hs-pill.orange {
  background: rgba(194, 65, 12, 0.22);
}

/* Home: encourage inquiry form */
.lead-nudge-strip {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
    var(--bg-soft);
  border-block: 1px solid var(--border);
}

.lead-nudge-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  justify-content: space-between;
  padding: clamp(18px, 4vw, 26px) 0;
}

.lead-nudge-copy {
  flex: 1;
  min-width: min(100%, 280px);
}

.lead-nudge-eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.lead-nudge-title {
  margin: 0;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.45;
  color: var(--ink-muted);
  max-width: 56ch;
}

.lead-nudge-title strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 600;
}

.lead-nudge-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.top-bar-link--cta {
  font-weight: 600;
  color: var(--gold);
}

.top-bar-link--cta:hover {
  text-decoration: underline;
  color: var(--ink);
}

/* Marquee */
.marquee-strip {
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

.marquee-mask {
  overflow: clip;
  padding: 16px 0;
}

.marquee-root {
  display: flex;
  width: fit-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-root .marquee-inner {
  animation: none;
}

.marquee-inner {
  display: inline-flex;
  gap: clamp(32px, 8vw, 56px);
  align-items: center;
  padding-right: clamp(32px, 8vw, 56px);
  white-space: nowrap;
}

.marquee-label {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 9px;
  place-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.marquee-label i {
  opacity: 0.85;
  color: var(--ink-muted);
}

/* Stats */
.stats-strip {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  position: relative;
  padding: clamp(26px, 5vw, 36px) 20px;
  border-right: 1px solid var(--border);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 46px);
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.stat-label {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 13px;
}

/* Sections */
.section {
  padding: var(--section-py) 0;
}

.section-muted {
  background: linear-gradient(to bottom, var(--bg-soft), var(--bg-page));
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  margin: 10px auto 14px;
  max-width: 20ch;
  font-weight: 600;
}

.section-head .section-sub {
  color: var(--ink-muted);
  max-width: 64ch;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.55;
}

.section-muted.reverse {
  background: linear-gradient(to top, var(--bg-soft), var(--bg-page)), var(--bg-surface);
}

/* Services grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  background: var(--bg-surface);
  padding: clamp(22px, 3vw, 26px);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card-featured {
  grid-column: 1 / -1;
  border-color: rgba(212, 175, 55, 0.38);
  background:
    radial-gradient(1200px 420px at 10% -15%, rgba(212, 175, 55, 0.1), transparent 55%),
    var(--bg-surface);
}

.svc-flag {
  margin: -4px 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.svc-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 10px;
}

.tag-pill {
  font-size: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  color: var(--ink-muted);
}

.link-arrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.link-arrow:hover {
  text-decoration: underline;
}

/* Industry tabs */
.industry-tabs .industry-tabs-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.ind-tab-btn {
  border-radius: 980px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--ink-soft);
  cursor: pointer;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 13px;
}

.ind-tab-btn:hover {
  border-color: var(--border-strong);
  color: var(--ink);
}

.ind-tab-btn.active {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
}

.ind-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
}

.ind-panel.active {
  display: grid;
}

.ind-visual {
  background: var(--bg-surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.ind-emoji-big {
  font-size: clamp(72px, 14vw, 112px);
  text-align: center;
  padding: 22px;
}

.ind-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 16px 20px;
}

.metric-box {
  background: var(--bg-page);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border);
}

.metric-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 3.2vw, 24px);
  color: var(--ink);
}

.metric-lbl {
  margin-top: 5px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 11px;
}

.panel-copy h3 {
  margin-top: 0;
}

/* Process row */
.proc-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 32px);
  position: relative;
}

.proc-head {
  position: relative;
  width: fit-content;
  margin: 8px auto 16px;
}

.proc-num {
  width: clamp(68px, 16vw, 84px);
  height: clamp(68px, 16vw, 84px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  position: relative;
  z-index: 3;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.proc-ring {
  position: absolute;
  inset: clamp(-12px, -2.8vw, -9px);
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.32);
  animation: rotateRing 22s linear infinite;
}

.proc-row::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32));
  opacity: 0.6;
}

.proc-cell .proc-body h3 {
  margin: 0 0 6px;
}

.proc-cell {
  padding-top: clamp(38px, 7vw, 52px);
  text-align: center;
}

/* Case grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: clip;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 200ms ease;
}

.case-card:hover {
  box-shadow: var(--shadow-md);
}

.case-headrow {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-m-cell {
  padding: 12px;
  border: 1px solid var(--border);
}

.case-m-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.8vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cm-a {
  color: var(--teal);
}

.cm-b {
  color: var(--primary-deep);
}

/* Testimonials */
.testimonial-slider {
  position: relative;
}

.ts-viewport {
  overflow: clip;
}

.ts-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.ts-slide {
  flex: 0 0 100%;
  padding: 10px 10px clamp(56px, 10vw, 72px);
}

.quote-card {
  position: relative;
  background: var(--bg-surface);
  padding: clamp(22px, 4vw, 34px);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.quote-symbol {
  position: absolute;
  top: 4px;
  left: clamp(24px, 5vw, 40px);
  font-size: clamp(96px, 22vw, 160px);
  line-height: 0.95;
  color: rgba(255, 255, 255, 0.08);
}

.quote-copy {
  position: relative;
  z-index: 2;
  color: var(--ink-muted);
  font-size: 17px;
  margin-block: clamp(64px, 14vw, 96px) 18px;
  line-height: 1.62;
}

.quote-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.quote-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(140deg, var(--primary) 0%, var(--ink) 100%);
  color: #fff;
  font-size: 14px;
}

.ts-nav {
  position: absolute;
  inset: auto clamp(32px, 8vw, 100px);
  bottom: 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(36px, 8vw, 100px);
  align-items: center;
}

.ts-btn {
  width: clamp(46px, 11vw, 54px);
  height: clamp(46px, 11vw, 54px);
  border-radius: 999px;
  border: none;
  background: var(--bg-page);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}

.ts-btn:hover {
  border: 1px solid var(--border);
}

.ts-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.ts-dot {
  width: clamp(11px, 2.8vw, 14px);
  height: clamp(11px, 2.8vw, 14px);
  border-radius: 999px;
  border: none;
  background: var(--border-strong);
}

.ts-dot.active {
  background: var(--primary);
}

.stars {
  color: var(--gold);
  letter-spacing: 1px;
}

/* Social hub */
.social-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sp-card {
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  box-shadow: var(--shadow-xs);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.sp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sp-card.ln:hover {
  border-color: #0077b5;
}

.sp-card.fb:hover {
  border-color: #1877f2;
}

.sp-card.ig:hover {
  border-color: #dd2a7b;
}

.sp-card.yt:hover {
  border-color: #e00;
}

.sp-card.tx:hover {
  border-color: var(--ink);
}

.sp-card.tk:hover {
  border-color: #00c9c8;
}

.share-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-block: 22px;
}

.social-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sp-post {
  background: var(--bg-surface);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.sp-post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 13px;
}

.social-post-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-block: 24px;
}

.share-btn[data-share],
button.share-btn {
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 980px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--ink);
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.share-btn:hover {
  background: var(--bg-page);
}

/* Capability visual (services pillar) */
.svc-visual-tile {
  aspect-ratio: 1;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% -8%, rgba(255, 255, 255, 0.12), transparent 55%), var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.svc-visual-tile i {
  color: var(--primary);
}

.case-study-shell {
  margin-bottom: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 38px);
  border-radius: 16px;
  box-shadow: var(--shadow-xs);
}

.case-study-shell h2 {
  margin-top: 0;
}

/* CTA */
.big-cta {
  background: #ffffff;
  color: rgba(17, 17, 17, 0.92);
  padding-block: clamp(80px, 14vw, 120px);
  border-block: 1px solid rgba(0, 0, 0, 0.08);
}

.big-cta .container {
  text-align: center;
}

.big-cta .eyebrow {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.55);
}

.big-cta h2 {
  font-size: clamp(26px, 3.8vw, 38px);
  margin: 0 auto 14px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.03em;
}

.big-cta p {
  margin: 0 auto 22px;
  max-width: 62ch;
  color: rgba(0, 0, 0, 0.62);
}

.big-cta-btns .btn.accent {
  background: #000000;
  color: #ffffff;
}

.big-cta-btns .btn.accent:hover {
  background: #222222;
}

.big-cta-btns .btn.secondary {
  color: rgba(17, 17, 17, 0.9);
  border-color: rgba(0, 0, 0, 0.22);
}

.big-cta-btns .btn.secondary:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(388px, 1fr);
  gap: clamp(24px, 4vw, 36px);
  align-items: start;
}

.contact-layout--form-first {
  grid-template-columns: minmax(min(100%, 520px), 1fr) minmax(0, 360px);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.ci-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.contact-item-card a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.contact-item-card--highlight {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.contact-item-card--soft {
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.06);
}

.contact-item-card a:hover {
  text-decoration: underline;
}

.form-card {
  background: var(--bg-surface);
  border-radius: 16px;
  padding: clamp(22px, 4vw, 28px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-card__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.form-card__kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.form-card__kicker i {
  margin-right: 6px;
  opacity: 0.95;
}

.form-footnote {
  margin: 4px 0 0;
  font-size: 12px !important;
  line-height: 1.5;
}

.contact-mail-muted {
  font-size: 12px !important;
  line-height: 1.55;
}

.contact-quick-picks {
  margin: 14px 0 8px;
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.contact-quick-picks__label {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-quick-picks__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qp-btn {
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-page);
  color: var(--ink);
  transition:
    transform 140ms ease,
    border-color 140ms ease;
}

.qp-btn:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-1px);
}

.form-grid {
  display: grid;
  gap: clamp(18px, 3vw, 24px);
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label.fld {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-muted);
}

input,
textarea,
select {
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg-soft);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-msg {
  margin-top: 10px;
  font-weight: 600;
}

.form-msg.error {
  color: #b91c1c;
}

.reassure-strip {
  margin-top: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Contact page: match other subpages (banded sections, same hero rhythm) */
.page-contact .section.section-muted {
  border-top: 1px solid var(--border);
}

.page-contact .form-card {
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(212, 175, 55, 0.06);
}

.contact-soc-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Sub pages hero */
.sub-hero {
  padding: clamp(64px, 12vw, 96px) 0 clamp(40px, 7vw, 52px);
  text-align: center;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.sub-hero h1 {
  font-size: clamp(32px, 5vw, 46px);
  margin-block: 0 12px;
}

/* Sub-pages: hero rhythm aligned with homepage */
.site-body.subpage .sub-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.08;
  max-width: 22ch;
  margin-inline: auto;
}

.site-body.subpage .sub-hero .muted {
  max-width: 58ch;
  margin-inline: auto;
}

.site-body.subpage .sub-hero .eyebrow {
  margin-inline: auto;
}

/* Newsletter + footer */
.newsletter-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.nw-inner {
  padding: clamp(24px, 5vw, 32px) 0;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(300px, 1fr);
  gap: 20px;
  align-items: center;
}

.nw-title {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nw-sub {
  margin-top: 6px;
}

.nw-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nw-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  border-radius: 980px;
  padding-inline: 16px;
}

.form-msg.nw-msg {
  grid-column: 1 / -1;
}

.footer-main {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: clamp(44px, 8vw, 72px) 0;
}

.footer-hub {
  margin: -6px 0 14px;
  font-size: 13px;
}

.footer-hub a {
  color: var(--ink-muted);
  font-weight: 600;
}

.footer-hub a:hover {
  color: var(--ink);
}

.footer-desc {
  margin: 8px 0 14px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-contact-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 14px;
}

.footer-contact-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-list a:hover {
  text-decoration: underline;
}

.footer-cta-lead {
  margin: 0 0 12px;
}

.footer-quick-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
  text-decoration: none;
}

.footer-quick-inquiry:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-contact-mail-muted {
  font-size: 12px !important;
  line-height: 1.5;
}

.footer-contact-form-li a {
  color: var(--gold) !important;
}

.social-wall-icons.footer-soc {
  margin: 10px 0 8px;
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-start;
  gap: 8px;
}

.soc-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink-muted);
}

.soc-btn:hover {
  color: var(--ink);
  background: var(--bg-page);
  transform: translateY(-2px);
}

.pill-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.footer-copy {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}

.footer-copy-inner {
  padding: 16px 0;
}

.footer-copy-inner p {
  margin: 0;
  font-size: 13px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.r-item {
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed var(--border-strong);
  color: var(--ink-muted);
  font-size: 13px;
  background: var(--bg-surface);
}

.mini-btn {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-weight: 600;
}

/* FAB */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
}

.fab-options {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 200ms ease,
    transform 220ms var(--ease);
}

.fab.open .fab-options {
  opacity: 1;
  transform: translateY(0);
}

.fab-opt {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: none;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.fab-opt.wa {
  background: #25d366;
}

.fab-opt.ph {
  background: var(--primary);
}

.fab-opt.ml {
  background: var(--ink);
}

.fab-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.fab-main:hover {
  background: var(--primary-deep);
}

/* Article prose */
.article-prose {
  max-width: 820px;
  margin: 48px auto 88px;
  color: var(--ink-muted);
}

.article-prose h2 {
  color: var(--ink);
}

.article-prose ul,
.article-prose ol {
  margin: 12px 0 20px;
  padding-left: 1.35rem;
  color: var(--ink-muted);
}

.article-prose li {
  margin-bottom: 10px;
}

.article-prose > *:first-child {
  margin-top: 0;
}

/* Lead badges embedded in prose (fallback) */
.badge-new,
.badge-contacted,
.badge-qualified,
.badge-proposal,
.badge-converted,
.badge-lost {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.badge-new {
  background: rgba(255, 255, 255, 0.12);
}

.badge-contacted {
  background: rgba(234, 179, 8, 0.14);
}

.badge-qualified {
  background: rgba(4, 120, 87, 0.12);
}

.badge-proposal {
  background: rgba(147, 51, 234, 0.1);
}

.badge-converted {
  background: rgba(22, 163, 74, 0.12);
}

.badge-lost {
  background: rgba(239, 68, 68, 0.12);
}

.badge-urgent {
  background: #ef4444;
  color: #fff;
}

.badge-high {
  background: rgba(251, 146, 60, 0.2);
}

.badge-medium {
  background: rgba(251, 191, 36, 0.16);
}

.badge-low {
  background: rgba(148, 163, 184, 0.2);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.82, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(16px, -18px) scale(1.02);
  }
  70% {
    transform: translate(-18px, 12px) scale(0.99);
  }
}

@keyframes floatCard {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

/* Legacy admin stubs (standalone pages) */
.admin-login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg-page);
}

.admin-login-card {
  width: min(440px, 100%);
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 26px;
  box-shadow: var(--shadow-md);
}

.admin-alert {
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.09);
}

.admin-grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 266px minmax(0, 1fr);
  background: var(--bg-page);
}

.admin-sidebar-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 20px;
  border-right: 1px solid var(--border);
  background: var(--bg-surface);
}

.admin-main {
  padding: 22px clamp(22px, 4vw, 36px);
  display: grid;
  gap: 18px;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card-mini {
  background: var(--bg-surface);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.admin-table-shell {
  background: var(--bg-surface);
  border-radius: 14px;
  border: 1px solid var(--border);
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

table.data-table th,
table.data-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

.status-pill,
.priority-pill {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.filters-bar form {
  display: grid;
  grid-template-columns: minmax(0, 340px) repeat(6, auto);
  gap: 10px;
  align-items: end;
}

.prog-strip {
  display: grid;
  gap: 6px;
}

.prog-itm {
  display: grid;
  grid-template-columns: 134px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.progress-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--border);
}

.progress-bar span {
  height: 100%;
  border-radius: 999px;
  display: block;
  background: linear-gradient(90deg, #ffffff, #888888);
}

@media (max-width: 900px) {
  .nw-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-vis {
    min-height: auto;
    padding-block: 12px;
  }

  .hs1,
  .hs2,
  .hs3 {
    position: static !important;
    width: auto;
    margin-inline: auto;
    margin-block: 8px !important;
  }

  .hero-stack-card {
    animation: none;
    position: relative;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
  }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-inline: 8px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ind-panel {
    grid-template-columns: 1fr;
  }

  .proc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .proc-row::before {
    display: none;
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-platforms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .share-row {
    gap: 10px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .reassure-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .big-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar-inner {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .admin-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters-bar form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .proc-row {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .social-platforms {
    grid-template-columns: 1fr;
  }

  .social-posts-grid {
    grid-template-columns: 1fr;
  }

  .reassure-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nw-form input[type="email"] {
    width: 100%;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .share-btn[data-share],
  button.share-btn {
    width: 100%;
    justify-content: center;
  }

  .share-row {
    flex-direction: column;
    width: 100%;
  }

  .quote-copy {
    margin-block: 48px 18px;
  }

  .ts-nav {
    position: static;
    margin-top: 12px;
  }

  .admin-cards {
    grid-template-columns: 1fr;
  }
}
