/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(11, 31, 58, 0.08);
  border-bottom: 1px solid var(--gray-200);
}

.site-header.is-scrolled .nav-desktop a {
  color: var(--navy);
}

.site-header.is-scrolled .nav-desktop a:hover {
  color: var(--green);
}

.site-header.is-scrolled .nav-phone {
  color: var(--navy);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--navy);
}

.site-header.is-scrolled .mobile-nav {
  background: var(--white);
}

.site-header.is-scrolled .mobile-nav a {
  color: var(--navy);
}

.site-header.is-scrolled .mobile-nav a:hover {
  background: var(--gray-50);
  color: var(--green);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--lime);
}

.nav-link[aria-current="page"] {
  color: var(--lime);
}

.site-header.is-scrolled .nav-link {
  color: var(--navy);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link[aria-current="page"] {
  color: var(--green);
}

.nav-item {
  position: relative;
}

.nav-item--dropdown .nav-link--trigger {
  position: relative;
}

.nav-chevron {
  transition: transform var(--transition);
  opacity: 0.75;
}

.nav-item--dropdown:hover .nav-chevron,
.nav-item--dropdown:focus-within .nav-chevron,
.nav-item--dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: min(720px, calc(100vw - 2rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.15);
  overflow: hidden;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 1.25rem 1rem;
}

.nav-dropdown-col + .nav-dropdown-col {
  border-left: 1px solid var(--gray-100);
}

.nav-dropdown-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  padding: 0 0.75rem 0.625rem;
  margin: 0;
}

.nav-dropdown-link {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.nav-dropdown-link:hover {
  background: var(--gray-50);
}

.nav-dropdown-link strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.125rem;
}

.nav-dropdown-link span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.nav-dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.nav-dropdown-footer > a:first-child {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.nav-dropdown-footer > a:first-child:hover {
  color: var(--green);
}

.nav-dropdown-cta {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--green);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: background var(--transition);
}

.nav-dropdown-cta:hover {
  background: var(--blue);
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-desktop a:hover {
  color: var(--lime);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--lime);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--navy);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 999;
  overflow-y: auto;
}

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

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  display: block;
  padding: 1rem;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: var(--radius-md);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lime);
}

.mobile-nav .btn {
  margin-top: 1.5rem;
  width: 100%;
}

.mobile-nav-group {
  margin-bottom: 0.25rem;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-align: left;
}

.mobile-nav-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-right: 4px;
}

.mobile-nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

.mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lime);
}

.mobile-nav-sub {
  display: none;
  padding: 0 0 0.5rem 0.75rem;
}

.mobile-nav-group.is-open .mobile-nav-sub {
  display: block;
}

.mobile-nav-sub a {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.site-header.is-scrolled .mobile-nav-toggle {
  color: var(--navy);
}

.site-header.is-scrolled .mobile-nav-toggle:hover {
  background: var(--gray-50);
  color: var(--green);
}

.site-header.is-scrolled .mobile-nav-sub a {
  color: var(--gray-700);
}

@media (min-width: 1024px) {
  .nav-desktop,
  .header-actions { display: flex; }
  .menu-toggle { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: auto;
  padding-top: var(--header-height);
  padding-bottom: 1.25rem;
  background: var(--navy);
  overflow: hidden;
}

.hero--cards-only {
  display: flex;
  flex-direction: column;
  --hero-cards-height: clamp(460px, 56vh, 540px);
}

.hero--cards-only .hero-stacked {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 0.75rem 0;
}

.hero--cards-only .hero-stacked-track {
  height: var(--hero-cards-height);
  min-height: var(--hero-cards-height);
  max-height: var(--hero-cards-height);
}

/* Hero stacked cards — Bluehost expand/collapse pattern */
.hero-stacked {
  width: 100%;
  max-width: 100%;
}

.hero-stacked-track {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0;
}

.hero-stacked-card {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  min-height: 3.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), min-width 0.55s cubic-bezier(0.4, 0, 0.2, 1), min-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-stacked-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.hero-stacked-card.is-active .hero-stacked-bg {
  transform: scale(1.03);
}

.hero-stacked-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.72) 45%, rgba(11, 31, 58, 0.85) 100%);
}

.hero-stacked-card[data-theme="brand"] .hero-stacked-bg::after {
  background: linear-gradient(135deg, rgba(13, 40, 71, 0.92) 0%, rgba(22, 77, 138, 0.75) 50%, rgba(21, 135, 90, 0.7) 100%);
}

.hero-stacked-card[data-theme="found"] .hero-stacked-bg::after {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.9) 0%, rgba(30, 58, 138, 0.72) 55%, rgba(21, 135, 90, 0.68) 100%);
}

.hero-stacked-card[data-theme="growth"] .hero-stacked-bg::after {
  background: linear-gradient(135deg, rgba(15, 45, 26, 0.9) 0%, rgba(21, 135, 90, 0.75) 50%, rgba(61, 107, 30, 0.72) 100%);
}

.hero-stacked-card[data-theme="support"] .hero-stacked-bg::after {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.92) 0%, rgba(22, 77, 138, 0.72) 50%, rgba(15, 118, 110, 0.75) 100%);
}

.hero-stacked-card > *:not(.hero-stacked-bg) {
  position: relative;
  z-index: 1;
}

.hero-stacked-card.is-active {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-stacked-card:not(.is-active) {
  cursor: pointer;
}

.hero-stacked-card:not(.is-active):hover .hero-stacked-bg {
  transform: scale(1.05);
}

/* Collapsed spine */
.hero-stacked-spine {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 0 1rem;
  border: none;
  background: rgba(11, 31, 58, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}

.hero-stacked-card:not(.is-active):hover .hero-stacked-spine {
  background: rgba(11, 31, 58, 0.6);
}

.hero-stacked-spine-text {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.95;
}

.hero-stacked-card.is-active .hero-stacked-spine {
  display: none;
}

/* Expanded panel */
.hero-stacked-panel {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease 0.1s, visibility 0.35s;
}

.hero-stacked-card.is-active .hero-stacked-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.hero-stacked-card:not(.is-active) .hero-stacked-panel {
  display: none;
}

.hero-stacked-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.25rem 1rem 1.5rem;
  min-width: 0;
}

.hero-stacked-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 0.5rem;
}

.hero-stacked-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-stacked-copy h3 {
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.hero-stacked-copy > p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 0.875rem;
  max-width: 38ch;
}

.hero-stacked-features {
  list-style: none;
  margin-bottom: 1rem;
}

.hero-stacked-features li {
  position: relative;
  padding: 0.3125rem 0 0.3125rem 1.125rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.hero-stacked-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.hero-stacked-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-stacked-stat {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.4375rem 0.875rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.hero-stacked-stat strong {
  color: var(--lime);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-right: 0.25rem;
}

.hero-stacked-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--lime);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-stacked-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 230, 80, 0.35);
}

