/* ============================================
   Corvanez DIGITAL - MAIN STYLESHEET
   Prefix: cd-
   Design: Luminous Surfaces
   ============================================ */


.pace .pace-progress {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  height: 3px;
}
.pace .pace-progress-inner {
  box-shadow: 0 0 10px #7c3aed, 0 0 5px #a78bfa;
}


:root {
  --cd-bg-dark: #0d0b1a;
  --cd-bg-dark-2: #120f24;
  --cd-bg-light: #f5f3ff;
  --cd-bg-card: rgba(255, 255, 255, 0.04);
  --cd-bg-card-light: rgba(255, 255, 255, 0.85);

  --cd-primary: #7c3aed;
  --cd-primary-light: #a78bfa;
  --cd-primary-dark: #5b21b6;
  --cd-secondary: #0ea5e9;
  --cd-accent-amber: #f59e0b;
  --cd-accent-teal: #14b8a6;
  --cd-accent-rose: #f43f5e;
  --cd-accent-violet: #8b5cf6;

  --cd-text-dark: #1a1033;
  --cd-text-body: #3d3558;
  --cd-text-muted: #6b5fa0;
  --cd-text-light: #e8e3ff;
  --cd-text-light-muted: #b8aee8;

  --cd-border-glass: rgba(255, 255, 255, 0.12);
  --cd-border-glass-strong: rgba(255, 255, 255, 0.22);

  --cd-shadow-glow-primary: 0 0 30px rgba(124, 58, 237, 0.35), 0 0 60px rgba(124, 58, 237, 0.15);
  --cd-shadow-glow-amber: 0 0 30px rgba(245, 158, 11, 0.35), 0 0 60px rgba(245, 158, 11, 0.15);
  --cd-shadow-glow-teal: 0 0 30px rgba(20, 184, 166, 0.35), 0 0 60px rgba(20, 184, 166, 0.15);
  --cd-shadow-glow-rose: 0 0 30px rgba(244, 63, 94, 0.35), 0 0 60px rgba(244, 63, 94, 0.15);
  --cd-shadow-card: 0 4px 24px rgba(13, 11, 26, 0.4), 0 1px 4px rgba(13, 11, 26, 0.3);
  --cd-shadow-card-light: 0 4px 24px rgba(124, 58, 237, 0.08), 0 1px 4px rgba(124, 58, 237, 0.04);

  --cd-radius-sm: 8px;
  --cd-radius-md: 14px;
  --cd-radius-lg: 20px;
  --cd-radius-xl: 28px;
  --cd-radius-full: 9999px;

  --cd-spacing-xs: 0.5rem;
  --cd-spacing-sm: 1rem;
  --cd-spacing-md: 1.5rem;
  --cd-spacing-lg: 2.5rem;
  --cd-spacing-xl: 4rem;
  --cd-spacing-2xl: 6rem;

  --cd-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --cd-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.cd-body {
  font-family: 'Lexend', sans-serif;
  background-color: var(--cd-bg-light);
  color: var(--cd-text-body);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--cd-transition);
}

button {
  font-family: 'Lexend', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}


.cd-hero-heading {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cd-text-light);
  letter-spacing: -0.02em;
}

.cd-section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cd-text-dark);
  letter-spacing: -0.01em;
}

.cd-heading-light {
  color: var(--cd-text-light);
}

.cd-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cd-primary);
  margin-bottom: 0.75rem;
}

.cd-label-light {
  color: var(--cd-primary-light);
}

