/* ==========================================================================
   CREWNITED BY AARTI — HOME PAGE REDESIGN
   Clean, aligned, modern layout with Bootstrap Icons.
   Load AFTER main.css and crewnited-fix.css.
   ========================================================================== */

:root {
  --cn-bg: #101012;
  --cn-bg-2: #16181b;
  --cn-card: #181b1f;
  --cn-card-2: #1d2126;
  --cn-border: rgba(255, 255, 255, 0.09);
  --cn-border-2: rgba(255, 255, 255, 0.16);
  --cn-text: #b7bcc3;
  --cn-text-dim: #8a919a;
  --cn-white: #ffffff;
  --cn-accent: #00c8d7;
  --cn-accent-soft: rgba(0, 200, 215, 0.12);
  --cn-radius: 20px;
  --cn-radius-sm: 12px;
  --cn-section: clamp(84px, 9vw, 128px);
  --cn-gap: 24px;
}

.cn-section {
  padding: var(--cn-section) 0;
}

.cn-section-alt {
  background: var(--cn-bg-2);
}

/* ----------------------------------------------------------------
   Shared type & elements
---------------------------------------------------------------- */
.cn-accent {
  color: var(--cn-accent);
}

.cn-serif {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.cn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cn-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.22);
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}

@media (max-width: 575.98px) {
  .cn-eyebrow {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 8px 14px;
    gap: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }
  .cn-eyebrow i {
    margin-right: 4px;
  }
}

.cn-eyebrow i {
  font-size: 15px;
}

.cn-sec-title {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cn-white);
  margin-bottom: 0;
}

.cn-sec-title-sm {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--cn-white);
  margin-bottom: 0;
}

.cn-body {
  color: var(--cn-text);
  font-size: 17px;
  line-height: 1.75;
  margin: 24px 0 0;
}

.cn-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--cn-gap);
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cn-section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cn-section-head.center .cn-eyebrow {
  margin-bottom: 22px;
}

.cn-section-head.center .cn-body {
  max-width: 640px;
  margin: 18px auto 0;
}

.cn-head-cta {
  margin-bottom: 4px;
  flex-shrink: 0;
}

/* Buttons */
.cn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cn-btn i {
  font-size: 17px;
  transition: transform 0.3s ease;
}

.cn-btn:hover i {
  transform: translate(3px, -3px);
}

.cn-btn-accent {
  background: var(--cn-accent);
  color: #061012;
}

.cn-btn-accent:hover {
  box-shadow: 0 12px 32px -10px rgba(0, 200, 215, 0.55);
  color: #061012;
  transform: translateY(-2px);
}

.cn-btn-ghost {
  background: transparent;
  color: var(--cn-white);
  border-color: var(--cn-border-2);
}

.cn-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--cn-white);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   HERO  (globe background + rotating circle removed)
---------------------------------------------------------------- */
.cn-hero {
  position: relative;
  padding: clamp(180px, 22vh, 260px) 0 clamp(40px, 5vh, 64px);
  background:
    radial-gradient(900px 480px at 88% 8%, rgba(0, 200, 215, 0.14), transparent 60%),
    radial-gradient(700px 500px at -5% 100%, rgba(0, 200, 215, 0.08), transparent 55%),
    var(--cn-bg);
  border-bottom: 1px solid var(--cn-border);
  overflow: hidden;
}

.cn-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(600px 420px at 75% 20%, rgba(0, 0, 0, 0.7), transparent 70%);
  -webkit-mask-image: radial-gradient(600px 420px at 75% 20%, rgba(0, 0, 0, 0.7), transparent 70%);
  pointer-events: none;
}

.cn-hero .container,
.cn-hero .row {
  position: relative;
  z-index: 1;
}

.cn-hero-title {
  font-size: clamp(32px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--cn-white);
}

.cn-hero-title .cn-accent {
  display: block;
}

.cn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.cn-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cn-gap);
  margin-top: 56px;
}

.cn-hero-stat {
  flex: 1 1 150px;
  border: 1px solid var(--cn-border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--cn-radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cn-hero-stat-num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--cn-accent);
}

.cn-hero-stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cn-text);
  line-height: 1.4;
}

/* hero visual */
.cn-hero-visual {
  position: relative;
  padding-top: 18px;
}

.cn-hero-visual-main {
  border-radius: var(--cn-radius);
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border: 1px solid var(--cn-border-2);
  display: block;
}

.cn-hero-visual-side {
  position: absolute;
  top: 0;
  right: -18%;
  width: 52%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--cn-radius-sm);
  border: 4px solid var(--cn-bg);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  display: none;
}

.cn-hero-float {
  position: absolute;
  left: -6%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cn-card);
  border: 1px solid var(--cn-border-2);
  border-radius: 100px;
  padding: 14px 22px;
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.8);
}

.cn-hero-float i {
  font-size: 22px;
  color: var(--cn-accent);
}

.cn-hero-float span {
  font-size: 14px;
  font-weight: 700;
  color: var(--cn-white);
}

/* chips row */
.cn-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(56px, 7vw, 96px);
}

.cn-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cn-text-dim);
  border: 1px solid var(--cn-border);
  border-radius: 100px;
  padding: 10px 18px;
  transition: all 0.3s ease;
}

.cn-chip i {
  color: var(--cn-accent);
  font-size: 14px;
}

.cn-chip:hover {
  color: var(--cn-white);
  border-color: var(--cn-border-2);
  background: rgba(255, 255, 255, 0.04);
}

.cn-chip.link {
  cursor: pointer;
}

/* ----------------------------------------------------------------
   BRAND LOGO MARQUEE — even spacing, no swiper
---------------------------------------------------------------- */
.cn-brands {
  padding: 72px 0 96px;
  border-bottom: 1px solid var(--cn-border);
}

.cn-brands .cn-section-head {
  margin-bottom: 16px;
}

.cn-brands .cn-section-head.center .cn-body {
  max-width: 640px;
}

.cn-brands-heading {
  text-align: center;
  color: var(--cn-white);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 40px;
}

.cn-logo-marquee {
  position: relative;
}

.cn-logo-marquee::before,
.cn-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.cn-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--cn-bg), transparent);
}

.cn-logo-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cn-bg), transparent);
}

.cn-logo-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.cn-logo-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.cn-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 84px;
  padding: 0 26px;
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-sm);
  background: #ffffff;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.cn-logo:hover {
  border-color: rgba(0, 200, 215, 0.35);
  background: #ffffff;
}

.cn-logo img {
  max-width: 150px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.cn-logo:hover img {
  opacity: 1;
}

.cn-logo-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

@media (max-width: 1024px) {
  .cn-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .cn-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .cn-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }
  .cn-logo-grid .cn-logo {
    height: 64px;
    padding: 0 10px;
  }
  .cn-logo-grid .cn-logo img {
    max-width: 120px;
    max-height: 34px;
  }
}

.cn-logo-grid .cn-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 18px;
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-sm);
  background: var(--cn-card);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.cn-logo-grid .cn-logo:hover {
  border-color: rgba(0, 200, 215, 0.35);
  background: var(--cn-card-2);
  transform: translateY(-3px);
}

