@font-face {
  font-family: "RobotoLocal";
  src: url("../fonts/RobotoRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RobotoLocal";
  src: url("../fonts/RobotoBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cx-ink: #071421;
  --cx-ink-2: #0c2236;
  --cx-navy: #103754;
  --cx-teal: #12b7d6;
  --cx-teal-dark: #07839b;
  --cx-green: #32d583;
  --cx-amber: #ffb545;
  --cx-cloud: #f3f7fb;
  --cx-line: #dbe6ee;
  --cx-text: #435466;
  --cx-muted: #6c7b89;
  --cx-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.cx-site {
  margin: 0;
  font-family: "RobotoLocal", Arial, Helvetica, sans-serif;
  color: var(--cx-text);
  background: var(--cx-cloud);
}

body.cx-site a {
  color: inherit;
}

body.cx-site a:hover {
  text-decoration: none;
}

.cx-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 24px 0;
}

.cx-header.is-solid {
  position: relative;
  background: var(--cx-ink);
}

.cx-navbar {
  padding: 0;
}

.cx-logo {
  width: 168px;
  height: auto;
}

.cx-nav-wrap {
  align-items: center;
}

.cx-nav .nav-item {
  padding: 0 15px;
}

.cx-nav .nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.cx-nav .nav-link:hover,
.cx-nav .nav-link.active {
  color: var(--cx-green);
}

.cx-toggler {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 8px 10px;
}

.cx-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--cx-white);
}

.cx-btn,
.cx-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.cx-btn {
  color: var(--cx-ink);
  background: var(--cx-green);
  border-color: var(--cx-green);
}

.cx-btn:hover {
  color: var(--cx-ink);
  background: #61e4a1;
  transform: translateY(-1px);
}