.cd-section-desc {
  font-size: 1.05rem;
  color: var(--cd-text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.cd-desc-light {
  color: var(--cd-text-light-muted);
}

.cd-body-text {
  font-size: 1rem;
  color: var(--cd-text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.cd-text-light-muted {
  color: var(--cd-text-light-muted);
}

.cd-gradient-text {
  background: linear-gradient(135deg, #a78bfa, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cd-text-center { text-align: center; }


.cd-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cd-section-header {
  margin-bottom: var(--cd-spacing-lg);
}

.cd-section-header.cd-text-center {
  text-align: center;
}

.cd-section-header.cd-text-center .cd-section-desc {
  margin: 0 auto;
}


.cd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--cd-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  transition: var(--cd-transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}

.cd-btn-primary {
  background: linear-gradient(135deg, var(--cd-primary), var(--cd-primary-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4), 0 1px 4px rgba(124, 58, 237, 0.2);
}

.cd-btn-primary:hover {
  background: linear-gradient(135deg, var(--cd-primary-dark), var(--cd-primary));
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.55), 0 2px 8px rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
  color: #fff;
}

.cd-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cd-text-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.cd-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  color: var(--cd-text-light);
}

.cd-btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cd-btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

.cd-btn-white {
  background: #fff;
  color: var(--cd-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cd-btn-white:hover {
  background: var(--cd-bg-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  color: var(--cd-primary);
}

.cd-btn-white-outlined {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cd-btn-white-outlined:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  color: #fff;
}

.cd-btn-outline {
  background: transparent;
  color: var(--cd-primary);
  border: 2px solid var(--cd-primary);
}

.cd-btn-outline:hover {
  background: var(--cd-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.cd-btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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


.cd-glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--cd-border-glass);
  border-radius: var(--cd-radius-lg);
  padding: var(--cd-spacing-lg);
  transition: var(--cd-transition);
  position: relative;
  overflow: hidden;
}

.cd-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.cd-glass-card:hover {
  border-color: var(--cd-border-glass-strong);
  transform: translateY(-3px);
  box-shadow: var(--cd-shadow-card), 0 0 40px rgba(124, 58, 237, 0.12);
}


.cd-intro-card,
.cd-webinar-card,
.cd-value-card,
.cd-comparison-card,
.cd-resource-card,
.cd-how-card,
.cd-form-card,
.cd-info-card,
.cd-response-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: var(--cd-shadow-card-light);
  backdrop-filter: blur(20px);
}

.cd-intro-card:hover,
.cd-webinar-card:hover,
.cd-value-card:hover,
.cd-resource-card:hover,
.cd-how-card:hover {
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15), 0 2px 8px rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.25);
}


.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.cd-nav-full {
  background: rgba(13, 11, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cd-border-glass);
  transition: var(--cd-transition-slow);
}

.cd-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.cd-logo-img {
  height: 40px;
  width: auto;
}

.cd-nav-links {
  display: none;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .cd-nav-links {
    display: flex;
    align-items: center;
  }
}

.cd-nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cd-text-light-muted);
  border-radius: var(--cd-radius-full);
  transition: var(--cd-transition);
  position: relative;
}

.cd-nav-link:hover {
  color: var(--cd-text-light);
  background: rgba(255, 255, 255, 0.07);
}

.cd-nav-link.cd-nav-active {
  color: var(--cd-primary-light);
  background: rgba(124, 58, 237, 0.12);
}

.cd-nav-cta {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .cd-nav-cta {
    display: inline-flex;
  }
}


.cd-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .cd-hamburger {
    display: none;
  }
}

.cd-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cd-text-light);
  border-radius: 2px;
  transition: var(--cd-transition);
}

.cd-hamburger.cd-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.cd-hamburger.cd-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.cd-hamburger.cd-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.cd-nav-pill {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8) translateY(-10px);
  transition: var(--cd-transition);
}

.cd-nav-pill.cd-pill-visible {
  opacity: 1;
  pointer-events: all;
  transform: scale(1) translateY(0);
}

.cd-pill-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: linear-gradient(135deg, var(--cd-primary), var(--cd-primary-light));
  border-radius: var(--cd-radius-full);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5), 0 1px 4px rgba(0,0,0,0.3);
  transition: var(--cd-transition);
  min-height: 44px;
}

.cd-pill-btn:hover {
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.65);
  transform: translateY(-2px);
}

.cd-pill-logo-text {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}


.cd-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  background: rgba(13, 11, 26, 0.97);
  backdrop-filter: blur(24px);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.cd-mobile-menu.cd-menu-open {
  pointer-events: all;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cd-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  gap: 1.5rem;
}

.cd-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--cd-text-light);
  font-size: 1.5rem;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--cd-radius-sm);
  transition: var(--cd-transition);
}

.cd-mobile-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--cd-primary-light);
}