.hero-stacked-visual {
  position: relative;
  min-height: 200px;
}

.hv-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.hv-scene-stage {
  position: relative;
  width: min(100%, 16rem);
  margin: 0 auto;
}

/* Hero card mockups — unified clean design */
.hv-card {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.hv-card-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.625rem;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.hv-card-chrome span:not(.hv-card-url) {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hv-card-chrome span:nth-child(1) { background: #ff5f57; }
.hv-card-chrome span:nth-child(2) { background: #febc2e; }
.hv-card-chrome span:nth-child(3) { background: #28c840; }

.hv-card-url {
  flex: 1;
  margin-left: 0.375rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  color: var(--gray-500);
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hv-card-site-body {
  padding: 0.875rem 0.75rem;
  text-align: center;
  background: linear-gradient(180deg, #f0f7ff 0%, var(--white) 100%);
}

.hv-card-site-logo {
  display: block;
  width: auto;
  height: 1.375rem;
  margin: 0 auto 0.5rem;
  object-fit: contain;
}

.hv-card-site-tagline {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

.hv-card-site-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
}

.hv-card-site-pills span {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(21, 135, 90, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
}

.hv-card-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.hv-card-foot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.hv-card-map {
  height: 3.5rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bbf7d0 100%);
  position: relative;
}

.hv-card-map::after {
  content: "";
  position: absolute;
  bottom: 35%;
  left: 58%;
  width: 9px;
  height: 9px;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.hv-card-listing-body {
  padding: 0.75rem;
}

.hv-card-listing-head {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}

.hv-card-listing-logo {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  object-fit: contain;
}

.hv-card-listing-info {
  min-width: 0;
  flex: 1;
}

.hv-card-listing-info strong {
  display: block;
  font-size: 0.75rem;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 0.125rem;
}

.hv-card-stars {
  font-size: 0.625rem;
  color: #f59e0b;
  line-height: 1.3;
}

.hv-card-stars span {
  color: var(--gray-500);
  font-weight: 500;
}

.hv-card-meta {
  display: block;
  font-size: 0.5625rem;
  color: var(--gray-500);
  line-height: 1.35;
  margin-top: 0.125rem;
}

.hv-card-listing-btns {
  display: flex;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.625rem;
}

.hv-card-listing-btns span {
  flex: 1;
  text-align: center;
  padding: 0.4375rem 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--blue);
  border-right: 1px solid var(--gray-100);
}

.hv-card-listing-btns span:last-child {
  border-right: none;
}

.hv-card-listing-social {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-100);
}

.hv-card-listing-social img {
  width: 0.875rem;
  height: 0.875rem;
  object-fit: contain;
  flex-shrink: 0;
}

.hv-card-listing-social > span {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-left: 0.125rem;
}

.hv-card-dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.75rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

.hv-card-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(21, 135, 90, 0.12);
  padding: 0.1875rem 0.5rem;
  border-radius: var(--radius-full);
}

.hv-card-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  height: 4.5rem;
  padding: 0.625rem 0.75rem;
}

.hv-card-chart div {
  flex: 1;
  height: var(--h);
  min-height: 12%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--lime), var(--green));
}

.hv-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem;
  padding: 0 0.75rem 0.75rem;
  text-align: center;
}

.hv-card-metrics strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.2;
}

.hv-card-metrics span {
  font-size: 0.5625rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hv-card-support-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.75rem 0.625rem;
  border-bottom: 1px solid var(--gray-100);
}

.hv-card-support-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: hv-pulse 2s ease infinite;
}

.hv-card-support-head strong {
  font-size: 0.75rem;
  color: var(--navy);
}

.hv-card-support-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.375rem;
  padding: 0.625rem 0.75rem;
}

.hv-card-stat {
  text-align: center;
  padding: 0.4375rem 0.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.hv-card-stat em {
  display: block;
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.hv-card-stat span {
  display: block;
  font-size: 0.5rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.125rem;
}

.hv-card-support-msg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  background: rgba(21, 135, 90, 0.06);
  border-top: 1px solid var(--gray-100);
}

.hv-card-support-msg img {
  flex-shrink: 0;
  object-fit: contain;
}

.hv-card-support-msg strong {
  display: block;
  font-size: 0.6875rem;
  color: var(--navy);
  line-height: 1.3;
}

.hv-card-support-msg span {
  display: block;
  font-size: 0.5625rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.hv-browser {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.hv-browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 0.875rem;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.hv-browser-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hv-browser-chrome span:nth-child(1) { background: #ff5f57; }
.hv-browser-chrome span:nth-child(2) { background: #febc2e; }
.hv-browser-chrome span:nth-child(3) { background: #28c840; }

.hv-browser-url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.6875rem;
  color: var(--gray-500);
  background: var(--white);
  border-radius: var(--radius-sm);
}

.hv-browser-page {
  padding: 1rem;
  background: linear-gradient(180deg, #eef6ff, #fff);
}

.hv-page-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.hv-page-hero {
  height: auto;
  min-height: 4.5rem;
  aspect-ratio: 16 / 5;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--green));
  margin-bottom: 0.625rem;
}

.hv-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.hv-page-grid div {
  height: auto;
  min-height: 2rem;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: var(--gray-100);
}

.hv-brand-kit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
}

.hv-kit-swatch {
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  background: var(--c);
}

.hv-gbp {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.hv-gbp-map {
  height: auto;
  min-height: 5rem;
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, #dbeafe, #bbf7d0);
  position: relative;
}

.hv-gbp-map::after {
  content: "";
  position: absolute;
  bottom: 38%;
  left: 55%;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.hv-gbp-body { padding: 0.875rem; }

.hv-gbp-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.hv-gbp-photo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--green));
  flex-shrink: 0;
}

.hv-gbp-row strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--navy);
}

.hv-stars {
  font-size: 0.6875rem;
  color: #f59e0b;
  margin: 0.125rem 0;
}

.hv-stars em {
  font-style: normal;
  color: var(--gray-500);
}

.hv-meta {
  font-size: 0.625rem;
  color: var(--gray-500);
}

.hv-gbp-btns {
  display: flex;
  border-top: 1px solid var(--gray-100);
}

.hv-gbp-btns span {
  flex: 1;
  text-align: center;
  padding: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--blue);
  border-right: 1px solid var(--gray-100);
}

.hv-gbp-btns span:last-child { border-right: none; }

.hv-social-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
  flex-shrink: 0;
}

.hv-social-row img {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  object-fit: contain;
}

.hv-page-nav img {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  object-fit: contain;
}

.hv-dash {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
  padding: 1.125rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.hv-dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.hv-pill-up {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(21, 135, 90, 0.12);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.hv-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 4.5rem;
  margin-bottom: 0.875rem;
}

.hv-chart div {
  flex: 1;
  height: var(--h);
  min-height: 12%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--lime), var(--green));
}

