/* Whizible Home — brand from company logo */
:root {
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --text-dark: #0f172a;
  --text-body: #64748b;
  --text-nav: #64748b;
  --cyan: var(--brand, #00aeef);
  --cyan-mid: var(--brand-mid, #0096d6);
  --cyan-light: #3db5e8;
  --blue-gradient: var(--brand-gradient, linear-gradient(135deg, #0077b6 0%, #00aeef 55%, #3db5e8 100%));
  --max: 1280px;
  --container-px: 1.5rem;
  --header-h: 64px;
  --radius-pill: 999px;
  --radius-md: 12px;
  --shadow-soft: 0 4px 24px rgba(0, 174, 239, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: #e8f4fb;
  -webkit-font-smoothing: antialiased;
}

.page-wrap h2,
.page-wrap h3 {
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Page background */
.page-wrap {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(186, 230, 253, 0.65) 0%, transparent 72%),
    radial-gradient(ellipse 80% 45% at 50% 105%, rgba(186, 230, 253, 0.4) 0%, transparent 68%),
    linear-gradient(180deg, #e3f2fa 0%, #f5fbff 38%, #f8fcff 62%, #e8f4fb 100%);
}

.page-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.12) 100%);
}

/* Header — production-style topbar + menubar */
.whz-topbar {
  background: #1d2327;
  color: #fff;
  font-size: 0.875rem;
}

.whz-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.whz-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  white-space: nowrap;
}

.whz-topbar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.whz-topbar__item:hover {
  color: #e2e8f0;
}

.site-header.whz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 174, 239, 0.45);
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  flex: 1;
  justify-content: center;
}

.whz-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.whz-menu > li {
  position: relative;
}

.whz-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2f2f30;
  white-space: nowrap;
}

.whz-menu > li.menu-item-has-children > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #2f2f30;
  margin-top: 1px;
}

.whz-menu > li > a:hover,
.whz-menu > li:hover > a,
.whz-menu > li.current-menu-item > a,
.whz-menu > li.current-menu-ancestor > a {
  color: #00aeef;
}

.whz-menu > li:hover > a::after,
.whz-menu > li.current-menu-item > a::after,
.whz-menu > li.current-menu-ancestor > a::after {
  border-top-color: #00aeef;
}

.whz-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  z-index: 50;
}

.whz-menu > li:hover > .sub-menu,
.whz-menu > li:focus-within > .sub-menu {
  display: block;
}

.whz-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

.whz-menu .sub-menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
}

.whz-menu .sub-menu a:hover {
  color: #00aeef;
  background: #f8fafc;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-shrink: 0;
}

.whz-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #00aeef;
}

.whz-search svg {
  width: 20px;
  height: 20px;
}

/* Header CTA styles come from whizible-chrome.css (site-wide). */

.btn-demo--block {
  width: 100%;
  margin-top: 0.75rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-dark);
  border-radius: 1px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid #e5e7eb;
}

.nav-mobile.is-open {
  display: flex;
}

.whz-menu-mobile {
  margin: 0;
  padding: 0;
  list-style: none;
}

.whz-menu-mobile a {
  display: block;
  padding: 0.65rem 0;
  font-weight: 500;
  color: var(--text-nav);
  border-bottom: 1px solid rgba(203, 213, 225, 0.6);
}

.whz-menu-mobile .sub-menu {
  margin: 0;
  padding: 0 0 0 0.85rem;
  list-style: none;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 640px) {
  .whz-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .logo__img {
    height: 40px;
  }

  .header-actions > .btn-demo {
    display: none;
  }
}

/* Shared buttons (hero + CTAs) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  padding: 0.6rem 1.1rem;
  color: #fff;
  background: var(--blue-gradient);
  box-shadow: var(--brand-shadow, 0 3px 12px rgba(0, 174, 239, 0.28));
}

.btn-primary:hover {
  box-shadow: var(--brand-shadow-lg, 0 6px 20px rgba(0, 119, 182, 0.42));
  filter: brightness(1.03);
}

.btn-primary--lg {
  padding: 0.8rem 1.45rem;
  font-size: 0.9375rem;
}

.btn-secondary {
  padding: 0.8rem 1.45rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid #cbd5e1;
}

.btn-secondary:hover {
  border-color: #94a3b8;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.btn__arrow {
  font-size: 1rem;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 4rem 0 1.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: start;
}

.hero-content {
  max-width: 36rem;
  margin-bottom: 1.35rem;
}

.hero-grid > .trust-bar__inner,
.hero-grid > .chatbot-card {
  width: 100%;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.2rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.hero-badge__icon {
  width: 14px;
  height: 14px;
  color: #64748b;
  flex-shrink: 0;
}

.hero-title {
  margin: 0 0 1.15rem;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-dark);
}

.hero-title .accent {
  color: var(--cyan);
}

.hero-text {
  margin: 0 0 0.8rem;
  font-size: 0.9875rem;
  line-height: 1.65;
  color: var(--text-body);
  text-align: justify;
}

.hero-text:last-of-type {
  margin-bottom: 1.65rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Hero visual stack */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: 0.35rem;
}