.cd-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.cd-mobile-menu.cd-menu-open .cd-mobile-nav {
  opacity: 1;
  transform: translateY(0);
}

.cd-mobile-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cd-text-light-muted);
  padding: 0.75rem 1.5rem;
  border-radius: var(--cd-radius-md);
  transition: var(--cd-transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.cd-mobile-link:hover {
  color: var(--cd-text-light);
  background: rgba(255,255,255,0.07);
}

.cd-mobile-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
}

.cd-mobile-menu.cd-menu-open .cd-mobile-cta {
  opacity: 1;
  transform: translateY(0);
}


.cd-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 80px;
}

.cd-hero-diagonal {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 80px);
  position: relative;
}

@media (min-width: 768px) {
  .cd-hero-diagonal {
    grid-template-columns: 1fr 1fr;
  }
}

.cd-hero-image-side {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

@media (min-width: 768px) {
  .cd-hero-image-side {
    min-height: unset;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }
}

.cd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cd-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,11,26,0.6) 0%, rgba(124,58,237,0.2) 100%);
}

.cd-hero-color-side {
  background: linear-gradient(145deg, #0d0b1a 0%, #1a0f3a 50%, #0f1a3a 100%);
  display: flex;
  align-items: center;
  padding: 3rem 2rem 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cd-hero-color-side {
    padding: 4rem 3rem 4rem 1.5rem;
  }
}

.cd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.cd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--cd-radius-full);
  color: var(--cd-primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.cd-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--cd-text-light-muted);
  line-height: 1.75;
  margin: 1.5rem 0 2rem;
  max-width: 480px;
}

.cd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cd-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.cd-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--cd-text-light-muted);
  font-weight: 500;
}

.cd-hero-meta-item i {
  color: var(--cd-primary-light);
  font-size: 0.9rem;
}


.cd-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  animation: cd-blob-float 8s ease-in-out infinite;
}

.cd-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #7c3aed, transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.cd-blob-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #f59e0b, transparent);
  bottom: 50px;
  left: -50px;
  animation-delay: -4s;
  opacity: 0.2;
}

.cd-blob-page-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7c3aed, transparent);
  top: -200px;
  right: -200px;
  opacity: 0.25;
  animation-delay: -2s;
}

@keyframes cd-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}


.cd-intro {
  padding: var(--cd-spacing-2xl) 0;
  background: var(--cd-bg-light);
}

.cd-intro-grid {
  display: grid;
  gap: var(--cd-spacing-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .cd-intro-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.cd-intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cd-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--cd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cd-icon-amber { background: rgba(245, 158, 11, 0.15); color: var(--cd-accent-amber); }
.cd-icon-violet { background: rgba(139, 92, 246, 0.15); color: var(--cd-accent-violet); }
.cd-icon-teal { background: rgba(20, 184, 166, 0.15); color: var(--cd-accent-teal); }
.cd-icon-rose { background: rgba(244, 63, 94, 0.15); color: var(--cd-accent-rose); }

.cd-intro-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 0.5rem;
}

.cd-intro-card p {
  font-size: 0.85rem;
  color: var(--cd-text-muted);
  line-height: 1.65;
}


.cd-dark-section {
  background: linear-gradient(145deg, var(--cd-bg-dark) 0%, var(--cd-bg-dark-2) 100%);
  padding: var(--cd-spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}


.cd-process {
  padding: var(--cd-spacing-2xl) 0;
}

.cd-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--cd-spacing-lg);
}

@media (min-width: 768px) {
  .cd-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cd-process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cd-process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cd-step-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(124, 58, 237, 0.25);
  line-height: 1;
  letter-spacing: -0.03em;
}

.cd-step-connector {
  display: none;
}

.cd-step-card {
  flex: 1;
}

.cd-step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--cd-radius-md);
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cd-primary-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cd-step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cd-text-light);
  margin-bottom: 0.5rem;
}

.cd-step-card p {
  font-size: 0.875rem;
  color: var(--cd-text-light-muted);
  line-height: 1.7;
}


.cd-webinarii-preview {
  padding: var(--cd-spacing-2xl) 0;
  background: var(--cd-bg-light);
}

