

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  
  --c-primary: #52377C;
  --c-primary-hover: #402a63;
  --c-primary-light: #f5f0fc;
  --c-primary-subtle: rgba(82, 55, 124, 0.08);
  --c-primary-rgb: 82, 55, 124;

  --c-secondary: #FF4500;
  --c-secondary-hover: #e03d00;
  --c-secondary-light: #fff3ec;
  --c-secondary-subtle: rgba(255, 69, 0, 0.08);
  --c-secondary-rgb: 255, 69, 0;

  --c-accent: #40E0D0;
  --c-accent-dark: #1fbba9;
  --c-accent-light: #e6faf8;
  --c-accent-subtle: rgba(64, 224, 208, 0.12);
  --c-accent-rgb: 64, 224, 208;

  
  --c-bg: #f8fafc;
  --c-surface: #ffffff;
  --c-surface-muted: #f1f5f9;
  --c-border: #e2e8f0;
  --c-border-hover: #cbd5e1;
  --c-border-subtle: #f1f5f9;
  
  --c-text: #0f172a;
  --c-text-muted: #475569;
  --c-text-light: #64748b;
  --c-text-inverse: #ffffff;

  --c-dark-bg: #090d16;
  --c-dark-surface: #0f172a;
  --c-dark-card: #172136;
  --c-dark-border: #1e293b;
  --c-dark-border-hover: #334155;

  
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 30px -6px rgba(15, 23, 42, 0.1), 0 10px 12px -6px rgba(15, 23, 42, 0.04);
  --shadow-primary: 0 8px 24px -4px rgba(82, 55, 124, 0.28);
  --shadow-secondary: 0 8px 24px -4px rgba(255, 69, 0, 0.25);

  
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 320ms cubic-bezier(0.16, 1, 0.3, 1);
}



html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-heading);
  color: var(--c-text);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}



.c4u-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none !important;
  transition: all var(--transition-base);
}

.c4u-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
  border-bottom: none !important;
}

.c4u-nav-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  max-width: 1280px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0.75rem 1.25rem !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .c4u-nav-container {
    padding: 0.6rem 0.85rem !important;
  }
}

.c4u-logo img {
  height: 32px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .c4u-logo img {
    height: 24px;
    max-width: 135px;
  }
}


.c4u-nav-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1024px) {
  .c4u-nav-menu {
    display: flex;
  }
}

.c4u-nav-item {
  position: relative;
}

.c4u-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.c4u-nav-link:hover,
.c4u-nav-link.active {
  color: var(--c-primary);
  background-color: var(--c-primary-light);
}

.c4u-nav-link svg.chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-base);
}

.c4u-nav-item:hover .c4u-nav-link svg.chevron {
  transform: rotate(180deg);
}


.c4u-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-smooth);
  pointer-events: none;
  z-index: 1010;
}

.c4u-nav-item:hover .c4u-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.c4u-dropdown-content {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1rem;
  min-width: 260px;
}

.c4u-mega-menu {
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}

.c4u-nav-item:hover .c4u-mega-menu {
  transform: translateX(-50%) translateY(0);
}

.c4u-mega-content {
  width: 680px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1.25rem;
}

.c4u-mega-link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.c4u-mega-link:hover {
  background-color: var(--c-primary-light);
  transform: translateX(3px);
}

.c4u-mega-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-subtle);
  color: var(--c-primary);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.c4u-mega-link:hover .c4u-mega-icon {
  background: var(--c-primary);
  color: #ffffff;
}

.c4u-mega-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.15rem;
}

.c4u-mega-desc {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  line-height: 1.4;
}


.c4u-header-cta {
  display: none !important;
}

@media (min-width: 1024px) {
  .c4u-header-cta {
    display: inline-flex !important;
  }
}


.c4u-mobile-toggle {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  width: 40px !important;
  height: 40px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 9px !important;
  padding: 0 !important;
  cursor: pointer !important;
  color: #334155 !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.c4u-mobile-toggle:hover {
  background-color: #faf5ff !important;
  border-color: #c084fc !important;
  box-shadow: 0 2px 8px rgba(82, 55, 124, 0.12) !important;
}

.c4u-mobile-toggle:active {
  transform: scale(0.95) !important;
}

@media (min-width: 1024px) {
  .c4u-mobile-toggle {
    display: none !important;
  }
}

.c4u-mobile-toggle span {
  display: block !important;
  height: 2px !important;
  width: 20px !important;
  background-color: #334155 !important;
  border-radius: 9999px !important;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background-color 0.2s ease !important;
  transform-origin: center !important;
}

.c4u-mobile-toggle:hover span {
  background-color: #52377C !important;
}


.c4u-mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
  background-color: #52377C !important;
}

.c4u-mobile-toggle.active span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.c4u-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
  background-color: #52377C !important;
}


.c4u-drawer-quick-hub {
  padding: 0.85rem 1rem !important;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%) !important;
  border-bottom: 1px solid #e9d5ff !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
}

.c4u-drawer-auth-row {
  display: flex !important;
  gap: 0.5rem !important;
  width: 100% !important;
}

.c4u-drawer-auth-btn {
  flex: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
  padding: 0.45rem 0.75rem !important;
  border-radius: 8px !important;
  font-family: var(--font-heading) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.c4u-drawer-auth-btn.c4u-btn-login {
  background: #ffffff !important;
  border: 1px solid #d8b4fe !important;
  color: #52377C !important;
  box-shadow: 0 1px 3px rgba(82, 55, 124, 0.08) !important;
}

.c4u-drawer-auth-btn.c4u-btn-login:hover {
  background: #faf5ff !important;
  border-color: #52377C !important;
  transform: translateY(-1px) !important;
}

.c4u-drawer-auth-btn.c4u-btn-signup {
  background: linear-gradient(135deg, #52377C 0%, #3b235b 100%) !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
  box-shadow: 0 2px 6px rgba(82, 55, 124, 0.25) !important;
}

.c4u-drawer-auth-btn.c4u-btn-signup:hover {
  opacity: 0.95 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 10px rgba(82, 55, 124, 0.35) !important;
}

.c4u-drawer-support-banner {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  padding: 0.5rem 0.75rem !important;
  background: #ffffff !important;
  border: 1px solid #e9d5ff !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.c4u-drawer-support-banner:hover {
  border-color: #52377C !important;
  background: #fbf9fd !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 8px rgba(82, 55, 124, 0.1) !important;
}

.c4u-support-icon-box {
  width: 28px !important;
  height: 28px !important;
  border-radius: 6px !important;
  background: #f3e8ff !important;
  color: #52377C !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.75rem !important;
  flex-shrink: 0 !important;
}

.c4u-support-banner-text {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

.c4u-support-title {
  font-family: var(--font-heading) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.2 !important;
}

.c4u-support-subtitle {
  font-family: var(--font-body) !important;
  font-size: 0.625rem !important;
  color: #64748b !important;
  line-height: 1.2 !important;
}

.c4u-support-arrow {
  font-size: 0.65rem !important;
  color: #94a3b8 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.c4u-drawer-support-banner:hover .c4u-support-arrow {
  color: #52377C !important;
  transform: translateX(2px) !important;
}


.c4u-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden !important;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 640px) {
  .c4u-mobile-drawer {
    max-width: 100vw !important;
    width: 100vw !important;
  }
}

.c4u-mobile-drawer.open {
  transform: translateX(0);
  visibility: visible !important;
}

.c4u-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.c4u-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.c4u-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--c-border);
  background: #fafafa;
}

.c4u-drawer-close {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.c4u-drawer-close:hover {
  background-color: var(--c-primary-light);
  color: var(--c-primary);
}

.c4u-drawer-close:active {
  transform: scale(0.92);
}

.c4u-mobile-links {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c4u-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid var(--c-border-subtle);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.c4u-accordion-btn:hover {
  background-color: var(--c-primary-light);
  color: var(--c-primary);
  padding-left: 1rem;
}

.c4u-accordion-btn:active {
  background-color: rgba(82, 55, 124, 0.1);
}

.c4u-accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0 0 0.85rem;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, padding 0.25s ease;
}

.c4u-accordion-panel.open {
  max-height: 850px;
  opacity: 1;
  padding: 0.4rem 0 0.6rem 0.85rem;
}

.c4u-accordion-panel a {
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.c4u-accordion-panel a:hover {
  color: var(--c-primary);
  background: var(--c-primary-light);
  transform: translateX(4px);
  padding-left: 1.1rem;
}

.c4u-accordion-panel a:active {
  transform: scale(0.98);
  background: rgba(82, 55, 124, 0.15);
}



.c4u-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  white-space: nowrap;
}

.c4u-btn-primary {
  background-color: var(--c-primary);
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}

.c4u-btn-primary:hover {
  background-color: var(--c-primary-hover);
  box-shadow: var(--shadow-primary);
  transform: translateY(-2px);
}

.c4u-btn-secondary {
  background-color: var(--c-secondary);
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}

.c4u-btn-secondary:hover {
  background-color: var(--c-secondary-hover);
  box-shadow: var(--shadow-secondary);
  transform: translateY(-2px);
}

.c4u-btn-outline {
  background-color: transparent;
  color: var(--c-primary) !important;
  border-color: var(--c-primary);
}

.c4u-btn-outline:hover {
  background-color: var(--c-primary-light);
  transform: translateY(-2px);
}

.c4u-btn-outline-white {
  background-color: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4);
}

.c4u-btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.c4u-btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.825rem;
}

.c4u-btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
}

.c4u-btn svg {
  transition: transform var(--transition-base);
}

.c4u-btn:hover svg.arrow-right {
  transform: translateX(4px);
}


.c4u-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.c4u-badge-primary {
  background-color: var(--c-primary-light);
  color: var(--c-primary);
  border: 1px solid rgba(82, 55, 124, 0.15);
}

.c4u-badge-secondary {
  background-color: var(--c-secondary-light);
  color: var(--c-secondary);
  border: 1px solid rgba(255, 69, 0, 0.2);
}

.c4u-badge-accent {
  background-color: var(--c-accent-light);
  color: var(--c-accent-dark);
  border: 1px solid rgba(31, 187, 169, 0.2);
}

.c4u-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}



.c4u-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.c4u-card:hover {
  border-color: rgba(82, 55, 124, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.c4u-card-header {
  margin-bottom: 1rem;
}

.c4u-card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--c-primary-light);
  color: var(--c-primary);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.c4u-card:hover .c4u-card-icon {
  background: var(--c-primary);
  color: #ffffff;
}

.c4u-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.c4u-card-desc {
  color: var(--c-text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.c4u-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.c4u-tag {
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  background: var(--c-surface-muted);
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}



.c4u-process-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  position: relative;
}

@media (min-width: 640px) {
  .c4u-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .c4u-process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c4u-process-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition-base);
}

.c4u-process-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.c4u-process-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: rgba(82, 55, 124, 0.18);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.c4u-process-card:hover .c4u-process-num {
  color: var(--c-primary);
}

.c4u-process-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.c4u-process-desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}



.c4u-form-card {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.c4u-form-group {
  margin-bottom: 1.25rem;
}

.c4u-form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}

