/* ContactPix pages — layered on top of style.css */

.cpx-page-top::before {
  content: none;
}

.cpx-page-top::after {
  height: 100%;
  clip-path: polygon(100% 0, 100% 78%, 0 100%, 0 0);
}

/* Header nav active state */
.header-main .header-inner .header-menu ul li a.is-active,
#menu li a.is-active {
  background: linear-gradient(0deg, #1a7bee 0%, #0cc9fa 100%), #1980ef;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shared building blocks */
.cpx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(12, 201, 250, 0.35);
  border-radius: 999px;
  background: rgba(26, 123, 238, 0.12);
  font-family: Montserrat-SemiBold;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #7fdcff;
}

.cpx-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0cc9fa;
}

.cpx-section {
  padding: 90px 0px;
}

.cpx-section-alt {
  background-color: #0f1117;
}

.cpx-section-head {
  max-width: 760px;
  margin-bottom: 55px;
}

.cpx-section-head h2 {
  font-family: Oswald-Bold;
  font-size: 40px;
  line-height: 52px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.cpx-section-head h2 span {
  background: linear-gradient(0deg, #1a7bee 0%, #0cc9fa 100%), #1980ef;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cpx-section-head p {
  font-family: OpenSans-Regular;
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.75);
}

.cpx-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 28px;
  border-radius: 4px;
  font-family: Montserrat-SemiBold;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
}

.cpx-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}

.cpx-btn-ghost:hover {
  border-color: rgba(12, 201, 250, 0.7);
}

.cpx-btn img {
  width: 18px;
}

/* Hero */
.cpx-hero {
  padding: 30px 0px 130px;
}

.cpx-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.cpx-hero-dec {
  width: 58%;
  position: relative;
  padding-left: 40px;
}

.cpx-hero-dec::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background: linear-gradient(180deg, #0cc9fa 0%, rgba(26, 123, 238, 0) 100%);
}

.cpx-hero-dec h1 {
  font-family: Oswald-Bold;
  font-size: 58px;
  line-height: 68px;
  text-transform: uppercase;
  margin: 25px 0px 18px;
}

.cpx-hero-dec h1 span {
  background: linear-gradient(0deg, #1a7bee 0%, #0cc9fa 100%), #1980ef;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cpx-hero-dec .cpx-lede {
  font-family: OpenSans-Regular;
  font-size: 20px;
  line-height: 33px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 35px;
}

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

.cpx-actions-spaced {
  margin-top: 40px;
}

.cpx-hero-note {
  margin-top: 25px;
  font-family: OpenSans-Regular;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.cpx-hero-art {
  width: 42%;
  display: flex;
  justify-content: center;
}

.cpx-app-icon {
  width: 260px;
  height: 260px;
  border-radius: 58px;
  box-shadow: 0px 30px 70px rgba(12, 132, 250, 0.35);
}

/* Feature grid */
.cpx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cpx-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 34px 30px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.cpx-card:hover {
  border-color: rgba(12, 201, 250, 0.45);
  transform: translateY(-4px);
}

.cpx-card h3 {
  font-family: Montserrat-Bold;
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 14px;
}

.cpx-card p {
  font-family: OpenSans-Regular;
  font-size: 16px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.72);
}

.cpx-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-family: Oswald-Bold;
  font-size: 20px;
  background: linear-gradient(0deg, #1a7bee 0%, #0cc9fa 100%);
}

/* Provider list */
.cpx-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cpx-provider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-family: Montserrat-SemiBold;
  font-size: 16px;
}

.cpx-provider small {
  font-family: OpenSans-Regular;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.45);
}

.cpx-provider-soon {
  opacity: 0.6;
}

/* Long-form document pages */
.cpx-doc {
  max-width: 860px;
}

.cpx-doc h2 {
  font-family: Oswald-Bold;
  font-size: 30px;
  line-height: 42px;
  text-transform: uppercase;
  margin: 55px 0px 18px;
}

.cpx-doc h2:first-child {
  margin-top: 0px;
}

.cpx-doc h3 {
  font-family: Montserrat-Bold;
  font-size: 19px;
  line-height: 30px;
  margin: 32px 0px 12px;
}

.cpx-doc p,
.cpx-doc li {
  font-family: OpenSans-Regular;
  font-size: 17px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.cpx-doc p {
  margin-bottom: 18px;
}

.cpx-doc ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}