.cd-webinarii-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: var(--cd-spacing-lg);
}

@media (min-width: 640px) {
  .cd-webinarii-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cd-webinar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cd-webinar-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--cd-radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cd-tag-amber { background: rgba(245, 158, 11, 0.12); color: #b45309; border: 1px solid rgba(245, 158, 11, 0.25); }
.cd-tag-violet { background: rgba(139, 92, 246, 0.12); color: #6d28d9; border: 1px solid rgba(139, 92, 246, 0.25); }
.cd-tag-teal { background: rgba(20, 184, 166, 0.12); color: #0f766e; border: 1px solid rgba(20, 184, 166, 0.25); }
.cd-tag-rose { background: rgba(244, 63, 94, 0.12); color: #be123c; border: 1px solid rgba(244, 63, 94, 0.25); }

.cd-webinar-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--cd-radius-sm);
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cd-primary);
  font-size: 1rem;
}

.cd-webinar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cd-webinar-desc {
  font-size: 0.875rem;
  color: var(--cd-text-muted);
  line-height: 1.7;
}

.cd-webinar-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cd-webinar-card[data-expanded="true"] .cd-webinar-details {
  max-height: 200px;
}

.cd-webinar-details p {
  font-size: 0.875rem;
  color: var(--cd-text-muted);
  line-height: 1.7;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  margin-top: 0.75rem;
}

.cd-webinar-expand {
  margin-top: 1rem;
}

.cd-expand-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cd-primary);
  padding: 0.5rem 0;
  transition: var(--cd-transition);
  min-height: 44px;
}

.cd-expand-btn:hover {
  color: var(--cd-primary-dark);
}

.cd-expand-text-less { display: none; }

.cd-webinar-card[data-expanded="true"] .cd-expand-text-more { display: none; }
.cd-webinar-card[data-expanded="true"] .cd-expand-text-less { display: inline; }

.cd-expand-icon {
  transition: transform 0.3s ease;
}

.cd-webinar-card[data-expanded="true"] .cd-expand-icon {
  transform: rotate(180deg);
}

.cd-section-cta {
  margin-top: var(--cd-spacing-lg);
}


.cd-values {
  padding: var(--cd-spacing-2xl) 0;
}

.cd-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cd-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cd-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cd-value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--cd-radius-md);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(167, 139, 250, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cd-primary-light);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.cd-value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cd-text-light);
  margin-bottom: 0.75rem;
}

.cd-value-card p {
  font-size: 0.875rem;
  color: var(--cd-text-light-muted);
  line-height: 1.75;
}


.cd-feature-section {
  padding: var(--cd-spacing-2xl) 0;
  background: var(--cd-bg-light);
}

.cd-feature-grid {
  display: grid;
  gap: var(--cd-spacing-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .cd-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cd-img-wrapper {
  border-radius: var(--cd-radius-xl);
  overflow: hidden;
  position: relative;
}

.cd-img-glow {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.2), 0 8px 32px rgba(0,0,0,0.15);
}

.cd-img-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--cd-radius-xl);
  border: 1px solid rgba(124, 58, 237, 0.2);
  pointer-events: none;
}

.cd-feature-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cd-img-wrapper:hover .cd-feature-img {
  transform: scale(1.03);
}

.cd-feature-highlights {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cd-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cd-text-body);
  font-weight: 500;
}

.cd-highlight-item i {
  color: var(--cd-accent-teal);
  font-size: 1rem;
  flex-shrink: 0;
}


.cd-cta-section {
  padding: var(--cd-spacing-xl) 0;
  background: var(--cd-bg-light);
}

.cd-cta-inner {
  background: linear-gradient(135deg, var(--cd-primary) 0%, #4c1d95 50%, #1e1b4b 100%);
  border-radius: var(--cd-radius-xl);
  padding: var(--cd-spacing-xl) var(--cd-spacing-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--cd-shadow-glow-primary);
}

.cd-cta-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent);
  top: -150px;
  right: -100px;
  filter: blur(60px);
  pointer-events: none;
  animation: cd-blob-float 10s ease-in-out infinite;
}

