#fw-section-custom-html-2dc63083-f9ef-473d-9b65-8d41ee4a889b {

/* =======================
   KDCC Resources • Final CSS (denser + normalized)
   ======================= */

/* Grid layout with equal-height cards */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;                 /* tighter gap */
  margin-top: 6px;
  align-items: stretch;
}

/* Make each link fill its grid cell */
.resource-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

/* Core card styling */
.resource-card {
  border: 1.5px solid #d13438;
  border-radius: 10px;
  padding: 14px;             /* tighter padding */
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  margin-bottom: 0;          /* grid gap handles spacing */
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  height: 100%;
  min-height: 180px;         /* compact, still balanced */
}

.resource-card:hover {
  box-shadow: 0 8px 18px rgba(209, 52, 56, 0.22);
  transform: translateY(-4px);
}

/* Featured cards (if used elsewhere) */
.resource-card.featured {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 16px;
  padding: 24px;
  height: auto;
}

/* Icons */
.resource-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Card title */
.resource-card span {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
  margin-top: 2px;
}

/* Description area: normalized to 2 lines on desktop */
.resource-card p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  line-height: 1.28;
  max-width: 26ch;

  display: -webkit-box;
  -webkit-line-clamp: 2;   /* show 2 lines max */
  -webkit-box-orient: vertical;
  overflow: hidden;

  text-align: center;
  color: #333;
}

/* Section titles and blurbs */
.section-title {
  font-weight: 700;
  font-size: 1.4rem;
  margin: 20px 0 4px 0;
  padding: 10px 18px;
  color: #fff;
  border-radius: 6px;
  text-align: left;
}

.section-blurb {
  margin: 4px 0 10px 0;
  font-size: 0.92rem;
  color: #555;
  text-align: left;
}

/* Title color themes */
.section-title.featured { background-color: #e33c3a; }
.section-title.content-tools { background-color: #f2b90f; }
.section-title.youtube-growth { background-color: #9c27b0; }
.section-title.audio-resources { background-color: #388e3c; }
.section-title.video-production { background-color: #3f51b5; }
.section-title.graphics-visual { background-color: #795548; }
.section-title.livestreaming { background-color: #009688; }
.section-title.engagement-tools { background-color: #607d8b; }
.section-title.free-resources { background-color: #03a9f4; }
.section-title.elgato {
  background-color: #5e4a9a;
  color: #fff;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 22px 0;
  text-align: center;
}

/* Desktop: center section titles and blurbs */
@media (min-width: 601px) {
  .section-title,
  .section-blurb {
    text-align: center;
  }
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .resource-card {
    min-height: 170px;
    padding: 12px;
  }
}

@media (max-width: 600px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .resource-card {
    min-height: 160px;
  }
  .resource-card p {
    max-width: 30ch;
    -webkit-line-clamp: 3;   /* allow one extra line on mobile */
  }
}

}
#fw-section-custom-html-d03298cb-b9ba-47a2-aab8-23b98603d21b {

.kdcc-aff__h1 {
  text-align: center;
  color: #14b9dc; /* KDCC Blue */
  font-weight: 800;
  font-size: 1.9rem;
  margin-bottom: 10px;
}

/* Red underline accent */
.kdcc-aff__video-line {
  width: 96px;
  height: 3px;
  background: #ec4f59;
  border-radius: 2px;
  margin: 12px auto 16px;
}

/* Video wrapper styling */
.kdcc-aff__video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(236, 79, 89, 0.2);
}

.kdcc-aff__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.kdcc-aff__caption {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.kdcc-aff__cta {
  display: inline-block;
  background: #ec4f59;
  color: #fff !important;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(236, 79, 89, 0.2);
  transition: all 0.2s ease;
}

.kdcc-aff__cta:hover {
  background: #d7434e;
  transform: translateY(-1px);
}

/* Mobile CTA adjustment */
@media (max-width: 480px) {
  .kdcc-aff__cta {
    padding: 8px 14px;
    font-size: 0.95rem;
  }
}

}
#fw-section-hero-video-bf3e70a3-d1ad-42c1-b9cb-016b09f71c27 {

/* Base style: make all buttons white with bold black text */
button,
.button,
a.button {
  background-color: #ffffff !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 6px;
  padding: 12px 24px;
  transition: background-color 0.3s ease;
}

/* WATCH NOW button: KDCC blue with white text (assumed first button) */
a.button:first-of-type,
button:first-of-type {
  background-color: #14b9dc !important;
  color: #ffffff !important;
}

/* Optional hover styling */
button:hover,
.button:hover,
a.button:hover {
  opacity: 0.95;
  cursor: pointer;
}
}
#fw-section-custom-html-cccf0e63-79c3-4eb4-bc12-e83948fcd553 {

.kdcc-built-to-help {
  background-color: #fffaf7;
  padding: 30px 20px 40px 20px; /* reduced top padding */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  animation: fadeInUp 0.8s ease-out;
}


.kdcc-section-title {
  color: #ec4f59;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
  padding-top: 10px; /* was 20px */
}
.kdcc-section-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}

.kdcc-feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.kdcc-feature-card {
  flex: 1 1 calc(25% - 20px);
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.kdcc-feature-card:hover {
  transform: translateY(-5px);
}

.kdcc-feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.kdcc-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #14b9dc;
  margin-bottom: 8px;
}

.kdcc-feature-card p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.4;
}

.kdcc-button-wrap {
  margin-top: 40px;
  text-align: center;
}

.kdcc-cta-button {
  background: linear-gradient(90deg, #14b9dc 0%, #0fa1c2 100%);
  color: white;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.kdcc-cta-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #0fa1c2 0%, #0c8eb0 100%);
}

/* Scroll animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .kdcc-feature-grid {
    flex-direction: column;
    gap: 20px;
  }

  .kdcc-feature-card {
    flex: 1 1 100%;
  }

  .kdcc-section-text p {
    text-align: left;
  }
}
.kdcc-cta-button {
  background: linear-gradient(90deg, #ec4f59 0%, #d7434e 100%); /* KDCC red gradient */
  color: white;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: pulseAnimation 2s infinite;
}

.kdcc-cta-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #d7434e 0%, #b93139 100%);
}

@keyframes pulseAnimation {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 79, 89, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(236, 79, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 79, 89, 0);
  }
}
.kdcc-feature-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 1 1 calc(25% - 20px);
}

.kdcc-feature-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.kdcc-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}
.kdcc-feature-card h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #14b9dc;
  margin-bottom: 14px; /* was 8px */
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}


.kdcc-feature-card h3::before {
  content: "Opens in new tab";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #313540;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.kdcc-feature-card:hover h3::before {
  opacity: 1;
}

.kdcc-feature-card:hover h3 {
  transform: translateY(13px);
}
/* Default desktop style — show tooltip */
.kdcc-feature-card h3::before {
  content: "Opens in new tab";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #313540;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.kdcc-feature-card:hover h3::before {
  opacity: 1;
}

.kdcc-feature-card h3 {
  position: relative;
  cursor: pointer;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}

/* Default desktop: no arrow icon */
.kdcc-feature-card h3::after {
  content: "";
}

/* On mobile: remove tooltip and show arrow icon */
@media (max-width: 768px) {
  .kdcc-feature-card h3::before {
    display: none;
  }

  .kdcc-feature-card:hover h3 {
    transform: none;
  }

  .kdcc-feature-card h3::after {
    content: " ↗";
    font-size: 0.9rem;
    color: #14b9dc;
  }
}
.kdcc-feature-card h3::after {
  font-weight: bold;
}
.kdcc-cta-subtext {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #313540;
}

.kdcc-cta-subtext a {
  color: #313540;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.kdcc-cta-subtext a:hover {
  color: #ec4f59;
  text-decoration-color: #ec4f59;
}

.kdcc-cta-subtext .sep {
  margin: 0 6px;
  opacity: 0.65;
}

/* small screens */
@media (max-width: 480px) {
  .kdcc-cta-subtext {
    font-size: 0.9rem;
  }
}

}

#fw-section-custom-html-967ca340-0ff4-418b-bb75-aec4db87b7f4 {

.kdcc-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
}

.kdcc-faq h2 {
  text-align: center;
  color: #14b9dc;
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 900;
}

