﻿/* Cabledox homepage: marketing bundle (merged from marketing-home.css — single request avoids 404 when marketing-home.css is missing on disk). */

/**
 * Cabledox marketing homepage — layered on top of home.css / Bootstrap.
 */
.marketing-home {
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
}

/* Anchor scroll lands below fixed header */
html:has(body.marketing-home) {
  scroll-padding-top: 6.5rem;
}

/* Solid teal header bar + white nav (marketing home) */
body.marketing-home #header {
  z-index: 1050;
  min-height: 72px;
  background: linear-gradient(90deg, #14b8a6, #0d9488) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.marketing-home #header .navbar a,
body.marketing-home #header .navbar .nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.marketing-home #header .navbar a:hover,
body.marketing-home #header .navbar .nav-link:hover,
body.marketing-home #header .navbar .nav-link.active {
  color: #fff !important;
}

body.marketing-home #header .mobile-nav-toggle {
  color: #fff !important;
}

/* Without Bootstrap, .img-fluid / .container do nothing — logo can render huge and nav stacks. */
body.marketing-home #header #logo {
  flex-shrink: 0;
  max-width: min(52vw, 260px);
}

body.marketing-home #header #logo h1 {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

body.marketing-home #header #logo img,
body.marketing-home #header #logo img.logo {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

body.marketing-home #header .navbar > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.marketing-home #header .navbar > ul > li {
  padding: 0;
}

@media (max-width: 991.98px) {
  body.marketing-home #header .navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  body.marketing-home #header .navbar > ul {
    display: none;
  }

  body.marketing-home #header .mobile-nav-toggle {
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-width: 2.75rem;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    line-height: 1;
    margin: 0;
    padding: 0;
  }

  /* Pairs with public/assets/js/main.js (.navbar-mobile toggle) */
  body.marketing-home #header .navbar.navbar-mobile {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(15, 23, 42, 0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
    justify-content: stretch;
    padding: 0;
    margin: 0;
  }

  body.marketing-home #header .navbar.navbar-mobile > ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    position: absolute;
    top: 5rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-height: min(32rem, calc(100dvh - 6rem));
    overflow-y: auto;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
    padding: 0.35rem 0;
    list-style: none;
    margin: 0;
  }

  body.marketing-home #header .navbar.navbar-mobile > ul > li {
    width: 100%;
  }

  body.marketing-home #header .navbar.navbar-mobile .nav-link {
    display: block;
    padding: 0.85rem 1.25rem;
    color: #0f172a !important;
    border-radius: 0.25rem;
    margin: 0 0.35rem;
  }

  body.marketing-home #header .navbar.navbar-mobile .nav-link:hover,
  body.marketing-home #header .navbar.navbar-mobile .nav-link.active {
    color: #0d9488 !important;
    background: rgba(13, 148, 136, 0.08);
  }

  body.marketing-home #header .navbar.navbar-mobile .mobile-nav-toggle {
    position: fixed;
    top: 0.9rem;
    right: max(0.75rem, env(safe-area-inset-right));
    z-index: 1101;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }
}

@media (min-width: 992px) {
  body.marketing-home #header .mobile-nav-toggle {
    display: none !important;
  }
}

/* Light mint hero: two columns + 2×2 screenshot grid (no full-bleed photo) */
body.marketing-home section#hero.hero-marketing {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(7.5rem, 16vh, 13rem) 0 clamp(3rem, 8vh, 5rem);
  scroll-margin-top: 6rem;
  color: #0f172a;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, #b2dfdb, #80cbc4) !important;
}

body.marketing-home section#hero.hero-marketing > .container {
  width: 100%;
}

body.marketing-home section#hero.hero-marketing::before {
  display: none;
}

body.marketing-home .hero-marketing__container {
  max-width: 1200px;
}

/* Prefer CSS grid so layout holds even if Bootstrap fails to load; override .row flex */
body.marketing-home .hero-marketing__row.row {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-left: 0 !important;
  margin-right: 0 !important;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

@media (min-width: 992px) {
  body.marketing-home .hero-marketing__row.row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 2.5rem 2.75rem;
  }

  /* Bootstrap .col-* sets width:50% for flex rows; this row is CSS grid — reset so grid tracks control column width */
  body.marketing-home .hero-marketing__row.row > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
  }
}

body.marketing-home .hero-marketing__copy {
  text-align: left;
  padding-right: 0.5rem;
}

body.marketing-home .hero-marketing__title {
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  color: #0a0a0a;
}