/* Compliance strip */
.compliance-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
  padding: 0.65rem 1rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.compliance-strip__text {
  min-width: 0;
}

.compliance-strip__label {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
}

.compliance-strip__certs {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
}

.compliance-strip__badges {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.compliance-strip__logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.compliance-strip__logo--iso {
  height: 36px;
}

.compliance-strip__logo--soc {
  height: 32px;
}

/* Platform diagram card */
.platform-card {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(0, 174, 239, 0.05);
}

.platform-card__trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .platform-card__trigger {
    cursor: zoom-in;
  }

  .platform-card__trigger:hover .platform-card__img {
    transform: scale(1.02);
    transition: transform 0.25s ease;
  }

  .platform-card__img {
    transition: transform 0.25s ease;
  }
}

.platform-card__img {
  width: 100%;
  height: auto;
  display: block;
}

.platform-card__zoom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.platform-card__zoom svg {
  width: 14px;
  height: 14px;
}

.platform-card__trigger:hover .platform-card__zoom,
.platform-card__trigger:focus-visible .platform-card__zoom {
  background: rgba(0, 119, 182, 0.92);
}

.platform-card__trigger:focus-visible {
  outline: 2px solid var(--brand, #00aeef);
  outline-offset: 3px;
}

/* Full-screen platform lightbox */
html.lightbox-open,
html.lightbox-open body {
  overflow: hidden;
}

.platform-lightbox[hidden] {
  display: none !important;
}

.platform-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.platform-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  cursor: pointer;
}

.platform-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1200px);
  max-height: 92vh;
  margin: 0 auto;
  padding: 0.75rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  overflow: auto;
}

.platform-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(92vh - 2rem);
  object-fit: contain;
  border-radius: 10px;
  background: #f8fafc;
}

.platform-lightbox__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #0f172a;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.platform-lightbox__close:hover,
.platform-lightbox__close:focus-visible {
  background: var(--brand-dark, #0077b6);
  outline: none;
}

.platform-lightbox__close svg {
  width: 1.15rem;
  height: 1.15rem;
}

@media (min-width: 768px) {
  .platform-lightbox {
    padding: 1.5rem;
  }

  .platform-lightbox__dialog {
    padding: 1rem;
  }

  .platform-lightbox__close {
    top: 1rem;
    right: 1rem;
  }
}

/* Chatbot banner */
.chatbot-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0.85rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(125, 211, 252, 0.55);
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.chatbot-card__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-mid, #0096d6) 0%, var(--brand-dark, #0077b6) 100%);
  border-radius: 10px;
  color: #fff;
}

.chatbot-card__icon svg {
  width: 20px;
  height: 20px;
}

.chatbot-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.chatbot-card__title {
  margin: 0 0 0.15rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.chatbot-card__desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  min-width: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.35rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.trust-bar__label {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.trust-bar__label::after {
  content: ":";
  margin-left: 0.1rem;
}

.trust-bar__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-bar__tags li {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand-dark, #0077b6);
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 999px;
  white-space: nowrap;
}

@media (min-width: 960px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: 4rem;
    row-gap: 1rem;
    align-items: start;
  }

  .hero-grid > .trust-bar__inner {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
  }

  .hero-grid > .chatbot-card {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-content {
    margin-bottom: 0;
    padding-top: 0.15rem;
    max-width: none;
  }

  .hero-visual {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-bottom: 0;
  }

  .compliance-strip {
    margin-bottom: 0.75rem;
    padding: 0.65rem 1rem;
  }

  .chatbot-card__desc {
    font-size: 0.78rem;
  }
}

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem 4rem;
  }

  .hero-visual {
    max-width: none;
  }
}

