/* Connect-IX — DDoS page styles
   Pure HTML/CSS/JS version. Values taken directly from the original Figma design.
   Desktop design is preserved 1:1; responsive rules adapt it to tablet & mobile.
   The Montserrat font is loaded via <link> in index.php (non-render-blocking). */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
}

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

p {
  margin: 0;
}

/* ── VARIABLES ─────────────────────────────────────────────── */
.cx-page {
  --bg:          #fafdfe;
  --text:        #110722;
  --red:         #f34d55;
  --shadow-sm:   0px 1px 7px 0px rgba(17, 7, 34, 0.06);
  --shadow-xs:   0px 1px 3.5px rgba(17, 7, 34, 0.06);
  --text-shadow: 0px 1px 7px rgba(17, 7, 34, 0.06);

  background: var(--bg);
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  min-height: 100vh;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.cx-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 40px;
  box-shadow: var(--shadow-xs);
}

.cx-nav-logo-link {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.cx-nav-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Wrapper holding the links (left) and the phone (right) */
.cx-nav-collapse {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.cx-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.cx-nav-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

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

/* Active link: same size as the others, distinguished by weight + colour */
.cx-nav-link--active {
  font-weight: 800;
  color: var(--red);
  position: relative;
}

.cx-nav-link--active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background: var(--red);
  border-radius: 99px;
}

/* Right side: phone + client-area pill */
.cx-nav-end {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.cx-nav-phone {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

a.cx-nav-phone:hover {
  color: var(--red);
}

.cx-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 99px;
  background: var(--red);
  color: #fafdfe;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cx-nav-cta:hover {
  background: #d93940;
  transform: translateY(-1px);
}

/* ── NAV TOGGLE (hamburger) — hidden on desktop ─────────────── */
.cx-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.cx-nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.cx-nav-toggle[aria-expanded='true'] .cx-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cx-nav-toggle[aria-expanded='true'] .cx-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.cx-nav-toggle[aria-expanded='true'] .cx-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ───────────────────────────────────────────────────── */
.cx-hero {
  padding: 80px 100.9px;
  display: flex;
  flex-direction: column;
  gap: 50.158px;
  align-items: flex-start;
}

.cx-hero-title {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.28px;
  line-height: 1.5;
  text-shadow: var(--text-shadow);
}

.cx-accent {
  color: var(--red);
}

.cx-hero-subtitle {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  text-shadow: var(--text-shadow);
}

.cx-hero-body {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.81;
  max-width: 630px;
  text-shadow: var(--text-shadow);
}

.cx-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 23.5px;
  background: var(--red);
  color: #fafdfe;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.5;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cx-btn-contact:hover {
  background: #d93940;
}

.cx-btn-contact:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── SHARED SECTION ─────────────────────────────────────────── */
.cx-section {
  padding: 80px 100.9px;
  display: flex;
  flex-direction: column;
  gap: 81.159px;
  align-items: flex-start;
  overflow: hidden;
}

.cx-section--problem {
  background: rgba(251, 223, 223, 0.11);
  box-shadow: var(--shadow-sm);
}

.cx-section-header {
  display: flex;
  flex-direction: column;
  gap: 40.579px;
  align-items: flex-start;
  max-width: 472px;
}

.cx-section-label {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  color: var(--red);
  line-height: 1.5;
  text-shadow: var(--text-shadow);
}

.cx-section-subtitle {
  font-size: 24px;
  font-weight: 700;
  opacity: 0.81;
  line-height: 1.5;
  text-shadow: var(--text-shadow);
}

/* ── CARDS GRID ─────────────────────────────────────────────── */
.cx-cards-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* ── PROBLEM CARD ───────────────────────────────────────────── */
.cx-problem-card {
  position: relative;
  background: rgba(251, 223, 223, 0.26);
  border-radius: 17px;
  flex: 1;
  min-width: 0;
}

.cx-problem-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  border: 1px solid rgba(243, 77, 85, 0.1);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

.cx-problem-card-inner {
  display: flex;
  align-items: center;
  gap: 19.42px;
  padding: 25px;
}

/* ── SOLUTION CARD ──────────────────────────────────────────── */
.cx-solution-card {
  position: relative;
  background: #fcfcfc;
  border-radius: 17px;
  flex: 1;
  min-width: 0;
}

.cx-solution-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  border: 1px solid rgba(243, 77, 85, 0.1);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

.cx-solution-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 19.42px;
  padding: 25px;
}