/* FAQ container cards */
.kdcc-faq-item {
  background: #ffffff; /* Clean white */
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  margin: 14px 0;
  padding: 18px 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

/* Subtle hover tint */
.kdcc-faq-item:hover {
  background-color: rgba(20,185,220,0.03);
  box-shadow: 0 2px 10px rgba(20,185,220,0.1);
}

/* Open FAQ: red accent glow and subtle border */
.kdcc-faq-item[open] {
  background-color: #ffffff;
  border: 1px solid rgba(236,79,89,0.4); /* KDCC red accent */
  box-shadow: 0 0 10px rgba(236,79,89,0.25);
}

/* Question row styling */
.kdcc-faq-q {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: #ec4f59;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  transition: color 0.25s ease;
}

/* Color shift on hover and open */
.kdcc-faq-item:hover .kdcc-faq-q,
.kdcc-faq-item[open] .kdcc-faq-q {
  color: #14b9dc;
}

.kdcc-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Plus/minus animation */
.kdcc-faq-q::after {
  content: "+";
  font-size: 1.4rem;
  color: #ec4f59;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}

.kdcc-faq-item[open] .kdcc-faq-q::after {
  content: "–";
  color: #14b9dc;
  transform: rotate(180deg);
}

/* Answer: smooth expand/slide */
.kdcc-faq-a {
  margin-top: 10px;
  color: #313540;
  line-height: 1.55;
  font-size: 1rem;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease, opacity 250ms ease, transform 250ms ease;
  opacity: 0;
  transform: translateY(-2px);
}

.kdcc-faq-item[open] .kdcc-faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

/* Keeps answer content smooth during animation */
.kdcc-faq-a-inner {
  overflow: hidden;
}

.kdcc-faq-a strong {
  font-weight: 600;
  color: #111;
}

.kdcc-faq-a a {
  color: #14b9dc;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.kdcc-faq-a a:hover {
  color: #ec4f59;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .kdcc-faq h2 { font-size: 1.6rem; }
  .kdcc-faq-q { font-size: 1rem; }
}

}
#fw-section-rich-text-5119031d-d26c-4883-a80f-e5855472d6a2 {
--color-primary: #ec4f59;
--color-primary-rgb: 236, 79, 89;
--color-background: #fefaf6;
--color-background-rgb: 254, 250, 246;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #1e1e1e;
--color-on-background-rgb: 30, 30, 30;
--color-product-image-background: #1e1e1e;
--color-background-brightness: 251;
background-color: var(--color-background);
color: var(--color-on-background);
h2 {
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h4 {
  color: #14b9dc;
  font-size: 1.2rem;
  line-height: 1.2;
}

}
#fw-section-rich-text-4d2009e9-c396-4400-a771-80e6f45e6ca4 {
--color-primary: #ec4f59;
--color-primary-rgb: 236, 79, 89;
--color-background: #fefaf6;
--color-background-rgb: 254, 250, 246;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #1e1e1e;
--color-on-background-rgb: 30, 30, 30;
--color-product-image-background: #1e1e1e;
--color-background-brightness: 251;
background-color: var(--color-background);
color: var(--color-on-background);
h2 {
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h4 {
  color: #14b9dc;
  font-size: 1.2rem;
  line-height: 1.2;
}
}
#fw-section-custom-html-b9a17b62-654d-4bc9-8e92-0603684efe2f {

/* Section */
.kdcc-steps-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #fffaf7;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #313540;
}

.kdcc-steps-header {
  font-size: 2.25rem;
  font-weight: 900;
  color: #ec4f59;
  margin-bottom: 12px;
  line-height: 1.2;
}

.kdcc-steps-subheader {
  font-size: 1.125rem;
  color: #313540;
  max-width: 720px;
  margin: 0 auto 36px auto;
  font-weight: 500;
  line-height: 1.5;
}

/* Cards */
.kdcc-steps-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px; /* space before footnote */
}

.kdcc-step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 28px 24px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kdcc-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(236,79,89,0.2);
}

.kdcc-step-number {
  background-color: #ec4f59;
  color: #fff;
  font-weight: 900;
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #ec4f59;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  animation: glowPulse 3s ease-in-out infinite;
}

.kdcc-step-title {
  color: #14b9dc;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.kdcc-step-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #313540;
}

.kdcc-step-outcome {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(49,53,64,0.75);
}

.kdcc-next-step {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: #14b9dc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kdcc-next-step:hover { color: #ec4f59; }

/* Footnote + divider under it */
.kdcc-steps-footnote {
  margin: 28px auto 24px auto;  /* increased bottom spacing */
  font-size: 1rem;
  color: #313540;
  text-align: center;
}

.kdcc-steps-footnote a {
  font-weight: 700;
  color: #14b9dc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kdcc-steps-footnote a:hover {
  color: #ec4f59;
}

.kdcc-section-divider {
  max-width: 1060px;
  height: 2px;
  border: 0;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(20,185,220,0),
    rgba(20,185,220,0.6),
    rgba(20,185,220,0)
  );
}

/* Animations */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236,79,89,0.7); }
  50%      { box-shadow: 0 0 15px 8px rgba(236,79,89,0); }
}

/* Responsive */
@media (max-width: 800px) {
  .kdcc-steps-container { flex-direction: column; align-items: center; }
  .kdcc-step { max-width: 100%; width: 100%; }
  .kdcc-step-text { font-size: 0.98rem; }
  .kdcc-step-outcome { font-size: 0.92rem; }
}

}
#fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02 {
--color-primary: #ec4f59;
--color-primary-rgb: 236, 79, 89;
--color-background: #fefaf6;
--color-background-rgb: 254, 250, 246;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #1e1e1e;
--color-on-background-rgb: 30, 30, 30;
--color-product-image-background: #1e1e1e;
--color-background-brightness: 251;
background-color: var(--color-background);
color: var(--color-on-background);
/* KDCC Example Integration — stable desktop + fixed mobile width */
section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"]{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] > .container.wrapper{
  max-width:1220px !important;
  width:100% !important;
  margin:0 auto !important;
  padding:24px 22px 26px !important;
  box-sizing:border-box !important;
  border:1px solid #edf2f7;
  border-radius:0 !important;
  overflow:visible;
  background:
    radial-gradient(120% 90% at 10% 10%, #eaf7ff 0%, rgba(234,247,255,.65) 32%, rgba(234,247,255,0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  box-shadow:0 1px 0 rgba(255,255,255,.6) inset, 0 10px 24px rgba(16,24,40,.05);
}

section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] .video-with-text__heading{
  color:#ec4f59; letter-spacing:.02em; margin:0 0 10px;
}

@media (min-width:954px){
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] .grid{
    display:grid !important;
    grid-template-columns:520px 1fr;
    column-gap:28px;
    align-items:center;
    margin-left:0 !important;
    margin-right:0 !important;
  }
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] .grid > .grid__column{
    width:auto !important;
    max-width:none !important;
    flex:none !important;
  }
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] .grid > .grid__column:first-child{ grid-column:2; }
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] .grid > .grid__column:last-child{ grid-column:1; }
}

section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] .video-with-text__video-container{ width:100%; }
section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] iframe{
  width:100% !important;
  aspect-ratio:16/9;
  border:0;
  border-radius:0 !important;
  display:block;
}

@media (max-width:959.98px){
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"]{
    padding-left:16px;
    padding-right:16px;
    box-sizing:border-box;
  }
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] > .container.wrapper{
    max-width:100% !important;
    width:100% !important;
    margin:0 !important;
    padding:18px 16px 18px !important;
    border-radius:0 !important;
    overflow:visible !important;
  }
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] .grid{
    display:block !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] .video-with-text__video-container{ margin-top:12px; }
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"] .html-formatter ul{ padding-left:18px; }
}

@media (max-width:360px){
  section[data-section-id="fw-section-video-with-text-07d7a36d-a604-4c37-baf5-2db125827f02"]{
    padding-left:14px;
    padding-right:14px;
  }
}

}


#fw-section-tiers-fa26e851-748e-49da-8961-316862f3b1a3 {

/* Red Header */
h3 {
  background-color: #ec4f59;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 16px 0;
  margin: 0 !important;
  width: 100%;
  box-sizing: border-box;
  display: block;
  margin-bottom: 12px !important;
}