/* Logo slider section */
.logo-slider {
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding: 2.25rem 0 2.75rem;
  border-top: 1px solid rgba(203, 213, 225, 0.45);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(186, 230, 253, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, #eef7fc 0%, #f3f9fd 45%, #eef7fc 100%);
}

.logo-slider__heading {
  margin: 0 0 1.65rem;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #64748b;
}

.logo-slider__viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

.logo-slider__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  padding: 0.35rem 1rem;
  animation: logo-marquee 32s linear infinite;
}

.logo-slider__track:hover {
  animation-play-state: paused;
}

.logo-slider__card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 172px;
  width: 172px;
  height: 96px;
  padding: 0.85rem 1rem;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -4px rgba(0, 0, 0, 0.06);
}

.logo-slider__card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 64px;
  height: auto;
  object-fit: contain;
}

@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% / 3));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-slider__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
  }

  .logo-slider__viewport {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }

  .logo-slider__card[aria-hidden="true"] {
    display: none;
  }
}

/* Integration section */
.integration {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(186, 230, 253, 0.4) 0%, transparent 72%),
    linear-gradient(180deg, #eef7fc 0%, #f6fbff 30%, #fafcff 55%, #ffffff 100%);
}

.integration__header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.integration__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00aeef;
}

.integration__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.2vw, 2.125rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.028em;
  color: #0f172a;
}

.integration__desc {
  margin: 0 auto;
  max-width: 520px;
  font-size: 0.9875rem;
  line-height: 1.65;
  color: #64748b;
}

.integration__diagram-wrap {
  max-width: 1024px;
  margin: 0 auto;
}

.integration__diagram {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.07),
    0 2px 8px rgba(15, 23, 42, 0.04);
}

.integration__footer {
  margin: 1.35rem auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

@media (min-width: 960px) {
  .integration {
    padding: 3.75rem 0 4rem;
  }

  .integration__header {
    margin-bottom: 2.25rem;
  }

  .integration__footer {
    margin-top: 1.5rem;
  }
}

/* Governance section */
.governance {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 75% 45% at 50% 0%, rgba(186, 230, 253, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 40%, #f3f9fd 100%);
}

.governance__intro {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.governance__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00aeef;
}

.governance__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3.2vw, 2.125rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.028em;
  color: #0f172a;
}

.governance__title .accent {
  color: #00aeef;
}

.governance__text {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.68;
  color: #64748b;
}

.governance__text:last-of-type {
  margin-bottom: 0;
}

.governance__needs {
  text-align: center;
}

.governance__needs-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.5vw, 1.625rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.022em;
  color: #0f172a;
}

.governance__needs-sub {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
}

.governance-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

.governance-card {
  display: block;
  padding: 1.35rem 1.2rem 1.45rem;
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 55%, #ffffff 100%);
  border: 1px solid rgba(186, 230, 253, 0.7);
  border-radius: 16px;
  box-shadow:
    0 6px 24px rgba(0, 174, 239, 0.07),
    0 1px 3px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.governance-card:hover {
  border-color: rgba(0, 174, 239, 0.45);
  box-shadow:
    0 10px 28px rgba(0, 174, 239, 0.12),
    0 2px 6px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

a.governance-card:focus-visible {
  outline: 2px solid #00aeef;
  outline-offset: 3px;
}

.governance-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.85rem;
  background: var(--brand-gradient, linear-gradient(135deg, #0077b6 0%, #00aeef 55%, #3db5e8 100%));
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.28);
}

.governance-card__icon svg {
  width: 22px;
  height: 22px;
}

.governance-card__title {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.governance-card__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #64748b;
}

@media (min-width: 640px) {
  .governance-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .governance {
    padding: 4rem 0 4.5rem;
  }

  .governance__intro {
    margin-bottom: 4rem;
  }

  .governance__needs-sub {
    margin-bottom: 2.25rem;
  }

  .governance-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* Microsoft Teams app section */
.teams-app {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 6rem;
  background:
    radial-gradient(ellipse 70% 55% at 25% 45%, rgba(186, 230, 253, 0.42) 0%, transparent 68%),
    radial-gradient(ellipse 55% 45% at 85% 55%, rgba(186, 230, 253, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, #f3f9fd 0%, #f8fcff 50%, #ffffff 100%);
}

.teams-app__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.teams-app__visual {
  order: 2;
  width: 100%;
}

.teams-app__mockup-wrap {
  position: relative;
}

.teams-app__mockup-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.35) 0%, rgba(14, 165, 233, 0.25) 100%);
  opacity: 0.22;
  filter: blur(48px);
  pointer-events: none;
}

.teams-app__mockup {
  position: relative;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 255, 0.98) 100%);
  border: 1px solid rgba(203, 213, 225, 0.65);
  border-radius: 16px;
  box-shadow:
    0 16px 48px rgba(15, 23, 42, 0.08),
    0 4px 16px rgba(0, 174, 239, 0.06);
}

