:root {
  --cxtp-primary: #6C2DC7;
  --cxtp-primary-dark: #4A1A9E;
  --cxtp-primary-light: #8B50D8;
  --cxtp-bg: #FFFFFF;
  --cxtp-bg-alt: #F5F3F8;
  --cxtp-dark-base: #0D0A1A;
  --cxtp-dark-card: #1A1430;
  --cxtp-dark-border: #2E2550;
  --cxtp-text: #1A1A2E;
  --cxtp-body: #4A4A6A;
  --cxtp-muted: #7A7A9A;
  --cxtp-border: #DDD9EE;
  --cxtp-radius: 8px;
  --cxtp-radius-lg: 14px;
  --cxtp-shadow: 0 2px 20px rgba(108,45,199,0.10);
  --cxtp-shadow-card: 0 4px 28px rgba(108,45,199,0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4A4A6A;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #1A1A2E;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 48px; letter-spacing: -0.02em; line-height: 1.15; }
h2 { font-size: 36px; letter-spacing: -0.01em; line-height: 1.2; }
h3 { font-size: 26px; font-weight: 600; line-height: 1.25; letter-spacing: 0; }
h4 { font-size: 20px; font-weight: 600; line-height: 1.3; }

p { font-size: 16px; line-height: 1.65; color: #4A4A6A; }
.lead { font-size: 18px; line-height: 1.7; color: #4A4A6A; }
.text-muted-cxtp { font-size: 14px; line-height: 1.5; letter-spacing: 0.01em; color: #5A5A78; }

a { color: #6C2DC7; text-decoration: none; }
a:hover { color: #4A1A9E; }

img { max-width: 100%; height: auto; }

.container { max-width: 1180px; }

.cxtp-section {
  padding: 72px 0;
}

.cxtp-section-compact {
  padding: 48px 0;
}

.cxtp-section-dark {
  background-color: #0D0A1A;
  padding: 72px 0;
}

.cxtp-section-alt {
  background-color: #F5F3F8;
  padding: 72px 0;
}

.cxtp-section-dark h1,
.cxtp-section-dark h2,
.cxtp-section-dark h3,
.cxtp-section-dark h4 {
  color: #E8E4F4;
}

.cxtp-section-dark p,
.cxtp-section-dark .lead {
  color: #C4BAE0;
}

.cxtp-section-dark .text-muted-cxtp {
  color: #8A7DB0;
}

.btn-cxtp-primary {
  background-color: #6C2DC7;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.0;
  display: inline-block;
  transition: background-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-cxtp-primary:hover {
  background-color: #4A1A9E;
  color: #FFFFFF;
}

.btn-cxtp-secondary {
  background-color: transparent;
  color: #6C2DC7;
  border: 2px solid #6C2DC7;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.0;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-cxtp-secondary:hover {
  background-color: rgba(108,45,199,0.08);
  color: #6C2DC7;
}

.btn-cxtp-dark {
  background-color: #FFFFFF;
  color: #6C2DC7;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.0;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-cxtp-dark:hover {
  background-color: #F0EBF8;
  color: #4A1A9E;
}

.btn-cxtp-dark-outline {
  background-color: transparent;
  color: #E8E4F4;
  border: 2px solid rgba(232,228,244,0.4);
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.0;
  display: inline-block;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-cxtp-dark-outline:hover {
  background-color: rgba(232,228,244,0.1);
  border-color: rgba(232,228,244,0.7);
  color: #E8E4F4;
}

.cxtp-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cxtp-pill-sector {
  background-color: rgba(108,45,199,0.12);
  color: #6C2DC7;
}

.cxtp-pill-stage {
  background-color: rgba(26,10,30,0.08);
  color: #4A4A6A;
  border: 1px solid #DDD9EE;
}

.cxtp-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6C2DC7;
  margin-bottom: 16px;
  display: block;
}

.cxtp-divider {
  width: 48px;
  height: 3px;
  background-color: #6C2DC7;
  border: none;
  margin: 20px 0 32px 0;
}

.cxtp-divider-center {
  margin-left: auto;
  margin-right: auto;
}

.cxtp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

.cxtp-nav.scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 1px 0 #DDD9EE;
}

.cxtp-nav .navbar-brand {
  padding: 0;
}

.cxtp-nav .navbar-brand img {
  height: 36px;
  width: auto;
}

.cxtp-nav .nav-link,
.cxtp-nav .nav-link:visited {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #E8E4F4;
  padding: 8px 14px;
  transition: color 0.2s ease;
}

.cxtp-nav .nav-link:hover {
  color: #FFFFFF;
}

.cxtp-nav.scrolled .nav-link,
.cxtp-nav.scrolled .nav-link:visited {
  color: #1A1A2E;
}

.cxtp-nav.scrolled .nav-link:hover {
  color: #6C2DC7;
}

.cxtp-nav .navbar-toggler {
  border: none;
  padding: 4px 8px;
  outline: none;
  box-shadow: none;
}

.cxtp-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(232,228,244,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.cxtp-nav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,26,46,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .cxtp-nav .navbar-collapse {
    background-color: #0D0A1A;
    padding: 16px 20px;
    margin-top: 8px;
    border-radius: 8px;
  }

  .cxtp-nav.scrolled .navbar-collapse {
    background-color: #FFFFFF;
    border: 1px solid #DDD9EE;
  }

  .cxtp-nav.scrolled .navbar-collapse .nav-link,
.cxtp-nav.scrolled .navbar-collapse .nav-link:visited {
    color: #1A1A2E;
  }
}

.cxtp-hero {
  min-height: 100vh;
  background-color: #0D0A1A;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.cxtp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,10,26,0.92) 0%, rgba(26,20,48,0.85) 100%);
  z-index: 1;
}

.cxtp-hero > .container {
  position: relative;
  z-index: 2;
}

.cxtp-hero h1 {
  color: #E8E4F4;
}

.cxtp-hero .lead {
  color: #C4BAE0;
}

.cxtp-mini-hero {
  background-color: #0D0A1A;
  padding: 100px 0 56px;
  margin-top: 0;
}

.cxtp-mini-hero h1 {
  color: #E8E4F4;
  font-size: 42px;
}

.cxtp-mini-hero .lead {
  color: #C4BAE0;
}

.cxtp-stats {
  background-color: #F5F3F8;
  padding: 48px 0;
}

.cxtp-stat-item {
  text-align: center;
  padding: 28px 20px;
}

.cxtp-stat-item .cxtp-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #6C2DC7;
  line-height: 1.1;
  display: block;
  letter-spacing: -0.02em;
}

.cxtp-stat-item .cxtp-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #7A7A9A;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.cxtp-stat-divider {
  border-left: 1px solid #DDD9EE;
}

.cxtp-features-alt {
  padding: 72px 0;
}

.cxtp-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 56px 0;
  border-bottom: 1px solid #DDD9EE;
}

.cxtp-feature-row:last-child {
  border-bottom: none;
}

.cxtp-feature-row .cxtp-feature-img {
  flex: 0 0 400px;
  max-width: 400px;
}

.cxtp-feature-row .cxtp-feature-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
}

.cxtp-feature-row .cxtp-feature-text {
  flex: 1;
}

.cxtp-feature-row .cxtp-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(108,45,199,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cxtp-feature-row .cxtp-feature-icon i {
  font-size: 22px;
  color: #6C2DC7;
}

@media (max-width: 768px) {
  .cxtp-feature-row {
    flex-direction: column;
    gap: 32px;
  }

  .cxtp-feature-row.reverse-mobile {
    flex-direction: column-reverse;
  }

  .cxtp-feature-row .cxtp-feature-img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

.cxtp-process {
  background-color: #F5F3F8;
  padding: 72px 0;
}

.cxtp-process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #DDD9EE;
}

.cxtp-process-step:last-child {
  border-bottom: none;
}

.cxtp-step-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(108,45,199,0.15);
  line-height: 1;
  min-width: 72px;
  letter-spacing: -0.03em;
}

.cxtp-step-content h4 {
  color: #1A1A2E;
  margin-bottom: 8px;
}

.cxtp-step-content p {
  margin-bottom: 0;
  color: #4A4A6A;
}

.cxtp-portfolio-preview {
  background-color: #0D0A1A;
  padding: 72px 0;
}

.cxtp-portfolio-preview h2 {
  color: #E8E4F4;
}

.cxtp-portfolio-preview .lead {
  color: #C4BAE0;
}

.cxtp-port-card {
  background-color: #1A1430;
  border: 1px solid #2E2550;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cxtp-port-card:hover {
  border-color: rgba(108,45,199,0.5);
  box-shadow: 0 4px 28px rgba(108,45,199,0.15);
}

.cxtp-port-card .cxtp-port-logo {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.cxtp-port-card .cxtp-port-logo img {
  max-height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.cxtp-port-card .cxtp-port-name {
  font-size: 18px;
  font-weight: 700;
  color: #E8E4F4;
  margin-bottom: 10px;
}

.cxtp-port-card .cxtp-port-desc {
  font-size: 14px;
  color: #C4BAE0;
  line-height: 1.6;
  flex: 1;
}

.cxtp-port-card .cxtp-port-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cxtp-pill-dark {
  background-color: rgba(108,45,199,0.2);
  color: #C4BAE0;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cxtp-pill-stage-dark {
  background-color: rgba(46,37,80,0.8);
  color: #8A7DB0;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid #2E2550;
}

.cxtp-cta-banner {
  background-color: #6C2DC7;
  padding: 72px 0;
}

.cxtp-cta-banner h2 {
  color: #FFFFFF;
}

.cxtp-cta-banner p {
  color: rgba(255,255,255,0.85);
}

.cxtp-cta-card {
  background-color: #F5F3F8;
  padding: 72px 0;
}

.cxtp-cta-card-inner {
  background-color: #FFFFFF;
  border: 1px solid #DDD9EE;
  border-radius: 14px;
  padding: 56px 48px;
  box-shadow: 0 4px 28px rgba(108,45,199,0.08);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cxtp-footer {
  background-color: #0D0A1A;
  padding: 60px 0 40px;
}

.cxtp-footer-brand p {
  color: #C4BAE0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.cxtp-footer-brand .cxtp-copyright {
  color: #8A7DB0;
  font-size: 13px;
}

.cxtp-footer h6 {
  color: #E8E4F4;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.cxtp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cxtp-footer-links li {
  margin-bottom: 10px;
}

.cxtp-footer-links a {
  color: #C4BAE0;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cxtp-footer-links a:hover {
  color: #6C2DC7;
}

.cxtp-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.cxtp-footer-contact-item i {
  color: #6C2DC7;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.cxtp-footer-contact-item span,
.cxtp-footer-contact-item a {
  color: #C4BAE0;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.cxtp-footer-contact-item a:hover {
  color: #6C2DC7;
}

.cxtp-footer-divider {
  border-color: #2E2550;
  margin: 36px 0 24px;
}

.cxtp-footer-logo img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.cxtp-portfolio-full {
  padding: 72px 0;
}

.cxtp-portfolio-card {
  background-color: #FFFFFF;
  border: 1px solid #DDD9EE;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(108,45,199,0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.cxtp-portfolio-card:hover {
  box-shadow: 0 4px 28px rgba(108,45,199,0.12);
  border-color: rgba(108,45,199,0.3);
}

.cxtp-portfolio-card .cxtp-port-logo {
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.cxtp-portfolio-card .cxtp-port-logo img {
  max-height: 56px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

.cxtp-portfolio-card .cxtp-port-name {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.cxtp-portfolio-card .cxtp-port-desc {
  font-size: 14px;
  color: #4A4A6A;
  line-height: 1.6;
  flex: 1;
}

.cxtp-portfolio-card .cxtp-port-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cxtp-portfolio-thesis {
  background-color: #F5F3F8;
  padding: 72px 0;
}

.cxtp-thesis-pillar {
  text-align: center;
  padding: 32px 24px;
}

.cxtp-thesis-pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(108,45,199,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cxtp-thesis-pillar-icon i {
  font-size: 26px;
  color: #6C2DC7;
}

.cxtp-thesis-pillar h4 {
  color: #1A1A2E;
  margin-bottom: 12px;
}

.cxtp-thesis-pillar p {
  font-size: 15px;
  color: #4A4A6A;
}

.cxtp-about-story {
  padding: 72px 0;
}

.cxtp-about-story p {
  font-size: 17px;
  line-height: 1.75;
  color: #4A4A6A;
  margin-bottom: 20px;
}

.cxtp-about-stats {
  background-color: #F5F3F8;
  border-radius: 14px;
  padding: 36px 32px;
}

.cxtp-about-stat {
  padding: 16px 0;
  border-bottom: 1px solid #DDD9EE;
}

.cxtp-about-stat:last-child {
  border-bottom: none;
}

.cxtp-about-stat .cxtp-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #6C2DC7;
  line-height: 1.1;
  display: block;
  letter-spacing: -0.02em;
}

.cxtp-about-stat .cxtp-stat-label {
  font-size: 14px;
  color: #7A7A9A;
  display: block;
  margin-top: 4px;
}

.cxtp-dark-pillars {
  background-color: #0D0A1A;
  padding: 72px 0;
}

.cxtp-dark-pillar-card {
  background-color: #1A1430;
  border: 1px solid #2E2550;
  border-radius: 14px;
  padding: 36px 28px;
  height: 100%;
}

.cxtp-dark-pillar-card h4 {
  color: #E8E4F4;
  margin-bottom: 14px;
}

.cxtp-dark-pillar-card p {
  color: #C4BAE0;
  font-size: 15px;
  margin: 0;
}

.cxtp-dark-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(108,45,199,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cxtp-dark-pillar-icon i {
  font-size: 22px;
  color: #8B50D8;
}

.cxtp-values {
  background-color: #F5F3F8;
  padding: 72px 0;
}

.cxtp-value-card {
  padding: 28px 20px;
  text-align: center;
}

.cxtp-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(108,45,199,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.cxtp-value-icon i {
  font-size: 22px;
  color: #6C2DC7;
}

.cxtp-value-card h5 {
  color: #1A1A2E;
  margin-bottom: 10px;
}

.cxtp-value-card p {
  font-size: 14px;
  color: #4A4A6A;
  margin: 0;
}

.cxtp-team-card {
  background-color: #FFFFFF;
  border: 1px solid #DDD9EE;
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(108,45,199,0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.cxtp-team-card:hover {
  box-shadow: 0 4px 28px rgba(108,45,199,0.12);
  border-color: rgba(108,45,199,0.25);
}

.cxtp-team-card .cxtp-team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(108,45,199,0.15);
}

.cxtp-team-card .cxtp-team-name {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 4px;
}

.cxtp-team-card .cxtp-team-title {
  font-size: 14px;
  color: #6C2DC7;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cxtp-team-card .cxtp-team-bio {
  font-size: 14px;
  color: #4A4A6A;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.cxtp-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.cxtp-team-tag {
  background-color: #F5F3F8;
  color: #6C2DC7;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(108,45,199,0.2);
}

.cxtp-advisors {
  background-color: #F5F3F8;
  padding: 56px 0;
}

.cxtp-advisor-item {
  padding: 20px 0;
  border-bottom: 1px solid #DDD9EE;
}

.cxtp-advisor-item:last-child {
  border-bottom: none;
}

.cxtp-advisor-item h5 {
  color: #1A1A2E;
  font-size: 17px;
  margin-bottom: 4px;
}

.cxtp-advisor-item .cxtp-advisor-role {
  font-size: 14px;
  color: #4A4A6A;
}

.cxtp-advisor-item .cxtp-advisor-org {
  font-size: 13px;
  color: #7A7A9A;
}

.cxtp-contact-section {
  padding: 72px 0;
}

.cxtp-contact-form-wrap {
  background-color: #FFFFFF;
  border: 1px solid #DDD9EE;
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 2px 20px rgba(108,45,199,0.06);
}

.cxtp-form-group {
  margin-bottom: 20px;
}

.cxtp-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 7px;
}

.cxtp-form-group input,
.cxtp-form-group textarea,
.cxtp-form-group select {
  width: 100%;
  padding: 11px 16px;
  font-size: 15px;
  color: #1A1A2E;
  background-color: #FFFFFF;
  border: 1.5px solid #DDD9EE;
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.cxtp-form-group input:focus,
.cxtp-form-group textarea:focus {
  border-color: #6C2DC7;
  box-shadow: 0 0 0 3px rgba(108,45,199,0.10);
}

.cxtp-form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.cxtp-contact-info-wrap {
  padding: 16px 0;
}

.cxtp-contact-info-wrap h4 {
  color: #1A1A2E;
  margin-bottom: 8px;
}

.cxtp-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.cxtp-contact-info-item i {
  color: #6C2DC7;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.cxtp-contact-info-item span,
.cxtp-contact-info-item a {
  font-size: 15px;
  color: #4A4A6A;
  text-decoration: none;
  line-height: 1.55;
}

.cxtp-contact-info-item a:hover {
  color: #6C2DC7;
}

.cxtp-blog-section {
  padding: 72px 0;
}

.cxtp-blog-card {
  background-color: #FFFFFF;
  border: 1px solid #DDD9EE;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(108,45,199,0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.cxtp-blog-card:hover {
  box-shadow: 0 4px 28px rgba(108,45,199,0.12);
  border-color: rgba(108,45,199,0.25);
}

.cxtp-blog-card .cxtp-blog-thumb a {
  display: block;
}

.cxtp-blog-card .cxtp-blog-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.cxtp-blog-card:hover .cxtp-blog-thumb img {
  transform: scale(1.03);
}

.cxtp-blog-card .cxtp-blog-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cxtp-blog-card .cxtp-blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cxtp-blog-card .cxtp-blog-date {
  font-size: 13px;
  color: #7A7A9A;
}

.cxtp-blog-card .cxtp-blog-title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.4;
  margin-bottom: 10px;
}

.cxtp-blog-card .cxtp-blog-title a {
  color: #1A1A2E;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cxtp-blog-card .cxtp-blog-title a:hover {
  color: #6C2DC7;
}

.cxtp-blog-card .cxtp-blog-excerpt {
  font-size: 14px;
  color: #4A4A6A;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.cxtp-blog-card .cxtp-read-more {
  font-size: 14px;
  font-weight: 600;
  color: #6C2DC7;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.cxtp-blog-card .cxtp-read-more:hover {
  color: #4A1A9E;
}

.cxtp-legal-hero {
  background-color: #F5F3F8;
  padding: 80px 0 48px;
}

.cxtp-legal-hero h1 {
  font-size: 36px;
  color: #1A1A2E;
}

.cxtp-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.cxtp-legal-content h2 {
  font-size: 24px;
  color: #1A1A2E;
  margin-top: 48px;
  margin-bottom: 16px;
}

.cxtp-legal-content h3 {
  font-size: 18px;
  color: #1A1A2E;
  margin-top: 32px;
  margin-bottom: 12px;
}

.cxtp-legal-content p {
  color: #4A4A6A;
  margin-bottom: 16px;
}

.cxtp-legal-content ul,
.cxtp-legal-content ol {
  color: #4A4A6A;
  padding-left: 24px;
  margin-bottom: 16px;
}

.cxtp-legal-content li {
  margin-bottom: 8px;
}

.cxtp-legal-content a {
  color: #6C2DC7;
}

.cxtp-legal-content a:hover {
  color: #4A1A9E;
}

.cxtp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1430;
  border-top: 1px solid #2E2550;
  padding: 18px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.cxtp-cookie-banner .cxtp-cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cxtp-cookie-banner p {
  color: #C4BAE0;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.cxtp-cookie-banner .cxtp-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cxtp-cookie-btn-accept {
  background-color: #6C2DC7;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.cxtp-cookie-btn-accept:hover {
  background-color: #4A1A9E;
}

.cxtp-cookie-btn-manage {
  background-color: transparent;
  color: #C4BAE0;
  border: 1px solid #2E2550;
  border-radius: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.cxtp-cookie-btn-manage:hover {
  border-color: #6C2DC7;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .cxtp-cookie-banner .cxtp-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cxtp-404-page {
  background-color: #0D0A1A;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.cxtp-404-page .cxtp-404-logo {
  margin-bottom: 56px;
}

.cxtp-404-page .cxtp-404-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.cxtp-404-number {
  font-size: 96px;
  font-weight: 700;
  color: #6C2DC7;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 16px;
}

.cxtp-404-page h2 {
  color: #E8E4F4;
  font-size: 28px;
  margin-bottom: 16px;
}

.cxtp-404-page p {
  color: #C4BAE0;
  font-size: 16px;
  max-width: 420px;
  margin: 0 auto 36px;
}

@media (max-width: 992px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .cxtp-mini-hero h1 { font-size: 34px; }
  .cxtp-section, .cxtp-section-dark, .cxtp-section-alt { padding: 56px 0; }
  .cxtp-hero { padding: 90px 0 72px; }
  .cxtp-mini-hero { padding: 90px 0 48px; }
  .cxtp-feature-row { gap: 36px; }
  .cxtp-feature-row .cxtp-feature-img { flex: 0 0 320px; max-width: 320px; }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .cxtp-section, .cxtp-section-dark, .cxtp-section-alt { padding: 48px 0; }
  .cxtp-stat-item .cxtp-stat-number { font-size: 32px; }
  .cxtp-contact-form-wrap { padding: 28px 20px; }
  .cxtp-cta-card-inner { padding: 36px 24px; }
  .cxtp-feature-row { flex-direction: column; }
  .cxtp-feature-row .cxtp-feature-img { flex: none; max-width: 100%; }
}


/* Logo scroll toggle -- dark logo on light scrolled nav, light logo on dark initial nav */
.cxtp-nav .cxtp-logo-dark { display: none; }
.cxtp-nav .cxtp-logo-light { display: inline-block; }
.cxtp-nav.scrolled .cxtp-logo-dark { display: inline-block; }
.cxtp-nav.scrolled .cxtp-logo-light { display: none; }
/* Footer (always dark) uses light logo; we hide the dark variant */
.cxtp-footer .cxtp-logo-dark { display: none; }
.cxtp-footer .cxtp-logo-light { display: inline-block; }


/* Stronger contrast on light-alt sections */
.cxtp-section-alt p,
.cxtp-section-alt .lead { color: #2A2A40; }
.cxtp-section-alt .text-muted-cxtp { color: #4A4A6A; }


/* Nav brand -- override any inherited filter from footer styles */
.cxtp-nav-brand img {
  height: 36px;
  width: auto;
  filter: none !important;
  margin-bottom: 0 !important;
}


/* section-dark heading contrast enforce */
.cxtp-section-dark h1,
.cxtp-section-dark h2,
.cxtp-section-dark h3,
.cxtp-section-dark h4,
.cxtp-section-dark .cxtp-section-title,
.cxtp-section-dark .display-4,
.cxtp-section-dark .display-5,
.cxtp-dark-pillars h1,
.cxtp-dark-pillars h2,
.cxtp-dark-pillars h3,
.cxtp-dark-pillars h4,
.cxtp-dark-pillars p,
.cxtp-dark-pillars .lead,
section[class*="dark"] h1,
section[class*="dark"] h2,
section[class*="dark"] h3,
section[class*="dark"] h4 {
  color: #F5F3FA !important;
  opacity: 1 !important;
}
.cxtp-section-dark .cxtp-eyebrow,
.cxtp-section-dark .cxtp-kicker,
.cxtp-dark-pillars .cxtp-section-label,
.cxtp-dark-pillars .cxtp-eyebrow,
section[class*="dark"] .cxtp-section-label {
  color: #9D6FE8 !important;
  opacity: 1 !important;
}


/* vc0502-dark-section-safeguard -- prevent dark-bg sections from inheriting default dark text */
[class*="-dark"] h1,
[class*="-dark"] h2,
[class*="-dark"] h3,
[class*="-dark"] h4,
[class*="-dark"] h5,
[class*="-dark"] h6,
[class*="dark-"] h1,
[class*="dark-"] h2,
[class*="dark-"] h3,
[class*="dark-"] h4,
[class*="dark-"] h5,
[class*="dark-"] h6,
[class*="-night"] h1,
[class*="-night"] h2,
[class*="-night"] h3 {
  color: #F5F3FA !important;
}
[class*="-dark"] p,
[class*="-dark"] .lead,
[class*="dark-"] p,
[class*="dark-"] .lead {
  color: color-mix(in srgb, #F5F3FA 82%, transparent) !important;
}
[class*="-dark"] .eyebrow,
[class*="-dark"] .kicker,
[class*="-dark"] [class*="section-label"],
[class*="dark-"] .eyebrow,
[class*="dark-"] .kicker,
[class*="dark-"] [class*="section-label"] {
  color: #9D6FE8 !important;
}
