/* ================================================================
   CAZANA — Main Stylesheet
   Brand: Purple #534898, Teal #5dc0c9, Dark Navy #0f001b
   Font: Greycliff CF (commercial via Adobe Typekit)
   ================================================================ */

@import url('https://use.typekit.net/kql5ytm.css');

:root {
  --purple:       #534898;
  --purple-dark:  #3f3672;
  --purple-light: #6f63b3;
  --blue:         #5dc0c9;
  --blue-light:   #7dd1d8;
  --dark:         #0f001b;
  --grey-dark:    #575756;
  --grey-mid:     #8a8a8a;
  --grey-light:   #ededed;
  --light-bg:     #f8f7fa;
  --white:        #ffffff;
  --black:        #0f001b;
  --text:         #0f001b;
  --text-light:   #555;
  --font-sans:    'greycliff-cf', 'Helvetica Neue', Arial, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--blue); }

img { max-width: 100%; height: auto; display: block; }

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 1rem; top: 1rem; width: auto; height: auto; padding: 0.5rem 1rem;
  background: var(--purple); color: white; z-index: 9999;
}

/* ================================================================
   NAVIGATION — Glass Header (PIL-style)
   ================================================================ */
.caz-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100000;
  height: 64px;
  background: rgba(83, 72, 152, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}