.c4u-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-text);
  background-color: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.c4u-form-control:focus {
  border-color: var(--c-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(82, 55, 124, 0.12);
}

.c4u-phone-group {
  display: flex;
  gap: 0.5rem;
}

.c4u-phone-prefix {
  width: 120px;
  flex-shrink: 0;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  background-color: var(--c-surface-muted);
}

.c4u-phone-prefix-select {
  width: 128px;
  flex-shrink: 0;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  font-size: 0.925rem;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #1e293b;
  transition: all 0.2s ease;
}

.c4u-phone-prefix-select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(82, 55, 124, 0.12);
  outline: none;
}

.c4u-custom-budget-container {
  display: none;
  margin-top: 0.75rem;
  animation: fadeIn 0.25s ease-in-out;
}

.c4u-custom-budget-container.show {
  display: flex;
  gap: 0.5rem;
}

.c4u-progressive-field {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.c4u-progressive-field.show {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}



.c4u-footer {
  background-color: #0d121f;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  font-size: 0.875rem;
}

.c4u-footer h6,
.c4u-footer .footer-col-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  color: var(--c-text);
}

.c4u-footer a {
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.c4u-footer a:hover {
  color: var(--c-primary);
  transform: translateX(2px);
}

.c4u-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.c4u-footer-legal-box {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--c-text-muted);
}

.c4u-footer-legal-box strong {
  color: var(--c-text);
}

.c4u-footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--c-text-light);
}

@media (min-width: 768px) {
  .c4u-footer-bottom {
    flex-direction: row;
  }
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  line-height: 1.5;
}

.btn-primary,
.btn.btn-primary {
  background-color: var(--c-primary) !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: var(--c-primary) !important;
  box-shadow: 0 4px 14px rgba(82, 55, 124, 0.35);
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background-color: var(--c-primary-hover) !important;
  box-shadow: 0 6px 20px rgba(82, 55, 124, 0.5);
  transform: translateY(-2px);
}

.btn-outline-primary,
.btn.btn-outline-primary {
  background-color: transparent !important;
  color: var(--c-primary) !important;
  border: 2px solid var(--c-primary) !important;
}

.btn-outline-primary:hover,
.btn.btn-outline-primary:hover {
  background-color: var(--c-primary) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-outline-white,
.btn.btn-outline-white {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
}

.btn-outline-white:hover,
.btn.btn-outline-white:hover {
  background-color: #ffffff !important;
  color: var(--c-text) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
}


.c4u-card {
  color: var(--c-text) !important;
}
.c4u-card h2, .c4u-card h3, .c4u-card h4, .c4u-card h5 {
  color: var(--c-text) !important;
}
.c4u-card p {
  color: var(--c-text-muted) !important;
}
.c4u-card li {
  color: var(--c-text-muted) !important;
}



:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}