body.marketing-home section#hero.hero-marketing .hero-lead {
  font-size: 1.1875rem;
  line-height: 1.65;
  margin: 0 0 1.75rem;
  color: #475569;
  font-weight: 400;
  max-width: 36rem;
}

body.marketing-home .hero-marketing__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

body.marketing-home section#hero.hero-marketing .btn-hero-primary,
body.marketing-home #call-to-action .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  background: #0d9488;
  color: #fff !important;
  border: 2px solid #0d9488;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

body.marketing-home section#hero.hero-marketing .btn-hero-primary:hover,
body.marketing-home #call-to-action .btn-hero-primary:hover {
  background: #14b8a6;
  border-color: #14b8a6;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.42);
  transform: translateY(-1px);
}

body.marketing-home section#hero.hero-marketing .btn-hero-outline,
body.marketing-home #call-to-action .btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  color: #0d9488 !important;
  background: transparent;
  border: 2px solid #0d9488;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

body.marketing-home section#hero.hero-marketing .btn-hero-outline:hover,
body.marketing-home #call-to-action .btn-hero-outline:hover {
  background: rgba(13, 148, 136, 0.08);
  color: #0f766e !important;
  transform: translateY(-1px);
}

body.marketing-home #call-to-action .btn-hero-primary,
body.marketing-home #call-to-action .btn-hero-outline {
  width: 100%;
  box-sizing: border-box;
}

body.marketing-home .hero-trust {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
}

/* Early access modal (marketing home) */
.marketing-home .early-access-modal {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.marketing-home .early-access-modal .modal-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.marketing-home .early-access-modal .modal-title {
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 800;
  color: #0a0a0a;
}

.marketing-home .early-access-success__lead {
  font-weight: 700;
  color: #0f172a;
}

.marketing-home .early-access-modal .btn-primary,
.marketing-home .early-access-modal #early-access-submit.btn-primary {
  background: #0d9488;
  border-color: #0d9488;
  font-weight: 700;
}

.marketing-home .early-access-modal .btn-primary:hover {
  background: #0f766e;
  border-color: #0f766e;
}

/* Screenshot block: centred in the hero’s right column */
body.marketing-home .hero-marketing__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

body.marketing-home .hero-marketing__gallery-wrap {
  width: 100%;
  max-width: min(52rem, 100%);
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
}

@media (min-width: 992px) {
  body.marketing-home .hero-marketing__gallery-wrap {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

body.marketing-home .hero-marketing__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  /* Baseline gap below label + Mobile/Desktop tabs (matches Mobile tab) */
  margin-bottom: 0.95rem;
}

/* Desktop tab: stacked windows read “tighter” under the buttons — add air so gap matches Mobile tab visually */
body.marketing-home .hero-marketing__gallery-wrap:has(#hero-gallery-panel-desktop:not([hidden])) .hero-marketing__toggle {
  margin-bottom: 1.35rem;
}

body.marketing-home .hero-marketing__toggle-label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #475569;
  line-height: 1.35;
}

body.marketing-home .hero-marketing__tablist {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  body.marketing-home .hero-marketing__tablist {
    flex-wrap: nowrap;
  }
}

body.marketing-home .hero-marketing__tabpanels {
  position: relative;
}

body.marketing-home .hero-marketing__tabpanel {
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.33, 1, 0.68, 1);
}

body.marketing-home .hero-marketing__tabpanel--leave {
  opacity: 0 !important;
  transform: translateY(0.5rem) scale(0.985);
  pointer-events: none;
}

body.marketing-home .hero-marketing__tabpanel--enter {
  opacity: 0;
  transform: translateY(0.6rem) scale(0.972);
}

body.marketing-home .hero-marketing__tabpanel--enter.hero-marketing__tabpanel--enter-active {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  body.marketing-home .hero-marketing__tabpanel {
    transition: none;
  }
}

body.marketing-home .hero-marketing__tab {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 15rem;
  padding: 0.55rem 0.95rem;
  border: 2px solid #0d9488;
  background: rgba(255, 255, 255, 0.7);
  color: #0d9488;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  font-family: inherit;
  line-height: 1.3;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

body.marketing-home .hero-marketing__tab:hover {
  background: rgba(13, 148, 136, 0.12);
}

body.marketing-home .hero-marketing__tab[aria-selected="true"] {
  background: #0d9488;
  color: #fff;
  border-color: #0d9488;
}

body.marketing-home .hero-marketing__tab:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 2px;
}