.cx-btn-outline {
  color: var(--cx-white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.cx-btn-outline:hover {
  color: var(--cx-white);
  border-color: var(--cx-teal);
  background: rgba(18, 183, 214, 0.16);
}

.cx-hero {
  min-height: 88vh;
  color: var(--cx-white);
  display: flex;
  align-items: center;
  padding: 132px 0 88px;
  background:
    linear-gradient(90deg, rgba(7, 20, 33, 0.96) 0%, rgba(7, 20, 33, 0.86) 36%, rgba(7, 20, 33, 0.34) 72%, rgba(7, 20, 33, 0.24) 100%),
    url("../image/2cx-voice-ops-hero.jpg") center right / cover no-repeat;
}

.cx-page-hero {
  color: var(--cx-white);
  padding: 78px 0 82px;
  background:
    linear-gradient(120deg, rgba(7, 20, 33, 0.98), rgba(16, 55, 84, 0.92)),
    url("../image/2cx-voice-ops-hero.jpg") center / cover no-repeat;
}

.cx-kicker {
  color: var(--cx-green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cx-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--cx-green);
}

.cx-hero h1,
.cx-page-hero h1 {
  color: var(--cx-white);
  margin: 0 0 18px;
  max-width: 720px;
  font-size: 64px;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
}

.cx-page-hero h1 {
  font-size: 46px;
}

.cx-hero p,
.cx-page-hero p {
  color: #c9d7e5;
  max-width: 650px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.7;
}

.cx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.cx-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 770px;
}

.cx-hero-point {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.cx-hero-point strong {
  display: block;
  color: var(--cx-white);
  font-size: 19px;
  line-height: 1.2;
}

.cx-hero-point span {
  color: #bfd0dd;
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.cx-section {
  padding: 84px 0;
  background: var(--cx-white);
}

.cx-section-alt {
  background: var(--cx-cloud);
}

.cx-section-dark {
  color: var(--cx-white);
  background:
    radial-gradient(circle at 18% 8%, rgba(18, 183, 214, 0.16), transparent 32%),
    linear-gradient(135deg, #071421 0%, #0f2e47 100%);
}

.cx-section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.cx-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cx-section h2,
.cx-section-dark h2,
.cx-section-alt h2 {
  margin: 0 0 15px;
  color: var(--cx-ink);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

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

.cx-lead {
  color: var(--cx-muted);
  margin: 0;
  font-size: 18px;
  line-height: 1.72;
}

.cx-section-dark .cx-lead,
.cx-section-dark p {
  color: #c9d7e5;
}

.cx-card {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  background: var(--cx-white);
  box-shadow: 0 14px 38px rgba(7, 20, 33, 0.08);
}

.cx-section-dark .cx-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.cx-card h3 {
  color: var(--cx-ink);
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.cx-section-dark .cx-card h3 {
  color: var(--cx-white);
}

.cx-card p {
  margin: 0;
  color: var(--cx-muted);
  font-size: 16px;
  line-height: 1.65;
}

.cx-section-dark .cx-card p {
  color: #c9d7e5;
}

.cx-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--cx-ink);
  background: linear-gradient(135deg, var(--cx-green), var(--cx-teal));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.cx-icon.amber {
  background: linear-gradient(135deg, var(--cx-amber), #ffe08a);
}

.cx-icon.teal {
  background: linear-gradient(135deg, var(--cx-teal), #78efff);
}

.cx-feature-band {
  border-radius: 8px;
  overflow: hidden;
  background: var(--cx-ink);
  color: var(--cx-white);
}

.cx-feature-media {
  min-height: 420px;
  background: url("../image/2cx-voice-ops-hero.jpg") center / cover no-repeat;
}

.cx-feature-copy {
  padding: 48px;
}

.cx-feature-copy h2 {
  color: var(--cx-white);
}

.cx-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.cx-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 13px;
  color: inherit;
  line-height: 1.55;
}

.cx-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cx-green);
  box-shadow: 0 0 0 5px rgba(50, 213, 131, 0.15);
}

.cx-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cx-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--cx-line);
  border-radius: 999px;
  color: var(--cx-ink);
  background: var(--cx-white);
  font-size: 14px;
  font-weight: 700;
}

.cx-section-dark .cx-chip {
  color: var(--cx-white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.cx-platform {
  height: 100%;
  padding: 22px;
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  background: var(--cx-white);
}

.cx-platform strong {
  display: block;
  color: var(--cx-ink);
  margin-bottom: 7px;
  font-size: 18px;
}

.cx-platform span {
  color: var(--cx-muted);
  font-size: 15px;
  line-height: 1.55;
}

.cx-proof {
  color: var(--cx-white);
  background: var(--cx-ink-2);
}

.cx-proof .cx-proof-item {
  padding: 24px 0;
}

.cx-proof strong {
  display: block;
  color: var(--cx-green);
  font-size: 34px;
  line-height: 1;
}

.cx-proof span {
  display: block;
  color: #c9d7e5;
  margin-top: 8px;
}

.cx-steps {
  counter-reset: step;
}

.cx-step {
  position: relative;
  height: 100%;
  padding: 28px;
  border-left: 4px solid var(--cx-teal);
  border-radius: 8px;
  background: var(--cx-white);
  box-shadow: 0 14px 38px rgba(7, 20, 33, 0.08);
}

.cx-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 17px;
  border-radius: 50%;
  color: var(--cx-ink);
  background: var(--cx-green);
  font-weight: 800;
}

.cx-step h3 {
  color: var(--cx-ink);
  font-size: 21px;
  font-weight: 800;
}

.cx-step p {
  margin: 0;
  color: var(--cx-muted);
}

.cx-pricing-card {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--cx-line);
  border-radius: 8px;
  background: var(--cx-white);
  box-shadow: 0 14px 38px rgba(7, 20, 33, 0.08);
}

.cx-pricing-card.featured {
  border-color: rgba(50, 213, 131, 0.62);
  box-shadow: 0 18px 50px rgba(18, 183, 214, 0.18);
}

.cx-pricing-card h3 {
  color: var(--cx-ink);
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 800;
}

.cx-price {
  color: var(--cx-teal-dark);
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 800;
}

.cx-small {
  color: var(--cx-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cx-contact-panel {
  padding: 30px;
  border-radius: 8px;
  background: var(--cx-white);
  box-shadow: 0 14px 38px rgba(7, 20, 33, 0.08);
}

.cx-form input,
.cx-form select,
.cx-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--cx-line);
  border-radius: 6px;
  color: var(--cx-ink);
  background: var(--cx-white);
  font: inherit;
  outline: none;
}

.cx-form textarea {
  min-height: 142px;
  resize: vertical;
}

.cx-form input:focus,
.cx-form select:focus,
.cx-form textarea:focus {
  border-color: var(--cx-teal);
  box-shadow: 0 0 0 4px rgba(18, 183, 214, 0.13);
}

.cx-map {
  min-height: 390px;
  width: 100%;
  border: 0;
  display: block;
}

.cx-footer {
  color: #c9d7e5;
  background: var(--cx-ink);
  padding: 66px 0 0;
}

.cx-footer img {
  width: 158px;
  height: auto;
  margin-bottom: 18px;
}

.cx-footer h3 {
  color: var(--cx-white);
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 800;
}

.cx-footer p,
.cx-footer li,
.cx-footer a {
  color: #c9d7e5;
  font-size: 15px;
  line-height: 1.7;
}

.cx-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.cx-footer-bottom {
  margin-top: 44px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cx-footer-bottom p {
  margin: 0;
  color: #9fb0bd;
  font-size: 14px;
}

.cx-inline-link {
  color: var(--cx-teal-dark);
  font-weight: 800;
}

.cx-inline-link:hover {
  color: var(--cx-ink);
}

@media (max-width: 991px) {
  .cx-header,
  .cx-header.is-solid {
    position: relative;
    background: var(--cx-ink);
    padding: 16px 0;
  }

  .cx-nav-wrap {
    margin-top: 15px;
    padding: 16px;
    border-radius: 8px;
    background: var(--cx-ink-2);
  }

  .cx-nav .nav-item {
    padding: 8px 0;
  }

  .cx-hero {
    min-height: auto;
    padding: 76px 0 72px;
    background:
      linear-gradient(90deg, rgba(7, 20, 33, 0.96), rgba(7, 20, 33, 0.74)),
      url("../image/2cx-voice-ops-hero.jpg") center right / cover no-repeat;
  }

  .cx-hero h1,
  .cx-page-hero h1 {
    font-size: 42px;
  }

  .cx-hero-points {
    grid-template-columns: 1fr;
  }

  .cx-section {
    padding: 62px 0;
  }

  .cx-section h2,
  .cx-section-dark h2,
  .cx-section-alt h2 {
    font-size: 32px;
  }

  .cx-feature-copy {
    padding: 34px 24px;
  }

  .cx-feature-media {
    min-height: 300px;
  }
}

@media (max-width: 575px) {
  .cx-logo {
    width: 146px;
  }

  .cx-hero h1,
  .cx-page-hero h1 {
    font-size: 35px;
  }

  .cx-hero p,
  .cx-page-hero p,
  .cx-lead {
    font-size: 16px;
  }

  .cx-actions {
    flex-direction: column;
  }

  .cx-btn,
  .cx-btn-outline {
    width: 100%;
  }
}