.cd-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cd-cta-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cd-cta-text {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cd-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


.cd-page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.cd-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.cd-page-hero-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cd-page-hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
}

.cd-legal-hero {
  padding: 9rem 0 4rem;
}


.cd-origin,
.cd-approach,
.cd-resources-intro {
  padding: var(--cd-spacing-2xl) 0;
  background: var(--cd-bg-light);
}

.cd-origin-grid,
.cd-approach-grid,
.cd-about-grid,
.cd-resources-intro-grid {
  display: grid;
  gap: var(--cd-spacing-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .cd-origin-grid,
  .cd-approach-grid,
  .cd-about-grid,
  .cd-resources-intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cd-why-section {
  padding: var(--cd-spacing-2xl) 0;
}

.cd-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cd-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cd-why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--cd-radius-md);
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cd-primary-light);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.cd-why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cd-text-light);
  margin-bottom: 0.75rem;
}

.cd-why-card p {
  font-size: 0.875rem;
  color: var(--cd-text-light-muted);
  line-height: 1.75;
}


.cd-approach-comparison {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cd-comparison-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.cd-comparison-no .cd-comparison-label { color: #dc2626; }
.cd-comparison-yes .cd-comparison-label { color: #059669; }

.cd-comparison-no {
  border-left: 3px solid rgba(220, 38, 38, 0.4);
}

.cd-comparison-yes {
  border-left: 3px solid rgba(5, 150, 105, 0.4);
}

.cd-comparison-card p {
  font-size: 0.9rem;
  color: var(--cd-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cd-comparison-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: var(--cd-radius-sm);
}

.cd-comparison-no .cd-comparison-result {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.cd-comparison-yes .cd-comparison-result {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
}


.cd-filter-section {
  padding: 2rem 0 0;
  background: var(--cd-bg-light);
}

.cd-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--cd-radius-lg);
  box-shadow: var(--cd-shadow-card-light);
}

.cd-filter-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cd-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cd-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cd-filter-tag {
  padding: 0.4rem 0.9rem;
  border-radius: var(--cd-radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cd-text-muted);
  border: 1px solid rgba(124, 58, 237, 0.15);
  background: transparent;
  transition: var(--cd-transition);
  min-height: 36px;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
}

.cd-filter-tag:hover {
  background: rgba(124, 58, 237, 0.08);
  color: var(--cd-primary);
  border-color: rgba(124, 58, 237, 0.3);
}

.cd-filter-tag.cd-filter-active {
  background: var(--cd-primary);
  color: #fff;
  border-color: var(--cd-primary);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.cd-webinarii-full {
  padding: var(--cd-spacing-lg) 0 var(--cd-spacing-2xl);
  background: var(--cd-bg-light);
}

.cd-webinarii-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cd-webinar-full-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

@media (min-width: 768px) {
  .cd-webinar-full-card {
    grid-template-columns: 300px 1fr;
  }
}

.cd-webinar-full-image {
  overflow: hidden;
}

.cd-webinar-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (min-width: 768px) {
  .cd-webinar-img {
    height: 100%;
    min-height: 280px;
  }
}

.cd-webinar-full-card:hover .cd-webinar-img {
  transform: scale(1.04);
}

.cd-webinar-full-content {
  padding: var(--cd-spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cd-webinar-full-content-wide {
  padding: var(--cd-spacing-lg);
  grid-column: 1 / -1;
}

.cd-webinar-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cd-webinar-duration,
.cd-webinar-format {
  font-size: 0.8rem;
  color: var(--cd-text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cd-webinar-full-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--cd-text-dark);
  line-height: 1.25;
}

.cd-webinar-full-desc {
  font-size: 0.9rem;
  color: var(--cd-text-muted);
  line-height: 1.75;
}

.cd-webinar-instrument {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--cd-radius-md);
  padding: 1rem 1.25rem;
  margin: 0.5rem 0;
}

.cd-webinar-instrument h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cd-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cd-webinar-instrument p {
  font-size: 0.875rem;
  color: var(--cd-text-muted);
  line-height: 1.7;
}


.cd-faq-section {
  padding: var(--cd-spacing-2xl) 0;
}

.cd-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cd-faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--cd-border-glass);
  border-radius: var(--cd-radius-md);
  overflow: hidden;
  transition: var(--cd-transition);
}

.cd-faq-item:hover {
  border-color: var(--cd-border-glass-strong);
}

.cd-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cd-text-light);
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  transition: var(--cd-transition);
  min-height: 44px;
  font-family: 'Lexend', sans-serif;
}

.cd-faq-question:hover {
  color: var(--cd-primary-light);
}

.cd-faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--cd-primary-light);
}