.cn-logo-grid .cn-logo img {
  max-width: 150px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.cn-logo-grid .cn-logo:hover img {
  filter: none;
  opacity: 1;
}

/* ----------------------------------------------------------------
   ABOUT
---------------------------------------------------------------- */
.cn-about-visual {
  position: relative;
  padding-right: 22%;
}

.cn-about-img-main {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  border-radius: var(--cn-radius);
  border: 1px solid var(--cn-border-2);
  display: block;
}

.cn-about-img-side {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--cn-radius-sm);
  border: 6px solid var(--cn-bg);
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75);
}

.cn-about-badge {
  position: absolute;
  left: 0;
  top: 6%;
  background: var(--cn-accent);
  color: #061012;
  border-radius: var(--cn-radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 46px -16px rgba(0, 200, 215, 0.6);
}

.cn-about-badge-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.cn-about-badge-num span {
  font-size: 20px;
}

.cn-about-badge-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 110px;
}

.cn-check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cn-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cn-white);
  font-size: 17px;
  font-weight: 600;
}

.cn-check-list li i {
  color: var(--cn-accent);
  font-size: 20px;
}

/* ----------------------------------------------------------------
   STRIP MARQUEE
---------------------------------------------------------------- */
.cn-marquee {
  background: var(--cn-accent);
  padding: 22px 0;
  overflow: hidden;
}

.cn-marquee-track {
  display: flex;
  width: max-content;
  animation: cn-strip-scroll 22s linear infinite;
}

.cn-marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  color: #061012;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cn-marquee-item i {
  font-size: 16px;
}

@keyframes cn-strip-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------------------------
   SERVICE CARDS
---------------------------------------------------------------- */
.cn-card-grid {
  --bs-gutter-y: var(--cn-gap);
}

.cn-svc-card {
  position: relative;
  height: 100%;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  overflow: hidden;
}

.cn-svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 200, 215, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cn-svc-card:hover {
  border-color: rgba(0, 200, 215, 0.5);
  transform: translateY(-6px);
}

.cn-svc-card:hover::before {
  opacity: 1;
}

.cn-svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cn-accent);
  font-size: 28px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.cn-svc-num {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 15px;
  font-weight: 800;
  color: var(--cn-text-dim);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.cn-svc-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cn-svc-card p {
  color: var(--cn-text);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.cn-svc-card .cn-svc-btn {
  margin-top: auto;
  padding-top: 26px;
  color: var(--cn-accent);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.cn-svc-card .cn-svc-btn i {
  transition: transform 0.3s ease;
}

.cn-svc-card:hover .cn-svc-btn i {
  transform: translate(3px, -3px);
}

/* service cards with lists */
.cn-svc-card.tall {
  gap: 18px;
}
.cn-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.cn-svc-list li {
  color: var(--cn-white);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cn-svc-list i {
  color: var(--cn-accent);
  font-size: 12px;
}

/* service cards with photo thumbnails */
.cn-svc-card-img {
  padding: 0 !important;
}

.cn-svc-card-img .cn-svc-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: var(--cn-radius-sm) var(--cn-radius-sm) 0 0;
  z-index: 1;
}

/* inner clip layer — keeps the hover zoom cropped while letting
   the icon badge overhang the thumbnail edge */
.cn-svc-card-img .cn-svc-thumb-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.cn-svc-card-img .cn-svc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.cn-svc-card-img:hover .cn-svc-thumb img {
  transform: scale(1.09);
}

.cn-svc-card-img .cn-svc-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 18, 0) 35%, rgba(16, 16, 18, 0.88) 100%);
  pointer-events: none;
}

.cn-svc-card-img .cn-svc-num {
  position: absolute;
  top: 16px;
  left: 16px;
  right: auto;
  width: 46px;
  height: 46px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(16, 16, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cn-white);
  font-weight: 800;
  letter-spacing: 0.06em;
  z-index: 3;
}

.cn-svc-card-img .cn-svc-icon {
  position: absolute;
  left: 30px;
  bottom: -28px;
  width: 58px;
  height: 58px;
  font-size: 25px;
  margin: 0;
  border-radius: 17px;
  background: var(--cn-accent);
  color: #061012;
  border: 0;
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.6), 0 0 0 6px var(--cn-card);
  z-index: 3;
}

.cn-svc-card-img .cn-svc-title {
  margin: 48px 30px 0;
  z-index: 2;
}

.cn-svc-card-img > p {
  margin: 10px 30px 0;
}

.cn-svc-card-img .cn-svc-btn {
  margin-top: auto;
  padding: 26px 30px 30px;
}

/* feature list inside photo cards */
.cn-svc-card-img .cn-svc-list,
.cn-svc-list-pad {
  margin: 14px 30px 0;
}

.cn-svc-card-img .cn-svc-list li {
  color: var(--cn-text);
  font-weight: 600;
  font-size: 14.5px;
}

/* ----------------------------------------------------------------
   STATS / WHY US
---------------------------------------------------------------- */
/* hero floating badge — gentle bob */
.cn-hero-float {
  animation: cn-float 5s ease-in-out infinite;
}
@keyframes cn-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* project cards — image zoom handled in base CSS; add a soft glow */
.cn-project-card:hover {
  box-shadow: 0 30px 60px -30px rgba(0, 200, 215, 0.35);
}

/* cn-accent words gentle shimmer (illuminated signboard vibe) */
.cn-svc-icon {
  animation: cn-icon-pulse 4s ease-in-out infinite;
}
@keyframes cn-icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* scroll progress bar */
.cn-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 999999999;
  pointer-events: none;
  background: transparent;
}
.cn-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cn-accent), #7cf3ff);
  box-shadow: 0 0 12px rgba(0, 200, 215, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  .cn-hero-float,
  .cn-svc-icon {
    animation: none;
  }
  .cn-marquee-track {
    animation-duration: 120s;
  }
  .cn-progress {
    display: none;
  }
}

.cn-stats {
  margin-top: 64px;
}

.cn-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--cn-gap);
}

.cn-stat-card {
  height: 100%;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 34px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.cn-stat-card:hover {
  border-color: rgba(0, 200, 215, 0.5);
  transform: translateY(-6px);
}

.cn-stat-card i {
  font-size: 30px;
  color: var(--cn-accent);
}

.cn-stat-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cn-text-dim);
}

.cn-stat-num {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: var(--cn-white);
}

.cn-stat-num span {
  color: var(--cn-accent);
}

.cn-stat-desc {
  color: var(--cn-text);
  font-size: 14.5px;
  line-height: 1.65;
}

.cn-why-tail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--cn-text);
  font-size: 17px;
  margin-top: 48px;
}

.cn-why-tail a {
  color: var(--cn-accent);
  font-weight: 700;
}

.cn-why-tail a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------------
   PROJECTS
---------------------------------------------------------------- */
.cn-project-card {
  height: 100%;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.cn-project-card:hover {
  border-color: rgba(0, 200, 215, 0.5);
  transform: translateY(-6px);
}

.cn-project-thumb {
  position: relative;
  overflow: hidden;
}

.cn-project-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.cn-project-card:hover .cn-project-thumb img {
  transform: scale(1.06);
}

.cn-project-thumb span {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #061012;
  background: var(--cn-accent);
  border-radius: 100px;
  padding: 8px 14px;
}

.cn-project-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cn-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cn-project-tags a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cn-text);
  border: 1px solid var(--cn-border);
  border-radius: 100px;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