.cpx-doc li {
  margin-bottom: 10px;
}

.cpx-doc a {
  display: inline;
  color: #57d3ff;
  text-decoration: underline;
}

.cpx-doc code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #9fe4ff;
  overflow-wrap: anywhere;
}

.cpx-doc em {
  color: rgba(255, 255, 255, 0.9);
}

.cpx-doc strong {
  color: #fff;
  font-family: Montserrat-SemiBold;
}

.cpx-doc-meta {
  font-family: OpenSans-Regular;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.cpx-callout {
  border-left: 3px solid #0cc9fa;
  background: rgba(26, 123, 238, 0.08);
  padding: 24px 28px;
  border-radius: 0px 6px 6px 0px;
  margin-bottom: 24px;
}

.cpx-callout p:last-child {
  margin-bottom: 0px;
}

/* FAQ */
.cpx-faq details {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 22px 26px;
  margin-bottom: 14px;
}

.cpx-faq details[open] {
  border-color: rgba(12, 201, 250, 0.4);
}

.cpx-faq summary {
  cursor: pointer;
  font-family: Montserrat-SemiBold;
  font-size: 17px;
  line-height: 28px;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cpx-faq summary::-webkit-details-marker {
  display: none;
}

.cpx-faq summary::after {
  content: "+";
  font-family: Oswald-Bold;
  font-size: 24px;
  line-height: 26px;
  color: #0cc9fa;
  flex-shrink: 0;
}

.cpx-faq details[open] summary::after {
  content: "\2212";
}

.cpx-faq details p,
.cpx-faq details li {
  font-family: OpenSans-Regular;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.cpx-faq details p {
  margin: 16px 0px 0px;
}

.cpx-faq details ul {
  list-style: disc;
  padding-left: 22px;
  margin: 16px 0px 0px;
}

.cpx-faq details li {
  margin-bottom: 8px;
}

.cpx-faq details a {
  display: inline;
  color: #57d3ff;
  text-decoration: underline;
}

/* Footer */
.cpx-footer {
  background-color: #0f1117;
  padding: 80px 0px 40px;
}

.cpx-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.cpx-footer-brand {
  max-width: 340px;
}

.cpx-footer-brand .brand-logo {
  display: block;
  width: 220px;
  margin-bottom: 22px;
}

.cpx-footer-brand p {
  font-family: OpenSans-Regular;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}

.cpx-footer-col h4 {
  font-family: Montserrat-Bold;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.cpx-footer-col ul li {
  margin-bottom: 12px;
}

.cpx-footer-col ul li a {
  font-family: OpenSans-Regular;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.cpx-footer-col ul li a:hover {
  color: #57d3ff;
}

.cpx-footer-base {
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: OpenSans-Regular;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.cpx-footer-base a {
  display: inline;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media only screen and (max-width: 1200px) {
  .cpx-hero-dec h1 {
    font-size: 46px;
    line-height: 58px;
  }

  .cpx-app-icon {
    width: 220px;
    height: 220px;
    border-radius: 50px;
  }
}

@media only screen and (max-width: 992px) {
  .cpx-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cpx-hero-inner {
    gap: 35px;
  }

  .cpx-hero-dec {
    width: 60%;
  }

  .cpx-hero-art {
    width: 40%;
  }
}

@media only screen and (max-width: 767px) {
  .cpx-hero {
    padding: 10px 0px 90px;
  }

  .cpx-hero-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .cpx-hero-dec,
  .cpx-hero-art {
    width: 100%;
  }

  .cpx-hero-art {
    justify-content: flex-start;
    padding-left: 40px;
    margin-bottom: 10px;
  }

  .cpx-hero-dec h1 {
    font-size: 38px;
    line-height: 48px;
  }

  .cpx-hero-dec .cpx-lede {
    font-size: 17px;
    line-height: 29px;
  }

  .cpx-app-icon {
    width: 150px;
    height: 150px;
    border-radius: 34px;
  }

  .cpx-section {
    padding: 60px 0px;
  }

  .cpx-section-head {
    margin-bottom: 35px;
  }

  .cpx-section-head h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .cpx-grid {
    grid-template-columns: 1fr;
  }

  .cpx-doc h2 {
    font-size: 26px;
    line-height: 36px;
    margin-top: 45px;
  }

  .cpx-btn {
    width: 100%;
    justify-content: center;
  }
}