.cd-faq-item.cd-faq-open .cd-faq-icon {
  transform: rotate(45deg);
}

.cd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cd-faq-item.cd-faq-open .cd-faq-answer {
  max-height: 200px;
}

.cd-faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--cd-text-light-muted);
  line-height: 1.75;
}


.cd-contact-section {
  padding: var(--cd-spacing-2xl) 0;
  background: var(--cd-bg-light);
}

.cd-contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .cd-contact-grid {
    grid-template-columns: 1fr 420px;
    align-items: start;
  }
}

.cd-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 0.5rem;
}

.cd-form-subtitle {
  font-size: 0.9rem;
  color: var(--cd-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.cd-form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cd-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.cd-form-group {
  margin-bottom: 1rem;
}

.cd-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cd-text-dark);
  margin-bottom: 0.5rem;
}

.cd-required {
  color: var(--cd-accent-rose);
}

.cd-form-input,
.cd-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--cd-radius-md);
  font-size: 0.9rem;
  font-family: 'Lexend', sans-serif;
  color: var(--cd-text-dark);
  background: rgba(255, 255, 255, 0.9);
  transition: var(--cd-transition);
  outline: none;
  min-height: 44px;
}

.cd-form-input:focus,
.cd-form-textarea:focus {
  border-color: var(--cd-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
  background: #fff;
}

.cd-form-input::placeholder,
.cd-form-textarea::placeholder {
  color: #a09ab8;
}

.cd-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.cd-form-privacy {
  margin-bottom: 1.5rem;
}

.cd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.cd-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cd-checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 5px;
  background: rgba(255,255,255,0.9);
  transition: var(--cd-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.cd-checkbox:checked + .cd-checkbox-custom {
  background: var(--cd-primary);
  border-color: var(--cd-primary);
}

.cd-checkbox:checked + .cd-checkbox-custom::after {
  content: '✓';
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.cd-checkbox-text {
  font-size: 0.85rem;
  color: var(--cd-text-muted);
  line-height: 1.6;
}

.cd-form-link {
  color: var(--cd-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cd-form-link:hover {
  color: var(--cd-primary-dark);
}


.cd-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cd-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 1.25rem;
}

.cd-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cd-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cd-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--cd-radius-md);
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cd-primary);
  flex-shrink: 0;
}

.cd-info-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.cd-info-item p {
  font-size: 0.9rem;
  color: var(--cd-text-muted);
  line-height: 1.6;
}

.cd-info-item a:hover {
  color: var(--cd-primary);
}


.cd-response-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--cd-radius-md);
  background: rgba(20, 184, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cd-accent-teal);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cd-response-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 0.75rem;
}

.cd-response-card p {
  font-size: 0.875rem;
  color: var(--cd-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.cd-response-hours {
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding-top: 1rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cd-response-hour-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.cd-hour-day {
  color: var(--cd-text-muted);
  font-weight: 500;
}

.cd-hour-time {
  color: var(--cd-text-dark);
  font-weight: 600;
}


.cd-map-section {
  padding: 0 0 var(--cd-spacing-2xl);
  background: var(--cd-bg-light);
}

.cd-map-wrapper {
  border-radius: var(--cd-radius-xl);
  overflow: hidden;
  box-shadow: var(--cd-shadow-card-light);
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.cd-map-iframe {
  display: block;
}


.cd-thanks-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cd-thanks-section {
  flex: 1;
  background: linear-gradient(145deg, var(--cd-primary-dark) 0%, var(--cd-primary) 40%, #4c1d95 80%, #1e1b4b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}

.cd-thanks-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: cd-blob-float 8s ease-in-out infinite;
}

.cd-thanks-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent);
  top: -100px;
  right: -100px;
}

.cd-thanks-blob-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.2), transparent);
  bottom: -50px;
  left: -50px;
  animation-delay: -4s;
}