.hv-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 0.5rem;
}

.hv-metrics strong {
  display: block;
  font-size: 1.125rem;
  color: var(--navy);
}

.hv-metrics span {
  font-size: 0.625rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hv-health {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
  padding: 1.125rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.hv-health-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.875rem;
}

.hv-health-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}

.hv-health-item {
  padding: 0.625rem 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gray-200);
}

.hv-health-item.is-ok {
  border-left-color: var(--green);
  background: rgba(21, 135, 90, 0.06);
}

.hv-health-item span {
  display: block;
  font-size: 0.5625rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.125rem;
}

.hv-health-item strong {
  font-size: 0.9375rem;
  color: var(--navy);
}

.hv-health-bar {
  height: 5px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}

.hv-health-bar div {
  width: 94%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--lime));
  border-radius: 3px;
}

.hv-chat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  font-size: 0.75rem;
  align-self: flex-start;
}

.hv-chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: hv-pulse 2s ease infinite;
}

@keyframes hv-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hv-chat strong {
  display: block;
  color: var(--navy);
  font-size: 0.8125rem;
}

.hv-chat span {
  color: var(--gray-500);
  font-size: 0.6875rem;
}


/* Mobile / tablet — vertical accordion */
@media (max-width: 1199px) {
  .hero--cards-only {
    --hero-cards-height: auto;
  }

  .hero--cards-only .hero-stacked-track {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-stacked-card:not(.is-active) {
    min-height: 3.25rem;
  }

  .hero-stacked-card.is-active {
    min-height: clamp(22rem, 50vh, 28rem);
  }

  .hero-stacked-spine {
    min-height: 3.25rem;
    padding: 0 1.125rem;
  }

  .hero-stacked-spine-text {
    font-size: 0.9375rem;
  }

  .hero-stacked-grid {
    padding: 1.25rem 1.125rem 1.5rem;
    gap: 1rem;
  }

  .hero-stacked-visual .hv-scene {
    max-height: 11rem;
    overflow: visible;
  }

  .hv-scene-stage {
    width: min(100%, 13rem);
  }
}

/* Desktop — horizontal stacked cards */
@media (min-width: 1200px) {
  .hero--cards-only .hero-stacked-track {
    flex-direction: row;
    align-items: stretch;
    gap: 0.375rem;
  }

  .hero-stacked-card {
    flex: 0 0 7.5rem;
    min-width: 7.5rem;
    min-height: 0;
    height: 100%;
    align-self: stretch;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), min-width 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
  }

  .hero-stacked-card.is-active {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(100% - 21rem);
    display: flex;
    flex-direction: row;
  }

  .hero-stacked-card:not(.is-active):hover {
    flex: 0 0 8.25rem;
    min-width: 8.25rem;
  }

  .hero-stacked-spine {
    justify-content: center;
    width: 100%;
    min-height: 0;
    height: 100%;
    padding: 1.25rem 0.625rem;
    background: rgba(11, 31, 58, 0.55);
  }

  .hero-stacked-spine-text {
    writing-mode: sideways-lr;
    font-size: 0.9375rem;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }

  .hero-stacked-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .hero-stacked-copy h3 {
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  }

  .hero-stacked-copy > p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.55;
    max-width: 36ch;
  }

  .hero-stacked-features {
    margin-bottom: 0.875rem;
  }

  .hero-stacked-features li {
    font-size: 0.8125rem;
    padding: 0.25rem 0 0.25rem 1.125rem;
  }

  .hero-stacked-copy {
    min-height: 0;
    overflow: hidden;
  }

  .hero-stacked-cta {
    align-self: flex-start;
  }

  .hero-stacked-visual {
    display: flex;
    align-items: center;
    height: 100%;
    min-width: 14rem;
    overflow: hidden;
  }

  .hero-stacked-visual .hv-scene {
    max-height: 100%;
    height: 100%;
    justify-content: center;
    overflow: hidden;
  }

  .hv-scene-stage {
    width: min(100%, 19.5rem);
  }
}

@media (min-width: 1400px) {
  .hero--cards-only {
    --hero-cards-height: 560px;
  }

  .hero-stacked-card {
    flex: 0 0 8rem;
    min-width: 8rem;
  }

  .hero-stacked-card:not(.is-active):hover {
    flex: 0 0 8.75rem;
    min-width: 8.75rem;
  }

  .hero-stacked-grid {
    gap: 1.75rem;
    padding: 1.75rem 2rem;
  }

  .hero-stacked-copy h3 {
    font-size: 2rem;
  }

  .hv-scene-stage {
    width: min(100%, 21rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stacked-card,
  .hero-stacked-spine,
  .hero-stacked-bg {
    transition: none;
  }
}

.mockup-meta {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.mockup-avatar-social {
  background: linear-gradient(135deg, #E4405F, #833AB4);
}

.mockup-social-row span {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gray-600);
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: var(--white);
  border-block: 1px solid var(--gray-200);
  padding-block: 1.25rem;
  overflow: hidden;
}

.trust-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.trust-marquee:hover {
  animation-play-state: paused;
}

.trust-marquee-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .trust-marquee { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .trust-marquee-inner { padding: 0.5rem 1rem; }
}

/* ========== STAGE SLIDER ========== */
.stage-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 45%, var(--gray-50) 100%);
}

.stage-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.stage-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--gray-700);
}

.stage-slider {
  max-width: 1100px;
  margin-inline: auto;
}

.stage-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.stage-pills-wrap {
  padding: 0.75rem 0.75rem 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.stage-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.375rem;
  overflow: visible;
  padding: 0;
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
}

.stage-pills::-webkit-scrollbar {
  display: none;
}

@media (max-width: 899px) {
  .stage-pills-wrap {
    padding: 0.625rem 0.625rem 0;
  }

  .stage-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.125rem;
  }

  .stage-pill {
    flex: 0 0 min(72vw, 11.5rem);
    scroll-snap-align: start;
    min-height: 4rem;
  }
}

.stage-viewport {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f7ff 100%);
  outline: none;
}

.stage-viewport:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.stage-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--lime));
  z-index: 2;
}

.stage-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.stage-track.no-transition {
  transition: none;
}

.stage-slide {
  flex: 0 0 100%;
  display: grid;
  gap: 2rem;
  padding: 2rem;
  min-width: 0;
}

.stage-slide-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--lime) 0%, #a8d84a 100%);
  flex-shrink: 0;
}

.stage-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stage-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.stage-slide-content h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.625rem, 3.2vw, 2.125rem);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}

.stage-slide-content > p,
.stage-lead {
  font-size: 1.0625rem;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  max-width: 44ch;
}

.stage-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.stage-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.stage-point-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, #164d8a 100%);
  color: var(--lime);
}