.bg-slate-950 { background-color: #020617 !important; }
.bg-slate-900 { background-color: #0f172a !important; }
.bg-slate-800 { background-color: #1e293b !important; }
.bg-slate-700 { background-color: #334155 !important; }
.bg-slate-600 { background-color: #475569 !important; }
.bg-slate-200 { background-color: #e2e8f0 !important; }
.bg-slate-100 { background-color: #f1f5f9 !important; }
.bg-slate-50  { background-color: #f8fafc !important; }


.bg-slate-900\/60 { background-color: rgba(15, 23, 42, 0.6) !important; }
.bg-slate-800\/80 { background-color: rgba(30, 41, 59, 0.8) !important; }
.bg-purple-900\/60 { background-color: rgba(82, 55, 124, 0.6) !important; }
.bg-orange-900\/60 { background-color: rgba(154, 52, 18, 0.6) !important; }
.bg-teal-900\/60 { background-color: rgba(19, 78, 74, 0.6) !important; }
.bg-purple-50\/50 { background-color: rgba(250, 245, 255, 0.5) !important; }
.bg-orange-50\/50 { background-color: rgba(255, 247, 237, 0.5) !important; }
.bg-teal-50\/50 { background-color: rgba(240, 253, 250, 0.5) !important; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1) !important; }


.bg-purple-900 { background-color: #402a63 !important; }
.bg-purple-800 { background-color: #4c1d95 !important; }
.bg-purple-700 { background-color: #52377C !important; }
.bg-purple-100 { background-color: #f3e8ff !important; }
.bg-purple-50  { background-color: #faf5ff !important; }

.bg-orange-600 { background-color: #ea580c !important; }
.bg-orange-100 { background-color: #ffedd5 !important; }
.bg-orange-50  { background-color: #fff7ed !important; }

.bg-teal-700 { background-color: #0f766e !important; }
.bg-teal-600 { background-color: #0d9488 !important; }
.bg-teal-500 { background-color: #14b8a6 !important; }
.bg-teal-100 { background-color: #ccfbf1 !important; }
.bg-teal-50  { background-color: #f0fdfa !important; }

.bg-emerald-500 { background-color: #10b981 !important; }
.bg-emerald-400 { background-color: #34d399 !important; }
.bg-emerald-50  { background-color: #ecfdf5 !important; }


.text-slate-900 { color: #0f172a !important; }
.text-slate-800 { color: #1e293b !important; }
.text-slate-700 { color: #334155 !important; }
.text-slate-600 { color: #475569 !important; }
.text-slate-500 { color: #64748b !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-200 { color: #e2e8f0 !important; }
.text-slate-100 { color: #f1f5f9 !important; }


.text-purple-900 { color: #402a63 !important; }
.text-purple-700 { color: #52377C !important; }
.text-purple-600 { color: #7c3aed !important; }
.text-purple-400 { color: #c084fc !important; }
.text-purple-300 { color: #d8b4fe !important; }
.text-purple-200 { color: #e9d5ff !important; }

.text-orange-600 { color: #ea580c !important; }
.text-orange-400 { color: #fb923c !important; }
.text-orange-300 { color: #fdba74 !important; }

.text-teal-700 { color: #0f766e !important; }
.text-teal-600 { color: #0d9488 !important; }
.text-teal-400 { color: #2dd4bf !important; }
.text-teal-300 { color: #5eead4 !important; }

.text-emerald-500 { color: #10b981 !important; }
.text-emerald-400 { color: #34d399 !important; }
.text-rose-500    { color: #f43f5e !important; }


.border-slate-900 { border-color: #0f172a !important; }
.border-slate-800 { border-color: #1e293b !important; }
.border-slate-700 { border-color: #334155 !important; }
.border-slate-700\/60 { border-color: rgba(51, 65, 85, 0.6) !important; }
.border-slate-300 { border-color: #cbd5e1 !important; }
.border-slate-200 { border-color: #e2e8f0 !important; }
.border-slate-100 { border-color: #f1f5f9 !important; }
.border-purple-500\/30 { border-color: rgba(168, 85, 247, 0.3) !important; }
.border-orange-500\/30 { border-color: rgba(249, 115, 22, 0.3) !important; }
.border-teal-500\/30 { border-color: rgba(20, 184, 166, 0.3) !important; }
.border-purple-200 { border-color: #e9d5ff !important; }
.border-purple-100 { border-color: #f3e8ff !important; }



.text-white,
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6,
.bg-slate-900 h1, .bg-slate-900 h2, .bg-slate-900 h3, .bg-slate-900 h4, .bg-slate-900 h5, .bg-slate-900 h6,
.bg-slate-950 h1, .bg-slate-950 h2, .bg-slate-950 h3, .bg-slate-950 h4, .bg-slate-950 h5, .bg-slate-950 h6,
.bg-purple-900 h1, .bg-purple-900 h2, .bg-purple-900 h3, .bg-purple-900 h4, .bg-purple-900 h5, .bg-purple-900 h6 {
  color: #ffffff !important;
}


.max-w-7xl { max-width: 80rem !important; }
.max-w-6xl { max-width: 72rem !important; }
.max-w-5xl { max-width: 64rem !important; }
.max-w-4xl { max-width: 56rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-xl  { max-width: 36rem !important; }
.max-w-md  { max-width: 28rem !important; }
.max-w-sm  { max-width: 24rem !important; }
.mx-auto   { margin-left: auto !important; margin-right: auto !important; }


.grid { display: grid !important; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }

@media (min-width: 640px) {
  .sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}

@media (min-width: 768px) {
  .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
}


.col-span-1 { grid-column: span 1 / span 1 !important; }
.col-span-2 { grid-column: span 2 / span 2 !important; }
.col-span-3 { grid-column: span 3 / span 3 !important; }
.col-span-4 { grid-column: span 4 / span 4 !important; }
.col-span-5 { grid-column: span 5 / span 5 !important; }
.col-span-6 { grid-column: span 6 / span 6 !important; }
.col-span-7 { grid-column: span 7 / span 7 !important; }
.col-span-8 { grid-column: span 8 / span 8 !important; }
.col-span-9 { grid-column: span 9 / span 9 !important; }
.col-span-10 { grid-column: span 10 / span 10 !important; }
.col-span-11 { grid-column: span 11 / span 11 !important; }
.col-span-12 { grid-column: span 12 / span 12 !important; }

@media (min-width: 768px) {
  .md\:col-span-4 { grid-column: span 4 / span 4 !important; }
  .md\:col-span-6 { grid-column: span 6 / span 6 !important; }
  .md\:col-span-8 { grid-column: span 8 / span 8 !important; }
  .md\:col-span-12 { grid-column: span 12 / span 12 !important; }
}

@media (min-width: 1024px) {
  .lg\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .lg\:col-span-3 { grid-column: span 3 / span 3 !important; }
  .lg\:col-span-4 { grid-column: span 4 / span 4 !important; }
  .lg\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .lg\:col-span-6 { grid-column: span 6 / span 6 !important; }
  .lg\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .lg\:col-span-8 { grid-column: span 8 / span 8 !important; }
  .lg\:col-span-9 { grid-column: span 9 / span 9 !important; }
  .lg\:col-span-10 { grid-column: span 10 / span 10 !important; }
  .lg\:col-span-12 { grid-column: span 12 / span 12 !important; }
}


.gap-1 { gap: 0.25rem !important; }
.gap-1\.5 { gap: 0.375rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-2\.5 { gap: 0.625rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-3\.5 { gap: 0.875rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-10 { gap: 2.5rem !important; }
.gap-12 { gap: 3rem !important; }
.gap-16 { gap: 4rem !important; }


.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem !important; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem !important; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem !important; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem !important; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem !important; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem !important; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem !important; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem !important; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem !important; }
.space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 3rem !important; }

.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem !important; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem !important; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem !important; }


.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-grow { flex-grow: 1 !important; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row !important; }
  .sm\:flex-col { flex-direction: column !important; }
}
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row !important; }
  .md\:flex-col { flex-direction: column !important; }
}
@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row !important; }
  .lg\:flex-col { flex-direction: column !important; }
}


.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-8  { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.px-4  { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-6  { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8  { padding-left: 2rem !important; padding-right: 2rem !important; }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .sm\:py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
  .lg\:p-12 { padding: 3rem !important; }
}




html {
  scroll-behavior: smooth;
}


a, button {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}


html, body {
  overflow-x: clip;
  max-width: 100vw;
}


a, button {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}



.c4u-subheader {
  background: linear-gradient(90deg, #2e1065 0%, #3b0764 40%, #4c1d95 100%);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.45rem 1.25rem;
  border-bottom: none;
  position: relative;
  z-index: 1001;
}

.c4u-subheader-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c4u-subheader-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.c4u-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
  display: inline-block;
  animation: pulseDot 2.2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.c4u-subheader-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.c4u-sub-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.c4u-sub-link:hover {
  color: #ffffff;
}

.c4u-login-link {
  font-weight: 600;
  color: #ffffff;
}

.c4u-sub-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
}

.c4u-signup-btn {
  background: #ffffff;
  color: #3b0764 !important;
  padding: 0.25rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.675rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.c4u-signup-btn:hover {
  background: #f3e8ff;
  color: #2e1065 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}



.c4u-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: none !important;
  transition: box-shadow 0.3s ease, background 0.3s ease !important;
}

.c4u-header.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08) !important;
  border-bottom: none !important;
}



.footer-social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  font-size: 14px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
  text-decoration: none !important;
}

.footer-social-icon:hover {
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12) !important;
}

.footer-social-icon.linkedin:hover {
  background: #0A66C2 !important;
  border-color: #0A66C2 !important;
}

.footer-social-icon.twitter:hover {
  background: #000000 !important;
  border-color: #000000 !important;
}

.footer-social-icon.facebook:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
}

.footer-social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  border-color: #dc2743 !important;
}


.c4u-ext-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  color: #94a3b8;
  margin-left: 0.25rem;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

a:hover .c4u-ext-pill {
  color: #52377C;
  transform: translate(2px, -2px);
}


.c4u-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.c4u-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.c4u-status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: pulseDot 2s infinite;
}


.c4u-corp-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.c4u-corp-box:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.c4u-cin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: #f5f0fc;
  border: 1px solid rgba(82, 55, 124, 0.2);
  color: #52377C;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.725rem;
  font-weight: 700;
}

.c4u-comm-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.c4u-comm-pill:hover {
  background: #ffffff;
  border-color: #52377C;
  color: #52377C;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(82, 55, 124, 0.08);
}

.c4u-comm-pill strong {
  color: #0f172a;
}



.stripe-link {
  color: #64748b !important;
  text-decoration: none !important;
  transition: color 0.15s ease, transform 0.15s ease !important;
  font-size: 0.8125rem !important;
  line-height: 1.6 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.stripe-link:hover {
  color: #0f172a !important;
  transform: translateX(2px) !important;
}

.stripe-social-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  font-size: 13px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.stripe-social-link:hover {
  background: #0f172a !important;
  border-color: #0f172a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15) !important;
}

.stripe-hub-pill {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.2rem 0.55rem !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
}

.stripe-hub-pill:hover {
  border-color: #52377C !important;
  color: #52377C !important;
  background: #fdfbfd !important;
}

.stripe-footer-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2.5rem !important;
  padding-bottom: 3.5rem !important;
}

@media (min-width: 640px) {
  .stripe-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 768px) {
  .stripe-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  .stripe-footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1.15fr !important;
    gap: 3rem !important;
  }
}

.stripe-email-pill {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.25rem 0.65rem !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  font-size: 0.725rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
}

.stripe-email-pill:hover {
  border-color: #52377C !important;
  color: #52377C !important;
  background: #fdfbfd !important;
}



.c4u-footer-premium {
  background-color: #fafbfd !important;
  border-top: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  font-family: var(--font-body) !important;
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.c4u-footer-top-bar {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  padding-bottom: 2.5rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

@media (min-width: 1024px) {
  .c4u-footer-top-bar {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
}

.c4u-footer-cols-5 {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2.5rem !important;
  padding-top: 2rem !important;
  padding-bottom: 2.5rem !important;
}

@media (min-width: 640px) {
  .c4u-footer-cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 768px) {
  .c4u-footer-cols-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  .c4u-footer-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 2rem !important;
  }
}

.c4u-footer-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2.5rem !important;
  padding-top: 1.25rem !important;
  padding-bottom: 2.5rem !important;
}

@media (min-width: 640px) {
  .c4u-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 768px) {
  .c4u-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  .c4u-footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1.15fr !important;
    gap: 3.25rem !important;
  }
}

.c4u-footer-col-title {
  font-family: var(--font-heading) !important;
  font-size: 0.775rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #0f172a !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 1.25rem !important;
  display: flex !important;
  align-items: center !important;
}

.c4u-footer-subtitle {
  font-family: var(--font-heading) !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #94a3b8 !important;
  margin-top: 1.35rem !important;
  margin-bottom: 0.6rem !important;
}

.c4u-footer-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.7rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.c4u-footer-link {
  font-family: var(--font-body) !important;
  color: #64748b !important;
  text-decoration: none !important;
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.c4u-footer-link:hover {
  color: #52377C !important;
  font-weight: 500 !important;
  transform: translateX(4px) !important;
}

.c4u-footer-link .arrow-ext {
  font-size: 0.7rem !important;
  color: #94a3b8 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.c4u-footer-link:hover .arrow-ext {
  color: #52377C !important;
  transform: translate(2px, -2px) !important;
}


.c4u-tag-pill {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.1rem 0.45rem !important;
  border-radius: 9999px !important;
  font-size: 0.625rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  margin-left: 0.35rem !important;
}

.c4u-tag-purple {
  background: #f3e8ff !important;
  color: #6b21a8 !important;
  border: 1px solid #e9d5ff !important;
}

.c4u-tag-orange {
  background: #fff7ed !important;
  color: #c2410c !important;
  border: 1px solid #ffedd5 !important;
}

.c4u-tag-teal {
  background: #f0fdfa !important;
  color: #0f766e !important;
  border: 1px solid #ccfbf1 !important;
}

.c4u-tag-green {
  background: #ecfdf5 !important;
  color: #047857 !important;
  border: 1px solid #a7f3d0 !important;
}

.c4u-tag-blue {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  border: 1px solid #bfdbfe !important;
}


.c4u-social-circle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  font-size: 13px !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
}

.c4u-social-circle:hover {
  background: #0a2540 !important;
  border-color: #0a2540 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 10px rgba(10, 37, 64, 0.15) !important;
}


.c4u-hub-chip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  padding: 0.22rem 0.55rem !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #334155 !important;
  font-family: var(--font-body) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03) !important;
}

.c4u-hub-chip:hover {
  border-color: #52377C !important;
  color: #52377C !important;
  background: #fdfbfd !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 8px rgba(82, 55, 124, 0.1) !important;
}

.c4u-hub-chip .c4u-flag {
  font-size: 0.75rem !important;
}

.c4u-hub-chip .c4u-hq-tag {
  font-size: 0.55rem !important;
  font-weight: 700 !important;
  color: #52377C !important;
  background: #f5f0fc !important;
  padding: 0.05rem 0.3rem !important;
  border-radius: 3px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}


.c4u-sleeping-cat-wrapper {
  margin-top: 0.65rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: relative !important;
  width: 100% !important;
  max-width: 195px !important;
  padding: 0.45rem 0.55rem 0.55rem !important;
  box-sizing: border-box !important;
  background: linear-gradient(145deg, #ffffff 0%, #faf6ff 60%, #f4ebff 100%) !important;
  border: 1px solid rgba(192, 132, 252, 0.35) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 14px -2px rgba(112, 56, 175, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03), inset 0 1px 0 #ffffff !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.c4u-sleeping-cat-wrapper:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(168, 85, 247, 0.7) !important;
  box-shadow: 0 8px 20px -2px rgba(112, 56, 175, 0.16), inset 0 1px 0 #ffffff !important;
}

.c4u-cat-container {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-align: center !important;
  padding: 0.1rem 0 !important;
}

.c4u-sleeping-cat-img {
  width: 82px !important;
  height: auto !important;
  border-radius: 8px !important;
  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 3px 8px rgba(82, 55, 124, 0.08)) !important;
  animation: c4uCatBreathe 3.2s ease-in-out infinite alternate !important;
  transform-origin: bottom center !important;
}

@keyframes c4uCatBreathe {
  0% { transform: scale(1); }
  50% { transform: scale(1.02, 1.03) translateY(-1px); }
  100% { transform: scale(1); }
}

.c4u-snooze-bubble {
  position: absolute !important;
  top: -2px !important;
  right: 18px !important;
  pointer-events: none !important;
  width: 30px !important;
  height: 30px !important;
}

.c4u-zzz {
  position: absolute !important;
  font-family: var(--font-heading), sans-serif !important;
  font-weight: 800 !important;
  color: #a855f7 !important;
  opacity: 0 !important;
  animation: c4uSnoozeFloat 2.8s ease-in-out infinite !important;
  line-height: 1 !important;
}

.c4u-zzz.z1 {
  font-size: 9px !important;
  left: 2px !important;
  bottom: 2px !important;
  animation-delay: 0s !important;
  color: #c084fc !important;
}

.c4u-zzz.z2 {
  font-size: 11px !important;
  left: 8px !important;
  bottom: 8px !important;
  animation-delay: 0.9s !important;
  color: #ec4899 !important;
}

.c4u-zzz.z3 {
  font-size: 14px !important;
  left: 14px !important;
  bottom: 16px !important;
  animation-delay: 1.8s !important;
  color: #8b5cf6 !important;
}

@keyframes c4uSnoozeFloat {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.6);
  }
  30% {
    opacity: 0.9;
    transform: translate(3px, -6px) scale(1);
  }
  80% {
    opacity: 0.7;
    transform: translate(6px, -14px) scale(1.15) rotate(12deg);
  }
  100% {
    opacity: 0;
    transform: translate(9px, -20px) scale(1.3) rotate(20deg);
  }
}

.c4u-cat-caption {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.25rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-top: 0.35rem !important;
  padding: 0.2rem 0.4rem !important;
  border-radius: 9999px !important;
  background: linear-gradient(135deg, #6b21a8 0%, #52377c 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.58rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 8px rgba(82, 55, 124, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  border: none !important;
}

.c4u-cat-caption .c4u-flame-anim {
  font-size: 0.65rem !important;
}



.c4u-subfooter-clean {
  border-top: 1px solid #e2e8f0 !important;
  margin-top: 2.5rem !important;
  padding-top: 1.25rem !important;
  padding-bottom: 0.75rem !important;
  font-family: var(--font-body) !important;
}

.c4u-subfooter-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem !important;
  justify-content: space-between !important;
}

@media (min-width: 1024px) {
  .c4u-subfooter-row {
    flex-direction: row !important;
    align-items: flex-start !important;
  }
}

.c4u-corp-stacked {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.35rem !important;
  max-width: 780px !important;
}

.c4u-company-name {
  font-family: var(--font-heading) !important;
  font-size: 0.775rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  letter-spacing: 0.02em !important;
  line-height: 1.3 !important;
}

.c4u-cin-line {
  display: flex !important;
  align-items: center !important;
}

.c4u-cin-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  padding: 0.12rem 0.5rem !important;
  border-radius: 4px !important;
  background: #f5f0fc !important;
  border: 1px solid rgba(82, 55, 124, 0.2) !important;
  color: #52377C !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  font-size: 0.625rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

.c4u-cin-tag i {
  font-size: 0.6rem !important;
}

.c4u-corp-address {
  font-family: var(--font-body) !important;
  font-size: 0.6875rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.c4u-corp-address i {
  color: #ef4444 !important;
  font-size: 0.65rem !important;
  margin-right: 0.25rem !important;
}

.c4u-landmark-line {
  font-family: var(--font-body) !important;
  font-size: 0.65rem !important;
  color: #94a3b8 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.c4u-inquiries-stacked {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.35rem !important;
}

@media (min-width: 1024px) {
  .c4u-inquiries-stacked {
    align-items: flex-start !important;
  }
}

.c4u-inquiries-title {
  font-family: var(--font-heading) !important;
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #94a3b8 !important;
  margin-bottom: 0.15rem !important;
}

.c4u-pill-email {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  padding: 0.22rem 0.6rem !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.c4u-pill-email i {
  color: #52377C !important;
  font-size: 0.65rem !important;
}

.c4u-pill-email:hover {
  border-color: #52377C !important;
  color: #52377C !important;
  background: #fdfbfd !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 1px 4px rgba(82, 55, 124, 0.08) !important;
}

.c4u-subfooter-bottom {
  border-top: 1px solid #f1f5f9 !important;
  margin-top: 0.85rem !important;
  padding-top: 0.75rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  justify-content: space-between !important;
  align-items: center !important;
}

@media (min-width: 640px) {
  .c4u-subfooter-bottom {
    flex-direction: row !important;
  }
}

.c4u-copyright-text {
  font-size: 0.6875rem !important;
  color: #94a3b8 !important;
  white-space: nowrap !important;
}

.c4u-legal-links {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  flex-wrap: nowrap !important;
  font-size: 0.6875rem !important;
  color: #64748b !important;
}

.c4u-legal-links a {
  color: #64748b !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}

.c4u-legal-links a:hover {
  color: #52377C !important;
}

.c4u-dot-sep {
  color: #cbd5e1 !important;
  font-size: 0.65rem !important;
}



.c4u-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e9d5ff;
}

.c4u-hero-badge .c4u-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.7);
  display: inline-block;
}



.c4u-cta-card {
  background: linear-gradient(135deg, #3b0764 0%, #1e1b4b 50%, #0f172a 100%) !important;
  border-radius: 1.5rem !important;
  padding: 2.5rem !important;
  color: #ffffff !important;
  box-shadow: 0 20px 40px -15px rgba(59, 7, 100, 0.4) !important;
  border: 1px solid rgba(168, 85, 247, 0.25) !important;
  position: relative !important;
  overflow: hidden !important;
}

.c4u-cta-card h3 {
  color: #ffffff !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.75rem !important;
}

.c4u-cta-card p {
  color: #d8b4fe !important;
  font-size: 0.925rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.75rem !important;
}

.c4u-cta-card .cta-feature {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  color: #f1f5f9 !important;
  font-size: 0.875rem !important;
  margin-bottom: 0.85rem !important;
}

.c4u-cta-card .cta-feature i {
  color: #2dd4bf !important;
  font-size: 1rem !important;
}



.support-contact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-contact-card:hover {
  border-color: #52377C;
  box-shadow: 0 10px 24px -4px rgba(82, 55, 124, 0.12);
  transform: translateY(-4px);
}

.support-contact-card .card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.35rem;
  transition: transform 0.25s ease;
}

.support-contact-card:hover .card-icon {
  transform: scale(1.1);
}


.support-resources-card {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 1rem;
  padding: 1.75rem;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.support-resources-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support-resources-card p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.support-resources-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #c4b5fd;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.support-resources-link:hover {
  color: #ffffff;
  padding-left: 0.35rem;
}

.support-resources-link i {
  font-size: 0.75rem;
  opacity: 0.7;
}



select.c4u-form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2352377C' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 0.95rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

select.c4u-form-control:focus {
  border-color: #52377C !important;
  box-shadow: 0 0 0 3px rgba(82, 55, 124, 0.15) !important;
  outline: none !important;
}

input[type="file"].c4u-form-control {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}

input[type="file"].c4u-form-control::file-selector-button {
  background: #52377C !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 0.45rem 1rem !important;
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  cursor: pointer !important;
  margin-right: 0.75rem !important;
  transition: background-color 0.2s ease !important;
}

input[type="file"].c4u-form-control::file-selector-button:hover {
  background: #402a63 !important;
}



@media (max-width: 640px) {
  .c4u-subheader {
    display: none !important;
  }
}



#backToTop,
.c4u-back-to-top {
  position: fixed !important;
  bottom: 1.5rem !important;
  left: 1.5rem !important;
  right: auto !important;
  top: auto !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 9999px !important;
  background: linear-gradient(135deg, #52377C 0%, #7c3aed 100%) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  box-shadow: 0 10px 25px -4px rgba(82, 55, 124, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(14px) scale(0.9) !important;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
}

#backToTop.c4u-show,
#backToTop.opacity-100 {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

#backToTop:hover {
  transform: translateY(-3px) scale(1.06) !important;
  background: linear-gradient(135deg, #402a63 0%, #6d28d9 100%) !important;
  box-shadow: 0 14px 28px -4px rgba(82, 55, 124, 0.5) !important;
}

#backToTop:focus-visible {
  outline: 2px solid #52377C !important;
  outline-offset: 3px !important;
}




.c4u-cookie-banner {
  position: fixed !important;
  bottom: 1.25rem !important;
  left: 50% !important;
  right: auto !important;
  max-width: 500px !important;
  width: calc(100% - 2rem) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  color: #0f172a !important;
  padding: 0.85rem 1.15rem !important;
  border-radius: 16px !important;
  border: 1px solid rgba(82, 55, 124, 0.14) !important;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(82, 55, 124, 0.05) !important;
  z-index: 9998 !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
  transform: translateX(-50%) translateY(25px) !important;
  opacity: 0 !important;
}

.c4u-cookie-banner.c4u-banner-visible {
  transform: translateX(-50%) translateY(0) !important;
  opacity: 1 !important;
}

.c4u-cookie-banner-inner {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
}

.c4u-cookie-body {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.c4u-cookie-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.5rem !important;
  margin-bottom: 0.25rem !important;
}

.c4u-cookie-title {
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  color: #0f172a !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}

.c4u-cookie-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 9px !important;
  background: linear-gradient(135deg, #f5f0fc 0%, #e9d5ff 100%) !important;
  color: #52377C !important;
  font-size: 0.95rem !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 6px rgba(82, 55, 124, 0.12) !important;
}

.c4u-badge-sm {
  width: 28px !important;
  height: 28px !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
}

.c4u-cookie-text {
  font-size: 0.75rem !important;
  color: #475569 !important;
  line-height: 1.4 !important;
  margin: 0 0 0.55rem 0 !important;
}

.c4u-cookie-link {
  color: #6d28d9 !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
  transition: color 0.15s ease !important;
}

.c4u-cookie-link:hover {
  color: #4c1d95 !important;
}


.c4u-cookie-banner-actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.4rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.c4u-cookie-btn-accept {
  background-color: #52377C !important;
  background-image: linear-gradient(135deg, #52377C 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  padding: 0.35rem 0.8rem !important;
  border-radius: 7px !important;
  border: 1px solid #52377C !important;
  box-shadow: 0 2px 6px rgba(82, 55, 124, 0.22) !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.c4u-cookie-btn-accept:hover {
  background-image: linear-gradient(135deg, #402a63 0%, #581c87 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 10px rgba(82, 55, 124, 0.32) !important;
  color: #ffffff !important;
}

.c4u-cookie-btn-reject {
  background: #f8fafc !important;
  color: #475569 !important;
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 500 !important;
  font-size: 0.75rem !important;
  padding: 0.35rem 0.75rem !important;
  border-radius: 7px !important;
  border: 1px solid #cbd5e1 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.c4u-cookie-btn-reject:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  border-color: #94a3b8 !important;
  transform: translateY(-1px) !important;
}

.c4u-cookie-settings-btn {
  background: #f5f0fc !important;
  color: #52377C !important;
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  padding: 0.35rem 0.7rem !important;
  border-radius: 7px !important;
  border: 1px solid rgba(82, 55, 124, 0.22) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.c4u-cookie-settings-btn:hover {
  background: #ede4f9 !important;
  border-color: #52377C !important;
  color: #3b235c !important;
  transform: translateY(-1px) !important;
}

.c4u-cookie-close-btn {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #f8fafc !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  color: #64748b !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.7rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.c4u-cookie-close-btn:hover {
  background: #52377C !important;
  color: #ffffff !important;
  border-color: #52377C !important;
  transform: rotate(90deg) scale(1.05) !important;
}


@media (max-width: 640px) {
  .c4u-cookie-banner {
    bottom: 0.65rem !important;
    left: 50% !important;
    width: calc(100% - 1.25rem) !important;
    max-width: 420px !important;
    padding: 0.65rem 0.85rem !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.2) !important;
  }

  .c4u-cookie-banner-inner {
    gap: 0.55rem !important;
  }

  .c4u-cookie-badge {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.8rem !important;
    border-radius: 7px !important;
  }

  .c4u-cookie-title {
    font-size: 0.8rem !important;
  }

  .c4u-cookie-text {
    font-size: 0.68rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.45rem !important;
  }

  .c4u-cookie-banner-actions {
    gap: 0.3rem !important;
  }

  .c4u-cookie-btn-accept,
  .c4u-cookie-btn-reject,
  .c4u-cookie-settings-btn {
    font-size: 0.68rem !important;
    padding: 0.32rem 0.5rem !important;
    border-radius: 6px !important;
    flex: 1 !important;
    text-align: center !important;
    justify-content: center !important;
  }
}



.c4u-cookie-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(15, 23, 42, 0.65) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  backdrop-filter: blur(6px) !important;
  z-index: 10000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transition: opacity 0.22s ease, visibility 0.22s ease !important;
}

.c4u-cookie-modal-backdrop.active {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

.c4u-cookie-modal {
  background: #ffffff !important;
  border-radius: 20px !important;
  max-width: 480px !important;
  width: 100% !important;
  max-height: 85vh !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(82, 55, 124, 0.08) !important;
  transform: translate3d(0, 16px, 0) scale(0.96) !important;
  opacity: 0 !important;
  will-change: transform, opacity !important;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease !important;
}

.c4u-cookie-modal-backdrop.active .c4u-cookie-modal {
  transform: translate3d(0, 0, 0) scale(1) !important;
  opacity: 1 !important;
}


.c4u-cookie-modal-header {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.85rem 1.15rem !important;
  border-bottom: 1px solid #f1f5f9 !important;
  background: #ffffff !important;
}

.c4u-cookie-modal-header-left {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
}

.c4u-cookie-modal-title {
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: #0f172a !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.c4u-cookie-modal-subtitle {
  font-size: 0.72rem !important;
  color: #64748b !important;
  margin: 0.15rem 0 0 0 !important;
  line-height: 1.2 !important;
}

.c4u-modal-close-btn {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.8rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.c4u-modal-close-btn:hover {
  background: #52377C !important;
  color: #ffffff !important;
  border-color: #52377C !important;
  transform: rotate(90deg) scale(1.05) !important;
}


.c4u-cookie-modal-body {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  padding: 0.85rem 1.15rem !important;
  scrollbar-width: thin !important;
  scrollbar-color: #cbd5e1 transparent !important;
}

.c4u-cookie-modal-body::-webkit-scrollbar {
  width: 5px !important;
}

.c4u-cookie-modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1 !important;
  border-radius: 4px !important;
}

.c4u-cookie-modal-desc {
  font-size: 0.75rem !important;
  color: #475569 !important;
  line-height: 1.4 !important;
  margin: 0 0 0.75rem 0 !important;
}


.c4u-cookie-cat-card {
  padding: 0.65rem 0.85rem !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  margin-bottom: 0.55rem !important;
  transition: border-color 0.2s ease !important;
}

.c4u-cookie-cat-card:hover {
  border-color: #cbd5e1 !important;
}

.c4u-cat-card-purple {
  background: #fbf9fe !important;
  border-color: rgba(82, 55, 124, 0.15) !important;
}

.c4u-cat-card-purple:hover {
  border-color: rgba(82, 55, 124, 0.3) !important;
}

.c4u-cookie-cat-info {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.c4u-cookie-cat-top {
  display: flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  margin-bottom: 0.15rem !important;
}

.c4u-cookie-cat-title {
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  color: #0f172a !important;
  margin: 0 !important;
}

.c4u-cat-badge {
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  padding: 0.15rem 0.4rem !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

.c4u-cat-badge-green {
  background: #dcfce7 !important;
  color: #15803d !important;
}

.c4u-cat-badge-purple {
  background: #f3e8ff !important;
  color: #6b21a8 !important;
}

.c4u-cookie-cat-text {
  font-size: 0.7rem !important;
  color: #64748b !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}


.c4u-cookie-modal-footer {
  flex-shrink: 0 !important;
  padding: 0.75rem 1.15rem !important;
  border-top: 1px solid #f1f5f9 !important;
  background: #ffffff !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.5rem !important;
  margin: 0 !important;
}

.c4u-modal-btn-accept {
  flex: 1.2 !important;
  background-color: #52377C !important;
  background-image: linear-gradient(135deg, #52377C 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px !important;
  border: 1px solid #52377C !important;
  box-shadow: 0 3px 8px rgba(82, 55, 124, 0.22) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.c4u-modal-btn-accept:hover {
  background-image: linear-gradient(135deg, #402a63 0%, #581c87 100%) !important;
  box-shadow: 0 4px 12px rgba(82, 55, 124, 0.35) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.c4u-modal-btn-save {
  flex: 1 !important;
  background-color: #f8fafc !important;
  color: #475569 !important;
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px !important;
  border: 1px solid #cbd5e1 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.c4u-modal-btn-save:hover {
  background-color: #f1f5f9 !important;
  color: #0f172a !important;
  border-color: #94a3b8 !important;
  transform: translateY(-1px) !important;
}


.c4u-switch {
  position: relative !important;
  display: inline-block !important;
  width: 38px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
}

.c4u-switch input {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

.c4u-slider {
  position: absolute !important;
  cursor: pointer !important;
  inset: 0 !important;
  background-color: #cbd5e1 !important;
  transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-radius: 22px !important;
}

.c4u-slider:before {
  position: absolute !important;
  content: "" !important;
  height: 16px !important;
  width: 16px !important;
  left: 3px !important;
  bottom: 3px !important;
  background-color: #ffffff !important;
  transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-radius: 50% !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

.c4u-switch input:checked + .c4u-slider {
  background-color: #52377C !important;
}

.c4u-switch input:checked + .c4u-slider:before {
  transform: translateX(16px) !important;
}

.c4u-switch input:disabled + .c4u-slider {
  background-color: #93c5fd !important;
  opacity: 0.8 !important;
  cursor: not-allowed !important;
}


@media (max-width: 640px) {
  .c4u-cookie-modal {
    max-height: 82vh !important;
    border-radius: 18px !important;
    width: calc(100% - 1.25rem) !important;
  }

  .c4u-cookie-modal-header {
    padding: 0.75rem 1rem !important;
  }

  .c4u-cookie-modal-title {
    font-size: 0.88rem !important;
  }

  .c4u-cookie-modal-subtitle {
    font-size: 0.68rem !important;
  }

  .c4u-cookie-modal-body {
    padding: 0.75rem 1rem !important;
  }

  .c4u-cookie-cat-card {
    padding: 0.55rem 0.75rem !important;
    gap: 0.5rem !important;
    margin-bottom: 0.45rem !important;
  }

  .c4u-cookie-cat-title {
    font-size: 0.75rem !important;
  }

  .c4u-cookie-cat-text {
    font-size: 0.65rem !important;
  }

  .c4u-cookie-modal-footer {
    padding: 0.65rem 1rem !important;
    gap: 0.45rem !important;
  }

  .c4u-modal-btn-accept,
  .c4u-modal-btn-save {
    font-size: 0.72rem !important;
    padding: 0.45rem 0.65rem !important;
  }
}


@media (max-width: 640px) {
  #articleModalDialog {
    margin: 0.5rem !important;
    max-height: 85vh !important;
    border-radius: 20px !important;
  }
  
  #articleModalDialog .p-6,
  #articleModalDialog .sm\:p-8 {
    padding: 1rem !important;
  }
}


button.c4u-footer-link,
.c4u-footer-btn-link {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  text-align: left !important;
  font-family: var(--font-body, sans-serif) !important;
  color: #64748b !important;
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

button.c4u-footer-link:hover,
.c4u-footer-btn-link:hover {
  color: #52377C !important;
  font-weight: 500 !important;
  transform: translateX(4px) !important;
}




@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}


.font-extrabold { font-weight: 800 !important; }
.font-bold { font-weight: 700 !important; }
.font-semibold { font-weight: 600 !important; }
.font-medium { font-weight: 500 !important; }
.font-normal { font-weight: 400 !important; }
.font-light { font-weight: 300 !important; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important; }
.font-sans { font-family: var(--font-body), sans-serif !important; }


.leading-tight { line-height: 1.25 !important; }
.leading-snug { line-height: 1.375 !important; }
.leading-normal { line-height: 1.5 !important; }
.leading-relaxed { line-height: 1.625 !important; }
.leading-loose { line-height: 2 !important; }


.tracking-tighter { letter-spacing: -0.05em !important; }
.tracking-tight { letter-spacing: -0.025em !important; }
.tracking-normal { letter-spacing: 0em !important; }
.tracking-wide { letter-spacing: 0.025em !important; }
.tracking-wider { letter-spacing: 0.05em !important; }
.tracking-widest { letter-spacing: 0.1em !important; }


.text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
.text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
.text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
.text-5xl { font-size: 3rem !important; line-height: 1 !important; }
.text-6xl { font-size: 3.75rem !important; line-height: 1 !important; }
.text-7xl { font-size: 4.5rem !important; line-height: 1 !important; }
.text-\[9px\] { font-size: 9px !important; }
.text-\[10px\] { font-size: 10px !important; }
.text-\[11px\] { font-size: 11px !important; }


@media (min-width: 640px) {
  .sm\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
  .sm\:text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
  .sm\:text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
  .sm\:text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
  .sm\:text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
  .sm\:text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
  .sm\:text-5xl { font-size: 3rem !important; line-height: 1 !important; }
  .sm\:p-8 { padding: 2rem !important; }
  .sm\:p-10 { padding: 2.5rem !important; }
  .sm\:p-12 { padding: 3rem !important; }
  .sm\:flex-row { flex-direction: row !important; }
  .sm\:left-auto { left: auto !important; }
  .sm\:right-6 { right: 1.5rem !important; }
}

@media (min-width: 768px) {
  .md\:text-xl { font-size: 1.25rem !important; }
  .md\:text-5xl { font-size: 3rem !important; }
  .md\:items-start { align-items: flex-start !important; }
  .md\:items-end { align-items: flex-end !important; }
  .md\:mt-0 { margin-top: 0 !important; }
  .md\:w-auto { width: auto !important; }
  .md\:px-0 { padding-left: 0 !important; padding-right: 0 !important; }
}

@media (min-width: 1024px) {
  .lg\:text-xl { font-size: 1.125rem !important; line-height: 1.75rem !important; }
  .lg\:p-20 { padding: 5rem !important; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .lg\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .lg\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .lg\:py-\[60px\] { padding-top: 60px !important; padding-bottom: 60px !important; }
}


.right-6 { right: 1.5rem !important; }
.bottom-4 { bottom: 1rem !important; }
.bottom-6 { bottom: 1.5rem !important; }
.left-4 { left: 1rem !important; }
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.z-30 { z-index: 30 !important; }
.z-40 { z-index: 40 !important; }
.z-50 { z-index: 50 !important; }
.z-\[9999\] { z-index: 9999 !important; }
.-z-\[1\] { z-index: -1 !important; }


.opacity-0 { opacity: 0 !important; }
.opacity-10 { opacity: 0.1 !important; }
.opacity-15 { opacity: 0.15 !important; }
.opacity-20 { opacity: 0.2 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-90 { opacity: 0.9 !important; }
.opacity-100 { opacity: 1 !important; }
.pointer-events-none { pointer-events: none !important; }
.pointer-events-auto { pointer-events: auto !important; }


.transition-all { transition-property: all !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 300ms !important; }
.transition-shadow { transition-property: box-shadow !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 200ms !important; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }


.w-2 { width: 0.5rem !important; }
.w-5 { width: 1.25rem !important; }
.w-6 { width: 1.5rem !important; }
.w-9 { width: 2.25rem !important; }
.w-10 { width: 2.5rem !important; }
.w-11 { width: 2.75rem !important; }
.w-32 { width: 8rem !important; }
.w-48 { width: 12rem !important; }
.w-64 { width: 16rem !important; }
.w-80 { width: 20rem !important; }
.w-96 { width: 24rem !important; }
.w-fit { width: fit-content !important; }
.w-auto { width: auto !important; }

.h-2 { height: 0.5rem !important; }
.h-5 { height: 1.25rem !important; }
.h-6 { height: 1.5rem !important; }
.h-9 { height: 2.25rem !important; }
.h-10 { height: 2.5rem !important; }
.h-11 { height: 2.75rem !important; }
.h-48 { height: 12rem !important; }
.h-64 { height: 16rem !important; }
.h-80 { height: 20rem !important; }
.h-96 { height: 24rem !important; }

.min-h-\[60vh\] { min-height: 60vh !important; }
.min-h-\[80vh\] { min-height: 80vh !important; }
.min-w-\[160px\] { min-width: 160px !important; }
.min-w-\[189px\] { min-width: 189px !important; }
.max-w-xs { max-width: 20rem !important; }
.max-w-\[768px\] { max-width: 768px !important; }
.max-w-\[810px\] { max-width: 810px !important; }

.items-stretch { align-items: stretch !important; }
.gap-0 { gap: 0px !important; }
.gap-y-1 { row-gap: 0.25rem !important; }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem !important; }
.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.875rem !important; }


.py-0\.5 { padding-top: 0.125rem !important; padding-bottom: 0.125rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.py-3\.5 { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }

.px-2\.5 { padding-left: 0.625rem !important; padding-right: 0.625rem !important; }
.px-3\.5 { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
.p-3\.5 { padding: 0.875rem !important; }
.p-12 { padding: 3rem !important; }

.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 0.75rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-8 { padding-top: 2rem !important; }
.pt-12 { padding-top: 3rem !important; }
.pb-1\.5 { padding-bottom: 0.375rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 0.75rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-0\.5 { margin-top: 0.125rem !important; }
.mt-auto { margin-top: auto !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-16 { margin-bottom: 4rem !important; }
.mb-20 { margin-bottom: 5rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }

.-mt-8 { margin-top: -2rem !important; }
.-mt-20 { margin-top: -5rem !important; }
.-mt-40 { margin-top: -10rem !important; }
.-mt-48 { margin-top: -12rem !important; }
.-mr-8 { margin-right: -2rem !important; }
.-mr-10 { margin-right: -2.5rem !important; }
.-mr-20 { margin-right: -5rem !important; }
.-mr-40 { margin-right: -10rem !important; }
.-mr-48 { margin-right: -12rem !important; }
.-ml-10 { margin-left: -2.5rem !important; }
.-ml-20 { margin-left: -5rem !important; }
.-ml-32 { margin-left: -8rem !important; }
.-mb-8 { margin-bottom: -2rem !important; }
.-mb-10 { margin-bottom: -2.5rem !important; }
.-mb-32 { margin-bottom: -8rem !important; }
.-mx-8 { margin-left: -2rem !important; margin-right: -2rem !important; }


.border-2 { border-width: 2px !important; }
.border-t-4 { border-top-width: 4px !important; }
.border-l-2 { border-left-width: 2px !important; }
.border-r { border-right-width: 1px !important; }
.border-t-purple-700 { border-top-color: #6b21a8 !important; }
.border-t-orange-600 { border-top-color: #ea580c !important; }
.border-t-teal-500 { border-top-color: #14b8a6 !important; }
.border-t-teal-600 { border-top-color: #0d9488 !important; }
.border-purple-600 { border-color: #9333ea !important; }
.border-orange-600 { border-color: #ea580c !important; }
.border-teal-500 { border-color: #14b8a6 !important; }
.border-teal-200 { border-color: #99f6e4 !important; }
.border-orange-200 { border-color: #fed7aa !important; }
.border-orange-100 { border-color: #ffedd5 !important; }
.border-emerald-200 { border-color: #a7f3d0 !important; }
.border-emerald-100 { border-color: #d1fae5 !important; }
.border-rose-200 { border-color: #fecdd3 !important; }
.border-amber-200 { border-color: #fde68a !important; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1) !important; }
.border-purple-500\/30 { border-color: rgba(168, 85, 247, 0.3) !important; }
.border-blue-500\/30 { border-color: rgba(59, 130, 246, 0.3) !important; }


.bg-slate-800\/80 { background-color: rgba(30, 41, 59, 0.8) !important; }
.bg-purple-900\/60 { background-color: rgba(88, 28, 135, 0.6) !important; }
.bg-blue-900\/60 { background-color: rgba(30, 58, 138, 0.6) !important; }
.bg-purple-50\/40 { background-color: rgba(250, 245, 255, 0.4) !important; }
.bg-blue-100 { background-color: #dbeafe !important; }
.bg-rose-100 { background-color: #ffe4e6 !important; }
.bg-rose-50 { background-color: #fff1f2 !important; }
.bg-amber-100 { background-color: #fef3c7 !important; }
.bg-amber-50 { background-color: #fffbeb !important; }
.bg-emerald-100 { background-color: #d1fae5 !important; }
.bg-purple-600 { background-color: #9333ea !important; }
.bg-teal-400 { background-color: #2dd4bf !important; }
.bg-orange-400 { background-color: #fb923c !important; }
.bg-\[\#52377C\] { background-color: #52377C !important; }
.bg-\[\#f8fafc\] { background-color: #f8fafc !important; }
.bg-\[\#FAFAFA\], .bg-\[\#fafafa\] { background-color: #fafafa !important; }


.text-purple-900\/30 { color: rgba(88, 28, 135, 0.3) !important; }
.text-white\/90 { color: rgba(255, 255, 255, 0.9) !important; }
.text-rose-600 { color: #e11d48 !important; }
.text-rose-700 { color: #be123c !important; }
.text-amber-500 { color: #f59e0b !important; }
.text-amber-600 { color: #d97706 !important; }
.text-amber-700 { color: #b45309 !important; }
.text-emerald-600 { color: #059669 !important; }
.text-emerald-700 { color: #047857 !important; }
.text-emerald-800 { color: #065f46 !important; }
.text-teal-800 { color: #115e59 !important; }
.text-teal-950 { color: #042f2e !important; }
.text-orange-700 { color: #c2410c !important; }
.text-orange-950 { color: #431407 !important; }
.text-blue-300 { color: #93c5fd !important; }
.text-blue-700 { color: #1d4ed8 !important; }
.text-dark { color: #0f172a !important; }
.text-muted { color: var(--c-text-muted, #475569) !important; }
.text-light { color: var(--c-text-light, #64748b) !important; }


.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }
.blur-3xl { filter: blur(64px) !important; }
.backdrop-blur-sm { backdrop-filter: blur(4px) !important; -webkit-backdrop-filter: blur(4px) !important; }


.hover\:underline:hover { text-decoration: underline !important; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1) !important; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important; }
.hover\:shadow-sm:hover { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.hover\:scale-110:hover { transform: scale(1.1) !important; }
.hover\:text-purple-700:hover { color: #7e22ce !important; }
.hover\:text-purple-900:hover { color: #581c87 !important; }
.hover\:text-orange-700:hover { color: #c2410c !important; }
.hover\:text-teal-900:hover { color: #134e4a !important; }
.hover\:text-slate-200:hover { color: #e2e8f0 !important; }
.hover\:text-slate-900:hover { color: #0f172a !important; }
.hover\:text-white:hover { color: #ffffff !important; }
.hover\:bg-white:hover { background-color: #ffffff !important; }
.hover\:bg-slate-50:hover { background-color: #f8fafc !important; }
.hover\:bg-slate-200:hover { background-color: #e2e8f0 !important; }
.hover\:bg-gray-300:hover { background-color: #d1d5db !important; }
.hover\:border-purple-300:hover { border-color: #d8b4fe !important; }
.hover\:border-purple-400:hover { border-color: #c084fc !important; }
.hover\:border-purple-500:hover { border-color: #a855f7 !important; }
.hover\:border-purple-600:hover { border-color: #9333ea !important; }
.hover\:border-orange-500:hover { border-color: #f97316 !important; }
.hover\:border-teal-400:hover { border-color: #2dd4bf !important; }
.hover\:border-slate-300:hover { border-color: #cbd5e1 !important; }


section.bg-slate-900 + section {
  border-top: none !important;
}

.c4u-hidden {
  display: none !important;
}


.min-h-\[60vh\] { min-height: 60vh !important; }
.min-h-\[80vh\] { min-height: 80vh !important; }
.max-w-\[768px\] { max-width: 768px !important; }
.max-w-\[810px\] { max-width: 810px !important; }
.min-w-\[160px\] { min-width: 160px !important; }
.min-w-\[189px\] { min-width: 189px !important; }
.top-\[387px\] { top: 387px !important; }
.top-\[605px\] { top: 605px !important; }
.px-\[30px\] { padding-left: 30px !important; padding-right: 30px !important; }
.pb-\[75px\] { padding-bottom: 75px !important; }
.rounded-t-\[20px\] { border-top-left-radius: 20px !important; border-top-right-radius: 20px !important; }
.rounded-b-\[80px\] { border-bottom-left-radius: 80px !important; border-bottom-right-radius: 80px !important; }
.max-w-\[calc\(100\%-7\.5rem\)\] { max-width: calc(100% - 7.5rem) !important; }


.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, #52377C, #402a63)) !important; }
.from-purple-900 { --tw-gradient-from: #581c87; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 28, 135, 0)); }
.via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #6b21a8, var(--tw-gradient-to, rgba(107, 33, 168, 0)); }
.to-purple-950 { --tw-gradient-to: #3b0764; }
.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.to-indigo-600 { --tw-gradient-to: #4f46e5; }
.bg-dark-blue { background-color: #0f172a !important; }
.text-dark-blue { color: #0f172a !important; }
.bg-custom-purple { background-color: #52377C !important; }
.text-custom-purple { color: #52377C !important; }
.border-gray-300 { border-color: #d1d5db !important; }
.cursor-not-allowed { cursor: not-allowed !important; }
.hover\:bg-blue-500:hover { background-color: #3b82f6 !important; }
.rounded-b-2xl { border-bottom-left-radius: 1rem !important; border-bottom-right-radius: 1rem !important; }
.rounded-l-md { border-top-left-radius: 0.375rem !important; border-bottom-left-radius: 0.375rem !important; }
.rounded-l-none { border-top-left-radius: 0px !important; border-bottom-left-radius: 0px !important; }
.rounded-r { border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; }
.resize-y { resize: vertical !important; }
.pl-13 { padding-left: 3.25rem !important; }
.focus\:ring-purple-700:focus { outline: 2px solid #6b21a8 !important; outline-offset: 2px !important; }
.last\:border-0:last-child { border: 0 !important; }


.banner-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  width: auto !important;
  height: auto !important;
  transform: translate(-50%, -50%) !important;
  object-fit: cover !important;
  z-index: 0 !important;
}
.banner-overlay {
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.72) 0%, rgba(9, 13, 22, 0.88) 100%) !important;
  z-index: 1 !important;
}



.c4u-ai-section {
  background: radial-gradient(circle at 50% 12%, rgba(82, 55, 124, 0.35) 0%, rgba(8, 12, 22, 0.98) 65%), #080c16 !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(82, 55, 124, 0.3) !important;
  border-bottom: 1px solid rgba(255, 69, 0, 0.25) !important;
}

.c4u-ai-grid-pattern {
  position: absolute !important;
  inset: 0 !important;
  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) !important;
  background-size: 44px 44px !important;
  pointer-events: none !important;
  opacity: 0.65 !important;
}

.c4u-ai-glow-purple {
  position: absolute !important;
  top: -80px !important;
  right: 8% !important;
  width: 500px !important;
  height: 500px !important;
  background: radial-gradient(circle, rgba(82, 55, 124, 0.38) 0%, rgba(124, 58, 237, 0.15) 50%, transparent 70%) !important;
  filter: blur(75px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.c4u-ai-glow-orange {
  position: absolute !important;
  bottom: -60px !important;
  left: 6% !important;
  width: 480px !important;
  height: 480px !important;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.22) 0%, rgba(227, 94, 37, 0.12) 50%, transparent 70%) !important;
  filter: blur(75px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.c4u-ai-glow-cyan {
  position: absolute !important;
  top: 45% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 600px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(64, 224, 208, 0.07) 0%, transparent 70%) !important;
  filter: blur(90px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}


.c4u-3d-card {
  background: rgba(13, 19, 33, 0.8) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 22px !important;
  padding: 2.25rem 2rem !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transform-style: preserve-3d !important;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6) !important;
  overflow: hidden !important;
}

.c4u-3d-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  opacity: 0.85 !important;
  transition: opacity 0.3s ease !important;
}

.c4u-3d-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
}

.c4u-3d-card-accent-purple::before {
  background: linear-gradient(90deg, #52377C 0%, #7C3AED 50%, #C084FC 100%) !important;
}
.c4u-3d-card-accent-purple:hover {
  border-color: rgba(124, 58, 237, 0.6) !important;
  box-shadow: 0 25px 60px -15px rgba(82, 55, 124, 0.4), 0 0 35px rgba(124, 58, 237, 0.25) !important;
}

.c4u-3d-card-accent-orange::before {
  background: linear-gradient(90deg, #FF4500 0%, #E35E25 50%, #FDBA74 100%) !important;
}
.c4u-3d-card-accent-orange:hover {
  border-color: rgba(255, 69, 0, 0.6) !important;
  box-shadow: 0 25px 60px -15px rgba(255, 69, 0, 0.35), 0 0 35px rgba(255, 69, 0, 0.2) !important;
}

.c4u-3d-card-accent-teal::before {
  background: linear-gradient(90deg, #14B8A6 0%, #40E0D0 50%, #A7F3D0 100%) !important;
}
.c4u-3d-card-accent-teal:hover {
  border-color: rgba(64, 224, 208, 0.6) !important;
  box-shadow: 0 25px 60px -15px rgba(20, 184, 166, 0.35), 0 0 35px rgba(64, 224, 208, 0.2) !important;
}


.c4u-3d-icon-box {
  width: 54px !important;
  height: 54px !important;
  border-radius: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.45rem !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4) !important;
}

.c4u-3d-card:hover .c4u-3d-icon-box {
  transform: translateZ(20px) scale(1.12) rotate(4deg) !important;
}

.c4u-3d-icon-purple {
  background: linear-gradient(135deg, rgba(82, 55, 124, 0.4) 0%, rgba(124, 58, 237, 0.6) 100%) !important;
  border: 1px solid rgba(168, 85, 247, 0.4) !important;
  color: #d8b4fe !important;
}

.c4u-3d-icon-orange {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.3) 0%, rgba(227, 94, 37, 0.6) 100%) !important;
  border: 1px solid rgba(255, 69, 0, 0.4) !important;
  color: #fdba74 !important;
}

.c4u-3d-icon-teal {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.3) 0%, rgba(15, 118, 110, 0.6) 100%) !important;
  border: 1px solid rgba(64, 224, 208, 0.4) !important;
  color: #5eead4 !important;
}


.c4u-3d-pill-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  padding: 0.25rem 0.65rem !important;
  border-radius: 9999px !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.c4u-pill-purple {
  background: rgba(82, 55, 124, 0.25) !important;
  color: #d8b4fe !important;
  border: 1px solid rgba(147, 51, 234, 0.4) !important;
}

.c4u-pill-orange {
  background: rgba(255, 69, 0, 0.18) !important;
  color: #fed7aa !important;
  border: 1px solid rgba(255, 69, 0, 0.35) !important;
}

.c4u-pill-teal {
  background: rgba(20, 184, 166, 0.2) !important;
  color: #5eead4 !important;
  border: 1px solid rgba(64, 224, 208, 0.35) !important;
}


.c4u-tech-stack-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.4rem !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.c4u-tech-pill {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  padding: 0.2rem 0.55rem !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  color: #cbd5e1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
}


.c4u-3d-metric-box {
  background: rgba(8, 12, 22, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  margin: 1rem 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.c4u-3d-metric-val {
  font-family: var(--font-heading, sans-serif) !important;
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  color: #ffffff !important;
}

.c4u-3d-metric-label {
  font-size: 0.7rem !important;
  color: #94a3b8 !important;
}



.c4u-ai-console {
  background: rgba(10, 15, 28, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(82, 55, 124, 0.4) !important;
  border-radius: 22px !important;
  margin-top: 4.5rem !important;
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.8), 0 0 45px -10px rgba(82, 55, 124, 0.25) !important;
  overflow: hidden !important;
  position: relative !important;
}

.c4u-console-topbar {
  background: rgba(15, 23, 42, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0.85rem 1.5rem !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
}

.c4u-console-tabs {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  overflow-x: auto !important;
}

.c4u-console-tab {
  background: transparent !important;
  border: none !important;
  color: #94a3b8 !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  white-space: nowrap !important;
}

.c4u-console-tab:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.c4u-console-tab.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(82, 55, 124, 0.5) 0%, rgba(124, 58, 237, 0.4) 100%) !important;
  border: 1px solid rgba(147, 51, 234, 0.4) !important;
  box-shadow: 0 4px 12px rgba(82, 55, 124, 0.3) !important;
}

.c4u-console-run-btn {
  background: linear-gradient(135deg, #FF4500 0%, #E35E25 100%) !important;
  color: #ffffff !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.15rem !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.35) !important;
}

.c4u-console-run-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.45) !important;
}

.c4u-console-body {
  padding: 1.5rem !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
}

@media (min-width: 1024px) {
  .c4u-console-body {
    grid-template-columns: 1.15fr 0.85fr !important;
  }
}

.c4u-terminal-view {
  background: #060911 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  padding: 1.25rem !important;
  font-family: 'JetBrains Mono', 'Fira Code', Consolas, Monaco, monospace !important;
  font-size: 0.8rem !important;
  line-height: 1.6 !important;
  color: #e2e8f0 !important;
  min-height: 270px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.c4u-terminal-scanline {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, transparent 0%, rgba(82, 55, 124, 0.06) 50%, transparent 100%) !important;
  background-size: 100% 8px !important;
  pointer-events: none !important;
  z-index: 1 !important;
  opacity: 0.7 !important;
}

.c4u-terminal-progress-track {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  z-index: 5 !important;
}

.c4u-terminal-progress-bar {
  height: 100% !important;
  width: 0% !important;
  background: linear-gradient(90deg, #52377C 0%, #7C3AED 40%, #FF4500 70%, #40E0D0 100%) !important;
  box-shadow: 0 0 10px #40E0D0 !important;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.c4u-terminal-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 0.75rem !important;
  margin-bottom: 0.75rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  font-size: 0.7rem !important;
  color: #64748b !important;
  position: relative !important;
  z-index: 2 !important;
}


.c4u-equalizer {
  display: inline-flex !important;
  align-items: flex-end !important;
  gap: 2px !important;
  height: 12px !important;
  margin-left: 6px !important;
}

.c4u-eq-bar {
  width: 2px !important;
  background: #40E0D0 !important;
  border-radius: 1px !important;
  animation: c4u-eq-bounce 1.2s ease-in-out infinite alternate !important;
}

.c4u-eq-bar:nth-child(1) { height: 40% !important; animation-delay: 0.1s !important; }
.c4u-eq-bar:nth-child(2) { height: 100% !important; animation-delay: 0.3s !important; }
.c4u-eq-bar:nth-child(3) { height: 60% !important; animation-delay: 0.2s !important; }
.c4u-eq-bar:nth-child(4) { height: 80% !important; animation-delay: 0.4s !important; }

@keyframes c4u-eq-bounce {
  0% { height: 25%; opacity: 0.5; }
  100% { height: 100%; opacity: 1; }
}

.c4u-terminal-log {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.65rem !important;
  position: relative !important;
  z-index: 2 !important;
}

.c4u-log-step {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.65rem !important;
  opacity: 1 !important;
  animation: c4u-step-stream 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  border-left: 2px solid transparent !important;
  padding-left: 0.35rem !important;
  transition: all 0.25s ease !important;
}

.c4u-log-step.active {
  border-left-color: #FF4500 !important;
  background: linear-gradient(90deg, rgba(255, 69, 0, 0.08) 0%, transparent 100%) !important;
}

@keyframes c4u-step-stream {
  0% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.c4u-step-icon {
  width: 16px !important;
  height: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.75rem !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.c4u-log-ts {
  color: #64748b !important;
  font-size: 0.7rem !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
}

.c4u-log-agent {
  color: #c084fc !important;
  font-weight: 700 !important;
}

.c4u-log-desc {
  color: #cbd5e1 !important;
  word-break: break-word !important;
}

.c4u-log-highlight {
  color: #FF4500 !important;
  font-weight: 600 !important;
}

.c4u-log-success {
  color: #40E0D0 !important;
  font-weight: 600 !important;
}

.c4u-cursor {
  display: inline-block !important;
  width: 7px !important;
  height: 14px !important;
  background: #FF4500 !important;
  vertical-align: middle !important;
  margin-left: 4px !important;
  animation: c4u-cursor-blink 0.8s infinite !important;
}

@keyframes c4u-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.c4u-telemetry-hud {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
}

.c4u-hud-tile {
  background: rgba(15, 23, 42, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 14px !important;
  padding: 1rem 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.c4u-hud-tile:hover {
  border-color: rgba(82, 55, 124, 0.5) !important;
  transform: translateX(3px) !important;
}

.c4u-hud-val {
  font-family: var(--font-heading, sans-serif) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  transition: color 0.3s ease !important;
}

.c4u-hud-tile:hover {
  border-color: rgba(82, 55, 124, 0.5) !important;
}

.c4u-hud-info h6 {
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #94a3b8 !important;
  margin-bottom: 0.2rem !important;
}

.c4u-hud-info span {
  font-family: var(--font-heading, sans-serif) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}

.c4u-hud-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  padding: 0.25rem 0.6rem !important;
  border-radius: 6px !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
}

.c4u-hud-green {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #34d399 !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.c4u-hud-purple {
  background: rgba(82, 55, 124, 0.25) !important;
  color: #c084fc !important;
  border: 1px solid rgba(147, 51, 234, 0.35) !important;
}

.c4u-hud-orange {
  background: rgba(255, 69, 0, 0.15) !important;
  color: #fb923c !important;
  border: 1px solid rgba(255, 69, 0, 0.35) !important;
}


.c4u-ai-pipeline {
  background: rgba(13, 19, 33, 0.8) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(82, 55, 124, 0.35) !important;
  border-radius: 22px !important;
  padding: 2rem !important;
  margin-top: 3rem !important;
  position: relative !important;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.6) !important;
}

.c4u-pipeline-step {
  background: rgba(8, 12, 22, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 1.25rem 1.5rem !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 1rem !important;
  flex: 1 !important;
  transition: transform 0.25s ease, border-color 0.25s ease !important;
}

.c4u-pipeline-step:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(147, 51, 234, 0.5) !important;
}

.c4u-step-num {
  width: 28px !important;
  height: 28px !important;
  border-radius: 8px !important;
  background: rgba(82, 55, 124, 0.3) !important;
  color: #c084fc !important;
  border: 1px solid rgba(168, 85, 247, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  flex-shrink: 0 !important;
}

.c4u-pipeline-arrow {
  color: #FF4500 !important;
  font-size: 1.15rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: pulse-arrow 2s infinite ease-in-out !important;
}

@keyframes pulse-arrow {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(5px); opacity: 1; }
}



.c4u-code-dashboard-wrapper {
  perspective: 1200px;
  margin: 2.5rem auto 3.5rem;
  max-width: 1060px;
  position: relative;
  contain: layout style;
}

.c4u-code-dashboard {
  background: linear-gradient(145deg, #0b0f19 0%, #0f172a 50%, #172033 100%);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 30px rgba(82, 55, 124, 0.15);
  overflow: hidden;
  color: #f1f5f9;
  font-family: var(--font-body);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, box-shadow;
}

.c4u-code-dashboard:hover {
  transform: translateY(-4px) rotateX(1deg);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.55), 0 0 0 1px rgba(168, 85, 247, 0.3), 0 0 40px rgba(82, 55, 124, 0.25);
}


.c4u-dash-window-bar {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.c4u-dash-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.c4u-dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.c4u-dash-dot.red { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.4); }
.c4u-dash-dot.yellow { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.4); }
.c4u-dash-dot.green { background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.4); }

.c4u-dash-url-pill {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 9999px;
  padding: 0.3rem 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78125rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: fit-content;
  overflow: hidden;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.c4u-dash-url-pill .ssl-lock {
  color: #10b981;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.c4u-dash-url-pill span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  display: block;
}

.c4u-dash-dots,
.c4u-dash-status-badge {
  flex-shrink: 0;
  white-space: nowrap;
}

.c4u-dash-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.c4u-live-indicator-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
}

.c4u-live-indicator-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.5);
  animation: c4uDotPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes c4uDotPing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.8); opacity: 0; }
}


.c4u-dash-content {
  padding: 1.5rem;
}


.c4u-dash-metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.c4u-dash-metric-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.c4u-dash-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #52377C;
  border-radius: 3px 0 0 3px;
}

.c4u-dash-metric-card:hover {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.c4u-dash-metric-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.c4u-dash-metric-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.c4u-dash-metric-delta {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #34d399;
}


.c4u-dash-kanban {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.c4u-dash-col {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.c4u-dash-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.c4u-dash-badge-count {
  background: rgba(82, 55, 124, 0.4);
  color: #d8b4fe;
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
}

.c4u-dash-ticket-card {
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 8px;
  padding: 0.85rem;
  transition: all 0.2s ease;
}

.c4u-dash-ticket-card:hover {
  background: rgba(51, 65, 85, 0.9);
  border-color: rgba(168, 85, 247, 0.35);
  transform: translateY(-2px);
}

.c4u-dash-ticket-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.35rem;
}

.c4u-dash-ticket-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: #94a3b8;
}

.c4u-dash-ticket-tag {
  background: rgba(82, 55, 124, 0.25);
  color: #c084fc;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.625rem;
}


.c4u-floating-live-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  border-radius: 9999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: c4uFloatMicro 4s ease-in-out infinite;
}

@keyframes c4uFloatMicro {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.c4u-floating-live-badge.top-right {
  top: -16px;
  right: 20px;
}

.c4u-floating-live-badge.bottom-left {
  bottom: -16px;
  left: 20px;
  animation-delay: 2s;
}


.c4u-automation-stream {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 0.5rem;
}

.c4u-stream-node {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 170px;
}

.c4u-stream-node-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(82, 55, 124, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c4u-stream-arrow {
  color: #a855f7;
  font-size: 1rem;
  flex-shrink: 0;
  animation: c4uFlowPulse 2s infinite ease-in-out;
}

@keyframes c4uFlowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(4px); opacity: 1; }
}




.c4u-showcase,
.ccpl-showcase {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.c4u-showcase::before,
.ccpl-showcase::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.c4u-image-frame,
.ccpl-image-frame {
  position: relative;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.4);
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.c4u-image-frame:hover,
.ccpl-image-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(126, 58, 242, 0.25);
}

.c4u-frame-bar,
.ccpl-frame-bar {
  background: #1e293b;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid #334155;
  min-width: 0;
  overflow: hidden;
}

.c4u-frame-dots,
.ccpl-frame-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.c4u-frame-dot,
.ccpl-frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.c4u-frame-dot.red, .ccpl-frame-dot.red { background: #ef4444; }
.c4u-frame-dot.yellow, .ccpl-frame-dot.yellow { background: #eab308; }
.c4u-frame-dot.green, .ccpl-frame-dot.green { background: #22c55e; }

.c4u-frame-url,
.ccpl-frame-url {
  font-family: 'JetBrains Mono', monospace, sans-serif;
  font-size: 0.7rem;
  color: #94a3b8;
  background: #0f172a;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: fit-content;
  overflow: hidden;
}

.c4u-frame-url i,
.ccpl-frame-url i {
  flex-shrink: 0;
}

.c4u-frame-url span,
.ccpl-frame-url span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  display: block;
}

.c4u-frame-status,
.ccpl-frame-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: #c4b5fd;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(126, 58, 242, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  letter-spacing: 0.01em;
}

.c4u-frame-status .pulse-dot,
.ccpl-frame-status .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.6);
}

@media (max-width: 480px) {
  .c4u-frame-status span:not(.pulse-dot),
  .ccpl-frame-status span:not(.pulse-dot) {
    display: none;
  }
}

.c4u-frame-img,
.ccpl-frame-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
}


.c4u-feature-card,
.ccpl-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  position: relative;
  display: flex;
  flex-direction: column;
}

.c4u-feature-card:hover,
.ccpl-feature-card:hover {
  transform: translateY(-4px);
  border-color: #c084fc;
  box-shadow: 0 16px 30px -10px rgba(126, 58, 242, 0.12);
}

.c4u-icon-wrap,
.ccpl-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid #ddd6fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(126, 58, 242, 0.08);
}

.c4u-icon-wrap img,
.ccpl-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}


.c4u-promo-section,
.ccpl-promo-section {
  background: linear-gradient(135deg, #090d16 0%, #17112b 50%, #0d1527 100%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 24px;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.c4u-promo-section::before,
.ccpl-promo-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.c4u-promo-tag,
.ccpl-promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #d8b4fe;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.c4u-promo-title,
.ccpl-promo-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .c4u-promo-title,
  .ccpl-promo-title {
    font-size: 2.5rem;
  }
}

.c4u-promo-desc,
.ccpl-promo-desc {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 2rem;
}

.c4u-perks-grid,
.ccpl-perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 640px) {
  .c4u-perks-grid,
  .ccpl-perks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c4u-perk-item,
.ccpl-perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: #f1f5f9;
  font-size: 0.85rem;
  font-weight: 500;
}

.c4u-trust-badge,
.ccpl-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
}


.c4u-sdlc-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.c4u-sdlc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.c4u-process-card:hover .c4u-sdlc-icon-box {
  background: #f5f3ff;
  border-color: #ddd6fe;
  transform: scale(1.05);
}

.c4u-sdlc-icon-box img,
.c4u-sdlc-icon-header img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.c4u-sdlc-icon-header .c4u-process-num {
  margin-bottom: 0;
}


.c4u-location-hero {
  background-color: #070a13 !important;
  background-image: radial-gradient(circle at 15% 25%, rgba(82, 55, 124, 0.35) 0%, transparent 45%),
                    radial-gradient(circle at 85% 75%, rgba(37, 99, 235, 0.2) 0%, transparent 45%),
                    linear-gradient(180deg, #070a13 0%, #0f172a 60%, #070a13 100%) !important;
  color: #ffffff !important;
}

.c4u-location-hero h1,
.c4u-location-hero h2,
.c4u-location-hero h3,
.c4u-location-hero strong {
  color: #ffffff !important;
}

.c4u-location-hero p {
  color: #cbd5e1 !important;
}

.c4u-location-cta {
  background-color: #070a13 !important;
  background-image: radial-gradient(circle at 50% 0%, rgba(82, 55, 124, 0.45) 0%, transparent 60%),
                    linear-gradient(180deg, #070a13 0%, #140d24 50%, #070a13 100%) !important;
  color: #ffffff !important;
}

.c4u-location-cta h2,
.c4u-location-cta h3 {
  color: #ffffff !important;
}

.c4u-location-cta p {
  color: #cbd5e1 !important;
}


.c4u-system-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.c4u-system-card:hover {
  transform: translateY(-4px);
  border-color: #c084fc;
  box-shadow: 0 20px 25px -5px rgba(82, 55, 124, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.c4u-system-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  width: fit-content;
}

.c4u-system-badge.crm { background: #f3e8ff; color: #6b21a8; border: 1px solid #d8b4fe; }
.c4u-system-badge.hrms { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.c4u-system-badge.hms { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.c4u-system-badge.erp { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }

.c4u-system-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 10px;
}

.c4u-system-icon-wrap.crm { background: #f5f3ff; border: 1px solid #ddd6fe; }
.c4u-system-icon-wrap.hrms { background: #eff6ff; border: 1px solid #dbeafe; }
.c4u-system-icon-wrap.hms { background: #ecfdf5; border: 1px solid #d1fae5; }
.c4u-system-icon-wrap.erp { background: #fff7ed; border: 1px solid #ffedd5; }

.c4u-system-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c4u-system-icon-wrap i {
  font-size: 1.5rem;
}

.c4u-btn-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(135deg, #52377C 0%, #3b2559 100%);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 0.75rem;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(82, 55, 124, 0.25);
  margin-top: auto;
  white-space: nowrap;
}

.c4u-btn-consult:hover {
  background: linear-gradient(135deg, #634296 0%, #462c6b 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 15px -3px rgba(82, 55, 124, 0.35);
  color: #ffffff !important;
}


.c4u-metric-box {
  background-color: #0f172a !important;
  border: 1px solid #334155 !important;
  border-radius: 0.75rem !important;
  padding: 0.75rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 4.25rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}
.c4u-metric-box:hover {
  border-color: #0d9488 !important;
  background-color: #1e293b !important;
  transform: translateY(-2px) !important;
}
.c4u-metric-label {
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.075em !important;
  color: #94a3b8 !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 0.35rem !important;
  display: block !important;
}
.c4u-metric-val {
  font-size: 0.85rem !important;
  color: #2dd4bf !important;
  font-weight: 600 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}


.c4u-btn-teal {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.65rem 1.25rem !important;
  border-radius: 0.75rem !important;
  background: linear-gradient(135deg, #0d9488 0%, #10b981 100%) !important;
  color: #ffffff !important;
  font-size: 0.825rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  border: 1px solid transparent !important;
}
.c4u-btn-teal:hover {
  background: linear-gradient(135deg, #0f766e 0%, #059669 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.45) !important;
  color: #ffffff !important;
}

.c4u-btn-dark-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.65rem 1.1rem !important;
  border-radius: 0.75rem !important;
  background-color: #1e293b !important;
  border: 1px solid #475569 !important;
  color: #e2e8f0 !important;
  font-size: 0.825rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}
.c4u-btn-dark-pill:hover {
  background-color: #334155 !important;
  border-color: #2dd4bf !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

.c4u-btn-ghost-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.65rem 1.1rem !important;
  border-radius: 0.75rem !important;
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #e2e8f0 !important;
  font-size: 0.825rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}
.c4u-btn-ghost-pill:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1) !important;
}


.c4u-card {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 1rem !important;
  padding: 1.75rem !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}
.c4u-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08) !important;
}

.c4u-mission-box {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 1rem !important;
  padding: 1.25rem 1.5rem !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04) !important;
  transition: border-color 0.2s ease !important;
}
.c4u-mission-box:hover {
  border-color: #cbd5e1 !important;
}


@keyframes c4u-skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.c4u-skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%) !important;
  background-size: 200% 100% !important;
  animation: c4u-skeleton-shimmer 1.5s infinite linear !important;
  border-radius: 0.5rem;
  display: block;
}

.c4u-skeleton-dark {
  background: linear-gradient(90deg, #0f172a 25%, #1e293b 50%, #0f172a 75%) !important;
  background-size: 200% 100% !important;
  animation: c4u-skeleton-shimmer 1.5s infinite linear !important;
  border-radius: 0.5rem;
  display: block;
}

.c4u-skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.c4u-skeleton-title {
  height: 1.75rem;
  width: 60%;
  margin-bottom: 0.75rem;
  border-radius: 0.375rem;
}

.c4u-skeleton-card {
  min-height: 200px;
  border-radius: 1rem;
}


img.c4u-img-loading {
  opacity: 0.7;
  filter: blur(4px);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

img.c4u-img-loaded {
  opacity: 1;
  filter: none;
  transition: opacity 0.4s ease, filter 0.4s ease;
}


.bg-\[\#09090b\] {
  background-color: #0f172a !important;
}
.bg-\[\#18181b\] {
  background-color: #140f24 !important;
}
.border-\[\#27272a\] {
  border-color: #281f42 !important;
}