.cd-thanks-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
}

.cd-thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 2rem;
  box-shadow: 0 0 40px rgba(255,255,255,0.15);
}

.cd-thanks-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cd-thanks-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.cd-thanks-email {
  margin-bottom: 2.5rem;
}

.cd-thanks-email a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cd-thanks-email a:hover {
  color: #fff;
}


.cd-resources-intro {
  padding: var(--cd-spacing-2xl) 0;
}

.cd-resources-grid-section {
  padding: var(--cd-spacing-2xl) 0;
}

.cd-resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cd-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cd-resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cd-resource-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--cd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.cd-resource-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--cd-radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cd-resource-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cd-resource-desc {
  font-size: 0.875rem;
  color: var(--cd-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cd-resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cd-resource-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--cd-text-muted);
  font-weight: 500;
}

.cd-how-resources {
  padding: var(--cd-spacing-2xl) 0;
  background: var(--cd-bg-light);
}

.cd-how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cd-how-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }
}

.cd-how-card-connector {
  display: none;
}

@media (min-width: 768px) {
  .cd-how-card-connector {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--cd-primary-light), transparent);
    border-radius: 2px;
  }
}

.cd-how-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cd-primary), var(--cd-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.cd-how-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 0.5rem;
}

.cd-how-card p {
  font-size: 0.85rem;
  color: var(--cd-text-muted);
  line-height: 1.65;
}


.cd-legal-section {
  padding: var(--cd-spacing-2xl) 0;
  background: var(--cd-bg-light);
}

.cd-legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.cd-legal-intro {
  font-size: 0.95rem;
  color: var(--cd-text-muted);
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(124, 58, 237, 0.05);
  border-left: 3px solid var(--cd-primary);
  border-radius: 0 var(--cd-radius-md) var(--cd-radius-md) 0;
  margin-bottom: 2.5rem;
}

.cd-legal-qa {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cd-legal-question h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(124, 58, 237, 0.12);
}

.cd-legal-question p {
  font-size: 0.9rem;
  color: var(--cd-text-muted);
  line-height: 1.8;
}

.cd-legal-link {
  color: var(--cd-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cd-legal-link:hover {
  color: var(--cd-primary-dark);
}


.cd-legal-terms .cd-terms-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.cd-legal-terms .cd-terms-section:last-child {
  border-bottom: none;
}

.cd-legal-terms h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cd-legal-terms p {
  font-size: 0.9rem;
  color: var(--cd-text-muted);
  line-height: 1.8;
}


.cd-cookies-intro {
  font-size: 0.95rem;
  color: var(--cd-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(20, 184, 166, 0.06);
  border-left: 3px solid var(--cd-accent-teal);
  border-radius: 0 var(--cd-radius-md) var(--cd-radius-md) 0;
}

.cd-cookies-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.cd-cookies-block:last-child {
  border-bottom: none;
}

.cd-cookies-block h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cd-text-dark);
  margin-bottom: 1rem;
}

.cd-cookies-block p {
  font-size: 0.9rem;
  color: var(--cd-text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.cd-cookie-category {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: var(--cd-radius-md);
}

.cd-cookie-category h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cd-primary);
  margin-bottom: 0.5rem;
}

.cd-cookie-category p {
  margin-bottom: 0;
}

code {
  background: rgba(124, 58, 237, 0.08);
  color: var(--cd-primary);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
  font-family: monospace;
}


.cd-footer {
  background: linear-gradient(145deg, #0a0815 0%, #0d0b1a 100%);
  border-top: 1px solid var(--cd-border-glass);
  padding: var(--cd-spacing-xl) 0 0;
  margin-top: auto;
}

.cd-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--cd-spacing-xl);
  padding-bottom: var(--cd-spacing-xl);
}

@media (min-width: 768px) {
  .cd-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cd-footer-top {
    grid-template-columns: 2fr 3fr;
  }
}