.stage-point-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.stage-points strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.125rem;
}

.stage-points li > div > span {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.stage-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stage-highlight-row > div {
  flex: 1 1 7rem;
  padding: 0.875rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green);
}

.stage-highlight-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.stage-highlight-row span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stage-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.stage-feature-grid li {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.stage-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.stage-features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.stage-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.stage-features li:last-child {
  border-bottom: none;
}

.stage-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, #1a9d66 100%);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 14px rgba(21, 135, 90, 0.25);
}

.stage-cta:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(21, 135, 90, 0.35);
}

.stage-slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stage showcase panels — custom bold visuals, no emojis */
.stage-showcase {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(11, 31, 58, 0.12);
  overflow: hidden;
}

.ss-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: linear-gradient(135deg, var(--navy) 0%, #164d8a 100%);
}

.ss-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

.ss-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
}

.ss-pill--live {
  color: var(--navy);
  background: var(--lime);
}

.ss-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.ss-brand-logo {
  display: block;
  height: 1.75rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ss-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.125rem 0.75rem;
}

.ss-brand-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.ss-brand-text span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.ss-swatches {
  display: flex;
  gap: 0.5rem;
  padding: 0 1.125rem 1rem;
}

.ss-swatches span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--swatch);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-200);
}

.ss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  padding: 0 1.125rem 1rem;
}

.ss-tile {
  padding: 0.875rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.ss-tile:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.ss-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.ss-tile-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}

.ss-tile-sub {
  display: block;
  font-size: 0.6875rem;
  color: var(--gray-500);
  margin-top: 0.125rem;
}

.ss-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.ss-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Presence showcase */
.stage-showcase--presence {
  position: relative;
}

.ss-map {
  height: 5.5rem;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.04) 0%, transparent 100%),
    repeating-linear-gradient(90deg, var(--gray-100) 0, var(--gray-100) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(0deg, var(--gray-100) 0, var(--gray-100) 1px, transparent 1px, transparent 24px);
  border-bottom: 1px solid var(--gray-200);
}

.ss-listing {
  padding: 1.125rem;
}

.ss-listing-head {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.ss-listing-head img {
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.ss-listing-head strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.ss-stars {
  font-size: 0.75rem;
  color: #f59e0b;
  margin-bottom: 0.25rem;
}

.ss-stars span {
  color: var(--gray-500);
  font-weight: 500;
}

.ss-meta {
  font-size: 0.6875rem;
  color: var(--gray-500);
}

.ss-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ss-actions span {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--blue);
  padding: 0.5rem;
  background: #eff6ff;
  border-radius: var(--radius-sm);
}

.ss-social-sync {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-500);
}

.ss-presence-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.ss-presence-stats > div {
  padding: 1rem 1.125rem;
  text-align: center;
}

.ss-presence-stats > div + div {
  border-left: 1px solid var(--gray-200);
}

.ss-presence-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.ss-presence-stats span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Momentum showcase */
.stage-showcase--momentum {
  padding-bottom: 0;
}

.ss-metric-hero {
  padding: 1.25rem 1.125rem 0.75rem;
  text-align: center;
}

.ss-metric-hero strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.ss-metric-hero span {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.375rem;
}

.ss-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 7rem;
  margin: 0 1.125rem 1rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.ss-chart-bar {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #5eead4, var(--green));
  min-height: 12%;
}

.ss-chart-bar--peak {
  background: linear-gradient(180deg, var(--lime), var(--green));
  box-shadow: 0 0 12px rgba(200, 230, 80, 0.4);
}

.ss-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.ss-metric-row > div {
  padding: 1rem 0.5rem;
  text-align: center;
}

.ss-metric-row > div + div {
  border-left: 1px solid var(--gray-200);
}

.ss-metric-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.ss-metric-row span {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Maintenance showcase */
.ss-status-list {
  list-style: none;
  padding: 0.5rem 0;
}

.ss-status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.125rem;
  border-bottom: 1px solid var(--gray-100);
}

.ss-status-list li:last-child {
  border-bottom: none;
}

.ss-status-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
}

.ss-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(21, 135, 90, 0.15);
}

.ss-status-val {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green);
}

.stage-visual-frame {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stage-slide-visual .tab-mockup {
  width: 100%;
  min-height: 280px;
  border: none;
  box-shadow: none;
  background: transparent;
}

.stage-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.stage-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.stage-arrow:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.stage-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.stage-dots {
  display: flex;
  gap: 0.5rem;
}

.stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.stage-dot.is-active {
  background: var(--green);
  transform: scale(1.2);
}


@media (prefers-reduced-motion: reduce) {
  .stage-track {
    transition: none;
  }
}

/* Tab mockups (used inside stage slides) */
.tab-mockup {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  background: var(--gray-50);
  min-height: 220px;
}

.mockup-essentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  padding: 0.25rem;
}

.mockup-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.125rem 0.875rem;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mockup-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mockup-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.625rem;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  line-height: 1;
}