.cn-project-tags a:hover {
  color: var(--cn-accent);
  border-color: rgba(0, 200, 215, 0.5);
}

.cn-project-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--cn-white);
}

.cn-project-link {
  margin-top: auto;
  color: var(--cn-accent);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cn-project-link i {
  transition: transform 0.3s ease;
}

.cn-project-card:hover .cn-project-link i {
  transform: translate(3px, -3px);
}

/* ----------------------------------------------------------------
   HOW WE WORK — 4-step premium horizontal
---------------------------------------------------------------- */
.cn-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Each step item */
.cn-s-item {
  position: relative;
  padding: 0 20px;
}

/* Top: number + dash */
.cn-s-head {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.cn-s-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--cn-accent);
  color: #061012;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.cn-s-item:hover .cn-s-num {
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(0, 200, 215, 0.5);
}

.cn-s-dash {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--cn-accent), rgba(0, 200, 215, 0.08));
  margin-left: 8px;
  border-radius: 1px;
}

/* Card body */
.cn-s-body {
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Accent strip top */
.cn-s-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cn-accent), rgba(0, 200, 215, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Corner glow */
.cn-s-body::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 200, 215, 0.12), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cn-s-item:hover .cn-s-body {
  border-color: rgba(0, 200, 215, 0.3);
  box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 200, 215, 0.06);
  transform: translateY(-6px);
}

.cn-s-item:hover .cn-s-body::before {
  opacity: 1;
}

.cn-s-item:hover .cn-s-body::after {
  opacity: 1;
}

/* Icon */
.cn-s-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.15);
  margin-bottom: 18px;
  transition: background 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cn-s-icon i {
  font-size: 24px;
  color: var(--cn-accent);
  transition: color 0.3s ease;
}

.cn-s-item:hover .cn-s-icon {
  background: rgba(0, 200, 215, 0.18);
  border-color: rgba(0, 200, 215, 0.35);
  transform: scale(1.08);
}

.cn-s-item:hover .cn-s-icon i {
  color: var(--cn-white);
}

.cn-s-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.cn-s-item:hover .cn-s-body h4 {
  color: var(--cn-accent);
}

.cn-s-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cn-text-dim);
  margin: 0;
  transition: color 0.3s ease;
}

.cn-s-item:hover .cn-s-body p {
  color: var(--cn-text);
}

/* End badge */
.cn-steps-end {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.cn-steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0, 200, 215, 0.1), rgba(0, 200, 215, 0.03));
  border: 1px solid rgba(0, 200, 215, 0.2);
  color: var(--cn-text);
  font-size: 15px;
  font-weight: 600;
}

.cn-steps-badge i {
  font-size: 18px;
  color: var(--cn-accent);
}

.cn-steps-badge b {
  color: var(--cn-accent);
  font-weight: 800;
}

/* ---- Tablet: 2x2 grid ---- */
@media (max-width: 991.98px) {
  .cn-steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cn-s-dash {
    display: none;
  }

  .cn-s-item {
    padding: 0;
  }

  .cn-s-body {
    padding: 24px 20px;
  }
}

/* ---- Mobile: single column with left rail ---- */
@media (max-width: 575.98px) {
  .cn-steps-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cn-s-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    padding: 0 0 20px;
    position: relative;
  }

  /* Vertical connecting line */
  .cn-s-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 52px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 200, 215, 0.3), rgba(0, 200, 215, 0.05));
  }

  .cn-s-head {
    margin-bottom: 0;
    padding-top: 4px;
  }

  .cn-s-dash {
    display: none;
  }

  .cn-s-num {
    width: 44px;
    height: 44px;
  }

  .cn-s-body {
    padding: 0 0 0 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .cn-s-body::before,
  .cn-s-body::after {
    display: none;
  }

  .cn-s-item:hover .cn-s-body {
    transform: none;
    box-shadow: none;
    border-color: transparent;
  }

  .cn-s-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .cn-s-icon i {
    font-size: 20px;
  }

  .cn-s-body h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .cn-s-body p {
    font-size: 13.5px;
  }
}

/* ----------------------------------------------------------------
   PROCESS / FAQ ACCORDION
---------------------------------------------------------------- */
.cn-process-visual {
  position: relative;
}

.cn-process-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--cn-radius);
  border: 1px solid var(--cn-border-2);
  display: block;
}

.cn-process-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: var(--cn-card);
  border: 1px solid var(--cn-border-2);
  border-radius: var(--cn-radius);
  padding: 20px 24px;
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.8);
}

.cn-process-badge span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cn-text-dim);
  display: block;
  margin-bottom: 4px;
}

.cn-process-badge b {
  font-size: 26px;
  color: var(--cn-accent);
}

/* Accordion */
.cn-acc {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
}

.cn-acc.acc-centered {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.cn-acc-item {
  background: var(--cn-card);
  border: 1px solid var(--cn-border) !important;
  border-radius: var(--cn-radius-sm) !important;
  overflow: hidden;
}

.cn-acc-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  color: var(--cn-white);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.cn-acc-num {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  color: var(--cn-accent);
  font-size: 22px;
  min-width: 34px;
}

.cn-acc-icon {
  margin-left: auto;
  color: var(--cn-accent);
  font-size: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cn-acc-item.open .cn-acc-icon {
  transform: rotate(180deg);
}

.cn-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cn-acc-body p {
  padding: 0 24px 24px 74px;
  color: var(--cn-text);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------- */
.cn-testi-card {
  height: 100%;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.cn-testi-card:hover {
  border-color: rgba(0, 200, 215, 0.5);
  transform: translateY(-6px);
}

.cn-testi-quote {
  color: var(--cn-accent);
  font-size: 34px;
  line-height: 1;
}

.cn-testi-card blockquote {
  color: var(--cn-white);
  font-size: 16.5px;
  line-height: 1.72;
  margin: 0;
}

.cn-testi-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cn-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.3);
  color: var(--cn-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cn-testi-meta h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 2px;
}

.cn-testi-meta span {
  font-size: 13px;
  color: var(--cn-text-dim);
}

.cn-testi-stars {
  margin-left: auto;
  color: var(--cn-accent);
  font-size: 13px;
  display: flex;
  gap: 2px;
}

/* ----------------------------------------------------------------
   CTA
---------------------------------------------------------------- */
.cn-cta {
  position: relative;
  background:
    radial-gradient(700px 400px at 50% -20%, rgba(0, 200, 215, 0.18), transparent 60%),
    var(--cn-bg-2);
  border-top: 1px solid var(--cn-border);
  border-bottom: 1px solid var(--cn-border);
  text-align: center;
}

.cn-cta-title {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cn-white);
  line-height: 1.02;
}

.cn-cta-title .cn-serif {
  color: var(--cn-accent);
}

.cn-cta .cn-btn {
  margin-top: 40px;
}

/* ----------------------------------------------------------------
   FOOTER TOUCH-UPS (icons)
---------------------------------------------------------------- */
.cn-footer-social .cn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--cn-border-2);
  color: var(--cn-white);
  font-size: 16px;
  transition: all 0.3s ease;
}

.cn-footer-social .cn-social:hover {
  background: var(--cn-accent);
  border-color: var(--cn-accent);
  color: #061012;
}

/* mobile submenu chevron — JS swaps to .fa-chevron-up; rotate the bi icon */
.mobile-menu-main .sub-mobile-menu > a i.fa-chevron-up,
.mobile-menu-main .sub-child-menu > a i.fa-chevron-up {
  transform: rotate(180deg);
}