body.marketing-home .hero-marketing__gallery--pair {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 1.35rem;
  padding: 0;
  margin: 0;
  min-width: 0;
}

@media (min-width: 992px) {
  body.marketing-home .hero-marketing__gallery--pair {
    gap: 1rem 1.25rem;
  }
}

body.marketing-home .hero-marketing__gallery--pair .hero-marketing__shot--mobile {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Mobile tab: sized between full-width and the previous tighter cap; Desktop tab: larger landscape shots */
#hero-gallery-panel-mobile .hero-marketing__gallery--pair {
  max-width: min(21.5rem, 94%);
  margin-left: auto;
  margin-right: auto;
  gap: 0.8rem 0.95rem;
}

/* Centre galleries within the hero column */
@media (min-width: 768px) {
  #hero-gallery-panel-mobile .hero-marketing__gallery--pair {
    margin-left: auto;
    margin-right: auto;
  }

  #hero-gallery-panel-desktop .hero-marketing__gallery--desktop-overlap {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Desktop tab: staggered overlapping “window” cards (back top-right, front bottom-left) */
body.marketing-home .hero-marketing__gallery--desktop-overlap {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 29rem);
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  padding-bottom: 0.35rem;
}

@media (min-width: 992px) {
  #hero-gallery-panel-desktop .hero-marketing__gallery--desktop-overlap {
    transform: scale(1.08);
    transform-origin: center center;
    margin-bottom: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hero-gallery-panel-desktop .hero-marketing__gallery--desktop-overlap {
    transform: none;
    margin-bottom: 0;
  }

  body.marketing-home .hero-marketing__shot--desktop.hero-marketing__shot--desktop-back,
  body.marketing-home .hero-marketing__shot--desktop.hero-marketing__shot--desktop-front {
    transform: none;
  }

  body.marketing-home .hero-marketing__shot--desktop.hero-marketing__shot--desktop-front {
    margin-top: -1.5rem;
  }
}

@media (max-width: 575.98px) {
  body.marketing-home .hero-marketing__gallery--pair {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  #hero-gallery-panel-mobile .hero-marketing__gallery--pair {
    max-width: min(17.25rem, 90%);
  }
}

body.marketing-home .hero-marketing__shot {
  margin: 0;
  padding: 0;
  min-width: 0;
  border-radius: 0.7rem;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.08),
    0 16px 32px -12px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.marketing-home .hero-marketing__shot--desktop {
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow:
    0 6px 8px -2px rgba(15, 23, 42, 0.12),
    0 22px 44px -16px rgba(15, 23, 42, 0.22);
  border-color: rgba(15, 23, 42, 0.12);
}

body.marketing-home .hero-marketing__desktop-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.45rem 0.7rem;
  background: linear-gradient(180deg, #f8fafc 0%, #e8eef4 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}

body.marketing-home .hero-marketing__desktop-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

body.marketing-home .hero-marketing__desktop-dot--close {
  background: #f87171;
}

body.marketing-home .hero-marketing__desktop-dot--min {
  background: #fbbf24;
}

body.marketing-home .hero-marketing__desktop-dot--max {
  background: #4ade80;
}

body.marketing-home .hero-marketing__desktop-screen {
  background: #fff;
  line-height: 0;
  overflow: hidden;
}

body.marketing-home .hero-marketing__shot--desktop .hero-marketing__desktop-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  vertical-align: middle;
}

/* Layered overlap (must follow .hero-marketing__shot--desktop for cascade) */
body.marketing-home .hero-marketing__shot--desktop.hero-marketing__shot--desktop-back {
  align-self: flex-end;
  width: min(100%, 26rem);
  z-index: 1;
  transform: scale(0.93);
  transform-origin: top right;
  box-shadow:
    0 4px 8px -2px rgba(15, 23, 42, 0.12),
    0 14px 28px -12px rgba(15, 23, 42, 0.2);
}

body.marketing-home .hero-marketing__shot--desktop.hero-marketing__shot--desktop-front {
  align-self: flex-start;
  width: min(100%, 27.5rem);
  margin-top: clamp(-6.25rem, -15vw, -4.5rem);
  z-index: 2;
  position: relative;
  box-shadow:
    0 10px 20px -6px rgba(15, 23, 42, 0.18),
    0 26px 52px -18px rgba(15, 23, 42, 0.28);
}

@media (max-width: 575.98px) {
  body.marketing-home .hero-marketing__shot--desktop.hero-marketing__shot--desktop-front {
    margin-top: clamp(-4.25rem, -22vw, -3rem);
  }
}