.mockup-block-icon--brand { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.mockup-block-icon--guide { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.mockup-block-icon--web { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.mockup-block-icon--print { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.mockup-block-icon--apparel { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.mockup-block-icon--cards { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }

.mockup-block .icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.mockup-block span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

.mockup-presence {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  align-items: stretch;
}

.mockup-profile {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--gray-200);
}

.mockup-profile-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mockup-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.mockup-profile h4 {
  font-size: 0.8125rem;
  color: var(--navy);
}

.mockup-profile p {
  font-size: 0.6875rem;
  color: var(--gray-500);
}

.mockup-stars {
  color: #fbbf24;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.mockup-social-row {
  display: flex;
  gap: 0.5rem;
}

.mockup-social-row span {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.mockup-momentum {
  padding: 1.25rem;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 120px;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.mockup-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--green), var(--blue));
  min-height: 20%;
}

.mockup-bar:nth-child(1) { height: 45%; }
.mockup-bar:nth-child(2) { height: 65%; }
.mockup-bar:nth-child(3) { height: 55%; }
.mockup-bar:nth-child(4) { height: 80%; }
.mockup-bar:nth-child(5) { height: 70%; }
.mockup-bar:nth-child(6) { height: 90%; }

.mockup-metrics {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.mockup-metric {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  border: 1px solid var(--gray-200);
  text-align: center;
}

.mockup-metric strong {
  display: block;
  font-size: 1.125rem;
  color: var(--green);
  font-family: var(--font-display);
}

.mockup-metric span {
  font-size: 0.6875rem;
  color: var(--gray-500);
}

.mockup-maintenance {
  padding: 1.25rem;
}

.mockup-status-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  font-size: 0.8125rem;
}

.mockup-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 0.5rem;
}

.mockup-status-label {
  display: flex;
  align-items: center;
  color: var(--gray-700);
  font-weight: 500;
}

.mockup-status-value {
  font-weight: 600;
  color: var(--green);
}

@media (min-width: 900px) {
  .stage-slide {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2.5rem 3rem;
    align-items: center;
  }

  .stage-highlight-row > div {
    flex: 0 1 auto;
    min-width: 8rem;
  }
}

/* ========== SERVICES DIRECTORY ========== */
/* ========== SERVICES SECTION ========== */
.services-section {
  position: relative;
  overflow-x: clip;
  padding-block: clamp(4rem, 7vw, 6rem);
  background: linear-gradient(180deg, #f4f8fc 0%, #eef5f9 35%, #f2faf6 70%, #f8fafc 100%);
  --progress-step: 0;
}

.services-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  --bg-shift: 0;
}

.services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}

.services-orb--1 {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: calc(8% + var(--bg-shift, 0) * -80px);
  left: -12%;
  background: radial-gradient(circle, rgba(21, 135, 90, 0.28) 0%, transparent 68%);
}

.services-orb--2 {
  width: min(440px, 60vw);
  height: min(440px, 60vw);
  top: calc(42% + var(--bg-shift, 0) * 120px);
  right: -10%;
  background: radial-gradient(circle, rgba(22, 77, 138, 0.22) 0%, transparent 68%);
}

.services-orb--3 {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  bottom: calc(6% + var(--bg-shift, 0) * -60px);
  left: 35%;
  background: radial-gradient(circle, rgba(200, 230, 80, 0.2) 0%, transparent 70%);
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(11, 31, 58, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 90%);
  pointer-events: none;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

#services .section-header {
  margin-bottom: 2rem;
  max-width: 640px;
}

.services-intro {
  font-size: 1.1875rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-top: 0.875rem;
  letter-spacing: 0.01em;
}

.services-shell {
  margin-top: 0.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 40px rgba(11, 31, 58, 0.05);
}

.services-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.services-sidebar-col {
  position: relative;
  z-index: 2;
}

.services-sidebar {
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, #0a1c33 0%, #123a6b 45%, #127a52 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
  box-shadow: 0 16px 48px rgba(11, 31, 58, 0.22);
  position: relative;
  overflow: hidden;
}

.services-sidebar::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(200, 230, 80, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.services-sidebar-intro {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.services-progress {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  padding-left: 0.25rem;
  --progress-step: 0;
}

.services-progress::before {
  content: "";
  position: absolute;
  left: 0.6875rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1px;
}

.services-progress::after {
  content: "";
  position: absolute;
  left: 0.6875rem;
  top: 0.75rem;
  width: 2px;
  height: calc(33.33% * (var(--progress-step, 0) + 1));
  max-height: calc(100% - 1.5rem);
  background: linear-gradient(180deg, var(--lime), rgba(200, 230, 80, 0.5));
  border-radius: 1px;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-progress-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  width: 100%;
  padding: 0.75rem 0.5rem 0.75rem 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}

.services-progress-item:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.services-progress-item.is-active {
  color: var(--white);
}

.services-progress-marker {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 0.2rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
}

.services-progress-item.is-active .services-progress-marker {
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200, 230, 80, 0.2);
}

.services-progress-copy {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.services-progress-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.services-progress-short {
  display: none;
}

.services-progress-desc {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.4;
}

.services-progress-item.is-active .services-progress-desc {
  color: var(--lime);
  opacity: 1;
}

.services-sidebar-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem;
  position: relative;
}

.services-sidebar-title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.875rem;
  position: relative;
  letter-spacing: -0.01em;
}

.services-sidebar-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 0;
  position: relative;
  max-width: 28ch;
}

.services-sidebar-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 1.25rem;
  position: relative;
}

.services-sidebar-link:hover {
  color: var(--white);
}

.services-sidebar-cta {
  width: 100%;
  position: relative;
}

.services-categories {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vh, 3.5rem);
}

.services-category {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  will-change: transform;
}

.services-categories {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vh, 5rem);
  padding-block: 0.5rem;
}

.services-category-inner {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.06);
  will-change: transform, opacity;
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
  backdrop-filter: blur(8px);
}

.services-category.is-near .services-category-inner {
  box-shadow: 0 20px 56px rgba(11, 31, 58, 0.11);
  border-color: rgba(21, 135, 90, 0.22);
}

.services-category-header {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}

.services-category--build .services-category-header {
  background: linear-gradient(135deg, rgba(21, 135, 90, 0.07) 0%, rgba(255, 255, 255, 0) 55%);
  border-left: 4px solid var(--green);
}

.services-category--growth .services-category-header {
  background: linear-gradient(135deg, rgba(22, 77, 138, 0.07) 0%, rgba(255, 255, 255, 0) 55%);
  border-left: 4px solid var(--blue);
}

.services-category--support .services-category-header {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.05) 0%, rgba(255, 255, 255, 0) 55%);
  border-left: 4px solid var(--navy);
}

.services-category-heading {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
  padding: 0;
  border: none;
  background: none;
}

.services-category-lead {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
  letter-spacing: 0.01em;
}

.services-category--build .services-category-heading,
.services-category--growth .services-category-heading,
.services-category--support .services-category-heading {
  background: none;
  border-left: none;
}

.services-category--growth.is-near .services-category-inner {
  border-color: rgba(22, 77, 138, 0.24);
}

.services-category--support.is-near .services-category-inner {
  border-color: rgba(11, 31, 58, 0.2);
}

.services-category-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--lime);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(200, 230, 80, 0.35);
}

.services-cards {
  list-style: none;
  display: grid;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem 1.5rem;
}

.service-card {
  padding: 1.25rem 1.375rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--green);
  will-change: transform, opacity;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.services-category--growth .service-card {
  border-left-color: var(--blue);
}

.services-category--support .service-card {
  border-left-color: var(--navy);
}

.service-card:hover {
  border-color: rgba(21, 135, 90, 0.25);
  border-left-color: var(--green);
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.07);
}

.services-category--growth .service-card:hover {
  border-left-color: var(--blue);
}

.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
  max-width: 42ch;
  letter-spacing: 0.01em;
}