.caz-nav--scrolled {
  background: rgba(63, 54, 114, 0.85);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.caz-nav__left {
  display: flex; align-items: center; flex-shrink: 0;
}
.caz-nav__left a {
  text-decoration: none; display: flex; align-items: center;
}
.caz-nav__logo {
  height: 26px; width: auto; display: block;
}

.caz-nav__centre {
  flex: 1; display: flex; justify-content: flex-start; padding-left: 2rem;
}
.caz-nav__list {
  display: flex; gap: 0; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.caz-nav__item { position: relative; }

.caz-nav__link {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: none; border: none; cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap; text-decoration: none;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}
.caz-nav__link:hover,
.caz-nav__link[aria-expanded="true"] {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
}

/* Dropdown chevron */
.caz-nav__chevron { transition: transform 0.2s ease; }
.caz-nav__link[aria-expanded="true"] .caz-nav__chevron { transform: rotate(180deg); }

/* Dropdown menu */
.caz-nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(63, 54, 114, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100; padding: 0.4rem 0;
  list-style: none; margin: 0;
  display: flex;
}
.caz-nav__dropdown--single {
  flex-direction: column;
  min-width: 220px;
}
.caz-nav__dropdown--multi {
  min-width: 380px;
}
.caz-nav__dropdown-col {
  flex: 1; min-width: 0; padding: 0; list-style: none; margin: 0;
}
.caz-nav__dropdown-col + .caz-nav__dropdown-col {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.caz-nav__item--dropdown:hover .caz-nav__dropdown,
.caz-nav__link--parent[aria-expanded="true"] + .caz-nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.caz-nav__dropdown a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none; font-family: var(--font-sans);
}
.caz-nav__dropdown a:hover {
  background: rgba(255,255,255,0.1); color: #ffffff;
}
.caz-nav__dropdown-label {
  display: block; padding: 0.75rem 1.2rem 0.3rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-light); pointer-events: none;
}

.caz-nav__right {
  display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0;
}
.caz-nav__companion {
  height: 24px; width: auto; display: block;
}
.caz-nav__companion-link {
  display: flex; align-items: center; opacity: 0.9; transition: opacity 0.2s ease; cursor: pointer;
}
.caz-nav__companion-link:hover { opacity: 1; }
/* On small devices, swap the Companion wordmark for the compact icon */
@media (max-width: 600px) {
  .caz-nav__companion { display: none; }
  .caz-nav__companion-link {
    width: 30px; height: 30px;
    background: url('../assets/images/icons/cazana-companion-icon.svg') center / contain no-repeat;
  }
}
.caz-nav__cta {
  display: inline-block; padding: 0.45rem 1.1rem;
  background: var(--blue);
  border: none; border-radius: 20px;
  font-size: 0.85rem; font-weight: 700;
  color: #ffffff; text-decoration: none;
  transition: background 0.2s ease;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.caz-nav__cta:hover {
  background: #4aa8b0;
  color: #ffffff;
}

/* Mobile toggle */
.caz-nav__mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.caz-nav__burger {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.9); border-radius: 2px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background-color: var(--purple);
  background-image: url('../assets/images/backgrounds/vehicle-tech.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(83,72,152,0.78) 0%, rgba(63,54,114,0.88) 50%, rgba(63,54,114,1) 75%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero__strapline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__subhead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ================================================================
   GLASS BUTTON (btn-ghost)
   ================================================================ */
.btn-ghost {
  display: inline-block;
  background: rgba(93,192,201,0.12);
  color: #ffffff;
  border: 1.5px solid rgba(93,192,201,0.35);
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-sans);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(93,192,201,0.3);
  border-color: rgba(93,192,201,0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(93,192,201,0.25);
  color: #ffffff;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--dark);
  padding: 2.5rem 2rem;
}
.stats-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  text-align: center;
}
.stat__number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about {
  padding: 5rem 2rem;
  background: var(--white);
}
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.about__headline {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 2rem;
}
.about__text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
}
.about__image {
  display: block;
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
}

/* ================================================================
   PRODUCTS SECTION
   ================================================================ */
.products {
  padding: 5rem 2rem;
  background: var(--light-bg);
}
.products__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.products__headline {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  margin-bottom: 1rem;
}
.products__subhead {
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(83,72,152,0.1);
}
.product-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #5dc0c9;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.product-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.product-card__tagline {
  font-size: 0.85rem;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-card__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.product-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.product-card__link:hover {
  color: var(--blue);
  border-color: var(--purple);
}

/* ================================================================
   CAZANA500 SECTION
   ================================================================ */
.cazana500 {
  padding: 5rem 2rem;
  background-color: var(--purple);
  background-image:
    linear-gradient(to bottom,
      rgba(83,72,152,0.78) 0,
      rgba(83,72,152,0.90) 18vw,
      var(--purple) 30vw),
    url('../assets/images/backgrounds/cazana500-background.jpg');
  background-repeat: no-repeat, no-repeat;
  background-position: top center, top center;
  background-size: 100% 100%, 100% auto;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cazana500__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cazana500__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cazana500__icon {
  height: 90px;
  width: auto;
}
.cazana500__imda-logo {
  height: 64px;
  width: auto;
}
.cazana500__headline {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.cazana500__subhead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.cazana500__image {
  display: block;
  width: 100%;
  max-width: 788px;
  height: auto;
  margin: 0 auto 3.5rem;
  border-radius: 16px;
}
.cazana500__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  text-align: left;
}
.cazana500__feature {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: border-color 0.3s ease;
}
.cazana500__feature:hover {
  border-color: rgba(125,209,216,0.55);
  animation: cazana500-pulse 1.4s ease-in-out infinite;
}
@keyframes cazana500-pulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(125,209,216,0.45); }
  50%  { transform: scale(1.035); box-shadow: 0 0 0 12px rgba(125,209,216,0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(125,209,216,0); }
}
.cazana500__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.cazana500__feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue-light);
}
.cazana500__feature-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.cazana500__feature-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
@media (max-width: 900px) {
  .cazana500__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cazana500__features { grid-template-columns: 1fr; }
}
.cazana500__members-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
}
.cazana500__cta {
  margin-top: 3.5rem;
  text-align: center;
}
.cazana500__more {
  border-radius: 999px;
}
.cazana500__carousel {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.cazana500__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: cazana500-scroll 35s linear infinite;
}
.cazana500__carousel:hover .cazana500__track {
  animation-play-state: paused;
}
.cazana500__logo {
  flex: 0 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cazana500__logo img {
  max-height: 70px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}
@keyframes cazana500-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cazana500__placeholder {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-style: italic;
}

/* ================================================================
   SOLUTIONS SECTION
   ================================================================ */
.solutions {
  padding: 5rem 2rem;
  background: var(--white);
}
.solutions__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.solutions__headline {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  margin-bottom: 1rem;
}
.solutions__subhead {
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.solution-tile {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  display: block;
}
.solution-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(83,72,152,0.1);
  border-color: var(--purple);
}
.solution-tile__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.solution-tile__icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.solution-tile__icon-img--lg {
  width: 35px;
  height: 35px;
}
.solution-tile__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.solution-tile__desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================================================================
   CUSTOMERS / LOGOS
   ================================================================ */
.customers {
  padding: 4rem 2rem;
  background: var(--light-bg);
  text-align: center;
}
.customers__headline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.customers__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.customers__logo {
  height: 32px;
  width: auto;
  transition: opacity 0.2s;
}
.customers__logo:hover {
  opacity: 0.8;
}

/* ================================================================
   PARTNERS / DATA SOURCES
   ================================================================ */
.partners {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}
.partners__headline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.partners__logo {
  height: 28px;
  width: auto;
  transition: opacity 0.2s;
}
.partners__logo:hover {
  opacity: 0.8;
}

/* ================================================================
   SHARED LOGO CAROUSEL (customers / partners)
   ================================================================ */
.logo-carousel {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-carousel__track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: logo-carousel-scroll 40s linear infinite;
}
.logo-carousel:hover .logo-carousel__track {
  animation-play-state: paused;
}
.logo-carousel__track img {
  flex: 0 0 auto;
}
@keyframes logo-carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-panel {
  position: relative;
  padding: 5rem 2rem;
  background-color: var(--purple);
  background-image: url('../assets/images/backgrounds/meetng space.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(83,72,152,0.75);
  z-index: 1;
}

.cta-panel__headline {
  position: relative;
  z-index: 2;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-panel__text {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ================================================================
   SCHEDULE CALL MODAL
   ================================================================ */
.sc-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(83,72,152,0.55);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.sc-modal-bg.active { display: flex; }
.sc-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(83,72,152,0.25);
}
.sc-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.sc-modal__close:hover { color: var(--purple); }
.sc-modal h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  text-align: center;
  margin: 0 0 0.5rem;
}
.sc-modal p {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 1.5rem;
}
.sc-form input,
.sc-form textarea {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
  color: #333;
}
.sc-form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.sc-form input:focus,
.sc-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(93,192,201,0.15);
}
.sc-form__human {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #575756;
  margin-bottom: 1rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f9f9f9;
}
.sc-form__human input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--purple);
}
.sc-form__submit {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.sc-form__submit:hover { background: var(--blue); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--purple-dark);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer__logo {
  height: 28px;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1);
}
.footer__strapline {
  font-size: 0.85rem;
  color: var(--blue-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer__link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.footer__link:hover { color: var(--white); }
.footer__legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer__legal-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.footer__legal-link:hover { color: var(--white); }

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ================================================================
   SHORT HERO (inner pages)
   ================================================================ */
.hero--short {
  min-height: 340px;
  background-image: url('../assets/images/backgrounds/headlights.jpg');
}
.hero--companion {
  background-image: url('../assets/images/backgrounds/companion-backgrounds.jpg');
}
.hero--dealers {
  background-image: url('../assets/images/backgrounds/car-dealers-background.jpg');
}
.hero--insurance {
  background-image: url('../assets/images/backgrounds/vehicle-insurance-background.jpg');
}
.hero--multi {
  background-image: url('../assets/images/backgrounds/multi-background-image.jpg');
}
.hero--api {
  background-image: url('../assets/images/backgrounds/api-data-ingest-background.jpg');
}
.hero--manufacturers {
  background-image: url('../assets/images/backgrounds/vehicle-manufacturing-background.jpg');
}
.hero--finance {
  background-image: url('../assets/images/backgrounds/vehicle-finance-background.jpg');
}
.hero--leasing {
  background-image: url('../assets/images/backgrounds/vehicle-leasing-background.jpg');
}
.hero--news {
  background-image: url('../assets/images/backgrounds/news-background.jpg');
}
.hero--news::before {
  background: rgba(83,72,152,0.8);
}

/* ================================================================
   ABOUT CONTENT
   ================================================================ */
.about-content {
  background: var(--white);
  padding: 5rem 2rem;
}
.about-content__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.about-content__block h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.about-content__block p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-content__image {
  display: block;
  margin: 2rem auto 0;
  width: 90%;
  max-width: 955px;
  border-radius: 12px;
}
.about-content__testimonial {
  max-width: 760px;
  margin: 5rem auto 0;      /* breathing space between the image and the quote */
  text-align: center;
}
.about-content__testimonial-logo {
  display: block;
  height: 44px;             /* partner logo */
  width: auto;
  margin: 0 auto 1.75rem;
  object-fit: contain;
}
.about-content__testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.about-content__testimonial-credit {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-light);
}
.about-content__testimonial-name {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 800;
  color: var(--purple);
}

/* ================================================================
   TEAM
   ================================================================ */
.team {
  background: var(--blue);
  padding: 5rem 2rem;
}
.team__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}
.team__grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 140px;
  cursor: pointer;
}
.team__avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.55);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team__avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.team__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.team__name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  margin-top: 0.25rem;
}
.team__role {
  color: rgba(255,255,255,0.72);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.3;
}