body.marketing-home .hero-marketing__shot--mobile {
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
}

body.marketing-home .hero-marketing__shot--mobile img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.7rem;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  html:has(body.marketing-home) {
    scroll-padding-top: 5.5rem;
  }

  body.marketing-home section#hero.hero-marketing {
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(6.75rem, 18vh, 11rem) 0 clamp(2.5rem, 7vh, 4rem);
    scroll-margin-top: 5.5rem;
  }

  body.marketing-home .hero-marketing__copy {
    padding-right: 0;
    text-align: center;
  }

  body.marketing-home .hero-marketing__actions {
    justify-content: center;
  }

  body.marketing-home section#hero.hero-marketing .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  body.marketing-home .hero-trust {
    text-align: center;
  }

  body.marketing-home .hero-marketing__gallery-wrap {
    max-width: 100%;
  }
}

.marketing-home .btn-get-started,
.marketing-home .btn-hero-secondary,
.marketing-home .btn-hero-tertiary {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: 0.35rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.marketing-home .btn-get-started:hover,
.marketing-home .btn-hero-secondary:hover,
.marketing-home .btn-hero-tertiary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.marketing-home .btn-hero-secondary {
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.marketing-home .btn-hero-tertiary {
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.marketing-home .trust-strip {
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.marketing-home .trust-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem 1.5rem;
}

@media (min-width: 768px) {
  .marketing-home .trust-strip__list {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.marketing-home .trust-strip__item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.45;
  margin: 0;
}

.marketing-home .trust-strip__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  opacity: 0.9;
  margin-top: 0.1rem;
}

/* CTA band: dark bar + solid teal primary, quiet secondary */
.marketing-home #call-to-action {
  padding: clamp(3.75rem, 7vw, 5.5rem) 0 clamp(2.5rem, 4vw, 3.25rem);
  background: linear-gradient(135deg, rgb(6, 42, 48) 0%, rgb(10, 64, 72) 100%);
  color: #fff;
}

.marketing-home #call-to-action .cta-title {
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.65rem;
}

.marketing-home #call-to-action .cta-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.marketing-home #call-to-action .cta-trust {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.marketing-home #about .about__header .section-title {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.marketing-home #about .about__header .section-description {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: #4a5568;
}

.marketing-home #features .features__header .section-title {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.marketing-home #features .features__header .section-description {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: #3f4d5c;
}

.marketing-home #features .features-grid {
  margin-top: 0.25rem;
}

.marketing-home #features .features-card {
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #f8f9fb;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 14px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.marketing-home #features .features-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.07),
    0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.09);
}

@media (prefers-reduced-motion: reduce) {
  .marketing-home #features .features-card:hover {
    transform: none;
  }
}

.marketing-home #features .features-card .icon {
  margin-bottom: 0.35rem;
  line-height: 1;
}

.marketing-home #features .features-card .icon i {
  color: #0d9488;
  transition: color 0.2s ease, filter 0.2s ease;
}

.marketing-home #features .features-card:hover .icon i {
  color: #14b8a6;
  filter: brightness(1.08);
}

/* About: copy leads (left); tighter measure and paragraph rhythm */
.marketing-home #about .content {
  max-width: 35rem;
}

.marketing-home #about .content p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: #334155;
}

.marketing-home #about .content p:last-child {
  margin-bottom: 0;
}

/* Pain block: new “beat” below intro — spaced, wider, tinted */
.marketing-home #about .about__pain-row {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  padding-top: clamp(1.5rem, 3.5vw, 2.25rem);
}

.marketing-home #about .about__pain-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #475569;
}

.marketing-home #about .about__body-footer {
  text-align: left;
  padding: clamp(1.35rem, 3.5vw, 2.1rem) clamp(1.25rem, 3vw, 1.85rem);
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.07) 0%, rgba(13, 148, 136, 0.03) 100%);
  border: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 30px rgba(0, 0, 0, 0.05),
    0 10px 28px rgba(13, 148, 136, 0.09);
}

.marketing-home #about .about__lead-question {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  line-height: 1.35;
  margin-bottom: 1.05rem;
}

.marketing-home #about .about__pain-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.72;
}

.marketing-home #about .about__pain-list li {
  margin-bottom: 8px;
}

.marketing-home #about .about__pain-list li:last-child {
  margin-bottom: 0;
}

.marketing-home #about .about__closing {
  margin: clamp(0.75rem, 2vw, 1rem) 0 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: #0d9488;
}