@media (min-width: 900px) {
  .services-shell {
    padding: 2rem 2.25rem;
  }

  .services-layout {
    grid-template-columns: minmax(250px, 290px) 1fr;
    gap: 2.5rem;
  }

  .services-sidebar-col {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    will-change: transform;
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .service-card {
    padding: 1.25rem 1.375rem 1.25rem 1.5rem;
  }

  .service-card h4 {
    font-size: 1.0625rem;
  }

  .service-card p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1100px) {
  .services-categories {
    gap: clamp(3.5rem, 8vh, 5rem);
  }

  .services-category-header {
    padding: 1.75rem 1.75rem 1.375rem;
  }

  .service-card h4 {
    font-size: 1.125rem;
  }
}

/* Services — mobile category tabs + layout */
@media (max-width: 899px) {
  .services-shell {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .services-layout {
    gap: 1rem;
  }

  .services-sidebar-col {
    position: sticky;
    top: calc(var(--header-height) + 0.5rem);
    z-index: 5;
  }

  .services-sidebar {
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
  }

  .services-sidebar::before {
    display: none;
  }

  .services-sidebar-intro,
  .services-sidebar-link,
  .services-sidebar-cta {
    display: none;
  }

  .services-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.375rem;
    margin: 0;
    padding: 0.25rem;
    overflow: visible;
  }

  .services-progress::before,
  .services-progress::after {
    display: none;
  }

  .services-progress-long {
    display: none;
  }

  .services-progress-short {
    display: inline;
  }

  .services-progress-desc {
    display: none;
  }

  .services-progress-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 0;
    padding: 0.625rem 0.375rem;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--navy);
  }

  .services-progress-item:hover {
    background: var(--gray-100);
    color: var(--navy);
  }

  .services-progress-item.is-active {
    background: linear-gradient(135deg, var(--navy) 0%, #164d8a 100%);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(11, 31, 58, 0.15);
  }

  .services-progress-marker {
    display: none;
  }

  .services-progress-copy strong {
    font-size: 0.8125rem;
    color: inherit;
    line-height: 1.25;
    text-align: center;
  }

  .services-progress-item.is-active .services-progress-short {
    color: var(--white);
  }

  .services-categories {
    gap: 1.75rem;
    padding-block: 0;
  }

  .services-category-inner {
    transform: none !important;
    opacity: 1 !important;
  }

  .service-card {
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (min-width: 900px) {
  .services-progress-item {
    border-radius: var(--radius-md);
    margin-bottom: 0.125rem;
  }

  .services-progress-item.is-active {
    background: rgba(255, 255, 255, 0.1);
  }

  .services-categories {
    gap: clamp(2.5rem, 6vh, 4rem);
  }
}

#services {
  background: transparent;
}

.services-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.service-row:hover {
  background: var(--white);
}

.service-row-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--green);
}

.service-row-body {
  min-width: 0;
}

.service-row-body h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 0.125rem;
}

.service-row-body p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 960px) {
  .services-directory {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 1rem;
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 600px) {
  .services-directory {
    grid-template-columns: 1fr;
    padding: 0.75rem 1rem;
  }

  .service-row {
    padding: 0.625rem 0.5rem;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
  }

  .service-row:last-child {
    border-bottom: none;
  }

  .service-row:hover {
    background: transparent;
  }
}

/* ========== WHY MARKITERA ========== */
.why-section {
  background: var(--gray-50);
}

.why-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-card {
  padding: 2rem;
  text-align: center;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.why-card h3 {
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========== PORTFOLIO ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.portfolio-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

@media (min-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== REVIEWS ========== */
.reviews-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f4faf7 100%);
  position: relative;
}

.reviews-section .section-header {
  max-width: 640px;
  margin-bottom: 2rem;
}

.reviews-section .section-header p,
.reviews-intro {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.reviews-showcase {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.reviews-trust-panel {
  padding: 1.75rem;
  background: linear-gradient(155deg, var(--navy) 0%, #164d8a 55%, #15875a 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
  box-shadow: 0 16px 48px rgba(11, 31, 58, 0.18);
}

.reviews-score-block {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.reviews-score-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 0.5rem;
}

.reviews-score-stars {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.reviews-score-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.reviews-score-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0.25rem 0 0;
}

.reviews-stat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reviews-stat-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.reviews-stat-list strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.reviews-stat-list span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.reviews-carousel-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.07);
  min-width: 0;
  overflow: hidden;
}

.reviews-carousel-panel .carousel {
  overflow: hidden;
  width: 100%;
}

.reviews-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.trust-badge > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-badge strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.3;
}

.trust-badge span {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 0;
}

.review-card {
  position: relative;
  padding: 2.25rem 1.75rem 1.5rem;
  margin: 0;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.review-quote-mark {
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  color: rgba(21, 135, 90, 0.12);
  pointer-events: none;
  user-select: none;
}

.review-card .stars {
  margin-bottom: 0.875rem;
  position: relative;
  z-index: 1;
}

.review-text {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  font-style: normal;
  max-width: 52ch;
}

.review-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.review-author {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}

.review-role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.carousel-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 4.5rem;
  justify-content: center;
}

.carousel-counter {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.is-active {
  background: var(--green);
  transform: scale(1.2);
}

@media (min-width: 900px) {
  .reviews-showcase {
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 2rem;
    align-items: stretch;
  }

  .reviews-trust-panel {
    padding: 2rem 1.75rem;
  }

  .reviews-carousel-panel {
    padding: 2rem;
  }

  .review-card {
    padding: 2.5rem 2rem 1.75rem;
    min-height: 16rem;
  }

  .review-text {
    font-size: 1.125rem;
  }
}

/* ========== PROCESS ========== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
  max-width: 240px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .process-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue), var(--lime));
    z-index: 0;
  }
  .process-number { position: relative; z-index: 1; }
}

/* ========== SERVICE MENU ========== */
.menu-section {
  background: var(--gray-50);
}

.service-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.menu-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.menu-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  width: 100%;
  text-align: left;
}

.menu-category-header::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--green);
  transition: transform var(--transition);
}

.menu-category.is-open .menu-category-header::after {
  transform: rotate(45deg);
}