/* ================================================================
   NEWS
   ================================================================ */
.news {
  background: linear-gradient(to bottom, #a3dde6 0px, #f3fafc 300px);
  padding: 5rem 2rem;
}
.news__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.news__card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(83,72,152,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(83,72,152,0.14);
}
.news__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.news__thumb--placeholder {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
}
.news__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.news__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.news__summary {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.news__meta {
  display: block;
  font-size: 0.78rem;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}
.news__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news__link:hover { color: var(--purple); }
.news__link::after {
  content: '\203A';
  font-size: 1.8em;
  line-height: 1;
}
.news__see-all-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.news__see-all {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: rgba(83,72,152,0.1);
  border: 1.5px solid rgba(83,72,152,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.news__see-all:hover {
  background: rgba(93,192,201,0.15);
  border-color: rgba(93,192,201,0.4);
  color: var(--purple);
}

/* ================================================================
   PRODUCT INTRO
   ================================================================ */
.product-intro {
  background: var(--white);
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
}
.product-intro__inner {
  max-width: 750px;
  margin: 0 auto;
}
.product-intro__inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.product-intro__inner p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}
.product-intro__image {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
}

/* ================================================================
   FEATURES GRID
   ================================================================ */
.features {
  background: var(--light-bg);
  padding: 5rem 2rem;
}
.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(83,72,152,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(83,72,152,0.12);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card__icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
.feature-card__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 0.75rem;
}
.feature-card__desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

/* ================================================================
   AUDIENCES (Who it serves)
   ================================================================ */
.audiences {
  background: var(--white);
  padding: 5rem 2rem;
}
.audiences__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.audiences__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.audiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.audience-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--grey-light);
}
.audience-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 0.75rem;
}
.audience-card__desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