/* ----------------------------------------------------------------
   INTERIOR PAGES — shared components
---------------------------------------------------------------- */

/* ---- inner page hero ---- */
.cn-page-hero {
  position: relative;
  padding: clamp(170px, 20vh, 230px) 0 70px;
  background:
    radial-gradient(760px 420px at 84% 12%, rgba(0, 200, 215, 0.16), transparent 60%),
    radial-gradient(560px 420px at -4% 100%, rgba(0, 200, 215, 0.07), transparent 55%),
    var(--cn-bg);
  border-bottom: 1px solid var(--cn-border);
  overflow: hidden;
}
.cn-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(520px 340px at 80% 10%, rgba(0, 0, 0, 0.6), transparent 70%);
  -webkit-mask-image: radial-gradient(520px 340px at 80% 10%, rgba(0, 0, 0, 0.6), transparent 70%);
  pointer-events: none;
}
.cn-page-hero .container {
  position: relative;
  z-index: 1;
}
.cn-page-hero h1 {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cn-white);
  margin: 0;
}
.cn-page-hero h1 .cn-accent {
  display: block;
}
.cn-page-hero .cn-body {
  max-width: 620px;
}
.cn-page-hero .cn-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.cn-page-hero .cn-breadcrumb a,
.cn-page-hero .cn-breadcrumb span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cn-text-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cn-page-hero .cn-breadcrumb a:hover {
  color: var(--cn-accent);
}
.cn-page-hero .cn-breadcrumb i {
  color: var(--cn-accent);
  font-size: 11px;
}
.cn-page-hero .cn-breadcrumb .current {
  color: var(--cn-accent);
}
.cn-page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cn-gap);
  margin-top: 40px;
}
.cn-page-hero-stat {
  border: 1px solid var(--cn-border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--cn-radius-sm);
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cn-page-hero-stat b {
  font-size: 28px;
  font-weight: 800;
  color: var(--cn-accent);
  line-height: 1;
}
.cn-page-hero-stat span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cn-text);
}

/* ---- feature list (icon + text rows) ---- */
.cn-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.cn-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.cn-feature i {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.26);
  color: var(--cn-accent);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cn-feature h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 6px;
}
.cn-feature p {
  color: var(--cn-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ---- media card (case studies / gallery) ---- */
.cn-media-card {
  height: 100%;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}
.cn-media-card:hover {
  border-color: rgba(0, 200, 215, 0.5);
  transform: translateY(-6px);
}
.cn-media-thumb {
  position: relative;
  overflow: hidden;
}
.cn-media-thumb img {
  width: 100%;
  aspect-ratio: 4 / 2.6;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.cn-media-card:hover .cn-media-thumb img {
  transform: scale(1.06);
}
.cn-media-thumb span {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #061012;
  background: var(--cn-accent);
  border-radius: 100px;
  padding: 7px 13px;
}
.cn-media-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.cn-media-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cn-white);
}
.cn-media-body p {
  color: var(--cn-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.cn-media-body a {
  margin-top: auto;
  color: var(--cn-accent);
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-top: 10px;
}
.cn-media-body a i {
  transition: transform 0.3s ease;
}
.cn-media-card:hover .cn-media-body a i {
  transform: translate(3px, -3px);
}

/* ---- simple pill grid (materials / industries / palettes) ---- */
.cn-pill-card {
  height: 100%;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}
.cn-pill-card:hover {
  border-color: rgba(0, 200, 215, 0.5);
  transform: translateY(-6px);
}
.cn-pill-card .cn-pill-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.26);
  color: var(--cn-accent);
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cn-pill-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--cn-white);
  margin: 0;
}
.cn-pill-card p {
  color: var(--cn-text);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/* color palette swatches */
.cn-swatches {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.cn-swatches span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   SEO CONTENT SECTION v3 — component-based, animated
   ========================================================================== */

.cn-seo {
  padding: var(--cn-section) 0;
  background: var(--cn-bg);
}

.cn-seo .cn-section-head.center {
  margin-bottom: 52px;
}

/* lead paragraph under the main title */
.cn-seo-lead {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
  color: var(--cn-text);
  font-size: 17px;
  line-height: 1.85;
}

/* generic block wrapper */
.cn-seo-block {
  margin-bottom: clamp(52px, 6vw, 76px);
}

.cn-seo-block:last-of-type {
  margin-bottom: 0;
}

.cn-seo-block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.cn-seo-block-head .bh-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.28);
  color: var(--cn-accent);
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cn-seo-block-head h3 {
  font-family: "Sora", "Urbanist", sans-serif;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--cn-white);
  margin: 0;
  line-height: 1.3;
}

.cn-seo-block-head .bh-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--cn-border), transparent);
  align-self: center;
}

.cn-seo-block p.cn-p {
  color: var(--cn-text);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 16px;
  max-width: 900px;
}

/* ---- info cards ---- */
.cn-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--cn-gap);
}

.cn-info-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.cn-info-card {
  height: 100%;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 28px 26px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cn-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 200, 215, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cn-info-card:hover {
  border-color: rgba(0, 200, 215, 0.5);
  transform: translateY(-5px);
}

.cn-info-card:hover::before {
  opacity: 1;
}

.cn-info-card > * {
  position: relative;
  z-index: 1;
}

.cn-info-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.28);
  color: var(--cn-accent);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.cn-info-card h4 {
  font-family: "Sora", "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.cn-info-card p {
  color: var(--cn-text);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ---- tip callout ---- */
.cn-tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background:
    linear-gradient(160deg, rgba(0, 200, 215, 0.09), transparent 60%),
    var(--cn-card);
  border: 1px solid rgba(0, 200, 215, 0.28);
  border-radius: var(--cn-radius-sm);
  padding: 24px 26px;
  margin-top: var(--cn-gap);
}

.cn-tip .ti {
  flex-shrink: 0;
  color: var(--cn-accent);
  font-size: 24px;
  margin-top: 2px;
}

.cn-tip h5 {
  font-family: "Sora", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 7px;
}

.cn-tip p {
  color: var(--cn-text);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

/* ---- chip cloud ---- */
.cn-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cn-chip-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--cn-border-2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cn-text);
  border-radius: 100px;
  padding: 10px 19px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cn-chip-cloud span:hover {
  color: var(--cn-white);
  border-color: rgba(0, 200, 215, 0.5);
  transform: translateY(-2px);
}

.cn-chip-cloud span i {
  color: var(--cn-accent);
  font-size: 13px;
}

/* ---- vertical step timeline ---- */
.cn-vsteps {
  display: flex;
  flex-direction: column;
}

.cn-vstep {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
}

.cn-vstep:last-child {
  padding-bottom: 0;
}

.cn-vstep::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(var(--cn-accent), rgba(0, 200, 215, 0.06));
}

.cn-vstep:last-child::before {
  display: none;
}

.cn-vstep-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cn-bg-2);
  border: 2px solid var(--cn-accent);
  color: var(--cn-accent);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cn-vstep-body h4 {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 7px;
}

.cn-vstep-body p {
  color: var(--cn-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  max-width: 720px;
}

/* ---- duo comparison ---- */
.cn-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--cn-gap);
}