.menu-category-list {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.menu-category.is-open .menu-category-list,
.menu-category-list.desktop-visible {
  display: block;
}

.menu-category-list li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-category-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.menu-category-list li:last-child {
  border-bottom: none;
}

@media (min-width: 1024px) {
  .service-menu {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
  .menu-category-header {
    cursor: default;
    pointer-events: none;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green);
    margin: 0 1.25rem;
    padding-left: 0;
    padding-right: 0;
  }
  .menu-category-header::after { display: none; }
  .menu-category-list {
    display: block;
    padding: 1rem 1.25rem 1.25rem;
  }
}

/* ========== CONTACT ========== */
.contact-section {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.contact-section .wave-divider {
  top: 0;
  transform: translateY(-99%);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: url("../assets/backgrounds/navy-linen.png") center/cover;
  pointer-events: none;
}

.contact-bg-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(200, 230, 80, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  display: grid;
  gap: 3rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(200, 230, 80, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--lime);
  font-weight: 600;
  font-size: 1.0625rem;
}

.contact-info-item a:hover {
  color: var(--white);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-section-inner {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.contact-form-wrap h3,
.contact-form-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .form-row .form-group { margin-bottom: 1.25rem; }
}

/* ========== INNER PAGES ========== */
.page-inner {
  background: var(--white);
}

.page-inner .site-header,
.page-inner .site-header.is-scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 20px rgba(11, 31, 58, 0.08);
}

.page-inner .nav-link,
.page-inner .site-header.is-scrolled .nav-link,
.page-inner .nav-chevron,
.page-inner .site-header.is-scrolled .nav-chevron {
  color: var(--navy);
}

.page-inner .nav-link:hover,
.page-inner .nav-link[aria-current="page"],
.page-inner .site-header.is-scrolled .nav-link:hover,
.page-inner .site-header.is-scrolled .nav-link[aria-current="page"] {
  color: var(--green);
}

.page-inner .nav-desktop a,
.page-inner .site-header.is-scrolled .nav-desktop a {
  color: var(--navy);
}

.page-inner .nav-desktop a[aria-current="page"],
.page-inner .site-header.is-scrolled .nav-desktop a[aria-current="page"] {
  color: var(--green);
}

.page-inner .nav-phone,
.page-inner .site-header.is-scrolled .nav-phone {
  color: var(--navy);
}

.page-inner .nav-phone:hover,
.page-inner .site-header.is-scrolled .nav-phone:hover {
  color: var(--green);
}

.page-inner .menu-toggle span,
.page-inner .site-header.is-scrolled .menu-toggle span {
  background: var(--navy);
}

.page-inner .mobile-nav,
.page-inner .site-header.is-scrolled .mobile-nav {
  background: var(--white);
}

.page-inner .mobile-nav a,
.page-inner .site-header.is-scrolled .mobile-nav a {
  color: var(--navy);
}

.page-inner .mobile-nav a:hover,
.page-inner .site-header.is-scrolled .mobile-nav a:hover {
  background: var(--gray-50);
  color: var(--green);
}

.page-inner .mobile-nav-toggle,
.page-inner .site-header.is-scrolled .mobile-nav-toggle {
  color: var(--navy);
}

.page-inner .mobile-nav-sub a,
.page-inner .site-header.is-scrolled .mobile-nav-sub a {
  color: var(--gray-700);
}

.page-main {
  padding-top: var(--header-height);
}

/* Client success videos */
.client-videos-section {
  background: linear-gradient(160deg, #071525 0%, #0b1f3a 55%, #0d2847 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.client-videos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(200, 230, 80, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(22, 77, 138, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.client-videos-section .container {
  position: relative;
  z-index: 1;
}

.client-videos-section .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.client-videos-section .section-header h2 {
  color: var(--white);
}

.client-videos-section .section-label {
  color: var(--lime);
}

.client-videos-section .gradient-text {
  background: linear-gradient(135deg, var(--lime) 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.client-videos-section .section-cta-link {
  color: var(--lime);
}

.client-videos-section .section-cta-link:hover {
  color: var(--white);
}

.client-stories-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.client-story {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.client-story:hover {
  border-color: rgba(200, 230, 80, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.client-story-media {
  min-width: 0;
}

.client-story-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.client-story-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

.client-story-copy h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--white);
  line-height: 1.2;
}

.client-story-owner {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.client-story-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.5rem;
  max-width: 52ch;
}

.client-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-top: 0.75rem;
}

.client-story-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--lime);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
}

.client-video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.client-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Legacy card styles (unused on homepage) */
.client-videos-grid {
  display: grid;
  gap: 1.5rem;
}

.client-video-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.client-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.client-video-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.client-video-body h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.client-video-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Stats strip */
.stats-section {
  background: var(--gray-50);
}

.stats-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

.stat-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.375rem;
}

.stat-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.45;
}

/* Moonlite / website showcase */
.showcase-section {
  background: linear-gradient(180deg, rgba(21, 135, 90, 0.04) 0%, var(--gray-50) 100%);
}

.showcase-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 1023px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    display: flex;
    flex-direction: column;
  }

  .device-showcase {
    order: -1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(8.5rem, 10rem);
    gap: 1rem;
    align-items: end;
    justify-content: center;
    min-height: 0;
    margin-inline: 0;
    padding: 1.25rem 1rem 1rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(21, 135, 90, 0.06) 100%);
    border: 1px solid rgba(21, 135, 90, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(11, 31, 58, 0.08);
    overflow: visible;
  }

  .device-monitor {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .device-iphone {
    display: block;
    justify-self: stretch;
    width: 100%;
    --iphone-width: 100%;
    margin-left: 0;
    margin-bottom: 0.5rem;
    z-index: 1;
  }

  .showcase-copy {
    text-align: center;
  }

  .showcase-features li {
    text-align: left;
  }

  .showcase-ctas {
    justify-content: center;
  }
}

.showcase-copy h2 {
  margin-bottom: 1rem;
}

.showcase-copy > p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.showcase-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.showcase-features li {
  position: relative;
  padding: 0.4375rem 0 0.4375rem 1.75rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.showcase-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.4375rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(21, 135, 90, 0.1);
  border-radius: 50%;
}

.showcase-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.showcase-built {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 1rem;
}

.showcase-built::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.device-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: end;
  justify-content: center;
  min-height: 300px;
  padding: 0.5rem 0;
  overflow: visible;
}

/* Desktop monitor */
.device-monitor {
  width: 100%;
  min-width: 0;
  max-width: 560px;
}