/* ================================================================
   BLOG LISTING
   ================================================================ */
.blog-listing {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: #ffffff;
  border: 1px solid rgba(83,72,152,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(83,72,152,0.12);
}
.blog-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__date {
  font-size: 0.75rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
}
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: #555;
  margin: 0 0 1.25rem;
  line-height: 1.6;
  flex: 1;
}
.blog-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.03em;
}

/* ================================================================
   ARTICLE (single blog post)
   ================================================================ */
.article {
  background: var(--white);
  padding: 3rem 2rem 5rem;
}
.article__inner {
  max-width: 760px;
  margin: 0 auto;
}
.article__meta {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 2rem;
}
.article__hero-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}
.article h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  margin: 2rem 0 0.75rem;
}
.article p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.article ul {
  margin: 0 0 1.5rem 1.5rem;
  color: #444;
  line-height: 1.8;
}
.article li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.article blockquote {
  border-left: 4px solid var(--blue);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: var(--light-bg);
  border-radius: 0 8px 8px 0;
}
.article blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--purple);
  margin-bottom: 0.5rem;
}
.article blockquote cite {
  font-size: 0.85rem;
  color: var(--grey-mid);
  font-style: normal;
  font-weight: 600;
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}
.article th,
.article td {
  border: 1px solid var(--grey-light, #ddd);
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.article thead th {
  background: var(--light-bg);
  color: var(--purple);
  font-weight: 700;
}
.article__back {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
}
.article__back:hover {
  color: var(--purple);
}

/* ================================================================
   BIO MODALS
   ================================================================ */
.bio-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(83,72,152,0.55);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.bio-modal-bg.active { display: flex; }
.bio-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(83,72,152,0.25);
}
.bio-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.bio-modal__close:hover { color: var(--purple); }
.bio-modal__name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 0.25rem;
}
.bio-modal__role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.bio-modal__text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.bio-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.bio-modal__email {
  font-size: 0.85rem;
  color: var(--purple);
  font-weight: 600;
}
.bio-modal__email:hover { color: var(--blue); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .caz-nav__centre { display: none; }
  .caz-nav__mobile-toggle { display: flex; }
  .caz-nav__right .caz-nav__cta { display: none; }

  /* Disable desktop hover-to-open on small screens */
  .caz-nav__item--dropdown:hover .caz-nav__dropdown {
    opacity: 0; visibility: hidden;
  }

  /* Open state: slide-down panel */
  .caz-nav.caz-nav--open .caz-nav__centre {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--purple-dark);
    padding: 1.25rem 2rem 1.75rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .caz-nav.caz-nav--open .caz-nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .caz-nav.caz-nav--open .caz-nav__item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
  }
  .caz-nav.caz-nav--open .caz-nav__link,
  .caz-nav.caz-nav--open .caz-nav__link--parent {
    padding: 0.85rem 0;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .caz-nav.caz-nav--open .caz-nav__dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border-radius: 0;
    border: none;
    padding: 0;
    min-width: 0;
    backdrop-filter: none;
    flex-direction: column;
    transition: opacity 0.2s ease, max-height 0.3s ease, visibility 0.2s ease;
  }
  .caz-nav.caz-nav--open .caz-nav__link--parent[aria-expanded="true"] + .caz-nav__dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 800px;
    padding: 0.4rem 0;
  }
  .caz-nav.caz-nav--open .caz-nav__dropdown a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar__inner {
    flex-direction: column;
    gap: 2rem;
  }
  .about-content__inner {
    grid-template-columns: 1fr;
  }
  .about-content__testimonial {
    margin-top: 3.5rem;
  }
  .about-content__testimonial-quote {
    font-size: 1.1rem;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .audiences__grid {
    grid-template-columns: 1fr;
  }
  .news__grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   COMPANION LOGIN MODAL
   ================================================================ */
.cm-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100001;
  background: rgba(83, 72, 152, 0.55);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.cm-modal-bg.active { display: flex; }
.cm-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(83, 72, 152, 0.25);
  text-align: center;
}
.cm-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.cm-modal__close:hover { color: var(--purple); }
.cm-modal__logo {
  display: block;
  margin: 0 auto 1.25rem;
  height: 28px;
  width: auto;
}
.cm-modal h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 0.25rem;
}
.cm-modal p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.cm-modal input {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  box-sizing: border-box;
}
.cm-modal input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(93, 192, 201, 0.15);
}
.cm-modal__submit {
  display: inline-block;
  padding: 0.65rem 2.5rem;
  margin-top: 0.5rem;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cm-modal__submit:hover { background: var(--purple); }
.cm-modal .cm-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ================================================================
   PRODUCT VIDEO SECTION
   ================================================================ */
.product-video {
  background: var(--light-bg);
  padding: 5rem 2rem;
  text-align: center;
}
.product-video__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 2rem;
}
.product-video__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.product-video__watch,
.product-video__cta {
  display: inline-block;
  width: 280px;
  max-width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0;
  text-align: center;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}
.product-video__watch {
  background: var(--purple);
  color: #fff;
  font-family: inherit;
}
.product-video__watch:hover { background: var(--purple-dark); }
.product-video__cta {
  background: var(--blue);
  color: #fff;
}
.product-video__cta:hover { background: var(--purple); }

/* Product video modal */
.product-vid-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 0, 27, 0.9);
  z-index: 100001;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.product-vid-modal-bg.active { display: flex; }
.product-vid-modal {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
}
.product-vid-modal video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  display: block;
  background: #000;
  object-fit: contain;
}
.product-vid-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.product-vid-modal__close:hover { color: var(--blue); }