.cn-duo-col {
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 32px 30px;
  transition: all 0.35s ease;
}

.cn-duo-col:hover {
  transform: translateY(-4px);
}

.cn-duo-col h4 {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 18px;
}

.cn-duo-col h4 i {
  color: var(--cn-accent);
}

.cn-duo-col p {
  color: var(--cn-text);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 12px;
}

.cn-duo-col p:last-child {
  margin-bottom: 0;
}

.cn-duo-col.good {
  border-color: rgba(0, 200, 215, 0.4);
  background:
    linear-gradient(160deg, rgba(0, 200, 215, 0.08), transparent 55%),
    var(--cn-card);
}

/* ---- native-details FAQ accordion ---- */
.cn-dfaq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cn-dfaq {
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-sm);
  transition: border-color 0.3s ease;
}

.cn-dfaq[open] {
  border-color: rgba(0, 200, 215, 0.45);
}

.cn-dfaq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 22px;
  color: var(--cn-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.45;
  user-select: none;
}

.cn-dfaq summary::-webkit-details-marker {
  display: none;
}

.cn-dfaq summary .pm {
  margin-left: auto;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.3);
  color: var(--cn-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
}

.cn-dfaq[open] summary .pm {
  transform: rotate(45deg);
  background: var(--cn-accent);
  color: #061012;
}

.cn-dfaq > p {
  padding: 0 56px 21px 22px;
  margin: 0;
  color: var(--cn-text);
  font-size: 15px;
  line-height: 1.78;
}

/* ---- closing CTA card ---- */
.cn-seo-close {
  margin-top: clamp(44px, 5vw, 68px);
  text-align: center;
  background:
    radial-gradient(600px 280px at 50% -30%, rgba(0, 200, 215, 0.16), transparent 60%),
    var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 46px 34px;
}

.cn-seo-close h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 14px;
}

.cn-seo-close p {
  max-width: 660px;
  margin: 0 auto 24px;
  color: var(--cn-text);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 991.98px) {
  .cn-info-grid,
  .cn-info-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .cn-info-grid,
  .cn-info-grid.two {
    grid-template-columns: 1fr;
  }

  .cn-duo {
    grid-template-columns: 1fr;
  }

  .cn-seo-block-head .bh-line {
    display: none;
  }

  .cn-dfaq > p {
    padding-right: 22px;
  }
}

/* --- brands strip on interior pages (alt background) --- */
.cn-brands-page {
  background: var(--cn-bg-2);
  border-top: 1px solid var(--cn-border);
  border-bottom: 1px solid var(--cn-border);
}

.cn-brands-page .cn-logo-marquee::before {
  background: linear-gradient(90deg, var(--cn-bg-2), transparent);
}

.cn-brands-page .cn-logo-marquee::after {
  background: linear-gradient(-90deg, var(--cn-bg-2), transparent);
}

.cn-brands-sub {
  text-align: center;
  color: var(--cn-text-dim);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 620px;
  margin: 30px auto 0;
}

/* ----------------------------------------------------------------
   WHY CREWNITED — three pillars
---------------------------------------------------------------- */
.cn-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--cn-gap);
  margin-top: 56px;
}

.cn-pillar {
  position: relative;
  overflow: hidden;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 42px 36px;
  transition: all 0.35s ease;
}

.cn-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 200, 215, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cn-pillar:hover {
  border-color: rgba(0, 200, 215, 0.5);
  transform: translateY(-6px);
}

.cn-pillar:hover::before {
  opacity: 1;
}

.cn-pillar > * {
  position: relative;
  z-index: 1;
}

.cn-pillar i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.28);
  color: var(--cn-accent);
  font-size: 28px;
  margin-bottom: 26px;
}

.cn-pillar h3 {
  font-family: "Sora", "Urbanist", sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cn-white);
  margin-bottom: 12px;
}

.cn-pillar p {
  color: var(--cn-text);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------------------------------
   PROJECTS — asymmetric editorial grid
---------------------------------------------------------------- */
.cn-projects .row {
  --bs-gutter-x: var(--cn-gap);
  --bs-gutter-y: var(--cn-gap);
}

@media (min-width: 992px) {
  .cn-projects .cn-project-card {
    height: 100%;
  }

  /* thumbs stretch so both cards in a row share equal height */
  .cn-projects .cn-project-thumb {
    flex: 1;
    display: flex;
    min-height: 300px;
  }

  .cn-projects .cn-project-thumb img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 991.98px) {
  .cn-projects .cn-project-thumb img {
    aspect-ratio: 4 / 3;
  }
}

/* ----------------------------------------------------------------
   FLEET TEASER STRIP
---------------------------------------------------------------- */
.cn-fleet-strip {
  padding: 70px 0;
  background:
    radial-gradient(700px 360px at 12% 0%, rgba(0, 200, 215, 0.12), transparent 60%),
    var(--cn-bg-2);
  border-top: 1px solid var(--cn-border);
  border-bottom: 1px solid var(--cn-border);
}

.cn-fleet-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cn-fleet-copy h2 {
  font-family: "Sora", "Urbanist", sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cn-white);
  margin: 0;
}

.cn-fleet-copy p {
  color: var(--cn-text);
  font-size: 16px;
  line-height: 1.7;
  margin: 12px 0 0;
  max-width: 480px;
}

.cn-fleet-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.cn-fleet-chips li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cn-white);
  border: 1px solid var(--cn-border-2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  padding: 11px 20px;
  white-space: nowrap;
}

.cn-fleet-chips li i {
  color: var(--cn-accent);
  font-size: 15px;
}

/* ----------------------------------------------------------------
   TESTIMONIALS — carousel
---------------------------------------------------------------- */
.cn-testi-slider {
  overflow: hidden;
}

.cn-testi-slider .swiper-slide {
  height: auto;
  display: flex;
}

.cn-testi-slider .cn-testi-card {
  width: 100%;
}

.cn-testi-dots {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.cn-testi-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s ease;
}

.cn-testi-dots .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--cn-accent);
}

/* ----------------------------------------------------------------
   RESPONSIVE — new sections
---------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .cn-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .cn-pillars {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .cn-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .cn-fleet-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .cn-brands {
    padding: 48px 0 60px;
  }

  .cn-brands-heading {
    font-size: clamp(20px, 2.8vw, 32px);
    margin-bottom: 30px;
  }

  .cn-logo-marquee::before,
  .cn-logo-marquee::after {
    width: 40px;
  }

  .cn-logo-slider .cn-logo {
    height: 68px;
  }

  .cn-logo-slider .cn-logo img {
    max-width: 110px;
    max-height: 30px;
  }

  .cn-pillar {
    padding: 32px 28px;
  }

  .cn-fleet-strip {
    padding: 56px 0;
  }

  .cn-testi-dots {
    margin-top: 30px;
  }
}

/* ==========================================================================
   FOOTER — aligned grid, consistent rhythm
   ========================================================================== */

.footer-section {
  background: #0b0c0e;
  border-top: 1px solid var(--cn-border);
}

/* keep footer on the same grid as the rest of the site */
.footer-section .container {
  max-width: 1320px;
}

.footer-widget-wrapper {
  padding: 80px 0 64px;
}

.footer-widget-wrapper .row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 48px;
}

/* kill the old push-down hack — all columns start at the same top line */
.footer-widget-wrapper .footer-widget-items {
  margin-top: 0;
}