.teams-app__mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.55);
}

.teams-app__mockup-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

.teams-app__mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.teams-app__mockup-dot--red {
  background: rgba(239, 68, 68, 0.72);
}

.teams-app__mockup-dot--yellow {
  background: rgba(251, 191, 36, 0.85);
}

.teams-app__mockup-dot--green {
  background: rgba(34, 197, 94, 0.78);
}

.teams-app__mockup-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #64748b;
}

.teams-app__mockup-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.teams-app__mockup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.teams-app__mockup-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(203, 213, 225, 0.55);
}

.teams-app__mockup-img--wide {
  grid-column: 1 / -1;
}

.teams-app__content {
  order: 1;
  max-width: 34rem;
  margin: 0 auto;
}

.teams-app__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00aeef;
}

.teams-app__title {
  margin: 0 0 1rem;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.teams-app__title .accent {
  color: #00aeef;
}

.teams-app__desc {
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

.teams-app__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.teams-app__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #0f172a;
}

.teams-app__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  color: #00aeef;
  background: transparent;
  border-radius: 50%;
  box-shadow: none;
}

.teams-app__check svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

@media (min-width: 960px) {
  .teams-app {
    padding: 6rem 0;
  }

  .teams-app__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
  }

  .teams-app__visual {
    order: 1;
  }

  .teams-app__content {
    order: 2;
    margin: 0;
    max-width: none;
  }

  .teams-app__title {
    font-size: 2.25rem;
  }

  .teams-app__mockup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Core capabilities section */
.capabilities {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3.75rem;
  background:
    radial-gradient(ellipse 75% 55% at 50% 20%, rgba(186, 230, 253, 0.45) 0%, transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 55%, #f0f9ff 100%);
}

.capabilities__header {
  max-width: 640px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.capabilities__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00aeef;
}

.capabilities__title {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.125rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.028em;
  color: #0f172a;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 980px;
  margin: 0 auto;
}

.capability-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(186, 230, 253, 0.75);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 174, 239, 0.05);
}

.capability-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #e0f2fe;
  border-radius: 10px;
  color: var(--brand-dark, #0077b6);
}

.capability-card__icon svg {
  width: 22px;
  height: 22px;
}

.capability-card__label {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.35;
  color: #1e293b;
}

@media (min-width: 640px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .capabilities {
    padding: 4rem 0 4.25rem;
  }

  .capabilities__header {
    margin-bottom: 2.5rem;
  }

  .capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  /* Last row: 2 cards in columns 1 & 2 */
  .capability-card:nth-child(7) {
    grid-column: 1;
  }

  .capability-card:nth-child(8) {
    grid-column: 2;
  }
}

/* Why Whizible section */
.why-whizible {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3.75rem;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(186, 230, 253, 0.35) 0%, transparent 68%),
    linear-gradient(180deg, #f0f9ff 0%, #f8fcff 50%, #ffffff 100%);
}

.why-whizible__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-whizible__content {
  max-width: 420px;
}

.why-whizible__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00aeef;
}

.why-whizible__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.125rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.028em;
  color: #0f172a;
}

.why-whizible__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

.why-whizible__outcomes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.outcome-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.75);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03);
}

.outcome-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--cyan-mid);
}

.outcome-card__icon svg {
  width: 22px;
  height: 22px;
}

.outcome-card__text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1e293b;
}

@media (min-width: 640px) {
  .why-whizible__outcomes {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 960px) {
  .why-whizible {
    padding: 4rem 0 4.25rem;
  }

  .why-whizible__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem 4rem;
  }

  .why-whizible__content {
    max-width: none;
  }
}

/* Customer testimonials */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 3.75rem 0 4rem;
  background: #f8fafc;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.testimonials__header {
  margin: 0 auto 2.25rem;
  max-width: 760px;
  text-align: center;
}

.testimonials__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1e293b;
}