/* Price Text – reduced spacing and centered */
.tiers__tier-price {
  margin-top: 0 !important;
  margin-bottom: 20px !important;  /* Was 32px */
  font-size: 1.3rem;  /* Slightly smaller */
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.tiers__tier-annual-link {
  font-size: 0; /* Hides the original text visually */
  position: relative;
}

.tiers__tier-annual-link::after {
  content: "Pay Annually, Get 2 Months Free";
  font-size: 16px; /* Adjust to match your site's font */
  display: inline-block;
  position: relative;
}
.tiers__tier-annual-link {
  font-size: 0;
  position: relative;
}

.tiers__tier-annual-link::after {
  content: "Pay Annually, Get 2 Months Free";
  font-size: 16px;
  color: #000000;
  text-decoration: underline;
  display: inline-block;
  position: relative;
}
.tiers__tier-annual-link {
  font-size: 0;
  position: relative;
}

.tiers__tier-annual-link::after {
  content: "Pay Annually, Get 2 Months Free";
  font-size: 14px;
  font-weight: 600;
  background-color: #fed771; /* KDCC yellow */
  color: #000;
  padding: 6px 10px;
  border-radius: 20px;
  display: inline-block;
}
/* Base pill style */
.tiers__tier-annual-link {
  font-size: 0;
  position: relative;
}

.tiers__tier-annual-link::after {
  content: "Pay Annually, Get 2 Months Free";
  font-size: 14px;
  font-weight: 600;
  background-color: #fed771; /* KDCC yellow */
  color: #000000;
  padding: 6px 10px;
  border-radius: 20px;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover pulse effect */
.tiers__tier-annual-link:hover::after {
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(254, 215, 113, 0.4); /* soft yellow glow */
}



}
#fw-section-custom-html-1c2be0e7-e407-49eb-a402-a035c0142008 {

.kdcc-contact-section {
  max-width: 700px;
  margin: 60px auto 80px;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  color: #313540;
  text-align: center;
}

.kdcc-contact-section h2 {
  color: #14b9dc;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 12px;
}

.kdcc-contact-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.kdcc-form-wrapper {
  box-shadow: 0 4px 15px rgba(20, 185, 220, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

/* Make iframe responsive */
.kdcc-form-wrapper iframe {
  width: 100% !important;
  height: 1300px; /* adjust as needed */
  border: none;
  display: block;
  border-radius: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .kdcc-contact-section {
    margin: 40px 15px 60px;
  }
  
  .kdcc-form-wrapper iframe {
    height: 1400px; /* more height for mobile scroll */
  }
}

}



#fw-section-custom-html-7c6fee25-b525-4943-af56-8218624139ea {

/* KDCC — A–Z directory */
:root{
  --kdcc-blue:#14b9dc;
  --kdcc-text:#2f3a43;
  --kdcc-muted:#6b737c;
  --kdcc-line:#e9edf2;
  --kdcc-card:#f9fafb;
  --kdcc-red:#ec4f59;
}

html{scroll-behavior:smooth;}

.kdcc-afflist{
  max-width:1200px;
  margin:0 auto;
  padding:26px 20px 56px;
  color:var(--kdcc-text);
  position:relative;
}

/* Title + sub */
.kdcc-title{
  text-align:center;
  color:var(--kdcc-blue);
  font-weight:800;
  margin:0 0 6px;
  letter-spacing:.2px;
}
.kdcc-sub{
  text-align:center;
  margin:0 6px 6px;
  color:#555;
  font-size:.95rem;
}
.kdcc-updated{
  text-align:center;
  margin:0 0 14px;
  color:var(--kdcc-muted);
  font-size:.85rem;
}

/* A–Z bar */
.kdcc-az{
  display:flex; flex-wrap:wrap; gap:8px;
  justify-content:center;
  background:#fff;
  border:1px solid #eee;
  border-radius:12px;
  padding:10px;
  margin:10px auto 18px;
}
.kdcc-az a{
  display:inline-block; min-width:34px; padding:6px 8px;
  text-align:center; font-weight:700; font-size:.9rem;
  color:var(--kdcc-text);
  background:#fff;
  border:1px solid #eee; border-radius:8px;
  text-decoration:none;
  transition:border-color .15s ease, color .15s ease, background .15s ease, transform .05s ease;
}
.kdcc-az a:hover{border-color:var(--kdcc-blue); color:var(--kdcc-blue)}
.kdcc-az a:active{transform:translateY(1px)}
.kdcc-az .is-all{border-color:var(--kdcc-blue); color:var(--kdcc-blue)}
.kdcc-az .is-empty{opacity:.55}

/* Invisible :target tabs */
.kdcc-tab{display:block; height:0; width:0; overflow:hidden; scroll-margin-top:90px;}

/* Letter group label */
.kdcc-letter{
  margin:10px 0 8px; padding:4px 2px;
  font-weight:800; color:var(--kdcc-muted);
  letter-spacing:.08em; text-transform:uppercase; font-size:.9rem;
  display:flex; align-items:center; gap:8px;
}
.kdcc-letter:before,.kdcc-letter:after{content:""; height:1px; flex:1; background:var(--kdcc-line);}

/* Grid inside each letter group */
.kdcc-grid{
  display:grid;
  gap:20px;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
}

/* Card styling */
.affiliate-card{
  background:var(--kdcc-card);
  border:1px solid #eef1f4;
  border-radius:12px;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  padding:18px;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.affiliate-card:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 14px rgba(0,0,0,.12);
  border-color:#e6eef6;
}
.affiliate-card h4{
  margin:0 0 8px;
  color:#0c86bf;
  font-size:1.06rem;
}
.affiliate-card a{
  color:var(--kdcc-blue);
  text-decoration:underline;
  display:inline-block;
  margin-bottom:8px;
}
.affiliate-card p{
  margin:0 0 8px;
  font-size:.92rem; color:#555;
}
.affiliate-card p strong{color:#222}

/* -------- Filtering logic -------- */
/* Default: show all groups */
.kdcc-group{display:block}

/* Hide any group whose grid is empty, where supported */
.kdcc-grid:empty{display:none}
.kdcc-group:has(.kdcc-grid:empty){display:none}

/* When any letter tab is targeted, hide all groups first */
.kdcc-tab:target ~ .kdcc-groups .kdcc-group{display:none}

/* Then show the matching non-empty letter's group */
#A:target ~ .kdcc-groups .kdcc-group[data-letter="A"],
#B:target ~ .kdcc-groups .kdcc-group[data-letter="B"],
#C:target ~ .kdcc-groups .kdcc-group[data-letter="C"],
#D:target ~ .kdcc-groups .kdcc-group[data-letter="D"],
#E:target ~ .kdcc-groups .kdcc-group[data-letter="E"],
#F:target ~ .kdcc-groups .kdcc-group[data-letter="F"],
#G:target ~ .kdcc-groups .kdcc-group[data-letter="G"],
#H:target ~ .kdcc-groups .kdcc-group[data-letter="H"],
#I:target ~ .kdcc-groups .kdcc-group[data-letter="I"],
#J:target ~ .kdcc-groups .kdcc-group[data-letter="J"],
#K:target ~ .kdcc-groups .kdcc-group[data-letter="K"],
#L:target ~ .kdcc-groups .kdcc-group[data-letter="L"],
#M:target ~ .kdcc-groups .kdcc-group[data-letter="M"],
#N:target ~ .kdcc-groups .kdcc-group[data-letter="N"],
#O:target ~ .kdcc-groups .kdcc-group[data-letter="O"],
#P:target ~ .kdcc-groups .kdcc-group[data-letter="P"],
#R:target ~ .kdcc-groups .kdcc-group[data-letter="R"],
#S:target ~ .kdcc-groups .kdcc-group[data-letter="S"],
#T:target ~ .kdcc-groups .kdcc-group[data-letter="T"],
#U:target ~ .kdcc-groups .kdcc-group[data-letter="U"],
#V:target ~ .kdcc-groups .kdcc-group[data-letter="V"],
#W:target ~ .kdcc-groups .kdcc-group[data-letter="W"]{display:block}

/* All = show all groups again */
#ALL:target ~ .kdcc-groups .kdcc-group{display:block}

/* ---------- Empty-state handling (robust) ---------- */
.kdcc-empty-note{
  display:none;
  margin:24px auto 0;
  max-width:800px;
  text-align:center;
  background:#fff;
  border:1px dashed var(--kdcc-line);
  border-radius:12px;
  padding:18px;
  color:var(--kdcc-text);
}
.kdcc-empty-note a{ color:var(--kdcc-blue); text-decoration:underline; }

/* Show a friendly note only for letters that have no programs. */
.kdcc-afflist:has(#Q:target) .kdcc-groups,
.kdcc-afflist:has(#X:target) .kdcc-groups,
.kdcc-afflist:has(#Y:target) .kdcc-groups,
.kdcc-afflist:has(#Z:target) .kdcc-groups{ display:none; }

.kdcc-afflist:has(#Q:target) .kdcc-empty-note,
.kdcc-afflist:has(#X:target) .kdcc-empty-note,
.kdcc-afflist:has(#Y:target) .kdcc-empty-note,
.kdcc-afflist:has(#Z:target) .kdcc-empty-note{ display:block; }

/* ---------- Active letter highlight ---------- */
/* When any letter is targeted, remove the All highlight */
.kdcc-afflist:has(.kdcc-tab:target) .kdcc-az .is-all{
  border-color:#eee; color:var(--kdcc-text);
}

/* Highlight the active letter */
.kdcc-afflist:has(#A:target) .kdcc-az a[href="#A"],
.kdcc-afflist:has(#B:target) .kdcc-az a[href="#B"],
.kdcc-afflist:has(#C:target) .kdcc-az a[href="#C"],
.kdcc-afflist:has(#D:target) .kdcc-az a[href="#D"],
.kdcc-afflist:has(#E:target) .kdcc-az a[href="#E"],
.kdcc-afflist:has(#F:target) .kdcc-az a[href="#F"],
.kdcc-afflist:has(#G:target) .kdcc-az a[href="#G"],
.kdcc-afflist:has(#H:target) .kdcc-az a[href="#H"],
.kdcc-afflist:has(#I:target) .kdcc-az a[href="#I"],
.kdcc-afflist:has(#J:target) .kdcc-az a[href="#J"],
.kdcc-afflist:has(#K:target) .kdcc-az a[href="#K"],
.kdcc-afflist:has(#L:target) .kdcc-az a[href="#L"],
.kdcc-afflist:has(#M:target) .kdcc-az a[href="#M"],
.kdcc-afflist:has(#N:target) .kdcc-az a[href="#N"],
.kdcc-afflist:has(#O:target) .kdcc-az a[href="#O"],
.kdcc-afflist:has(#P:target) .kdcc-az a[href="#P"],
.kdcc-afflist:has(#Q:target) .kdcc-az a[href="#Q"],
.kdcc-afflist:has(#R:target) .kdcc-az a[href="#R"],
.kdcc-afflist:has(#S:target) .kdcc-az a[href="#S"],
.kdcc-afflist:has(#T:target) .kdcc-az a[href="#T"],
.kdcc-afflist:has(#U:target) .kdcc-az a[href="#U"],
.kdcc-afflist:has(#V:target) .kdcc-az a[href="#V"],
.kdcc-afflist:has(#W:target) .kdcc-az a[href="#W"],
.kdcc-afflist:has(#X:target) .kdcc-az a[href="#X"],
.kdcc-afflist:has(#Y:target) .kdcc-az a[href="#Y"],
.kdcc-afflist:has(#Z:target) .kdcc-az a[href="#Z"]{
  border-color:var(--kdcc-blue);
  color:var(--kdcc-blue);
}

/* ---------- CTA ---------- */
.kdcc-cta-note{
  margin-top:50px;
  text-align:center;
  color:var(--kdcc-blue);
  font-size:1.5rem;
  font-weight:700;
  user-select:none;
}
.kdcc-cta-wrap{ text-align:center; margin-top:30px; }

.kdcc-cta{
  background-color:var(--kdcc-red);
  color:#fff;
  padding:14px 32px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  font-size:1.1rem;
  display:inline-flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 0 8px 1.5px rgba(236,79,89,0.5);
  animation: kdcc-bounce-glow 2.5s ease-in-out infinite;
  transition: box-shadow .3s ease;
}
.kdcc-cta:hover{ box-shadow:0 0 14px 3px rgba(236,79,89,0.75); }

@keyframes kdcc-bounce-glow{
  0%,100%{ box-shadow:0 0 8px 1.5px rgba(236,79,89,0.5); transform:translateY(0); }
  50%{ box-shadow:0 0 14px 3px rgba(236,79,89,0.75); transform:translateY(-5px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .kdcc-cta{ animation:none; }
}

}

#fw-section-image-with-text-3300a4a8-4b6c-4111-95f0-525c51328f20 {

/* Container around the image */
.image-container {
  max-width: 280px;  /* same as resource cards */
  margin: 0 auto;    /* center horizontally */
  padding: 20px 0;   /* vertical spacing */
}

/* The image itself */
.image-container img {
  width: 100%;
  height: auto;
  max-height: 150px; /* restrict height for better fit */
  object-fit: contain;
}

}

#fw-section-custom-html-2f67ecde-a45b-4a14-bc40-92b02a10c4b2 {

/* ========= KDCC Pills → FAQ (no-JS, smooth, with hints) ========= */

/* Prevents CLS & keeps radios focusable to AT without layout shift */
.vh{
  position: fixed;
  top: -100vh;
  left: -100vw;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}
.vh:focus{ outline: none; }

/* Wrapper */
.kdcc-pills-accordion{ max-width:900px; margin:0 auto 40px; }

/* Instruction line */
.pill-instructions{
  margin: 0 auto 10px;
  color:#666;
  font-size:.95rem;
}

/* Grid: 3 → 2 → 1 */
.pill-grid{
  display:grid;
  gap:16px 18px;
  grid-template-columns:repeat(3, minmax(220px, 1fr));
}
@media (max-width:900px){
  .pill-grid{ grid-template-columns:repeat(2, minmax(200px,1fr)); }
}
@media (max-width:560px){
  .pill-grid{ grid-template-columns:1fr; }
}

/* Pills */
.pill{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:56px;
  padding:10px 18px;
  border-radius:999px;
  color:#fff;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  text-align:center;
  user-select:none;
  box-shadow:0 2px 10px rgba(0,0,0,.10), inset 0 0 0 1px rgba(255,255,255,.08);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.pill .pill-arrow{
  display:inline-block;
  font-size:1.2rem;
  line-height:1;
  opacity:.9;
  transform: translateX(0);
  transition: transform .18s ease, opacity .18s ease;
}
.pill:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,.16), inset 0 0 0 1px rgba(255,255,255,.10);
  filter:brightness(1.02) saturate(1.02);
}
.pill:hover .pill-arrow{ transform: translateX(3px); opacity:1; }
.pill:active{ transform:translateY(-1px) scale(.99); }

/* Brand fills */
.pill.red{   background: linear-gradient(135deg, #f06b73 0%, #ec4f59 60%, #e23b46 100%); }
.pill.blue{  background: linear-gradient(135deg, #3fd0eb 0%, #14b9dc 60%, #0ea8c8 100%); }
.pill.green{ background: linear-gradient(135deg, #7edb3d 0%, #67bb26 60%, #54a31e 100%); }

/* One-time gentle hint */
.pill-grid label[for="feat-free"]{ animation: pillHint 1.2s ease-out .4s 1 both; }
@keyframes pillHint{
  0%{ transform:scale(1); } 35%{ transform:scale(1.03); } 100%{ transform:scale(1); }
}
@media (prefers-reduced-motion:reduce){ .pill-grid label[for="feat-free"]{ animation:none; } }

/* Panels */
.pill-panels{ position:relative; margin-top:14px; }

.panel{
  display:grid;
  grid-template-rows: 0fr;
  background:#fff;
  border:0;
  border-radius:12px;
  box-shadow:none;
  overflow:hidden;
  padding:0;
  margin:0;
  opacity:0;
  transform:translateY(4px);
  pointer-events:none;
  text-align:left;
  transition:
    grid-template-rows .38s cubic-bezier(.4,0,.2,1),
    opacity            .28s ease,
    transform          .32s ease,
    box-shadow         .38s ease,
    border-color       .38s ease;
}

.panel-inner{ overflow:hidden; padding:0 16px; }
.panel h3{ margin:14px 0 6px; font-size:1.05rem; color:#313540; font-weight:800; }
.panel p{ margin:0 0 8px; color:#555; line-height:1.55; }
.panel-close{ display:inline-block; margin:6px 0 12px; color:#14b9dc; font-weight:700; cursor:pointer; }
.panel-close:hover{ text-decoration:underline; }

/* Open state */
#feat-free:checked           + #panel-free,
#feat-video:checked          + #panel-video,
#feat-thumb:checked          + #panel-thumb,
#feat-channel:checked        + #panel-channel,
#feat-resources:checked      + #panel-resources,
#feat-community:checked      + #panel-community,
#feat-collab:checked         + #panel-collab,
#feat-accountability:checked + #panel-accountability,
#feat-updates:checked        + #panel-updates{
  grid-template-rows: 1fr;
  margin-top:12px;
  border:1px solid #eee;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
  z-index:1;
}

/* Active-pill outline */
.kdcc-pills-accordion:has(#feat-free:checked)           .pill-grid label[for="feat-free"],
.kdcc-pills-accordion:has(#feat-video:checked)          .pill-grid label[for="feat-video"],
.kdcc-pills-accordion:has(#feat-thumb:checked)          .pill-grid label[for="feat-thumb"],
.kdcc-pills-accordion:has(#feat-channel:checked)        .pill-grid label[for="feat-channel"],
.kdcc-pills-accordion:has(#feat-resources:checked)      .pill-grid label[for="feat-resources"],
.kdcc-pills-accordion:has(#feat-community:checked)      .pill-grid label[for="feat-community"],
.kdcc-pills-accordion:has(#feat-collab:checked)         .pill-grid label[for="feat-collab"],
.kdcc-pills-accordion:has(#feat-accountability:checked) .pill-grid label[for="feat-accountability"],
.kdcc-pills-accordion:has(#feat-updates:checked)        .pill-grid label[for="feat-updates"]{
  outline:3px solid #14b9dc;
  outline-offset:3px;
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,.16);
}

/* Keep CTA safe below this section */
section[aria-labelledby="inside-kdcc"]{ isolation:isolate; }

/* Mobile tweaks */
@media (max-width:640px){
  .kdcc-pills-accordion{ padding:0 4px; }
  .pill-grid{ grid-template-columns:1fr; gap:12px; }
  .pill{ min-height:60px; padding:12px 18px; font-size:1.05rem; border-radius:9999px; box-shadow:0 2px 8px rgba(0,0,0,.10); }
  .pill-panels{ margin-top:10px; }
  .panel{ border-radius:10px; }
  .panel h3{ font-size:1rem; margin-bottom:4px; }
  .panel p{ font-size:.98rem; line-height:1.5; }
  .panel{
    transition:
      grid-template-rows .42s cubic-bezier(.4,0,.2,1),
      opacity            .30s ease,
      transform          .34s ease,
      box-shadow         .42s ease,
      border-color       .42s ease;
  }
}

/* Touch devices */
@media (hover:none), (pointer:coarse){
  .pill:hover{ transform:none; box-shadow:0 2px 8px rgba(0,0,0,.10); filter:none; }
  .pill:active{ transform:scale(.99); box-shadow:0 6px 14px rgba(0,0,0,.14); }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  .pill-grid label[for="feat-free"]{ animation:none; }
  .pill{ transition:box-shadow .15s ease; }
  .panel{ transition:none; transform:none; opacity:1; grid-template-rows: 1fr; }
}

}

#fw-section-custom-html-0392b1dd-9052-4015-a380-6677281d76ed {

/* KDCC Quick Start Section Styling */
#kdcc-quick-start article {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#kdcc-quick-start article:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(20, 185, 220, 0.3);
}

#kdcc-quick-start h2,
#kdcc-quick-start h3 {
  line-height: 1.3;
}

#kdcc-quick-start p {
  line-height: 1.6;
}

#kdcc-quick-start a {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

#kdcc-quick-start a:hover {
  background-color: #4752c4;
  box-shadow: 0 0 36px rgba(88, 101, 242, 0.85);
}

@media (max-width: 640px) {
  #kdcc-quick-start {
    padding: 40px 16px;
  }
  #kdcc-quick-start h2 {
    font-size: 2rem;
  }
  #kdcc-quick-start article {
    padding: 16px;
  }
  #kdcc-quick-start img {
    width: 40px;
    height: 40px;
  }
}

}






#fw-section-custom-html-7a9e27e3-3e75-436c-bd69-d70b17f3f0bf {

/* Container max width and padding */
.responsive-section {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Feature cards container */
.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Feature cards */
.feature-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

/* Responsive adjustments for tablets and smaller */
@media (max-width: 768px) {
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    max-width: 90%;
  }
  h2 {
    font-size: 2rem !important;
  }
  .intro-text {
    font-size: 1.1rem !important;
    max-width: 90% !important;
  }
  .glow-button {
    padding: 12px 30px !important;
    font-size: 1.1rem !important;
  }
}

}
#fw-section-rich-text-e7c62dc0-2760-44ae-86c1-bc99e50d0692 {

.discord-block {
  border: 2px solid #5865F2;
  background-color: #f6f6ff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(88, 101, 242, 0.1);
  margin: 40px 0;
}

.discord-block h2 {
  color: #313540;
  margin-bottom: 10px;
  font-size: 24px;
}

.discord-block p {
  color: #5865F2;
  margin-bottom: 16px;
  font-size: 16px;
}

.discord-button {
  background-color: #5865F2;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.discord-button:hover {
  background-color: #4752C4;
}

}
#fw-section-custom-html-5b6125c1-b1e6-44fd-94b4-dba76ac1253e {

/* Container max width and padding */
.responsive-section {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Feature cards container */
.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Feature cards */
.feature-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

/* Responsive adjustments for tablets and smaller */
@media (max-width: 768px) {
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    max-width: 90%;
  }
  h2 {
    font-size: 2rem !important;
  }
  .intro-text {
    font-size: 1.1rem !important;
    max-width: 90% !important;
  }
  .glow-button {
    padding: 12px 30px !important;
    font-size: 1.1rem !important;
  }
}

}










#fw-section-rich-text-175087596196265 {

.discord-block {
  border: 2px solid #5865F2;
  background-color: #f6f6ff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(88, 101, 242, 0.1);
  margin: 40px 0;
}

.discord-block h2 {
  color: #313540;
  margin-bottom: 10px;
  font-size: 24px;
}

.discord-block p {
  color: #5865F2;
  margin-bottom: 16px;
  font-size: 16px;
}

.discord-button {
  background-color: #5865F2;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.discord-button:hover {
  background-color: #4752C4;
}

}


#fw-section-header {
--color-primary: #14b9dc;
--color-primary-rgb: 20, 185, 220;
--color-background: #fefaf6;
--color-background-rgb: 254, 250, 246;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #1e1e1e;
--color-on-background-rgb: 30, 30, 30;
--color-product-image-background: #1e1e1e;
--color-background-brightness: 251;
background-color: var(--color-background);
color: var(--color-on-background);

}


#fw-section-custom-html-79eb150a-5d2e-4acd-9f85-fb0f230fb283 {

.kdcc-carousel {
  max-width: 1200px;
  margin: 0 auto;
  font-family: sans-serif;
  position: relative;
}

.kdcc-carousel input[type="radio"] {
  display: none;
}

.carousel-content {
  display: flex;
  flex-wrap: wrap;
  background: #fdf8f5;
  padding: 24px;
  border-radius: 20px;
  gap: 24px;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.carousel-left {
  flex: 1 1 45%;
  min-width: 280px;
  max-width: 480px;
  height: auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.carousel-left .carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}

.carousel-left .carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

#img1:checked ~ .carousel-content .carousel-left .carousel-image:nth-child(1),
#img2:checked ~ .carousel-content .carousel-left .carousel-image:nth-child(2),
#img3:checked ~ .carousel-content .carousel-left .carousel-image:nth-child(3) {
  opacity: 1;
  z-index: 2;
}

.carousel-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.quote-subheader {
  font-size: 20px;
  font-weight: 700;
  color: #14b9dc;
  margin-bottom: -6px;
  margin-top: 4px;
}

.carousel-right .quote {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.carousel-right .quote p {
  font-size: 1.1rem;
  margin: 0;
}

.carousel-right .quote span {
  display: block;
  margin-top: 1rem;
  color: #ec4f59;
  font-weight: bold;
}

.carousel-right .quote.with-image {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.carousel-right .quote.with-image img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  margin-top: 4px;
}

.carousel-right .quote.with-image .quote-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.carousel-right .quote.with-image .quote-text p {
  margin: 0;
  font-size: 1.1rem;
}

.carousel-right .quote.with-image .quote-text span {
  color: #ec4f59;
  font-weight: bold;
  margin-top: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.carousel-dots label {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

#img1:checked ~ .carousel-dots label:nth-child(1),
#img2:checked ~ .carousel-dots label:nth-child(2),
#img3:checked ~ .carousel-dots label:nth-child(3) {
  background: #313540;
}

.kdcc-cta-button {
  background: linear-gradient(to right, #14b9dc, #0da3c9);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 16px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0px 6px 14px rgba(20, 185, 220, 0.3);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}

.kdcc-cta-button:hover {
  transform: scale(1.03);
}

.kdcc-discord-cta {
  text-align: center;
  margin-top: 32px;
}

.kdcc-cta-tagline {
  margin-top: 8px;
  color: #313540;
  font-size: 0.95rem;
}

.carousel-left::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border: 4px solid rgba(0,0,0,0.1);
  border-top-color: #14b9dc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}

.carousel-left.loading::after {
  opacity: 1;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .carousel-content {
    flex-direction: column;
    text-align: center;
  }

  .carousel-left,
  .carousel-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .carousel-right {
    margin-top: 16px;
  }

  .carousel-right .quote {
    text-align: left;
  }

  .carousel-right .quote.with-image {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .carousel-right .quote.with-image img {
    width: 48px;
    height: 48px;
    margin-top: 4px;
  }
}

.kdcc-proof-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
}

.kdcc-proof-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #14b9dc;
  margin-bottom: 10px;
}

.kdcc-proof-header p {
  font-size: 16px;
  color: #313540;
  margin: 0;
}

}
#fw-section-custom-html-ef05de29-a6ed-449f-a39a-87918aa67b01 {

.markdown a {
  background-color: #14b9dc;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
}

.markdown a:hover {
  background-color: #119bbf;
}

}
#fw-section-rich-text-174927956830331 {

pre {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  max-width: 90vw;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto;
}
}
#fw-section-recent-videos-42a7e713-d58b-48c0-b635-22f72c99190a {
--color-primary: #14b9dc;
--color-primary-rgb: 20, 185, 220;
--color-background: #fefaf6;
--color-background-rgb: 254, 250, 246;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #1e1e1e;
--color-on-background-rgb: 30, 30, 30;
--color-product-image-background: #1e1e1e;
--color-background-brightness: 251;
background-color: var(--color-background);
color: var(--color-on-background);

}



#fw-section-custom-html-05aaed9f-e3a2-4e32-b4ce-e7728b87e6e0 {

.kdcc-contact-form-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Arial', sans-serif;
  color: #313540;
}

.kdcc-contact-form-section h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #14b9dc;
  text-align: center;
  margin-bottom: 12px;
}

.kdcc-contact-form-section .intro-text {
  text-align: center;
  font-size: 1.2rem;
  color: #555555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.kdcc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kdcc-contact-form label {
  font-weight: 700;
  color: #ec4f59;
  font-size: 1rem;
}

.kdcc-contact-form input,
.kdcc-contact-form select,
.kdcc-contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  transition: border-color 0.3s ease;
}

.kdcc-contact-form input:focus,
.kdcc-contact-form select:focus,
.kdcc-contact-form textarea:focus {
  border-color: #14b9dc;
  outline: none;
}

.kdcc-submit-button {
  background: linear-gradient(90deg, #14b9dc 0%, #0fa1c2 100%);
  color: white;
  padding: 14px 0;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.kdcc-submit-button:hover {
  background: linear-gradient(90deg, #0fa1c2 0%, #0c8eb0 100%);
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 600px) {
  .kdcc-contact-form {
    gap: 14px;
  }
}

}
#fw-section-custom-html-8d956bbf-a0e9-43c0-ba67-b856453fb210 {

:root{
  --kdcc-blue:#14b9dc;
  --kdcc-dark:#313540;
  --kdcc-white:#ffffff;
  --kdcc-red:#ec4f59;
}

/* Hero shell */
[data-kdcc-hero]{ 
  font-family: ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial;
  background: radial-gradient(90% 120% at 10% 10%, #f0fbff 0%, #fff 40%),
              linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom:1px solid #eef2f7;
  color: var(--kdcc-dark);
}

[data-kdcc-hero] .kh-wrap{ 
  max-width:1120px; 
  margin:0 auto; 
  padding:72px 20px 56px; 
  text-align:center; 
}

/* Title (kept here for size/spacing; color is forced inline) */
[data-kdcc-hero] .kh-title{ 
  font-size:40px; 
  line-height:1.1; 
  margin:0 0 12px; 
  font-weight:800;
}

/* Subtext */
[data-kdcc-hero] .kh-sub{ 
  font-size:18px; 
  max-width:820px; 
  margin:0 auto 20px; 
  color:#4a5162; 
}

/* CTA button */
[data-kdcc-hero] .kh-cta{ margin-top:20px; }

[data-kdcc-hero] .kdcc-cta-btn{
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  padding:14px 32px;
  border-radius:30px;
  text-transform:uppercase;
  font-weight:800; 
  font-size:16px; 
  line-height:1;
  text-decoration:none !important;
  cursor:pointer;
  border:none !important;
  background:#14b9dc !important;
  background-image:none !important;
  color:#ffffff !important;
  box-shadow:0 4px 8px rgba(20,185,220,.35);
}

[data-kdcc-hero] .kdcc-cta-btn:hover{ filter:brightness(.95); }
[data-kdcc-hero] .kdcc-cta-btn:active{ transform:translateY(1px); }

[data-kdcc-hero] .kdcc-cta-btn:link,
[data-kdcc-hero] .kdcc-cta-btn:visited,
[data-kdcc-hero] .kdcc-cta-btn *{
  color:#ffffff !important;
}

/* Stats */
[data-kdcc-hero] .kh-stats{
  display:grid; 
  grid-template-columns:repeat(4,1fr); 
  gap:12px;
  padding:0; 
  margin:28px auto 0; 
  list-style:none; 
  max-width:880px;
}

[data-kdcc-hero] .kh-stats li{
  background:#fff; 
  border:1px solid #eef2f7; 
  border-radius:14px;
  padding:16px 12px; 
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  gap:6px;
}

[data-kdcc-hero] .kh-stats strong{ 
  font-size:22px; 
  color:var(--kdcc-dark); 
}

[data-kdcc-hero] .kh-stats span{ 
  font-size:13px; 
  color:#5b6376; 
}

/* Responsive */
@media (max-width: 960px){
  [data-kdcc-hero] .kh-wrap{ padding:56px 20px 40px; }
  [data-kdcc-hero] .kh-title{ font-size:32px; }
  [data-kdcc-hero] .kh-stats{ grid-template-columns:repeat(2,1fr); }
}

}
#fw-section-custom-html-fd616eba-5417-49d0-800d-4f762177a814 {

/* Heading section: no background, tight spacing */
#kp-heading{
  background:none !important;
  padding:0 !important;
  margin:12px 0 8px !important;   /* minimal space above/below */
  width:100%;
}
#kp-heading .kp-wrap{
  max-width:1200px;
  margin:0 auto;
  text-align:center !important;
}
#kp-heading .kp-title{
  margin:0 !important;
  font-size:80px !important;      /* same “perfect” size */
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:3px;
  line-height:1.05;
  color:#14b9dc !important;       /* KDCC blue */
}

/* Optional: tighten the next section start */
#kdcc-hero{
  margin-top:0 !important;
  padding-top:16px !important;
}

/* Responsive scale */
@media (max-width:1024px){ #kp-heading .kp-title{ font-size:64px !important; } }
@media (max-width:768px){  #kp-heading .kp-title{ font-size:48px !important; } }
@media (max-width:480px){  #kp-heading .kp-title{ font-size:36px !important; } }
#creator-partnerships {
  text-align: center;
  margin: 0;              /* remove outside spacing */
  padding: 20px 0 10px;   /* tighten vertical spacing */
}

}
#fw-section-custom-html-b73f06be-c67a-46b5-bbe6-2d28a96b5c83 {

:root{
  --kdcc-blue:#14b9dc;
  --kdcc-dark:#313540;
  --kdcc-white:#ffffff;
  --kdcc-red:#ec4f59;
  --kdcc-yellow:#fed771;
  --kdcc-green:#67bb26;
}

/* --- Services wrapper --- */
[data-kdcc-services]{
  font-family: ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial;
  background: radial-gradient(90% 120% at 10% 10%, #f0fbff 0%, #fff 40%),
              linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-top:1px solid #eef2f7;
  border-bottom:1px solid #eef2f7;
  color: var(--kdcc-dark);
}

.ks-wrap{ max-width:1120px; margin:0 auto; padding:56px 20px 64px; }

/* Centered heading + description */
.ks-title,
.ks-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.ks-title{ font-size:34px; line-height:1.1; margin:0 0 10px; font-weight:800; }
.ks-sub{ font-size:18px; margin:0 0 24px; color:#4a5162; }

/* Accordion container */
.ks-accordion{ display:grid; gap:14px; }

/* Card */
.ks-item{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:14px;
  box-shadow:0 4px 10px rgba(21,27,38,.04);
  overflow:hidden;
}

/* Remove default marker */
.ks-item summary{ list-style:none; }
.ks-item summary::-webkit-details-marker{ display:none; }

/* Summary row */
.ks-summary{
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px 20px;
  cursor:pointer;
  user-select:none;
}
.ks-summary:hover{ background:#f8fbfd; }

.ks-label{
  font-weight:800;
  font-size:18px;
  color:var(--kdcc-dark);
  flex:1;
}

/* Plus / minus icon (pure CSS) */
.ks-icon{
  width:28px; height:28px; border-radius:999px;
  background:#f2fbfe;
  box-shadow:0 1px 2px rgba(0,0,0,.06);
  position:relative; flex:0 0 28px;
}
.ks-icon::before,
.ks-icon::after{
  content:"";
  position:absolute; left:50%; top:50%;
  transform:translate(-50%,-50%);
  background:#0d3a44; border-radius:2px;
}
.ks-icon::before{ width:14px; height:2px; }   /* horizontal */
.ks-icon::after{ width:2px; height:14px; }    /* vertical */

/* When open, show minus only */
.ks-item[open] .ks-icon::after{ display:none; }
.ks-item[open] .ks-icon{ background:#e7fbff; }

/* Panel body */
.ks-panel{
  text-align: left;
  padding: 12px 22px 18px;
  border-top: 1px solid #eef2f7;
  animation:ks-smooth .25s ease;
}
@keyframes ks-smooth{ from{ opacity:.6 } to{ opacity:1 } }

.ks-note{ color:#5b6376; font-size:16px; margin:2px 0 10px; line-height:1.55; }

/* Restore bullets with KDCC style */
.ks-list{
  list-style: disc outside;
  margin:0;
  padding-left:20px;
}
.ks-list li{
  display:list-item;
  margin:6px 0;
  font-size:16px;
  line-height:1.55;
  color:#2f3443;
  font-weight:500;
}
.ks-list li::marker{ color: var(--kdcc-blue); }

/* ===== WHY BRANDS PARTNER STRIP ===== */
.ks-why{
  margin: 28px 0 10px;
  background:#ffffff;
  border:1px solid #eef2f7;
  border-radius:14px;
  box-shadow:0 4px 10px rgba(21,27,38,.04);
  padding:18px 20px;
}

.ks-why-title{
  margin:0 0 10px;
  font-size:20px;
  font-weight:800;
  text-align:center;
  color:#ec4f59;
}

/* Four compact benefits in one row on desktop, wrap on mobile */
.ks-why-list{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
  list-style:none;
  margin:0;
  padding:0;
}

.ks-why-item{
  display:flex;
  align-items:center;
  gap:10px;
  background:#f9fcfe;
  border:1px solid #eef2f7;
  border-radius:12px;
  padding:14px 16px;
  font-weight:700;
  color:#313540;
  font-size:15px;
  box-shadow:0 3px 8px rgba(0,0,0,.03);
}

/* Number badge */
.ks-num{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight:800;
  font-size:20px;
  color:#14b9dc;
  min-width:38px;
  text-align:center;
  background:#e8faff;
  border-radius:8px;
  padding:6px 0;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.06);
}
.ks-text{ flex:1; line-height:1.4; }

/* Responsive */
@media (max-width:960px){
  .ks-wrap{ padding:48px 20px 56px; }
  .ks-title{ font-size:28px; }
  .ks-label{ font-size:17px; }
  .ks-why-list{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:520px){
  .ks-why-list{ grid-template-columns: 1fr; }
}

/* CTA button */
.ks-cta{ margin-top:28px; text-align:center; }
.kdcc-cta-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 32px; border-radius:30px;
  text-transform:uppercase; font-weight:800; font-size:16px;
  text-decoration:none !important; border:none !important;
  background:#14b9dc !important; color:#ffffff !important;
  box-shadow:0 4px 8px rgba(20,185,220,.35);
}
.kdcc-cta-btn:hover{ filter:brightness(.95); }
.kdcc-cta-btn:active{ transform:translateY(1px); }

/* Re-center the heading and subtext only */
[data-kdcc-services] .ks-wrap > .ks-title,
[data-kdcc-services] .ks-wrap > .ks-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

}
#fw-section-custom-html-00e80fdf-13ac-49f3-b61b-a0edd7af9add {

:root{
  --kdcc-red:#ec4f59;
  --kdcc-dark:#313540;
  --marquee-height:84px;
  --gap:48px;
  --speed:28s; /* lower = faster */
}

/* keep your overall section background */
.kdcc-sponsors{
  background:
    radial-gradient(90% 120% at 10% 10%, #f0fbff 0%, #fff 40%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-top:1px solid #eef2f7;
  border-bottom:1px solid #eef2f7;
  color:var(--kdcc-dark);
  text-align:center;
}
.kdcc-sponsors .ks-wrap{ max-width:1120px; margin:0 auto; padding:48px 20px 56px; }

/* force title color + spacing */
body .kdcc-sponsors .kdcc-red-title{
  color:var(--kdcc-red) !important;
  margin-bottom:28px !important;
}

/* marquee shell, no inner rectangle or pills */
.kdcc-marquee-wrap{ position:relative; overflow:hidden; background:transparent; }
.kdcc-strip{
  display:flex;
  align-items:center;
  gap:var(--gap);
  height:var(--marquee-height);
  width:max-content;                 /* expands to fit both copies */
  will-change:transform;
  animation: kdcc-scroll var(--speed) linear infinite;
}

/* the actual loop: we duplicated logos once, so move half the strip width */
@keyframes kdcc-scroll{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* edge fades */
.kdcc-fade{
  position:absolute; top:0; bottom:0; width:72px; pointer-events:none; z-index:2;
  background:linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}
.kfcc-left{ left:0; }
.kfcc-right{ right:0; transform:scaleX(-1); }

/* clean logos */
.kdcc-item{ line-height:0; background:transparent !important; border:0 !important; box-shadow:none !important; }
.kdcc-item img{
  height:calc(var(--marquee-height) - 20px);
  width:auto;
  object-fit:contain;
  display:block;
}

/* responsive */
@media (max-width:640px){
  :root{ --marquee-height:72px; --gap:28px; }
  .kdcc-fade{ width:44px; }
}
/* === KDCC sponsor size + spacing overrides === */
/* Desktop/tablet size */
.kdcc-marquee-wrap .kdcc-strip{
  height: 96px;                /* rail height */
  gap: var(--kdcc-gap, 96px);  /* spacing comes from your JSON */
}
.kdcc-marquee-wrap .kdcc-item img{
  height: 72px;                /* logo height (back to a sane size) */
  width: auto;
}

/* Mobile tweaks */
@media (max-width: 800px){
  .kdcc-marquee-wrap .kdcc-strip{ height: 88px; }
  .kdcc-marquee-wrap .kdcc-item img{ height: 64px; }
}
@media (max-width: 560px){
  .kdcc-marquee-wrap .kdcc-strip{ height: 80px; }
  .kdcc-marquee-wrap .kdcc-item img{ height: 58px; }
}

}
#fw-section-custom-html-30e92393-b296-490a-8f54-15443c059d5a {

/* ===== UNIFIED LOOK: WHY + PROCESS ===== */

/* Soft section background to match both strips */
[data-kdcc-how],
.ks-why{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

/* Titles: red, centered, bold */
[data-kdcc-how] .ks-title,
.ks-why-title{
  text-align: center;
  margin: 8px auto 12px;
  font-weight: 800;
  font-size: 28px;
  color: #ec4f59 !important;
}

/* Intro under Our Process */
.ks-intro{
  text-align: center;
  font-size: 17px;
  color: #4a5162;
  margin: 0 auto 26px;
  max-width: 740px;
  line-height: 1.6;
}
.ks-intro strong{
  color:#14b9dc;
  font-weight:700;
}

/* ===== WHY BRANDS PARTNER (numbered style to match process) ===== */
.ks-why{
  border: 1px solid #eef2f7;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(21,27,38,.04);
  padding: 18px 20px 20px;
}

.ks-why-list{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:16px;
  list-style:none;
  margin: 4px 0 0;
  padding:0;
}

/* Unify card look */
.ks-why-item{
  display:flex;
  align-items:center;
  gap:12px;
  background:#f9fcfe;
  border:1px solid #eef2f7;
  border-radius:14px;
  padding:18px;
  font-weight:600;
  color:#313540;
  font-size:15px;
  line-height:1.45;
  box-shadow:0 3px 8px rgba(0,0,0,.03);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ks-why-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
}

/* Number bubble to match Our Process circles */
.ks-num{
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  font-family: ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial;
  font-weight:800;
  font-size:20px;
  color:#14b9dc;
  background:#e8faff;
  border-radius:50%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.06);
  flex: 0 0 46px;
  transition: background .2s ease, color .2s ease;
}
.ks-why-item:hover .ks-num{
  background:#14b9dc;
  color:#ffffff;
}
.ks-text{ flex:1; }

/* ===== OUR PROCESS (cards match Why) ===== */
.how-steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  list-style:none;
  margin:0;
  padding:0;
}

.how-steps li{
  background:#f9fcfe;
  border:1px solid #eef2f7;
  border-radius:14px;
  padding:22px;
  text-align:center;
  color:#313540;
  font-size:16px;
  line-height:1.55;
  font-weight:500;
  box-shadow:0 3px 8px rgba(0,0,0,.03);
  transition: transform .2s ease, box-shadow .2s ease;
}
.how-steps li:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
}

/* Number bubble identical sizing to .ks-num */
.step-num{
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  margin:0 auto 10px;
  font-family: ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial;
  font-weight:800;
  font-size:20px;
  color:#14b9dc;
  background:#e8faff;
  border-radius:50%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.06);
  transition: background .2s ease, color .2s ease;
}
.how-steps li:hover .step-num{
  background:#14b9dc;
  color:#ffffff;
}

/* Responsive */
@media (max-width: 960px){
  .ks-why-list{ grid-template-columns: 1fr 1fr; }
  .how-steps{ grid-template-columns: 1fr; }
  [data-kdcc-how] .ks-title,
  .ks-why-title{ font-size:26px; }
  .ks-intro{ font-size:16px; margin-bottom:20px; }
}
@media (max-width: 520px){
  .ks-why-list{ grid-template-columns: 1fr; }
}

}
#fw-section-featured-collection-0 {
--color-primary: #ec4f59;
--color-primary-rgb: 236, 79, 89;
--color-background: #fefaf6;
--color-background-rgb: 254, 250, 246;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #1e1e1e;
--color-on-background-rgb: 30, 30, 30;
--color-product-image-background: #1e1e1e;
--color-background-brightness: 251;
background-color: var(--color-background);
color: var(--color-on-background);

}
#fw-section-custom-html-40cca6cb-a1f8-45ff-adbd-d32cd1bdf0cc {

/* === KDCC Timeline (verified working final) === */
:root {
  --kdcc-red: #ec4f59;
  --kdcc-blue: #14b9dc;
  --kdcc-ink: #313540;
}

/* Section + headings */
section.kdcc-timeline {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
}
.kdcc-timeline-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--kdcc-ink);
  margin-bottom: 8px;
}
.kdcc-timeline-sub {
  text-align: center;
  color: var(--kdcc-ink);
  opacity: .9;
  margin: 0 auto 40px;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* --- Single solid KDCC blue line --- */
.kdcc-timeline-list {
  position: relative !important;
  list-style: none !important;
  margin: 0 !important;
  padding-left: 44px !important;   /* space for the line + dots */
  border-left: none !important;
}
.kdcc-timeline-list::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 24px !important;
  width: 3px !important;
  background: var(--kdcc-blue) !important;
  border-radius: 2px;
  z-index: 0 !important;
}

/* Cards */
.kdcc-milestone {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 18px 20px;
  margin-bottom: 28px;
  z-index: 1; /* sit above rail */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.kdcc-milestone:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* --- Filled KDCC red dots (completed milestones) --- */
.kdcc-milestone::before {
  content: "" !important;
  position: absolute !important;
  left: -34px !important;          /* perfectly centers on the 24px rail */
  top: 26px !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: var(--kdcc-red) !important;  /* fill */
  border: 3px solid var(--kdcc-red) !important; /* border matches fill */
  box-shadow: 0 0 0 4px rgba(236, 79, 89, 0.15) !important;
  z-index: 2 !important; /* above rail */
}

/* --- Hollow KDCC blue dot for future milestone --- */
.kdcc-milestone.kdcc-milestone-future::before {
  background: #fff !important;
  border: 3px solid var(--kdcc-blue) !important;
  box-shadow: 0 0 0 4px rgba(20, 185, 220, 0.2) !important;
}

/* Text */
.kdcc-milestone-heading {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--kdcc-ink);
}
.kdcc-milestone-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--kdcc-ink);
}

/* --- Responsive alignment --- */
@media (max-width: 700px) {
  .kdcc-timeline-list {
    padding-left: 32px !important;
  }
  .kdcc-timeline-list::before {
    left: 18px !important;
  }
  .kdcc-milestone::before {
    left: -26px !important;
    top: 24px !important;
  }
}
/* === KDCC Timeline: rail via background, solid red dots, hollow blue future === */

/* SOLID BLUE LINE, independent of pseudo-elements or border-left */
section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] ol.kdcc-timeline-list{
  position: relative !important;
  list-style: none !important;
  margin: 0 !important;
  padding-left: 44px !important;                 /* space for line + dots */
  border-left: 0 !important;                     /* kill any leftover rails */
  background-image: linear-gradient(#14b9dc, #14b9dc) !important;
  background-repeat: no-repeat !important;
  background-size: 3px 100% !important;          /* 3px wide, full height */
  background-position: 24px 0 !important;        /* centers the line under dots */
}

/* CARDS sit above the rail */
section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] li.kdcc-milestone{
  position: relative !important;
  z-index: 1 !important;
}

/* FILLED KDCC RED DOTS for completed milestones */
section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] li.kdcc-milestone::before{
  content: "" !important;
  position: absolute !important;
  left: -34px !important;                        /* centers on the 24px rail */
  top: 26px !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #ec4f59 !important;                /* solid red fill */
  border: 3px solid #ec4f59 !important;          /* red ring */
  box-shadow: 0 0 0 4px rgba(236,79,89,.15) !important;
  z-index: 2 !important;                         /* dot above the line */
}

/* FUTURE DOT = hollow blue */
section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] li.kdcc-milestone.kdcc-milestone-future::before{
  background: #fff !important;
  border-color: #14b9dc !important;
  box-shadow: 0 0 0 4px rgba(20,185,220,.20) !important;
}

/* MOBILE alignment */
@media (max-width:700px){
  section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] ol.kdcc-timeline-list{
    padding-left: 32px !important;
    background-position: 18px 0 !important;      /* move rail with layout */
  }
  section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] li.kdcc-milestone::before{
    left: -26px !important;
    top: 24px !important;
  }
}
/* === KDCC Timeline: precise centering (rail goes through dot centers) === */
/* Desktop defaults */
section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] ol.kdcc-timeline-list{
  /* set the geometry once */
  --rail-x: 24px;          /* where the blue line sits inside the OL */
  --list-pad: 44px;        /* OL left padding that offsets LI content */
  --dot-diam: 16px;        /* fill diameter */
  --dot-border: 3px;       /* ring thickness */
  --dot-radius: calc((var(--dot-diam) + 2*var(--dot-border)) / 2); /* = 11px */

  position: relative !important;
  list-style: none !important;
  margin: 0 !important;
  padding-left: var(--list-pad) !important;
  border-left: 0 !important;

  /* single solid rail drawn as background so nothing can hide it */
  background-image: linear-gradient(#14b9dc, #14b9dc) !important;
  background-repeat: no-repeat !important;
  background-size: 3px 100% !important;
  background-position: var(--rail-x) 0 !important;
}

/* remove any competing pseudo-rail */
section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] ol.kdcc-timeline-list::before{
  content: none !important;
}

/* Cards above the rail */
section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] li.kdcc-milestone{
  position: relative !important;
  z-index: 1 !important;
}

/* Dot is positioned so its center = rail position */
section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] li.kdcc-milestone::before{
  content: "" !important;
  position: absolute !important;
  top: 26px !important;
  left: calc(var(--rail-x) - var(--list-pad) - var(--dot-radius)) !important;

  width: var(--dot-diam) !important;
  height: var(--dot-diam) !important;
  border-radius: 50% !important;

  background: #ec4f59 !important;                 /* filled KDCC red */
  border: var(--dot-border) solid #ec4f59 !important;
  box-shadow: 0 0 0 4px rgba(236,79,89,.15) !important;
  z-index: 2 !important;
}

/* Future = hollow KDCC blue (still perfectly centered) */
section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] li.kdcc-milestone.kdcc-milestone-future::before{
  background: #fff !important;
  border-color: #14b9dc !important;
  box-shadow: 0 0 0 4px rgba(20,185,220,.20) !important;
}

/* Mobile geometry (keeps precise centering) */
@media (max-width:700px){
  section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] ol.kdcc-timeline-list{
    --rail-x: 18px;
    --list-pad: 32px;
  }
  section.kdcc-timeline[aria-labelledby="kdcc-timeline-heading"] li.kdcc-milestone::before{
    top: 24px !important;
  }
}
/* === KDCC About Section Headline === */
.kdcc-timeline-title {
  color: #14b9dc !important; /* KDCC Blue */
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.kdcc-timeline-sub {
  color: #313540; /* KDCC Ink for balance */
  opacity: 0.9;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 40px;
}

}