/* --- widget heads: logo column vs text columns share one baseline --- */
.footer-widget-wrapper .footer-widget-items .widget-head {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.footer-widget-wrapper .footer-widget-items .widget-head span {
  font-family: "Sora", "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cn-accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-widget-wrapper .footer-widget-items .widget-head span::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--cn-accent);
  opacity: 0.85;
}

.footer-widget-wrapper .footer-widget-items .widget-head .footer-logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* --- brand column --- */
.footer-widget-wrapper .footer-widget-items .footer-content {
  max-width: 340px;
}

.footer-widget-wrapper .footer-widget-items .footer-content p {
  color: var(--cn-text);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 500;
  margin: 0;
}

.footer-widget-wrapper .footer-widget-items .footer-content .social-icon {
  gap: 10px;
  margin-top: 26px;
}

/* --- link columns --- */
.gt-list-area {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 13px;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li {
  transition: none;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover {
  margin-left: 0;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cn-text);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li a::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cn-accent);
  opacity: 0.45;
  transition: opacity 0.25s ease;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
  color: var(--cn-white);
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a::before {
  opacity: 1;
}

/* --- newsletter column --- */
.footer-form-3 .subscribe-text {
  display: block;
  font-family: "Sora", "Urbanist", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--cn-white);
  margin-bottom: 18px;
}

.footer-form-3 .subscribe-text span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--cn-accent);
}

.footer-form-3 form {
  position: relative;
  margin-top: 0;
}

.footer-form-3 form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--cn-border-2);
  border-radius: 100px;
  color: var(--cn-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 15px 58px 15px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-form-3 form input::placeholder {
  color: var(--cn-text-dim);
}

.footer-form-3 form input:focus {
  outline: none;
  border-color: rgba(0, 200, 215, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 200, 215, 0.12);
}

.footer-form-3 form .email-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 100px;
  background: var(--cn-accent);
  color: #061012 !important;
  font-size: 16px;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.footer-form-3 form .email-btn:hover {
  filter: brightness(1.12);
  transform: translateX(1px);
}

/* --- contact rows under the form --- */
.footer-contact-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-info a,
.footer-contact-info .cn-footer-loc {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cn-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.footer-contact-info a i,
.footer-contact-info .cn-footer-loc i {
  color: var(--cn-accent);
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-info a:hover {
  color: var(--cn-white);
}

/* --- footer bottom bar --- */
.footer-bottom.style-bottom-4 {
  border-top: 1px solid var(--cn-border);
  padding: 22px 0;
}

.footer-bottom .footer-bottom-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cn-footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.cn-footer-bottom-row p {
  margin: 0;
}

.footer-bottom .footer-bottom-wrapper .footer-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer-bottom .footer-bottom-wrapper .footer-list li {
  color: var(--cn-border-2);
  font-size: 13px;
}

.footer-bottom .footer-bottom-wrapper .footer-list li a {
  color: var(--cn-text-dim);
  font-size: 13px;
  transition: color 0.25s ease;
}

.footer-bottom .footer-bottom-wrapper .footer-list li a:hover {
  color: var(--cn-accent);
}

.footer-bottom .footer-bottom-wrapper p {
  color: var(--cn-text-dim);
  font-size: 13px;
  font-weight: 500;
}

.footer-bottom .footer-bottom-wrapper p b {
  color: var(--cn-white);
}

/* --- responsive footer --- */
@media (max-width: 991.98px) {
  .footer-widget-wrapper {
    padding: 60px 0 52px;
  }
}

@media (max-width: 575.98px) {
  .footer-widget-wrapper .row {
    --bs-gutter-y: 40px;
  }

  .footer-form-3 .subscribe-text {
    font-size: 19px;
  }

  .footer-bottom .footer-bottom-wrapper {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .cn-footer-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom .footer-bottom-wrapper .footer-list {
    justify-content: center;
  }
}

/* ==========================================================================
   ABOUT PAGE HERO — split headline + stat strip
   ========================================================================== */

.cn-hero-about {
  padding-bottom: 84px;
}

.cn-hero-about h1 {
  max-width: 640px;
}

.cn-hero-about .cn-body {
  margin-top: 0;
  font-size: 16.5px;
}

/* --- stat strip --- */
.cn-ph-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--cn-gap);
  margin-top: clamp(44px, 5vw, 64px);
}

.cn-ph-stat {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.cn-ph-stat::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cn-accent), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cn-ph-stat:hover {
  border-color: rgba(0, 200, 215, 0.45);
  background: rgba(0, 200, 215, 0.05);
  transform: translateY(-4px);
}

.cn-ph-stat:hover::after {
  opacity: 1;
}

.cn-ph-stat > i {
  font-size: 22px;
  color: var(--cn-accent);
  margin-bottom: 4px;
}

.cn-ph-stat-num {
  font-family: "Sora", "Urbanist", sans-serif;
  font-size: clamp(38px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cn-white);
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.cn-ph-stat-num em {
  font-style: normal;
  font-size: 0.55em;
  font-weight: 700;
  color: var(--cn-accent);
}

.cn-ph-stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cn-text-dim);
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .cn-ph-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cn-hero-about {
    padding-bottom: 64px;
  }
}

@media (max-width: 575.98px) {
  .cn-ph-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .cn-ph-stat {
    padding: 20px 18px;
  }

  .cn-ph-stat-num {
    font-size: 32px;
  }

  .cn-ph-stat-label {
    font-size: 11.5px;
  }
}

/* ==========================================================================
   WHY DIRECT — broker vs maker comparison
   ========================================================================== */

.cn-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: var(--cn-gap);
  margin-top: 56px;
}

.cn-compare-col {
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  padding: 36px 34px;
  transition: all 0.35s ease;
}

.cn-compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cn-compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cn-compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.55;
}

.cn-compare-col li i {
  flex-shrink: 0;
  font-size: 17px;
  margin-top: 2px;
}

/* bad column */
.cn-compare-bad {
  opacity: 0.92;
}

.cn-compare-bad .cn-compare-tag {
  color: #ff7b7b;
}

.cn-compare-bad li {
  color: var(--cn-text-dim);
}

.cn-compare-bad li i {
  color: #ff7b7b;
}

/* good column */
.cn-compare-good {
  border-color: rgba(0, 200, 215, 0.4);
  background:
    linear-gradient(160deg, rgba(0, 200, 215, 0.08), transparent 55%),
    var(--cn-card);
}

.cn-compare-good:hover {
  border-color: rgba(0, 200, 215, 0.6);
  transform: translateY(-4px);
}

.cn-compare-good .cn-compare-tag {
  color: var(--cn-accent);
}

.cn-compare-good li {
  color: var(--cn-white);
}

.cn-compare-good li i {
  color: var(--cn-accent);
}

/* middle save badge */
.cn-compare-mid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cn-save-badge {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--cn-accent);
  color: #061012;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 18px 46px -14px rgba(0, 200, 215, 0.55);
  animation: cn-badge-pulse 3s ease-in-out infinite;
}