.device-monitor--modern .device-monitor-shell {
  background: linear-gradient(180deg, #f5f5f7 0%, #e8e8ed 48%, #d8d8de 100%);
  border-radius: 1.125rem 1.125rem 0.25rem 0.25rem;
  padding: 0.375rem;
  box-shadow:
    0 28px 64px rgba(11, 31, 58, 0.16),
    0 10px 24px rgba(11, 31, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.device-monitor--modern .device-monitor-bezel {
  padding: 2px;
  border-radius: 0.6875rem;
  background: #09090b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.device-monitor-shell {
  background: linear-gradient(145deg, #2a2a2e 0%, #1c1c1e 40%, #3a3a3e 100%);
  border-radius: 1rem 1rem 0.375rem 0.375rem;
  padding: 0.625rem 0.625rem 0.5rem;
  box-shadow:
    0 24px 60px rgba(11, 31, 58, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.device-monitor-bezel {
  position: relative;
  background: #0a0a0b;
  border-radius: 0.5rem;
  padding: 0.375rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device-monitor-camera {
  display: none;
}

.device-monitor--modern .device-monitor-screen {
  border-radius: 0.5625rem;
}

.device-monitor-screen {
  border-radius: 0.3125rem;
  overflow: hidden;
  background: #111;
}

.device-monitor-browser {
  background: var(--white);
}

.device-browser-chrome {
  padding: 0.4375rem 0.625rem;
  background: linear-gradient(180deg, #f4f4f6 0%, #ececf0 100%);
  border-bottom: 1px solid #d9d9de;
}

.device-browser-chrome span {
  width: 8px;
  height: 8px;
}

.device-browser-url {
  margin-left: 0.375rem;
  padding: 0.3125rem 0.75rem;
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border-radius: 999px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.device-monitor-browser .hv-browser-chrome {
  padding: 0.5rem 0.75rem;
}

.device-monitor-browser .hv-browser-url {
  font-size: 0.625rem;
}

.device-monitor--modern .device-monitor-neck {
  width: 2.875rem;
  height: 1.125rem;
  background: linear-gradient(180deg, #d4d4d9 0%, #b9b9bf 100%);
  clip-path: none;
  border-radius: 0 0 3px 3px;
}

.device-monitor--modern .device-monitor-base {
  width: 5rem;
  height: 0.3125rem;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #c6c6cc 0%, #a6a6ad 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.device-monitor-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device-monitor-neck {
  width: 4.5rem;
  height: 2.25rem;
  background: linear-gradient(180deg, #3a3a3e 0%, #2a2a2e 100%);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}

.device-monitor-base {
  width: 7.5rem;
  height: 0.5rem;
  margin-top: -1px;
  border-radius: 0 0 0.75rem 0.75rem;
  background: linear-gradient(180deg, #3a3a3e 0%, #1c1c1e 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* iPhone 17 Pro Max frame */
.device-iphone {
  --iphone-width: 10.5rem;
  flex: 0 0 auto;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 18px 36px rgba(11, 31, 58, 0.22));
}

.device-iphone-shell {
  position: relative;
  width: var(--iphone-width);
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 78 / 163;
  padding: 0.2rem;
  border-radius: 2.75rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.35) 0%, transparent 28%),
    linear-gradient(165deg, #c8c8cc 0%, #9a9a9e 12%, #5e5e62 38%, #2e2e30 58%, #6e6e72 82%, #b8b8bc 100%);
  box-shadow:
    0 24px 56px rgba(11, 31, 58, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

.device-iphone-btn {
  position: absolute;
  background: linear-gradient(90deg, #7a7a7e 0%, #3a3a3c 45%, #1d1d1f 100%);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.device-iphone-btn--action {
  left: -2px;
  top: 18%;
  width: 3px;
  height: 8%;
  min-height: 1.125rem;
}

.device-iphone-btn--vol-up {
  left: -2px;
  top: 28%;
  width: 3px;
  height: 11%;
  min-height: 1.5rem;
}

.device-iphone-btn--vol-down {
  left: -2px;
  top: 41%;
  width: 3px;
  height: 11%;
  min-height: 1.5rem;
}

.device-iphone-btn--power {
  right: -2px;
  top: 30%;
  width: 3px;
  height: 14%;
  min-height: 2rem;
}

.device-iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2.45rem;
  overflow: hidden;
  background: #f3efe6;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.65);
}

.device-iphone-island {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  min-width: 3.25rem;
  height: 1.375rem;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 18%;
}

.device-iphone-island-cam {
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a2a3a 0%, #0a0a0f 55%, #000 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device-iphone-home {
  position: absolute;
  bottom: 0.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 0.1875rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.42);
  z-index: 3;
  pointer-events: none;
}

.device-preview-viewport {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.device-preview-viewport--desktop {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.device-preview-viewport--phone {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #f3efe6;
  z-index: 1;
}

.device-preview-scaler {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--preview-native-w, 1280) * 1px);
  height: calc(var(--preview-native-h, 720) * 1px);
  transform-origin: top left;
  transform: scale(var(--preview-scale, 1));
  pointer-events: none;
}

.device-preview-scaler--interactive {
  pointer-events: auto;
}

.device-preview-scaler iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.device-preview-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.device-preview-shot--desktop {
  object-fit: cover;
  object-position: top center;
}

.device-preview-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.75rem;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.35), transparent 45%);
  opacity: 0;
  transition: opacity var(--transition);
  text-decoration: none;
}

.device-preview-link span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.device-preview-viewport:hover .device-preview-link,
.device-preview-link:focus-visible {
  opacity: 1;
}

@media (max-width: 639px) {
  .device-showcase {
    grid-template-columns: minmax(0, 1.25fr) minmax(7.25rem, 8.75rem);
    gap: 0.5rem;
    padding-inline: 0.625rem;
  }

  .device-iphone {
    margin-bottom: 0.25rem;
  }
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }

  .device-showcase {
    justify-content: center;
    gap: clamp(1.5rem, 2.5vw, 2.25rem);
    min-height: 360px;
  }

  .device-monitor {
    max-width: 540px;
  }

  .device-iphone {
    --iphone-width: 11.5rem;
    margin-left: 0;
    margin-bottom: 1rem;
    z-index: 1;
  }

  .device-iphone-shell {
    padding: 0.22rem;
    border-radius: 3rem;
  }

  .device-iphone-screen {
    border-radius: 2.7rem;
  }

  .device-iphone-island {
    height: 1.5rem;
    min-width: 3.75rem;
  }
}

.section-cta-row {
  margin-top: 2rem;
  text-align: center;
}

.section-cta-link {
  font-weight: 600;
  color: var(--green);
  transition: color var(--transition);
}

.section-cta-link:hover {
  color: var(--blue);
}

@media (min-width: 768px) {
  .client-story {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2rem 2.25rem;
  }

  .client-story--reverse .client-story-media {
    order: 2;
  }

  .client-story--reverse .client-story-copy {
    order: 1;
  }

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

.page-teasers {
  background: var(--gray-50);
}

.teasers-grid {
  display: grid;
  gap: 1.5rem;
}

.teaser-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.teaser-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.teaser-card h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.teaser-card p {
  color: var(--gray-600);
  flex: 1;
}

.teaser-link {
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.teaser-link:hover {
  color: var(--green);
}

@media (min-width: 768px) {
  .teasers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .teasers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--white);
  color: var(--gray-700);
  border-top: 1px solid var(--gray-200);
}

.footer-top {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 55%, #127a4f 100%);
  padding: 2rem 0;
}

.footer-top-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.footer-top-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 0.375rem;
}

.footer-top-headline {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  max-width: 28rem;
}

.footer-main {
  padding: 3rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem 2rem;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-about {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 22rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}

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

.footer-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-service-list a {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-service-list a:hover {
  color: var(--green);
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray-500);
  margin-bottom: 0.875rem;
}

.footer-address a {
  color: var(--gray-700);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-address a:hover {
  color: var(--green);
}

.footer-phone {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy) !important;
}

.footer-hours {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

.footer-hours strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.footer-web {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
}

.footer-web:hover {
  color: var(--blue);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: rgba(21, 135, 90, 0.08);
  border-color: var(--green);
  transform: translateY(-2px);
}

.footer-social img {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-tag {
  font-size: 0.75rem;
  color: var(--gray-500);
}

@media (min-width: 640px) {
  .footer-top-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.35fr 0.85fr 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-top-headline {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    padding: 3.5rem 0 2.75rem;
  }

  .footer-grid {
    gap: 2.5rem 2rem;
  }
}