.marketing-home #about .about__solution {
  margin-top: clamp(1.25rem, 3vw, 1.65rem);
  padding-top: clamp(1rem, 2.5vw, 1.35rem);
  border-top: 1px solid rgba(13, 148, 136, 0.14);
}

.marketing-home #about .about__solution-lead {
  margin: 0 0 0.85rem;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: #0f172a;
}

.marketing-home #about .about__solution-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.72;
}

.marketing-home #about .about__solution-list li {
  margin-bottom: 8px;
}

.marketing-home #about .about__solution-list li:last-child {
  margin-bottom: 0;
}

/* About: image column ~42% at lg+; tighter crop without re-exporting asset */
.marketing-home #about .about-img {
  display: flex;
  justify-content: flex-end;
}

.marketing-home #about .about-img__frame {
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  /* Pill / stadium shape (capsule ends) */
  border-radius: 9999px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  isolation: isolate;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.12);
}

.marketing-home #about .about-img__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .marketing-home #about .about-img {
    justify-content: center;
  }

  .marketing-home #about .about-img__frame {
    max-width: min(22rem, 100%);
    margin-left: 0;
  }
}

.marketing-home #features .box .title {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-top: 0.2rem;
  margin-bottom: 0.45rem;
}

.marketing-home #features .box .description {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9375rem;
  line-height: 1.62;
  font-weight: 400;
  color: #363636;
  margin-bottom: 0.45rem;
}

.marketing-home #features .box .description:last-child {
  margin-bottom: 0;
}

.marketing-home #contact .contact__layout {
  padding-top: 0.25rem;
}

.marketing-home #contact .contact__value {
  padding-right: clamp(0.5rem, 3vw, 2rem);
}

.marketing-home #contact .contact__title {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-bottom: 0;
  text-align: left;
}

.marketing-home #contact .contact__divider {
  margin-left: 0;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.marketing-home #contact .contact__lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #3a3f46;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.marketing-home #contact .contact__demo-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.marketing-home #contact .contact__demo-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: #2d3339;
  font-weight: 500;
}

.marketing-home #contact .contact__demo-points li:last-child {
  margin-bottom: 0;
}

.marketing-home #contact .contact__demo-points-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.35rem;
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
  font-size: 1rem;
}

.marketing-home #contact .contact__meta {
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: #4a5568;
}

.marketing-home #contact .contact__meta-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.marketing-home #contact .contact__meta-line a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.marketing-home #contact .contact__social {
  margin-top: 0.25rem;
}

.marketing-home #contact .contact__form-column {
  padding-left: clamp(0.5rem, 2vw, 1.25rem);
}

@media (max-width: 991.98px) {
  .marketing-home #contact .contact__form-column {
    padding-left: 0;
    margin-top: 0.5rem;
  }

  .marketing-home #contact .contact__value {
    padding-right: 0;
  }
}

.marketing-home #contact .contact__form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1.35rem 1.65rem;
}

.marketing-home #contact .contact__form-heading {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 0.35rem;
}

.marketing-home #contact .contact__form-trust {
  font-size: 0.9rem;
  color: #5c6370;
  margin-bottom: 1.25rem;
}

.marketing-home #call-to-action .cta-text {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .marketing-home #call-to-action .cta-text {
    margin-left: 0;
  }
}

.marketing-home .section-description {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* Extra breathing room between About Cabledox and Product features */
body.marketing-home #about {
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

body.marketing-home #features {
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
}

.marketing-home .legal-page {
  padding-top: 6.5rem;
  padding-bottom: 3rem;
  min-height: 50vh;
}

.marketing-home .legal-page__inner {
  max-width: 42rem;
}

.marketing-home .legal-page__title {
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.marketing-home .legal-page__meta {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.marketing-home .legal-page__body p {
  line-height: 1.65;
  margin-bottom: 1rem;
}

.marketing-home .legal-page__back {
  margin-top: 2rem;
  margin-bottom: 0;
}

/*
 * Product features: ensure Montserrat + weights apply even if another vendor
 * stylesheet loads later or uses high-specificity rules.
 */
body.marketing-home #features .features__header .section-title {
  font-family: Montserrat, system-ui, sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #0a0a0a !important;
}

body.marketing-home #about .about__header .section-title {
  font-family: Montserrat, system-ui, sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #0a0a0a !important;
}

body.marketing-home #features .box .title {
  font-family: Montserrat, system-ui, sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #0a0a0a !important;
}