/* ── CARD SHARED ────────────────────────────────────────────── */
/* Icons are Tabler Icons (MIT, by Paweł Kuna) loaded from assets/icons/
   and tinted uniformly via CSS mask — change --red to recolor them all. */
.cx-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background-color: var(--red);
  -webkit-mask: var(--cx-icon) center / contain no-repeat;
  mask: var(--cx-icon) center / contain no-repeat;
}

.cx-card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.cx-card-title {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.54px;
  line-height: 1.5;
  color: var(--text);
}

.cx-card-desc {
  font-size: 16.18px;
  font-weight: 500;
  letter-spacing: 0.3236px;
  line-height: 1.5;
  color: var(--text);
}

/* Tinted section (alternating background, same look as the problem section) */
.cx-section--alt {
  background: rgba(251, 223, 223, 0.11);
  box-shadow: var(--shadow-sm);
}

.cx-card-desc em {
  font-style: normal;
  font-weight: 700;
  opacity: 0.7;
  white-space: nowrap;
}

/* ── STATS BAND ─────────────────────────────────────────────── */
.cx-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.cx-stat {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.cx-stat-num {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: var(--red);
  text-shadow: var(--text-shadow);
}

.cx-stat-label {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.81;
}

/* ── CTA / CONTACT ──────────────────────────────────────────── */
.cx-cta {
  align-items: center;
  text-align: center;
  gap: 40px;
}

.cx-cta .cx-section-header {
  align-items: center;
  max-width: 760px;
}

.cx-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.cx-cta-phone {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.cx-cta-phone:hover {
  color: var(--red);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */

/* Large desktops → tighten the very wide Figma padding */
@media (max-width: 1400px) {
  .cx-hero,
  .cx-section {
    padding-left: 60px;
    padding-right: 60px;
  }
  .cx-hero-title {
    white-space: normal;
  }
}

/* Cards: 4-up → 2-up */
@media (max-width: 1100px) {
  .cx-cards-grid {
    flex-wrap: wrap;
  }
  .cx-problem-card,
  .cx-solution-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Tablet portrait & phones → collapse the nav into a hamburger menu.
   The desktop nav doesn't fit below ~900px, so we switch patterns here. */
@media (max-width: 900px) {
  .cx-nav-toggle {
    display: flex;
  }

  .cx-nav-collapse {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 24px;
    background: var(--bg);
    box-shadow: var(--shadow-xs);
    border-top: 1px solid rgba(17, 7, 34, 0.06);

    /* hidden state (animated) */
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease,
      padding 0.3s ease, visibility 0s linear 0.3s;
  }

  .cx-nav-collapse.is-open {
    max-height: 80vh;
    padding-top: 24px;
    padding-bottom: 24px;
    overflow: auto;
    visibility: visible;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.25s ease,
      padding 0.3s ease, visibility 0s;
  }

  .cx-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    width: 100%;
  }

  /* Active underline sits closer below the link in the stacked menu */
  .cx-nav-link--active::after {
    bottom: -8px;
    left: 0;
    transform: none;
  }

  .cx-nav-end {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .cx-nav-phone {
    font-size: 16px;
  }
}

/* Phones → single column cards, compact padding */
@media (max-width: 768px) {
  .cx-hero,
  .cx-section {
    padding: 48px 24px;
  }
  .cx-hero,
  .cx-section {
    gap: 40px;
  }
  .cx-section {
    gap: 48px;
  }
  .cx-cards-grid {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .cx-problem-card,
  .cx-solution-card {
    flex: 1 1 auto;
  }
  .cx-section-subtitle {
    font-size: 22px;
  }
  .cx-card-title {
    font-size: 24px;
  }
  .cx-btn-contact {
    width: 100%;
  }
}

/* Stats band: 4-up → 2-up on tablet/phone → 1-up on small phones */
@media (max-width: 900px) {
  .cx-stat {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 520px) {
  .cx-stat {
    flex-basis: 100%;
  }
}

/* Small phones → keep the contact button readable, avoid overflow */
@media (max-width: 380px) {
  .cx-navbar {
    padding: 0 18px;
  }
  .cx-section-label {
    font-size: 27px;
  }
  .cx-card-title {
    font-size: 22px;
  }
}

/* ── PARTNERS ───────────────────────────────────────────────── */
.cx-section-label--underline {
  position: relative;
  padding-bottom: 14px;
}

.cx-section-label--underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  max-width: 80%;
  height: 3px;
  background: var(--red);
  border-radius: 99px;
}

.cx-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.cx-partner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(251, 223, 223, 0.26);
  border: 1px solid rgba(243, 77, 85, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.cx-partner-logo {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.cx-partner-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cx-partner-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cx-partner--more {
  justify-content: flex-start;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease;
}

.cx-partner--more:hover {
  color: var(--red);
}

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.cx-newsletter {
  width: 100%;
  background: #fbe4e5;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cx-newsletter-icon {
  width: 56px;
  height: 56px;
  background-color: var(--red);
  -webkit-mask: var(--cx-icon) center / contain no-repeat;
  mask: var(--cx-icon) center / contain no-repeat;
}

.cx-newsletter-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: var(--text);
}

.cx-newsletter-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 520px;
  opacity: 0.81;
  color: var(--text);
}

.cx-newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 760px;
  margin-top: 8px;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.cx-newsletter-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
}

.cx-newsletter-input::placeholder {
  color: #9a93a3;
}

.cx-newsletter-btn {
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  background: var(--red);
  color: #fafdfe;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 16px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.cx-newsletter-btn:hover {
  background: #d93940;
}

.cx-newsletter-msg {
  min-height: 1em;
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
}

/* ── LOOKING GLASS ──────────────────────────────────────────── */
.cx-lg-panel {
  width: 100%;
  background: #fcfcfc;
  border-radius: 17px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(243, 77, 85, 0.1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cx-lg-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cx-lg-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cx-lg-row--target,
.cx-lg-actions {
  grid-column: 1 / -1;
}

.cx-lg-row label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  opacity: 0.7;
}

.cx-lg-row select,
.cx-lg-row input[type='text'] {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid rgba(17, 7, 34, 0.14);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
}

.cx-lg-row select:focus,
.cx-lg-row input[type='text']:focus {
  border-color: var(--red);
}

.cx-lg-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cx-lg-msg {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
}

.cx-lg-output {
  width: 100%;
  margin: 0;
  background: #14151d;
  color: #d3ffd8;
  border-radius: 12px;
  padding: 20px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 13.5px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 120px;
  max-height: 480px;
  overflow: auto;
}

@media (max-width: 720px) {
  .cx-lg-form {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.cx-footer {
  background: #160b2c;
  color: #fff;
  padding: 64px 100.9px;
}

.cx-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.cx-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cx-footer-logo {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.cx-footer-legal {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.cx-footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.cx-footer-col {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cx-footer-heading {
  position: relative;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--red);
}

.cx-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  background: var(--red);
  border-radius: 99px;
}

.cx-footer-link {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cx-footer-link:hover {
  color: var(--red);
}

.cx-footer-contact {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.cx-footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.cx-footer-contact a:hover {
  color: var(--red);
}

.cx-footer-social {
  display: flex;
  gap: 18px;
}

.cx-footer-social-link {
  width: 34px;
  height: 34px;
  background-color: var(--red);
  -webkit-mask: var(--cx-icon) center / contain no-repeat;
  mask: var(--cx-icon) center / contain no-repeat;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cx-footer-social-link:hover {
  background-color: #ff6b72;
  transform: translateY(-2px);
}

/* ── RESPONSIVE (partners / newsletter / footer) ────────────── */
@media (max-width: 1400px) {
  .cx-footer {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1100px) {
  .cx-partners {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cx-footer {
    padding: 48px 24px;
  }
  .cx-newsletter {
    padding: 36px 20px;
  }
}

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

@media (max-width: 520px) {
  .cx-newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .cx-newsletter-input {
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
  }
  .cx-newsletter-btn {
    width: 100%;
    padding: 16px;
  }
}

/* ════════════════════════════════════════════════════════════════
   POLISH — pro look & conversion (hero, CTA band, hovers, motion)
   ════════════════════════════════════════════════════════════════ */

/* Smooth in-page navigation, offset for the sticky navbar */
html {
  scroll-behavior: smooth;
}

.cx-page [id] {
  scroll-margin-top: 84px;
}

/* Accessible focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(243, 77, 85, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── HERO ENHANCEMENTS ──────────────────────────────────────── */
.cx-hero {
  position: relative;
  overflow: hidden;
}

/* Soft brand glow behind the hero for depth (decorative) */
.cx-hero::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(243, 77, 85, 0.12) 0%,
    rgba(243, 77, 85, 0) 70%
  );
  pointer-events: none;
  z-index: 0;
}

.cx-hero > * {
  position: relative;
  z-index: 1;
}

.cx-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(243, 77, 85, 0.1);
  color: var(--red);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.cx-hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(243, 77, 85, 0.5);
  animation: cx-pulse 2.4s ease-out infinite;
}

@keyframes cx-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 77, 85, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(243, 77, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 77, 85, 0);
  }
}

.cx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.cx-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cx-hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.85;
}

.cx-hero-trust li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(243, 77, 85, 0.12);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.cx-btn-contact {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cx-btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(243, 77, 85, 0.28);
}

.cx-btn--lg {
  padding: 21px 34px;
  font-size: 16px;
}

.cx-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 23.5px;
  background: transparent;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: 2px solid rgba(17, 7, 34, 0.15);
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cx-btn-outline:hover {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.cx-btn--on-red {
  background: #fff;
  color: var(--red);
}

.cx-btn--on-red:hover {
  background: #fafdfe;
  color: #d93940;
  box-shadow: 0 12px 28px rgba(17, 7, 34, 0.18);
}

/* ── CARD HOVER LIFTS ───────────────────────────────────────── */
.cx-problem-card,
.cx-solution-card,
.cx-partner {
  transition: transform 0.25s ease;
}

.cx-problem-card::after,
.cx-solution-card::after {
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.cx-problem-card:hover,
.cx-solution-card:hover,
.cx-partner:hover {
  transform: translateY(-5px);
}

.cx-problem-card:hover::after,
.cx-solution-card:hover::after {
  box-shadow: 0 14px 30px rgba(17, 7, 34, 0.1);
  border-color: rgba(243, 77, 85, 0.28);
}

.cx-partner:hover {
  border-color: rgba(243, 77, 85, 0.28);
}

/* ── CTA BAND ───────────────────────────────────────────────── */
.cx-cta-band {
  padding: 60px 100.9px;
  background: linear-gradient(135deg, #f34d55 0%, #d93940 100%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.cx-cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cx-cta-band-text {
  max-width: 640px;
}

.cx-cta-band-title {
  font-size: clamp(24px, 2.6vw, 33px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.cx-cta-band-sub {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.92;
}

/* ── SCROLL REVEAL (added by JS; reduced-motion safe) ───────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cx-hero-eyebrow::before {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── CTA BAND RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1400px) {
  .cx-cta-band {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .cx-cta-band {
    padding: 40px 24px;
  }
  .cx-cta-band-inner {
    gap: 28px;
  }
  .cx-btn-outline,
  .cx-cta-band .cx-btn-contact {
    width: 100%;
  }
  .cx-hero-actions {
    width: 100%;
  }
  .cx-hero-actions .cx-btn-contact,
  .cx-hero-actions .cx-btn-outline {
    flex: 1 1 100%;
  }
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR — frosted-glass (glassmorphism), elevates on scroll
   ════════════════════════════════════════════════════════════════ */
.cx-navbar {
  background: linear-gradient(
    180deg,
    rgba(250, 253, 254, 0.82) 0%,
    rgba(250, 253, 254, 0.62) 100%
  );
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(17, 7, 34, 0.06);
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Hairline top sheen for a crisp, premium edge */
.cx-navbar::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

/* Elevated state once the page is scrolled */
.cx-navbar.is-scrolled {
  background: linear-gradient(
    180deg,
    rgba(250, 253, 254, 0.93) 0%,
    rgba(250, 253, 254, 0.8) 100%
  );
  border-bottom-color: rgba(243, 77, 85, 0.14);
}

/* Fallback for browsers without backdrop-filter → stay readable */
@supports not (
  (backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))
) {
  .cx-navbar {
    background: rgba(250, 253, 254, 0.98);
  }
  .cx-navbar.is-scrolled {
    background: rgba(250, 253, 254, 1);
  }
}

/* Mobile dropdown shares the frosted-glass treatment */
@media (max-width: 900px) {
  .cx-nav-collapse {
    background: linear-gradient(
      180deg,
      rgba(250, 253, 254, 0.95) 0%,
      rgba(250, 253, 254, 0.88) 100%
    );
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
    border-top: 1px solid rgba(17, 7, 34, 0.06);
  }
}

@supports not (
  (backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))
) {
  @media (max-width: 900px) {
    .cx-nav-collapse {
      background: rgba(250, 253, 254, 0.99);
    }
  }
}

/* ════════════════════════════════════════════════════════════════
   PAGE TRANSITIONS — cross-document View Transitions (modern, light)
   Animates navigation between pages: subtle fade + slide.
   Falls back to a gentle fade-in where the API isn't supported.
   ════════════════════════════════════════════════════════════════ */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: cx-page-out 200ms ease both;
}

::view-transition-new(root) {
  animation: cx-page-in 320ms ease both;
}

@keyframes cx-page-out {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes cx-page-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* Fallback: a light fade-in on load where View Transitions are unsupported */
@supports not (view-transition-name: none) {
  @media (prefers-reduced-motion: no-preference) {
    .cx-page {
      animation: cx-page-fade-in 360ms ease both;
    }
  }
}

@keyframes cx-page-fade-in {
  from {
    opacity: 0;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   CUSTOM SCROLLBAR — minimal, modern, on-brand
   A thin floating red pill on a transparent track. Applies to the page
   and to any inner scroller (e.g. the mobile menu).
   ════════════════════════════════════════════════════════════════ */

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(243, 77, 85, 0.45) transparent;
}

/* WebKit / Blink */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(243, 77, 85, 0.4);
  border-radius: 99px;
  /* transparent border + padding-box clip = a thin "floating" pill */
  border: 3px solid transparent;
  background-clip: padding-box;
  transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(243, 77, 85, 0.7);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
  background-color: #f34d55;
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* ════════════════════════════════════════════════════════════════
   SERVICE CARDS — landing page (clickable cards linking to each page)
   ════════════════════════════════════════════════════════════════ */
.cx-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.cx-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: #fcfcfc;
  border: 1px solid rgba(243, 77, 85, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.cx-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(17, 7, 34, 0.1);
  border-color: rgba(243, 77, 85, 0.32);
}

.cx-service-icon {
  width: 52px;
  height: 52px;
  background-color: var(--red);
  -webkit-mask: var(--cx-icon) center / contain no-repeat;
  mask: var(--cx-icon) center / contain no-repeat;
}

.cx-service-title {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.4px;
  line-height: 1.3;
  color: var(--text);
}

.cx-service-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  opacity: 0.85;
}

.cx-service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.cx-service-arrow {
  font-size: 17px;
  transition: transform 0.25s ease;
}

.cx-service-card:hover .cx-service-arrow {
  transform: translateX(5px);
}

/* "Contact" variant — tinted to stand out from the service cards */
.cx-service-card--cta {
  background: rgba(243, 77, 85, 0.06);
  border-color: rgba(243, 77, 85, 0.22);
}

/* Home hero: a touch more vertical breathing room */
.cx-hero--home {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (max-width: 1100px) {
  .cx-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .cx-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS — social proof
   ════════════════════════════════════════════════════════════════ */
.cx-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.cx-testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 32px;
  background: #fcfcfc;
  border: 1px solid rgba(243, 77, 85, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.cx-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  color: rgba(243, 77, 85, 0.16);
  pointer-events: none;
}

.cx-testimonial-stars {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 3px;
}

.cx-testimonial-text {
  margin: 0;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
}

.cx-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}

.cx-testimonial-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.cx-testimonial-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.65;
}

/* ════════════════════════════════════════════════════════════════
   FAQ — accessible accordion built on <details>
   ════════════════════════════════════════════════════════════════ */
.cx-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 880px;
}

.cx-faq-item {
  background: #fcfcfc;
  border: 1px solid rgba(243, 77, 85, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.cx-faq-item[open] {
  border-color: rgba(243, 77, 85, 0.3);
}

.cx-faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  transition: color 0.2s ease;
}

.cx-faq-q::-webkit-details-marker {
  display: none;
}

.cx-faq-q:hover {
  color: var(--red);
}

.cx-faq-item[open] .cx-faq-q {
  color: var(--red);
}

/* Chevron indicator */
.cx-faq-q::after {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease, margin-top 0.25s ease;
}

.cx-faq-item[open] .cx-faq-q::after {
  margin-top: 3px;
  transform: rotate(-135deg);
}

.cx-faq-a {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .cx-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .cx-testimonials {
    grid-template-columns: 1fr;
  }
  .cx-faq-q {
    font-size: 16px;
  }
}

/* ════════════════════════════════════════════════════════════════
   CONTENT PAGES — legal prose, page title, status board
   ════════════════════════════════════════════════════════════════ */
.cx-page-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--text);
  text-shadow: var(--text-shadow);
}

.cx-legal {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 860px;
}

.cx-legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cx-legal-block h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: var(--text);
}

.cx-legal-block p,
.cx-legal-block li {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.85;
}

.cx-legal-block ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cx-legal-block a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.cx-legal-block a:hover {
  text-decoration: underline;
}

.cx-legal-note {
  padding: 18px 22px;
  background: rgba(243, 77, 85, 0.06);
  border: 1px solid rgba(243, 77, 85, 0.18);
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.6;
}

.cx-legal-updated {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.6;
}

/* ── STATUS BOARD (light theme, click-to-expand — no separate pages) ─── */
.cx-status {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 860px;
}

.cx-status-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  background: rgba(22, 163, 74, 0.08);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.cx-status-banner--down {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  border-color: rgba(220, 38, 38, 0.2);
}

.cx-status-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.cx-status-maintenance {
  padding: 16px 20px;
  background: rgba(243, 77, 85, 0.06);
  border: 1px solid rgba(243, 77, 85, 0.2);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--text);
}

.cx-status-maintenance-targets {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
  margin: 0 0 8px;
}

.cx-status-board {
  background: #fcfcfc;
  border: 1px solid rgba(243, 77, 85, 0.1);
  box-shadow: var(--shadow-sm);
  border-radius: 20px;
  padding: 10px 14px;
  color: var(--text);
}

.cx-status-group {
  border-radius: 14px;
  margin: 10px 0;
  overflow: hidden;
}

.cx-status-group + .cx-status-group {
  border-top: 1px solid rgba(17, 7, 34, 0.08);
}

.cx-status-group-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 10px;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--text);
}

.cx-status-group-summary::-webkit-details-marker {
  display: none;
}

.cx-status-group-summary-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cx-status-chevron,
.cx-status-host-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(17, 7, 34, 0.4);
  border-bottom: 2px solid rgba(17, 7, 34, 0.4);
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* Scoped to each element's own [open] state — a host chevron must not
   rotate just because the group it happens to sit inside is open. */
.cx-status-group[open] > .cx-status-group-summary .cx-status-chevron {
  transform: rotate(45deg);
}

.cx-status-host[open] > .cx-status-host-summary .cx-status-host-chevron {
  transform: rotate(45deg);
}

.cx-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 800;
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.cx-status-pill--down {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

.cx-status-pill--unknown {
  background: rgba(17, 7, 34, 0.06);
  color: #666;
}

.cx-status-group-body {
  padding: 0 10px 10px;
}

.cx-status-host {
  padding: 14px 10px 6px;
  border-top: 1px solid rgba(17, 7, 34, 0.06);
  border-radius: 10px;
}

.cx-status-host-summary {
  display: block;
  cursor: pointer;
  list-style: none;
}

.cx-status-host-summary::-webkit-details-marker {
  display: none;
}

.cx-status-host-summary:hover {
  opacity: 0.8;
}

.cx-status-host-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.cx-status-host-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.cx-status-host-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  background: #16a34a;
}

.cx-status-host-icon--down { background: #dc2626; }
.cx-status-host-icon--unknown { background: #6b7280; }

.cx-status-host-uptime {
  font-size: 13.5px;
  font-weight: 700;
  color: #16a34a;
}

.cx-status-host-uptime--down { color: #dc2626; }

.cx-status-bars {
  display: flex;
  gap: 2px;
  width: 100%;
}

.cx-status-bar {
  flex: 1;
  height: 26px;
  min-width: 2px;
  border-radius: 2px;
  background: rgba(17, 7, 34, 0.08);
}

.cx-status-bar--up { background: #16a34a; }
.cx-status-bar--down { background: #dc2626; }
.cx-status-bar--partial { background: #f59e0b; }
.cx-status-bar--none { background: rgba(17, 7, 34, 0.08); }

.cx-status-bars-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11.5px;
  color: rgba(17, 7, 34, 0.45);
}

.cx-status-host-body {
  padding: 14px 2px 8px;
  margin-top: 8px;
  border-top: 1px dashed rgba(17, 7, 34, 0.1);
}

.cx-status-windows {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cx-status-window {
  flex: 1;
  min-width: 90px;
}

.cx-status-window-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.cx-status-window-label {
  font-size: 11.5px;
  color: rgba(17, 7, 34, 0.5);
}

.cx-status-chart {
  margin-bottom: 16px;
}

.cx-status-incidents-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.cx-status-incidents-empty {
  font-size: 13px;
  color: rgba(17, 7, 34, 0.5);
}

.cx-status-incident-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-top: 1px solid rgba(17, 7, 34, 0.06);
  font-size: 13px;
  color: rgba(17, 7, 34, 0.7);
}

.cx-status-incident-row:first-child {
  border-top: none;
}

/* ════════════════════════════════════════════════════════════════
   HERO ILLUSTRATION — abstract network visual on the right.
   Decorative background so no HTML change is needed; only shown on
   wide screens where there is free space beside the text.
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .cx-hero:not(.cx-hero--home) {
    background-image: var(--cx-hero-art);
    background-repeat: no-repeat;
    background-position: right 2% center;
    background-size: clamp(360px, 34vw, 540px);
  }
}

/* ════════════════════════════════════════════════════════════════
   HOME HERO — distinct, richer two-column layout (same charte).
   Left: the pitch. Right: the network visual framed in a glass panel
   with floating metric chips. Stacks to a clean single column < 1024px.
   ════════════════════════════════════════════════════════════════ */
.cx-hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 38px;
}

.cx-hero-figure {
  position: relative;
  display: none;
}

.cx-hero-panel {
  position: relative;
  padding: 44px;
  border-radius: 28px;
  background: radial-gradient(
      120% 120% at 75% 12%,
      rgba(243, 77, 85, 0.1),
      rgba(243, 77, 85, 0) 60%
    ),
    #ffffff;
  border: 1px solid rgba(243, 77, 85, 0.12);
  box-shadow: 0 32px 64px rgba(17, 7, 34, 0.12);
}

.cx-hero-panel-art {
  display: block;
  width: 100%;
  height: auto;
}

.cx-hero-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  background: #ffffff;
  border: 1px solid rgba(243, 77, 85, 0.14);
  border-radius: 99px;
  box-shadow: 0 12px 26px rgba(17, 7, 34, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.cx-hero-chip b {
  font-weight: 900;
}

.cx-hero-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(243, 77, 85, 0.15);
}

.cx-hero-chip--a {
  top: 10%;
  right: -20px;
}

.cx-hero-chip--b {
  top: 46%;
  left: -26px;
}

.cx-hero-chip--c {
  bottom: -16px;
  right: 16%;
}

@media (min-width: 1024px) {
  .cx-hero--home {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 56px;
  }
  .cx-hero-figure {
    display: block;
  }
}

/* Gentle independent float on the metric chips (motion-safe) */
@media (prefers-reduced-motion: no-preference) {
  .cx-hero-chip {
    animation: cx-float 4.4s ease-in-out infinite;
  }
  .cx-hero-chip--b {
    animation-duration: 5.2s;
    animation-delay: -1.4s;
  }
  .cx-hero-chip--c {
    animation-duration: 4.8s;
    animation-delay: -2.6s;
  }
}

@keyframes cx-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* ════════════════════════════════════════════════════════════════
   CLIENTS — "Ils nous font confiance" logo wall
   ════════════════════════════════════════════════════════════════ */
.cx-clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.cx-client {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: #fcfcfc;
  border: 1px solid rgba(243, 77, 85, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.cx-client:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(17, 7, 34, 0.1);
  border-color: rgba(243, 77, 85, 0.3);
}

.cx-client-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(17, 7, 34, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.cx-client-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.cx-client-logo--fallback {
  background: linear-gradient(135deg, #ff8b90, #df3a42);
  border-color: transparent;
}

.cx-client-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  margin-right: auto;
}

.cx-client-arrow {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
  opacity: 0.32;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cx-client:hover .cx-client-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.cx-client-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}

.cx-client-tag {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
}

@media (max-width: 1100px) {
  .cx-clients {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .cx-clients {
    grid-template-columns: 1fr;
  }
}