.cn-save-badge b {
  font-family: "Sora", "Urbanist", sans-serif;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

@keyframes cn-badge-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cn-save-badge {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .cn-compare {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .cn-compare-mid {
    order: 3;
  }

  .cn-save-badge {
    width: 116px;
    height: 116px;
  }

  .cn-save-badge b {
    font-size: 23px;
  }
}

/* ----------------------------------------------------------------
   WORKFLOW — vertical zigzag timeline
---------------------------------------------------------------- */
.cn-wf {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.cn-wf-rail {
  position: absolute;
  top: 0;
  bottom: 80px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
    var(--cn-accent) 0%,
    rgba(0, 200, 215, 0.25) 30%,
    rgba(0, 200, 215, 0.25) 70%,
    var(--cn-accent) 100%);
  z-index: 0;
}

.cn-wf-rail::after {
  content: "";
  position: absolute;
  inset: 0 -6px;
  background: linear-gradient(180deg,
    rgba(0, 200, 215, 0.3),
    rgba(0, 200, 215, 0.06),
    rgba(0, 200, 215, 0.3));
  filter: blur(8px);
  border-radius: 4px;
}

.cn-wf-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 12px 0;
}

.cn-wf-row--rev {
  direction: rtl;
}

.cn-wf-row--rev > * {
  direction: ltr;
}

.cn-wf-node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 2;
}

.cn-wf-node span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cn-accent);
  border: 3px solid var(--cn-bg-2);
  box-shadow: 0 0 0 3px rgba(0, 200, 215, 0.25),
    0 0 20px rgba(0, 200, 215, 0.35);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.cn-wf-row:hover .cn-wf-node span {
  transform: scale(1.4);
  box-shadow: 0 0 0 5px rgba(0, 200, 215, 0.3),
    0 0 32px rgba(0, 200, 215, 0.5);
}

.cn-wf-spacer {
  min-height: 1px;
}

.cn-wf-card {
  position: relative;
  background: var(--cn-card);
  border: 1px solid var(--cn-border-2);
  border-radius: var(--cn-radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cn-wf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cn-accent), rgba(0, 200, 215, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cn-wf-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 200, 215, 0.12), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cn-wf-row:hover .cn-wf-card {
  border-color: rgba(0, 200, 215, 0.3);
  box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 200, 215, 0.08);
  transform: translateY(-4px);
}

.cn-wf-row:hover .cn-wf-card::before {
  opacity: 1;
}

.cn-wf-row:hover .cn-wf-card::after {
  opacity: 1;
}

.cn-wf-num {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  color: rgba(0, 200, 215, 0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  pointer-events: none;
  transition: color 0.4s ease;
}

.cn-wf-row:hover .cn-wf-num {
  color: rgba(0, 200, 215, 0.22);
}

.cn-wf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.2);
  margin-bottom: 18px;
  transition: background 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cn-wf-icon i {
  font-size: 24px;
  color: var(--cn-accent);
  transition: color 0.3s ease;
}

.cn-wf-row:hover .cn-wf-icon {
  background: rgba(0, 200, 215, 0.18);
  transform: scale(1.08);
}

.cn-wf-row:hover .cn-wf-icon i {
  color: var(--cn-white);
}

.cn-wf-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.cn-wf-row:hover .cn-wf-card h4 {
  color: var(--cn-accent);
}

.cn-wf-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cn-text-dim);
  margin: 0;
  transition: color 0.3s ease;
}

.cn-wf-row:hover .cn-wf-card p {
  color: var(--cn-text);
}

.cn-wf-end {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.cn-wf-end-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0, 200, 215, 0.12), rgba(0, 200, 215, 0.04));
  border: 1px solid rgba(0, 200, 215, 0.25);
  color: var(--cn-text);
  font-size: 15px;
  font-weight: 600;
  animation: cn-pulse-glow 2.5s ease-in-out infinite;
}

.cn-wf-end-badge i {
  font-size: 18px;
  color: var(--cn-accent);
}

.cn-wf-end-badge b {
  color: var(--cn-accent);
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .cn-wf-rail { left: 24px; }
  .cn-wf-row, .cn-wf-row--rev {
    grid-template-columns: 48px 1fr;
    direction: ltr;
  }
  .cn-wf-row--rev > * { direction: ltr; }
  .cn-wf-spacer { display: none; }
  .cn-wf-node { width: 48px; height: 48px; }
  .cn-wf-card { margin-left: 8px; padding: 24px 22px; }
  .cn-wf-num { font-size: 38px; }
}

@media (max-width: 575.98px) {
  .cn-wf-rail { left: 18px; }
  .cn-wf-row, .cn-wf-row--rev { grid-template-columns: 36px 1fr; }
  .cn-wf-node { width: 36px; height: 36px; }
  .cn-wf-node span { width: 12px; height: 12px; border-width: 2px; }
  .cn-wf-card { padding: 20px 18px; }
  .cn-wf-icon { width: 44px; height: 44px; border-radius: 12px; }
  .cn-wf-icon i { font-size: 20px; }
  .cn-wf-card h4 { font-size: 16px; }
  .cn-wf-card p { font-size: 14px; }
  .cn-wf-num { font-size: 30px; top: 10px; right: 14px; }
}

/* ----------------------------------------------------------------
   CONTACT — info cards + form card
---------------------------------------------------------------- */
.cn-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cn-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-sm);
  padding: 22px 24px;
  transition: border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cn-contact-card:hover {
  border-color: rgba(0, 200, 215, 0.25);
  box-shadow: 0 16px 48px -16px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.cn-contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cn-accent-soft);
  border: 1px solid rgba(0, 200, 215, 0.2);
  flex-shrink: 0;
}

.cn-contact-card-icon i {
  font-size: 20px;
  color: var(--cn-accent);
}

.cn-contact-card:hover .cn-contact-card-icon {
  background: rgba(0, 200, 215, 0.18);
}

.cn-contact-card:hover .cn-contact-card-icon i {
  color: var(--cn-white);
}

.cn-contact-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 2px;
}

.cn-contact-card-body p {
  font-size: 13px;
  color: var(--cn-text-dim);
  margin-bottom: 4px;
}

.cn-contact-card-body a {
  font-size: 15px;
  font-weight: 700;
  color: var(--cn-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cn-contact-card-body a:hover {
  color: var(--cn-white);
}

/* Form card */
.cn-form-card {
  background: var(--cn-card);
  border: 1px solid var(--cn-border-2);
  border-radius: var(--cn-radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.cn-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cn-accent), rgba(0, 200, 215, 0.1));
}

.cn-form-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cn-border);
}

.cn-form-card-head > i {
  font-size: 28px;
  color: var(--cn-accent);
}

.cn-form-card-head h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 2px;
}

.cn-form-card-head p {
  font-size: 14px;
  color: var(--cn-text-dim);
  margin: 0;
}

.cn-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cn-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--cn-text);
  letter-spacing: 0.02em;
}

.cn-field input,
.cn-field textarea,
.cn-field select {
  background: var(--cn-bg-2);
  border: 1px solid var(--cn-border-2);
  border-radius: var(--cn-radius-sm);
  padding: 14px 16px;
  color: var(--cn-white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.cn-field input::placeholder,
.cn-field textarea::placeholder {
  color: var(--cn-text-dim);
}

.cn-field input:focus,
.cn-field textarea:focus,
.cn-field select:focus {
  border-color: var(--cn-accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 215, 0.1);
}

.cn-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a919a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cn-field select option {
  background: var(--cn-bg-2);
  color: var(--cn-white);
}

.cn-btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .cn-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .cn-contact-grid {
    grid-template-columns: 1fr;
  }
  .cn-form-card {
    padding: 24px 20px;
  }
}

/* ----------------------------------------------------------------
   MAP — full-width embed + info bar
---------------------------------------------------------------- */
.cn-map-wrap {
  border-radius: var(--cn-radius);
  overflow: hidden;
  border: 1px solid var(--cn-border-2);
  background: var(--cn-card);
}

.cn-map {
  position: relative;
  width: 100%;
  height: 480px;
}

.cn-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cn-map-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  border-top: 1px solid var(--cn-border);
  flex-wrap: wrap;
}

