@charset "UTF-8";
:root {
  --cn-bg: #f5f5f5;
  --cn-text: #101010;
  --cn-muted: #5e5e5e;
  --cn-primary: #0084FF;
  --cn-primary-dark: #1c74db;
  --cn-dark: #0d0d0d;
  --cn-white: #ffffff;
  --cn-border: #e7e7e7;
  --cn-radius: 22px;
  --cn-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* ================================
   Fonts
================================ */
@font-face {
  font-family: "TASA Orbiter";
  src: url("../fonts/tasa-orbiter.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TASA Orbiter";
  src: url("../fonts/tasa-orbiter-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TASA Orbiter";
  src: url("../fonts/tasa-orbiter-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ================================
   Base
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

input {
  padding: 0 16px !important;
  height: 48px !important;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cn-white);
  color: var(--cn-text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.cn-menu-open {
  overflow: hidden;
}

img,
picture,
svg,
canvas,
video,
iframe {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

section[id] {
  scroll-margin-top: 110px;
}

.gform-theme--foundation .gform_fields {
  row-gap: 30px !important;
}

/* ================================
   Layout Helpers
================================ */
.cn-page {
  overflow-x: clip;
}

.cn-mobile-cta {
  display: block;
}

.cn-container {
  width: min(1180px, 100% - 32px);
  margin: 0 auto;
}

.cn-narrow {
  width: min(1300px, 100%);
  margin: 0 auto;
}

.cn-section {
  padding: 130px 0;
}

.cn-section--center {
  text-align: center;
}

.cn-page h1,
.cn-page h2,
.cn-page h3,
h4 {
  margin: 0 0 16px;
  overflow-wrap: anywhere;
  font-family: "TASA Orbiter", sans-serif;
  font-weight: 600;
  line-height: 1.1;
}

.cn-page h1 {
  font-size: 48px;
}

.cn-page h2 {
  font-size: clamp(1.65rem, 3.4vw, 3rem);
}

.cn-page h3 {
  font-size: 28px;
}

h4 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.cn-page p {
  margin: 0;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.cn-prose > * + * {
  margin-top: 12px;
}

/* ================================
   Buttons / Links
================================ */
.cn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.cn-btn:hover {
  transform: translateY(-1px);
}

.cn-btn--primary {
  width: 162px;
  height: 40px;
  background: var(--cn-primary);
  color: #fff;
}

.cn-btn--dark {
  width: 155px;
  height: 40px;
  background: var(--cn-dark);
  color: #fff;
}

.cn-btn--small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.875rem;
}

.cn-inline-link {
  display: inline-block;
  margin: 24px auto 26px;
  color: var(--cn-primary);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cn-inline-link::after {
  content: " →";
}

.cn-inline-link:hover,
.cn-inline-link:focus {
  opacity: 0.85;
  transform: translateX(2px);
}

/* ================================
   Header / Navigation
================================ */
.cn-header-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #080808;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cn-header-chat:hover,
.cn-header-chat:focus {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

.cn-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.69);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
  transform: translateY(0);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.cn-site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.cn-header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  background: transparent;
}

.cn-header-left,
.cn-header-center,
.cn-header-right {
  display: flex;
  align-items: center;
}

.cn-header-center {
  justify-content: center;
}

.cn-header-right {
  gap: 32px;
}

.cn-logo {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.cn-logo img {
  width: 182px;
  height: 40px;
}

.cn-menu,
.cn-footer-menu {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cn-menu {
  flex-wrap: wrap;
  justify-content: center;
}

.cn-menu--desktop {
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.cn-menu--desktop a {
  color: #111;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.25s ease;
}

.cn-menu--desktop a:hover,
.cn-menu--desktop a:focus {
  color: var(--cn-primary);
}

.cn-phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 197px;
  height: 40px;
  padding: 8px 16px;
  border-radius: 4px;
  background: var(--cn-primary);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.cn-phone-pill:hover,
.cn-phone-pill:focus {
  background: var(--cn-primary-dark);
  color: #fff;
}

.cn-phone-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cn-nav-toggle,
.cn-mobile-icon-btn {
  display: none;
}

.cn-nav-toggle {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.cn-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.cn-mobile-nav {
  display: none;
}

.gform_wrapper input[type=submit],
.gform_wrapper button[type=submit],
.gform_wrapper .gform_button {
  background: #000 !important;
  border: none;
  border-radius: 4px;
  padding: 8px 16px !important;
  width: 155px !important;
  height: 40px !important;
  font-weight: 700;
  cursor: pointer;
}

/* ================================
   Hero
================================ */
.cn-hero {
  position: relative;
  height: 720px;
  padding: 140px 0 72px;
  background-repeat: no-repeat;
  background-position: right !important;
}

.cn-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: center;
  min-height: 540px;
}

.cn-hero-copy {
  max-width: 550px;
}

.cn-page .cn-hero-copy p {
  width: 60%;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 20px;
}

.cn-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cn-hero-art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cn-hero-art img {
  width: min(420px, 100%);
  height: auto;
}

/* ================================
   Services Grid / Cards
================================ */
.cn-card-grid,
.cn-card-grid2 {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.cn-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cn-card-grid2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-right: 56px;
  padding-left: 56px;
}

.cn-service-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 270px;
  height: 413px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04), 0 20px 40px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cn-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06), 0 30px 60px rgba(0, 0, 0, 0.08);
}

.cn-service-card2 {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04), 0 20px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cn-service-card2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06), 0 30px 60px rgba(0, 0, 0, 0.08);
}

.cn-service-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  padding: 24px 24px 0;
}

.cn-card-grid2 .cn-service-card__content {
  padding: 56px 32px 0;
}

.cn-card-image-wrap {
  width: calc(100% + 48px);
  margin: -24px -24px 24px;
  padding: 24px;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.cn-card-icon {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.cn-card-icon2 {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.cn-service-card h3 {
  margin: 0 0 20px;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

.cn-service-card2 h3 {
  margin: 0 0 20px;
  color: #000;
  font-family: "TASA Orbiter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.cn-service-card p,
.cn-service-card2 p,
.cn-service-card__text {
  color: #888;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.cn-service-card p {
  margin: 0 0 20px;
}

.cn-service-card2 p {
  margin: 0 0 20px;
}

.cn-service-card__text {
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.65;
}

.cn-service-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  padding: 3px 24px;
  border-radius: 0 0 20px 20px;
  background: #000;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: background 0.3s ease;
}

.cn-service-card__button:hover,
.cn-service-card__button:focus {
  background: #111;
  color: #fff;
}

.cn-card-grid2 .cn-service-card,
.cn-card-grid2 .cn-service-card h3,
.cn-card-grid2 .cn-service-card p,
.cn-card-grid2 .cn-service-card a,
.cn-card-grid2 .cn-service-card__text {
  text-align: center;
}

.cn-card-grid2 .cn-service-card {
  align-items: center;
  justify-content: space-between;
  min-height: 360px;
}

.cn-section-button {
  margin-top: 68px;
  text-align: center;
}

.cn-narrow1 p,
.cn-narrow2 h3,
.cn-narrow2 p {
  margin-right: auto;
  margin-left: auto;
}

.cn-narrow1 p {
  width: 752px;
}

.cn-narrow2 h3,
.cn-narrow2 p {
  width: 870px;
}

.cn-narrow2 p {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ================================
   Feature Split
================================ */
.cn-feature-split-section {
  position: relative;
  padding: 72px 0;
  background-image: url("http://cybernet.local/wp-content/uploads/2026/04/Background-Image.png");
  background-repeat: no-repeat;
  background-position: 0 45px;
  background-size: cover;
}

.cn-feature-split-section .cn-container {
  position: relative;
  z-index: 2;
}

.cn-feature-split {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.08fr);
  align-items: stretch;
  gap: 44px;
  width: 1152px !important;
  height: 682px !important;
  margin: 0 auto;
  padding: 36px 44px;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.cn-feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cn-feature-item {
  position: relative;
  margin-bottom: 24px;
  padding: 0 0 24px 28px;
  border-bottom: 1px solid #eaeaea;
}

.cn-feature-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.cn-feature-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 24px;
  height: 23px;
  background-image: url("/wp-content/uploads/2026/04/Logo-Submark.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.cn-feature-item h3,
.cn-page .cn-feature-item h3 {
  margin: 0 0 6px;
  padding-left: 24px;
  color: #111;
  font-family: "TASA Orbiter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.cn-feature-item p {
  max-width: 280px;
  margin: 0 0 10px 25px;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.cn-feature-item .cn-inline-link {
  margin: 4px 0 0 25px;
  font-size: 12px;
}

.cn-feature-image,
.cn-image-cta-media {
  min-width: 0;
}

.cn-feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cn-feature-image img,
.cn-image-cta-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.cn-feature-image img {
  min-height: 320px;
  border-radius: 18px;
  object-position: center;
}

/* ================================
   Badge Banner
================================ */
.cn-badge-banner {
  /* position: relative;
   overflow: hidden;
   background-color: #eaf5fb;*/
  background-image: url(/wp-content/uploads/2026/05/Assurix-Banner-new.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cn-badge-banner h2 {
  font-family: "TASA Orbiter", sans-serif;
  font-weight: 400;
  line-height: 1;
}

.cn-badge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
}

.cn-badge-image {
  display: flex;
  justify-content: center;
}

.cn-badge-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

/* ================================
   Image CTA
================================ */
.cn-image-cta-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.cn-image-cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(360px, 420px);
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  background: #f3f3f3;
  border: 0;
  border-radius: 0;
}

.cn-image-cta-media {
  min-height: 420px;
}

.cn-image-cta-media img {
  min-height: 420px;
  object-position: left;
}

.cn-image-cta-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 36px;
  background: #efefef;
  text-align: right;
}

.cn-image-cta-copy-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 320px;
}

.cn-image-cta-title {
  max-width: 320px;
  margin: 0 0 24px;
  color: #111;
  font-family: "TASA Orbiter", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  word-break: normal;
  overflow-wrap: normal;
}

.cn-image-cta-copy .cn-btn--small {
  width: 155px;
  height: 40px;
  margin-bottom: 40px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.cn-inline-brand {
  display: block;
  width: 182px;
  height: 40px;
  margin-top: 8px;
}

/* ================================
   Contact Section
================================ */
.cn-contact-section-decor {
  position: relative;
  overflow: hidden;
  padding: 86px 0 120px;
}

.cn-contact-section-decor .cn-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 72px;
  align-items: start;
}

.cn-contact-section-decor::before {
  content: "";
  position: absolute;
  bottom: 74px;
  left: 230px;
  z-index: 0;
  width: 42px;
  height: 42px;
  background: #f55595;
}

.cn-contact-section-decor::after {
  content: "";
  position: absolute;
  top: 100px;
  right: 44px;
  z-index: 0;
  width: 44px;
  height: 44px;
  background: var(--cn-primary);
}

.cn-contact-section-decor .cn-container::after {
  content: "";
  position: absolute;
  bottom: -88px;
  left: 50%;
  z-index: 0;
  width: 42px;
  height: 42px;
  background: #050505;
  box-shadow: 42px -42px 0 #f7b21b;
  transform: translateX(-18px);
}

.cn-contact-grid > div:first-child {
  padding-top: 60px;
}

.cn-contact-grid h2 {
  max-width: 360px;
  margin: 0 0 22px;
  color: #111;
  font-family: "TASA Orbiter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.cn-contact-copy {
  max-width: 360px;
  margin-bottom: 28px;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.cn-contact-copy p {
  margin: 0;
  font-weight: 700;
}

.cn-contact-bullets {
  display: grid;
  gap: 12px;
  max-width: 360px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cn-contact-bullets li {
  position: relative;
  margin: 0 0 16px;
  padding-left: 28px;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.cn-contact-bullets li:last-child {
  margin-bottom: 0;
}

.cn-contact-bullets li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("/wp-content/uploads/2026/04/Logo-Submark.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

input, textarea {
  border-radius: 10px !important;
  border: 1px solid #D9DDE3 !important;
}

.cn-contact-form-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  padding: 36px 30px 40px;
  background: #f1f1f1;
  border-radius: 20px;
  box-shadow: none;
  border: 1px solid #EDEDED;
}

.cn-contact-form-card h3 {
  margin: 0 0 34px;
  font-family: "TASA Orbiter", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}

.cn-contact-form-card p {
  margin: 0 0 24px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}

.cn-contact-form-card form,
.cn-contact-form-card .wpcf7-form {
  display: grid;
  gap: 18px;
}

.cn-contact-form-card input,
.cn-contact-form-card textarea,
.cn-contact-form-card select {
  width: 100%;
  min-height: 44px;
  padding: 14px 16px;
  border: 1px solid #d5d9df;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 14px;
}

.cn-contact-form-card textarea {
  min-height: 110px;
  resize: vertical;
}

.cn-contact-form-card input::placeholder,
.cn-contact-form-card textarea::placeholder {
  color: #8f8f8f;
}

.cn-contact-form-card input[type=submit],
.cn-contact-form-card button[type=submit],
.cn-contact-form-card .wpcf7-submit {
  justify-self: start;
  min-width: 144px;
  min-height: 44px;
  padding: 12px 20px;
  border: 0;
  border-radius: 4px;
  background: #080808;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cn-contact-form-card input[type=submit]:hover,
.cn-contact-form-card button[type=submit]:hover,
.cn-contact-form-card .wpcf7-submit:hover {
  background: #111;
}

/* ================================
   Icon Cards Decor Section
================================ */
.cn-section--cards-decor {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
}

.cn-section--cards-decor .cn-container {
  position: relative;
  z-index: 2;
}

.cn-section--cards-decor .cn-narrow {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}

.cn-section--cards-decor .cn-narrow h2 {
  margin: 0 0 20px;
  color: #111;
  font-family: "TASA Orbiter", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.cn-section--cards-decor .cn-narrow p {
  margin: 0;
  color: #444;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.cn-section--cards-decor::before {
  content: "";
  position: absolute;
  bottom: 118px;
  left: 0;
  z-index: 0;
  width: 42px;
  height: 84px;
  background: linear-gradient(to bottom, #f55595 0%, #f55595 50%, #43e6a9 50%, #43e6a9 100%);
}

.cn-section--cards-decor::after {
  content: "";
  position: absolute;
  bottom: 47px;
  left: 45%;
  z-index: 0;
  width: 61px;
  height: 70px;
  background: #050505;
  transform: translateX(-50%);
}

/* ================================
   Footer
================================ */
.cn-site-footer {
  padding: 56px 0 24px;
  background: #050505;
  color: #fff;
}

.cn-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.cn-site-footer h3 {
  margin-bottom: 18px;
  font-size: 24px;
  font-family: "Inter";
  font-weight: 600;
}

.cn-site-footer p,
.cn-site-footer small,
.cn-footer-contact {
  color: rgba(255, 255, 255, 0.72);
}

.cn-footer-contact a,
.cn-footer-contact p {
  color: #fff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.cn-site-footer p {
  width: 50%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.cn-footer-menu {
  display: grid;
  gap: 10px;
}

.cn-footer-menu a {
  color: #ff5a97;
  font-size: 14px;
  font-weight: 400;
}

.cn-footer-brand {
  display: grid;
  justify-items: end;
  width: 100%;
  gap: 14px;
  text-align: right;
}

.cn-footer-brand img {
  width: auto;
}

p.cn-footer-links {
  color: #535353;
}

.cn-footer-links a,
.cn-footer-links span {
  position: relative;
  margin-left: 10px;
  padding-left: 10px;
  color: #535353;
}

.cn-footer-links a::before,
.cn-footer-links span::before {
  content: "|";
  position: absolute;
  left: 0;
  color: #535353;
}

.cn-footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================================
   Accessibility
================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(19, 136, 255, 0.35);
  outline-offset: 2px;
}

/* Gravity Forms custom design */
.cn-contact-form-card .gform_wrapper {
  width: 100%;
}

.cn-contact-form-card .gform_fields {
  display: grid;
  gap: 18px;
}

.cn-contact-form-card .gfield_label {
  display: none;
}

.cn-contact-form-card input,
.cn-contact-form-card textarea,
.cn-contact-form-card select {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 14px;
}

.cn-contact-form-card textarea {
  min-height: 180px;
  resize: vertical;
}

.cn-contact-form-card input::placeholder,
.cn-contact-form-card textarea::placeholder {
  color: #8f8f8f;
}

.cn-contact-form-card .gform_button {
  width: 155px !important;
  height: 40px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: #000 !important;
  color: #fff !important;
  font-weight: 700 !important;
  cursor: pointer;
}

.cn-contact-form-card .gform_button:hover {
  background: #111 !important;
}

/* Error styling */
/* Gravity Forms custom error styling */
fieldset#field_1_1 {
  border: none !important;
  padding: 0 !important;
}

.cn-contact-form-card .gform_validation_errors {
  margin: 0 0 20px;
  padding: 16px 18px;
  border: 1px solid #f55595 !important;
  border-radius: 10px;
  background: #fff7fb !important;
  color: #111 !important;
  box-shadow: none !important;
}

.cn-contact-form-card .gform_validation_errors h2 {
  margin: 0;
  color: #111 !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.cn-contact-form-card .gform_validation_errors ol {
  margin: 10px 0 0 18px;
  padding: 0;
}

.cn-contact-form-card .gform_validation_errors li,
.cn-contact-form-card .gform_validation_errors a {
  color: #111 !important;
  font-size: 13px;
  line-height: 1.5;
}

.cn-contact-form-card .gfield_error input,
.cn-contact-form-card .gfield_error textarea,
.cn-contact-form-card .gfield_error select {
  border-color: #f55595 !important;
  background: #fff !important;
}

.cn-contact-form-card .gfield_validation_message,
.cn-contact-form-card .validation_message {
  margin-top: 8px;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  color: #f55595 !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* ================================
   Responsive
================================ */
@media (max-width: 1280px) {
  .cn-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }
  .cn-nav-toggle {
    order: 3;
  }
  .cn-header-chat {
    order: 2;
  }
  .cn-phone-pill {
    order: 1;
  }
}
@media (min-width: 1025px) and (max-width: 1105px) {
  .cn-menu--desktop {
    gap: 50px;
  }
}
@media (max-width: 1200px) {
  .cn-hero-grid {
    min-height: 480px;
  }
  .cn-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cn-card-grid2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cn-service-card {
    width: 100%;
    height: auto;
  }
  .cn-service-card2 {
    width: 100%;
    height: auto;
  }
  .cn-feature-image img {
    height: 320px;
  }
  .cn-feature-split {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.08fr);
    align-items: stretch;
    gap: 44px;
    grid-auto-flow: column;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    padding: 36px 44px;
    overflow: hidden;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1024px) {
  .cn-badge-banner {
    background-position: center right;
    background-size: 140%;
  }
  .cn-section {
    padding: 56px 0;
  }
  .cn-header-bar {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }
  .cn-header-center,
  .cn-phone-pill {
    display: none;
  }
  .cn-nav-toggle {
    display: inline-flex;
  }
  .cn-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cn-hero-grid,
  .cn-contact-section-decor .cn-contact-grid,
  .cn-feature-split,
  .cn-footer-grid {
    grid-template-columns: 1fr;
  }
  .cn-badge-grid,
  .cn-image-cta-banner {
    grid-template-columns: 1fr 1fr;
  }
  .cn-hero {
    padding-top: 56px;
  }
  .cn-hero-copy {
    max-width: 60%;
    margin-top: 150px;
  }
  .cn-hero-art {
    justify-content: center;
  }
  .cn-feature-split-section {
    padding: 56px 0;
    background-position: center;
  }
  .cn-feature-split {
    gap: 28px;
    padding: 28px;
  }
  .cn-feature-item p {
    max-width: 100%;
  }
  .cn-contact-section-decor {
    padding: 72px 0 108px;
  }
  .cn-contact-section-decor .cn-contact-grid {
    gap: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: start;
    padding: 0 50px;
  }
  .cn-contact-grid h2,
  .cn-contact-form-card h3 {
    font-size: 36px;
  }
  .cn-section--cards-decor {
    padding: 72px 0 84px;
  }
  .cn-section--cards-decor .cn-narrow {
    margin-bottom: 44px;
    padding: 0 20px;
  }
  .cn-section--cards-decor .cn-narrow h2 {
    font-size: 36px;
  }
  .cn-card-grid2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-right: 32px;
    padding-left: 32px;
  }
  .cn-image-cta-media,
  .cn-image-cta-media img {
    min-height: 340px;
    object-position: -342px;
  }
  .cn-image-cta-title {
    max-width: 280px;
    font-size: 28px;
  }
  .cn-logo,
  .cn-header-right {
    position: relative;
    z-index: 10002;
  }
  .cn-header-center,
  .cn-menu--desktop,
  .cn-header-right .cn-phone-pill,
  .cn-phone-pill--mobile,
  .cn-mobile-cta {
    display: none !important;
  }
  .cn-mobile-icon-btn {
    position: relative;
    z-index: 10002;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--cn-primary);
    color: #fff;
  }
  .cn-nav-toggle {
    position: relative;
    z-index: 10002;
    display: inline-flex;
  }
  .cn-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .cn-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .cn-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .cn-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: block;
    width: 100%;
    height: 100vh;
    padding: 120px 28px 40px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  }
  .cn-mobile-nav.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .cn-mobile-nav .cn-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .cn-menu--mobile {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .cn-menu--mobile li {
    width: 100%;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li {
    opacity: 1;
    transform: translateX(0);
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .cn-menu--mobile a {
    position: relative;
    display: block;
    width: 100%;
    padding: 18px 36px 18px 0;
    background: transparent;
    color: #000;
    font-size: 1.95rem;
    font-weight: 700;
    text-align: left;
  }
  .cn-menu--mobile a::after {
    content: "›";
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .cn-hero {
    height: auto;
  }
  .cn-badge-banner {
    background-position: left;
    background-size: cover;
  }
  .cn-site-footer p {
    width: 100%;
  }
  .cn-badge-banner .cn-container {
    position: relative;
    z-index: 2;
  }
  .cn-hero {
    min-height: 460px;
  }
  .cn-hero-copy {
    max-width: 100%;
    margin: 0;
  }
  .cn-contact-section-decor::after {
    display: none;
  }
  .cn-badge-image img {
    width: 40%;
    height: auto;
  }
  .cn-feature-split {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.08fr);
    align-items: stretch;
    gap: 44px;
    grid-auto-flow: row;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    padding: 36px 44px;
    overflow: hidden;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  }
  .cn-container {
    width: min(100% - 24px, 1180px);
  }
  .cn-section {
    padding: 56px 0;
  }
  .cn-page h1 {
    font-size: 2rem;
  }
  .cn-page h2 {
    font-size: 1.5rem;
  }
  .cn-site-header {
    position: fixed;
    z-index: 10000;
    background: #fff;
  }
  .cn-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    padding: 14px 0;
    background: #fff;
  }
  .cn-logo,
  .cn-header-right {
    position: relative;
    z-index: 10002;
  }
  .cn-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
  .cn-header-center,
  .cn-menu--desktop,
  .cn-header-right .cn-phone-pill,
  .cn-phone-pill--mobile,
  .cn-mobile-cta {
    display: none !important;
  }
  .cn-mobile-icon-btn {
    position: relative;
    z-index: 10002;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--cn-primary);
    color: #fff;
  }
  .cn-nav-toggle {
    position: relative;
    z-index: 10002;
    display: inline-flex;
  }
  .cn-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .cn-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .cn-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .cn-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: block;
    width: 100%;
    height: 100vh;
    padding: 120px 28px 40px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  }
  .cn-mobile-nav.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .cn-mobile-nav .cn-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .cn-menu--mobile {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .cn-menu--mobile li {
    width: 100%;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li {
    opacity: 1;
    transform: translateX(0);
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .cn-mobile-nav.is-open .cn-menu--mobile li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .cn-menu--mobile a {
    position: relative;
    display: block;
    width: 100%;
    padding: 18px 36px 18px 0;
    background: transparent;
    color: #000;
    font-size: 1.95rem;
    font-weight: 700;
    text-align: left;
  }
  .cn-menu--mobile a::after {
    content: "›";
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
  }
  .cn-hero {
    padding: 120px 0 46px;
    background-position: left !important;
    background-size: cover !important;
  }
  .cn-hero-grid {
    min-height: 0;
    gap: 18px;
  }
  .cn-page .cn-hero-copy p,
  .cn-narrow1 p,
  .cn-narrow2 h3,
  .cn-narrow2 p {
    width: 100%;
  }
  .cn-button-row {
    justify-content: center;
    flex-wrap: nowrap;
  }
  .cn-card-grid,
  .cn-card-grid2,
  .cn-badge-grid,
  .cn-image-cta-banner {
    grid-template-columns: 1fr;
  }
  .cn-card-grid2 {
    gap: 20px;
    padding-right: 16px;
    padding-left: 16px;
  }
  .cn-service-card {
    width: 100%;
    height: auto;
    min-height: 320px;
  }
  .cn-service-card2 {
    width: 100%;
    height: auto;
  }
  .cn-feature-split-section {
    padding: 36px 0;
    background-position: center top;
  }
  .cn-feature-split {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
    border-radius: 18px;
  }
  .cn-feature-list {
    order: 1;
    padding-right: 0;
  }
  .cn-feature-image {
    order: 2;
  }
  .cn-image-cta-media img {
    min-height: 220px;
    object-position: -215px;
  }
  .cn-feature-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-left: 24px;
  }
  .cn-feature-item::before {
    top: 5px;
    width: 16px;
    height: 15px;
  }
  .cn-image-cta-media,
  .cn-image-cta-media img {
    min-height: 240px;
  }
  .cn-image-cta-copy {
    padding: 28px 20px 32px;
  }
  .cn-image-cta-copy-inner {
    max-width: 100%;
    align-items: center;
  }
  .cn-image-cta-title {
    max-width: 100%;
    font-size: 32px;
    line-height: 0.98;
  }
  .cn-contact-section-decor {
    padding: 56px 0 96px;
  }
  .cn-contact-section-decor .cn-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }
  .cn-contact-grid h2,
  .cn-contact-form-card h3 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.02;
  }
  .cn-contact-copy,
  .cn-contact-bullets {
    max-width: 100%;
  }
  .cn-contact-form-card {
    width: 100%;
    padding: 22px 18px 20px;
  }
  .cn-section--cards-decor {
    padding: 56px 0 72px;
  }
  .cn-section--cards-decor .cn-narrow {
    margin-bottom: 32px;
    padding: 0 16px;
  }
  .cn-section--cards-decor .cn-narrow h2 {
    font-size: 30px;
    line-height: 1.02;
  }
  .cn-section--cards-decor .cn-narrow p {
    font-size: 14px;
    line-height: 1.6;
  }
  .cn-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .cn-footer-brand {
    justify-items: center;
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
  .cn-footer-brand img {
    width: 40%;
  }
  .cn-footer-brand p {
    width: 70%;
  }
  .cn-contact-section-decor .cn-contact-grid {
    display: block;
    width: 100%;
  }
  .cn-contact-form-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0px;
  }
  .cn-contact-form-card .gform_wrapper,
  .cn-contact-form-card .gform_body,
  .cn-contact-form-card form {
    width: 100% !important;
    max-width: none !important;
  }
  .contact-copy {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .cn-section {
    padding: 42px 0;
  }
  .cn-service-card,
  .cn-service-card2,
  .cn-feature-split,
  .cn-image-cta-copy {
    border-radius: 18px;
  }
  .cn-feature-image img,
  .cn-image-cta-media img {
    min-height: 180px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*# sourceMappingURL=main.css.map */