.testimonials__subtitle {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  padding: 1.4rem 1.3rem 1.25rem;
  background: linear-gradient(135deg, #0869c5 0%, #5784b1 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 12px 28px rgba(8, 105, 197, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 4px 10px rgba(15, 23, 42, 0.08),
    0 18px 36px rgba(8, 105, 197, 0.35);
}

.testimonial-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-card__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.testimonial-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
}

.testimonial-card__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-card__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0369a1;
  background: #e0f2fe;
  border-radius: 6px;
}

.testimonial-card__company {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.testimonial-card__category {
  flex-shrink: 0;
  max-width: 46%;
  padding: 0.35rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.25;
  color: #0369a1;
  background: #fff;
  border-radius: 999px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.18rem;
  color: #f5b301;
}

.testimonial-card__stars svg {
  width: 17px;
  height: 17px;
}

.testimonial-card__quote {
  position: relative;
  margin: 0;
  padding: 0.1rem 0 0.1rem 0.95rem;
  border-left: 3px solid rgba(255, 255, 255, 0.85);
}

.testimonial-card__quote::before,
.testimonial-card__quote::after {
  content: none;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: #fff;
}

.testimonial-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.testimonial-card__tags li {
  margin: 0;
  padding: 0.28rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  white-space: nowrap;
}

.testimonial-card__tags li.is-green {
  color: #166534;
  background: #dcfce7;
}

.testimonial-card__tags li.is-blue {
  color: #0369a1;
  background: #e0f2fe;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e2e8f0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.testimonial-card__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-dark, #0077b6);
  box-shadow: none;
}

.testimonial-card__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.testimonial-card__role {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial-card__more {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}

.testimonial-card__more:hover {
  color: #e0f2fe;
  text-decoration: underline;
}

.testimonials__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.testimonials__view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(3, 105, 161, 0.28);
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.testimonials__view-more svg {
  width: 16px;
  height: 16px;
}

.testimonials__view-more:hover {
  filter: brightness(1.06);
  color: #fff;
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .testimonials {
    padding: 4.25rem 0 4.5rem;
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* CTA section */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(186, 230, 253, 0.4) 0%, transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f3f9fd 50%, #eef7fc 100%);
}

.cta-card {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  padding: 2.75rem 1.75rem 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fcff 45%, #ffffff 100%);
  border: 1px solid rgba(203, 213, 225, 0.65);
  border-radius: 20px;
  box-shadow:
    0 10px 48px rgba(0, 174, 239, 0.1),
    0 4px 16px rgba(15, 23, 42, 0.05);
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.cta-card::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -15%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.cta-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.125rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.028em;
  color: #0f172a;
}

.cta-card__title .accent {
  color: #00aeef;
}

.cta-card__desc {
  position: relative;
  z-index: 1;
  margin: 0 auto 1.65rem;
  max-width: 560px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.cta-card__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer — production style */
.whz-footer {
  position: relative;
  z-index: 1;
  background: #1d2327;
  color: #fff;
  margin-top: 0;
  border-top: none;
  padding: 3.5rem 0 0;
}

.whz-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.whz-footer a:hover {
  color: #00aeef;
}

.whz-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.5rem;
  padding-bottom: 2.5rem;
}

.whz-footer__logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 170px;
  filter: brightness(0) invert(1);
}

.whz-footer__desc {
  margin: 1rem 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 280px;
}

.whz-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.whz-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #0077b6;
}

.whz-footer__social a:hover {
  color: #005f92;
  background: #f1f5f9;
}

.whz-footer__social svg {
  width: 16px;
  height: 16px;
}

.whz-footer__title {
  margin: 0 0 0.85rem;
  padding-bottom: 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  display: inline-block;
  width: auto;
  min-width: 7rem;
}

.whz-footer__title--spaced {
  margin-top: 1.5rem;
}

.whz-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.whz-footer__links li {
  margin: 0 0 0.45rem;
}

.whz-footer__links a {
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.whz-footer__contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.whz-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.whz-footer__contact-list svg {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  color: #fff;
}

.whz-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.25rem;
  text-align: center;
}

.whz-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .whz-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .whz-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr 1.15fr;
    gap: 1.75rem;
  }
}

@media (min-width: 960px) {
  .cta-section {
    padding: 4rem 0 2.75rem;
  }

  .cta-card {
    padding: 3rem 2.5rem 2.75rem;
  }
}