.cn-map-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cn-map-info-card > i {
  font-size: 22px;
  color: var(--cn-accent);
}

.cn-map-info-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 1px;
}

.cn-map-info-card p {
  font-size: 14px;
  color: var(--cn-text-dim);
  margin: 0;
}

.cn-map-info .cn-btn {
  padding: 12px 22px;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .cn-map {
    height: 300px;
  }
  .cn-map-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
  }
}

/* ----------------------------------------------------------------
   WHATSAPP — nav icon + floating button
---------------------------------------------------------------- */
.cn-whatsapp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #25d366;
  font-size: 18px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cn-whatsapp-nav:hover {
  background: #25d366;
  color: #fff;
  transform: scale(1.1);
}

.cn-wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.cn-wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.cn-wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: cn-wa-ring 2s ease-in-out infinite;
}

@keyframes cn-wa-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

@media (max-width: 575.98px) {
  .cn-wa-float {
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* ----------------------------------------------------------------
   AI CHATBOT
---------------------------------------------------------------- */
.cn-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

/* Toggle button */
.cn-chatbot-toggle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cn-accent), #0090a0);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 200, 215, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.cn-chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(0, 200, 215, 0.55);
}

.cn-chatbot-toggle.active {
  background: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cn-chatbot-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 215, 0.4);
  animation: cn-chat-pulse 2s ease-in-out infinite;
}

@keyframes cn-chat-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* Chat window */
.cn-chatbot-window {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 360px;
  max-height: 520px;
  background: var(--cn-bg);
  border: 1px solid var(--cn-border-2);
  border-radius: var(--cn-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.7);
}

.cn-chatbot-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.cn-chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(0, 200, 215, 0.12), rgba(0, 200, 215, 0.04));
  border-bottom: 1px solid var(--cn-border);
}

.cn-chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--cn-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #061012;
  flex-shrink: 0;
}

.cn-chatbot-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 1px;
}

.cn-chatbot-header span {
  font-size: 12px;
  color: #25d366;
  font-weight: 600;
}

.cn-chatbot-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--cn-text-dim);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.cn-chatbot-close:hover {
  color: var(--cn-white);
}

/* Messages */
.cn-chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 340px;
  scrollbar-width: thin;
  scrollbar-color: var(--cn-border-2) transparent;
}

.cn-chat-msg {
  max-width: 85%;
}

.cn-chat-bot {
  align-self: flex-start;
}

.cn-chat-user {
  align-self: flex-end;
}

.cn-chat-msg p {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  white-space: pre-line;
}

.cn-chat-bot p {
  background: var(--cn-card-2);
  border: 1px solid var(--cn-border);
  color: var(--cn-text);
  border-bottom-left-radius: 4px;
}

.cn-chat-user p {
  background: var(--cn-accent);
  color: #061012;
  border-bottom-right-radius: 4px;
}

/* Quick replies */
.cn-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.cn-chat-quick button {
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0, 200, 215, 0.3);
  background: rgba(0, 200, 215, 0.08);
  color: var(--cn-accent);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cn-chat-quick button:hover {
  background: var(--cn-accent);
  color: #061012;
}

/* Input */
.cn-chatbot-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--cn-border);
  background: var(--cn-card);
}

.cn-chatbot-input input {
  flex: 1;
  background: var(--cn-bg-2);
  border: 1px solid var(--cn-border-2);
  border-radius: 100px;
  padding: 10px 16px;
  color: var(--cn-white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.cn-chatbot-input input::placeholder {
  color: var(--cn-text-dim);
}

.cn-chatbot-input input:focus {
  border-color: var(--cn-accent);
}

.cn-chatbot-input button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cn-accent);
  border: none;
  color: #061012;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cn-chatbot-input button:hover {
  background: #00b0c0;
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 575.98px) {
  .cn-chatbot {
    bottom: 16px;
    right: 16px;
  }

  .cn-chatbot-window {
    width: calc(100vw - 32px);
    max-height: 460px;
    right: 0;
  }

  .cn-chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* ----------------------------------------------------------------
   404 PAGE
---------------------------------------------------------------- */
.cn-404sec {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.cn-404-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* Big 404 Number */
.cn-404-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cn-404-big span {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 800;
  color: var(--cn-white);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.12;
}

.cn-404-orb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 200, 215, 0.15), rgba(0, 200, 215, 0.05));
  border: 1px solid rgba(0, 200, 215, 0.2);
  animation: cn-404-pulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

.cn-404-orb i {
  font-size: 40px;
  color: var(--cn-accent);
}

@keyframes cn-404-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 200, 215, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 200, 215, 0.15); }
}

/* Title */
.cn-404-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--cn-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Description */
.cn-404-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cn-text-dim);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Action Buttons */
.cn-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cn-404-actions .cn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Quick Links */
.cn-404-links {
  border-top: 1px solid var(--cn-border);
  padding-top: 36px;
}

.cn-404-links-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cn-text-dim);
  margin-bottom: 20px;
}

.cn-404-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cn-404-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border-radius: 16px;
  background: var(--cn-card);
  border: 1px solid var(--cn-border);
  color: var(--cn-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cn-404-link-card i {
  font-size: 24px;
  color: var(--cn-accent);
  transition: transform 0.3s ease;
}

.cn-404-link-card span {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.cn-404-link-card:hover {
  border-color: rgba(0, 200, 215, 0.3);
  background: var(--cn-card-2);
  transform: translateY(-4px);
  color: var(--cn-white);
}

.cn-404-link-card:hover i {
  transform: scale(1.15);
}

/* Tablet */
@media (max-width: 767.98px) {
  .cn-404-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cn-404-orb {
    width: 80px;
    height: 80px;
  }

  .cn-404-orb i {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .cn-404-actions {
    flex-direction: column;
  }

  .cn-404-actions .cn-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------------------------------
   FOOTER LEAD FORM
---------------------------------------------------------------- */
.cn-lead-msg {
  font-size: 13px;
  margin-top: 10px;
  min-height: 20px;
}

.cn-lead-ok {
  color: #34d399;
}

.cn-lead-err {
  color: #f87171;
}

.cn-spin {
  animation: cn-spin 0.8s linear infinite;
}

@keyframes cn-spin {
  to { transform: rotate(360deg); }
}

/* ----------------------------------------------------------------
   FOOTER CREDIT — Made with love by Kwiqrank
---------------------------------------------------------------- */
.cn-footer-credit {
  font-size: 13px;
  color: var(--cn-text-dim);
  margin-top: 6px;
}

.cn-footer-credit i {
  color: #f87171;
  font-size: 11px;
}

.cn-footer-credit a {
  color: var(--cn-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cn-footer-credit a:hover {
  color: var(--cn-white);
}