.cd-footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.cd-footer-tagline {
  font-size: 0.875rem;
  color: var(--cd-text-light-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.cd-footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--cd-text-light-muted);
  margin-bottom: 0.5rem;
}

.cd-footer-contact i {
  color: var(--cd-primary-light);
  width: 16px;
  flex-shrink: 0;
}

.cd-footer-contact a:hover {
  color: var(--cd-primary-light);
}

.cd-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .cd-footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cd-footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cd-primary-light);
  margin-bottom: 1rem;
}

.cd-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cd-footer-links a {
  font-size: 0.875rem;
  color: var(--cd-text-light-muted);
  transition: var(--cd-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 32px;
}

.cd-footer-links a:hover {
  color: var(--cd-text-light);
  padding-left: 4px;
}

.cd-footer-bottom {
  border-top: 1px solid var(--cd-border-glass);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.cd-footer-copy,
.cd-footer-address {
  font-size: 0.8rem;
  color: rgba(184, 174, 232, 0.5);
}


.cd-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cd-reveal.cd-revealed {
  opacity: 1;
  transform: translateY(0);
}


.cd-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(13, 11, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--cd-border-glass);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cd-cookie-banner.cd-cookie-visible {
  transform: translateY(0);
}

.cd-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .cd-cookie-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.cd-cookie-left {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--cd-border-glass);
}

@media (min-width: 768px) {
  .cd-cookie-left {
    border-bottom: none;
    border-right: 1px solid var(--cd-border-glass);
  }
}

.cd-cookie-left h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cd-text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cd-cookie-left h3 i {
  color: var(--cd-accent-amber);
}

.cd-cookie-left p {
  font-size: 0.82rem;
  color: var(--cd-text-light-muted);
  line-height: 1.65;
}

.cd-cookie-left a {
  color: var(--cd-primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cd-cookie-right {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cd-cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cd-cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cd-cookie-toggle-label {
  font-size: 0.82rem;
  color: var(--cd-text-light-muted);
  font-weight: 500;
}

.cd-cookie-toggle-label small {
  display: block;
  font-size: 0.72rem;
  color: rgba(184, 174, 232, 0.5);
}

.cd-toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cd-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cd-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: var(--cd-radius-full);
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--cd-transition);
}

.cd-toggle-track::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: var(--cd-transition);
}

.cd-toggle-switch input:checked + .cd-toggle-track {
  background: var(--cd-primary);
}

.cd-toggle-switch input:checked + .cd-toggle-track::after {
  transform: translateX(18px);
}

.cd-toggle-switch input:disabled + .cd-toggle-track {
  opacity: 0.6;
  cursor: not-allowed;
}

.cd-cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cd-cookie-btn {
  padding: 0.55rem 1.1rem;
  border-radius: var(--cd-radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  cursor: pointer;
  transition: var(--cd-transition);
  border: none;
  min-height: 36px;
}

.cd-cookie-btn-accept {
  background: linear-gradient(135deg, var(--cd-primary), var(--cd-primary-light));
  color: #fff;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.cd-cookie-btn-accept:hover {
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.55);
  transform: translateY(-1px);
}

.cd-cookie-btn-save {
  background: rgba(255,255,255,0.1);
  color: var(--cd-text-light);
  border: 1px solid var(--cd-border-glass);
}

.cd-cookie-btn-save:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.cd-cookie-btn-reject {
  background: transparent;
  color: var(--cd-text-light-muted);
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
}

.cd-cookie-btn-reject:hover {
  color: var(--cd-text-light);
}


.iti__flag-container {
  z-index: 10;
}

.iti--separate-dial-code .iti__selected-flag {
  background: rgba(124, 58, 237, 0.05);
  border-right: 1px solid rgba(124, 58, 237, 0.15);
}


.cd-webinar-full-card.cd-hidden {
  display: none;
}


@media (min-width: 900px) {
  .cd-about-image {
    order: 2;
  }
  .cd-about-text {
    order: 1;
  }
}


::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cd-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.4);
  border-radius: var(--cd-radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 58, 237, 0.65);
}


::selection {
  background: rgba(124, 58, 237, 0.25);
  color: var(--cd-text-dark);
}


.cd-hidden { display: none !important; }
.cd-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}