/* Navbar */

/* =========================================================
   VorteFix CREATORHELP - NAVBAR
   ========================================================= */

:root {
  --ch-primary: #ff0033;
  --ch-primary-dark: #d9002b;
  --ch-text: #172033;
  --ch-muted: #64748b;
  --ch-border: #e8edf3;
  --ch-white: #ffffff;
}

/* ---------------------------------------------------------
   Navbar
   --------------------------------------------------------- */

.navbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--ch-border);

  /* Modern glass effect */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: 14px 0;

  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;

  z-index: 1000;
}

/* Slight shadow when navbar is visible */

.navbar.sticky-top {
  box-shadow: 0 2px 15px rgba(15, 23, 42, 0.035);
}

/* ---------------------------------------------------------
   Brand / Logo
   --------------------------------------------------------- */

.navbar-brand {
  color: var(--ch-text);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.4px;

  text-decoration: none;

  transition: transform 0.2s ease;
}

.navbar-brand:hover {
  color: var(--ch-text);
  transform: translateY(-1px);
}

/* Play icon */

.brand-icon {
  width: 30px;
  height: 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-right: 7px;

  background: linear-gradient(135deg, #ff0033, #e6002f);

  color: #fff;

  border-radius: 9px;

  font-size: 17px;

  box-shadow: 0 5px 14px rgba(255, 0, 51, 0.2);
}

.brand-icon i {
  margin-left: 1px;
}

/* Help part of logo */

.navbar-brand .text-danger {
  color: var(--ch-primary) !important;
}

/* ---------------------------------------------------------
   Navigation links
   --------------------------------------------------------- */

.navbar-nav {
  gap: 5px;
}

.navbar-nav .nav-link {
  position: relative;

  color: #475569;

  font-size: 0.94rem;
  font-weight: 500;

  padding: 9px 13px !important;

  border-radius: 9px;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

/* Hover */

.navbar-nav .nav-link:hover {
  color: var(--ch-primary);

  background: #fff1f3;
}

/* Active link */

.navbar-nav .nav-link.active {
  color: var(--ch-primary);
  font-weight: 600;
}

/* Small red underline */

.navbar-nav .nav-link.active::after {
  content: "";

  position: absolute;

  left: 13px;
  right: 13px;
  bottom: 3px;

  height: 2px;

  background: var(--ch-primary);

  border-radius: 20px;
}

/* ---------------------------------------------------------
   Login Button
   --------------------------------------------------------- */

.btn-outline-custom {
  border: 1px solid #dce3eb;

  color: var(--ch-text);

  background: #fff;

  font-size: 0.91rem;
  font-weight: 500;

  padding: 9px 17px;

  border-radius: 9px;

  transition: all 0.2s ease;
}

.btn-outline-custom:hover {
  border-color: #cbd5e1;

  background: #f8fafc;

  color: var(--ch-primary);

  transform: translateY(-1px);
}

/* ---------------------------------------------------------
   Get Help Button
   --------------------------------------------------------- */

.btn-primary-custom {
  border: none;

  color: #fff;

  background: linear-gradient(135deg, #ff0033, #e6002f);

  font-size: 0.91rem;
  font-weight: 600;

  padding: 9px 19px;

  border-radius: 9px;

  box-shadow: 0 5px 15px rgba(255, 0, 51, 0.18);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary-custom:hover {
  color: #fff;

  background: linear-gradient(135deg, #e6002f, #c90027);

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(255, 0, 51, 0.26);
}

.btn-primary-custom:active {
  transform: translateY(0);
}

/* ---------------------------------------------------------
   Mobile Toggle
   --------------------------------------------------------- */

.navbar-toggler {
  border: 1px solid #dce3eb;

  border-radius: 9px;

  padding: 7px 9px;

  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 0, 51, 0.1) !important;

  border-color: rgba(255, 0, 51, 0.35);
}

/* Bootstrap hamburger customization */

.navbar-toggler-icon {
  width: 20px;
  height: 20px;
}

/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 991.98px) {
  .navbar {
    padding: 11px 0;
  }

  .navbar-collapse {
    margin-top: 12px;

    padding: 12px;

    background: #ffffff;

    border: 1px solid var(--ch-border);

    border-radius: 14px;

    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  }

  .navbar-nav {
    gap: 3px;
  }

  .navbar-nav .nav-link {
    padding: 11px 13px !important;
  }

  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .navbar-collapse > .d-flex {
    margin-top: 10px;

    padding-top: 12px;

    border-top: 1px solid var(--ch-border);
  }

  .navbar-collapse > .d-flex a {
    flex: 1;

    text-align: center;
  }
}

/* ---------------------------------------------------------
   Small Mobile
   --------------------------------------------------------- */

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.15rem;
  }

  .brand-icon {
    width: 28px;
    height: 28px;

    font-size: 16px;

    border-radius: 8px;
  }

  .navbar-collapse > .d-flex {
    flex-direction: column;
  }

  .navbar-collapse > .d-flex a {
    width: 100%;
  }
}

/* Footer */

/* ========================================= VorteFix CREATORHELP PREMIUM FOOTER ========================================= */
.creator-footer {
  background: #0b0d10;
  color: #aeb4bd;
  padding: 75px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
} /* ========================================= LOGO ========================================= */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}
.footer-logo > span:last-child {
  color: #dc3545;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc3545;
  color: #ffffff;
  border-radius: 9px;
  font-size: 20px;
  box-shadow: 0 8px 22px rgba(220, 53, 69, 0.22);
} /* ========================================= DESCRIPTION ========================================= */
.footer-description {
  max-width: 470px;
  color: #8f969f;
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 25px;
} /* ========================================= DISCLAIMER ========================================= */
.footer-disclaimer {
  max-width: 540px;
  display: flex;
  gap: 14px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}
.disclaimer-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
  font-size: 16px;
}
.footer-disclaimer strong {
  display: block;
  color: #e8eaed;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-disclaimer p {
  color: #777f89;
  font-size: 0.75rem;
  line-height: 1.65;
  margin: 0 0 5px;
} /* ========================================= FOOTER HEADINGS ========================================= */
.footer-title {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
} /* ========================================= FOOTER LINKS ========================================= */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #858c95;
  text-decoration: none;
  font-size: 0.87rem;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
} /* ========================================= DIVIDER ========================================= */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-top: 60px;
} /* ========================================= BOTTOM ========================================= */
.footer-bottom {
  padding: 24px 0 27px;
}
.copyright {
  color: #666d76;
  font-size: 0.78rem;
}
.copyright strong {
  color: #aeb4bd;
  font-weight: 600;
} /* ========================================= LEGAL LINKS ========================================= */
.footer-legal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.footer-legal a {
  color: #666d76;
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: #ffffff;
}
/* WhatsApp Icon */
.footer-whatsapp {
  bottom: 40px;
  right: 20px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dedee2;
  border-radius: 50%;
  color: #fff;
  background: #36e275;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.25s ease;
  position: fixed;
  z-index: 999;
}
.footer-whatsapp:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  transform: translateY(-2px);
}
.brand-help{
    margin-left: 6px;
    font-size: 16px;
}
/* ========================================= MOBILE ========================================= */
@media (max-width: 767.98px) {
  .creator-footer {
    padding-top: 55px;
  }
  .footer-description {
    max-width: 100%;
  }
  .footer-disclaimer {
    padding: 15px;
  }
  .footer-divider {
    margin-top: 40px;
  }
  .footer-bottom {
    padding: 22px 0;
  }
  .footer-legal {
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Inedx */

/* =========================================================
   CREATORHELP — PREMIUM HOMEPAGE
========================================================= */

.creator-home {
  --ch-red: #dc3545;
  --ch-red-soft: #fff1f2;

  --ch-black: #18181b;
  --ch-text: #27272a;
  --ch-muted: #71717a;

  --ch-bg: #fafafa;
  --ch-white: #ffffff;

  --ch-border: #e4e4e7;
}

/* =========================================================
   GLOBAL
========================================================= */

.creator-home * {
  box-sizing: border-box;
}

.creator-home {
  color: var(--ch-text);
  background: var(--ch-white);
  overflow: hidden;
}

.creator-home a {
  text-decoration: none;
}

/* =========================================================
   SMALL EYEBROW
========================================================= */

.ch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #71717a;

  font-size: 0.72rem;
  font-weight: 650;

  letter-spacing: 0.4px;
}

.ch-eyebrow span {
  width: 7px;
  height: 7px;

  display: inline-block;

  border-radius: 50%;

  background: var(--ch-red);
}

.ch-hero-actions a {
  text-decoration: none;
}

/* =========================================================
   HERO
========================================================= */

.ch-hero {
  padding: 100px 0 110px;

  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(220, 53, 69, 0.055),
      transparent 28%
    ),
    #ffffff;

  overflow: hidden;
}

.ch-hero-title {
  max-width: 680px;

  margin: 20px 0 0;

  color: var(--ch-black);

  font-size: clamp(3rem, 5vw, 4.7rem);

  line-height: 1.02;

  font-weight: 750;

  letter-spacing: -3.2px;
}

.ch-hero-title span {
  display: block;
  color: var(--ch-red);
}

.ch-hero-text {
  max-width: 610px;

  margin: 25px 0 0;

  color: var(--ch-muted);

  font-size: 1rem;

  line-height: 1.8;
}

.ch-hero-actions {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 32px;
}

.ch-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 46px;

  padding: 0 20px;

  border-radius: 9px;

  font-size: 0.82rem;
  font-weight: 650;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.ch-btn-primary {
  background: var(--ch-red);
  color: #ffffff;

  box-shadow: 0 8px 22px rgba(220, 53, 69, 0.16);
}

.ch-btn-primary:hover {
  color: #ffffff;

  background: #c92f3e;

  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(220, 53, 69, 0.22);
}

.btn-ch-primary {
  background: #ba313f;
  color: #ffffff;

  box-shadow: 0 8px 22px rgba(220, 53, 69, 0.16);
}

.btn-ch-primary:hover {
  color: #ffffff;

  background: #c92f3e;

  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(220, 53, 69, 0.22);
}

.ch-btn-light {
  color: #3f3f46;

  background: #ffffff;

  border: 1px solid var(--ch-border);
}

.ch-btn-light:hover {
  color: #18181b;

  border-color: #d4d4d8;

  background: #fafafa;
}

.ch-hero-note {
  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  margin-top: 20px;
}

.ch-hero-note span {
  color: #8a8a92;

  font-size: 0.7rem;
}

.ch-hero-note i {
  color: #198754;

  margin-right: 5px;
}

/* =========================================================
   HERO CASE PREVIEW
========================================================= */

.ch-case-preview {
  max-width: 520px;

  margin-left: auto;

  background: #ffffff;

  border: 1px solid #e4e4e7;

  border-radius: 17px;

  overflow: hidden;

  box-shadow: 0 25px 70px rgba(24, 24, 27, 0.08);
}

.ch-window-top {
  height: 48px;

  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  padding: 0 17px;

  border-bottom: 1px solid #f0f0f1;

  background: #fafafa;
}

.ch-window-dots {
  display: flex;
  gap: 5px;
}

.ch-window-dots span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #d4d4d8;
}

.ch-window-title {
  color: #71717a;

  font-size: 0.68rem;
  font-weight: 600;
}

.ch-case-body {
  padding: 30px;
}

.ch-case-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;
}

.ch-case-heading small {
  display: block;

  color: #a1a1aa;

  font-size: 0.62rem;
  font-weight: 650;

  letter-spacing: 1px;

  margin-bottom: 5px;
}

.ch-case-heading h5 {
  margin: 0;

  color: #18181b;

  font-size: 1rem;
  font-weight: 650;
}

.ch-open-status {
  padding: 5px 9px;

  border-radius: 20px;

  background: #ecfdf3;

  color: #15803d;

  font-size: 0.62rem;
  font-weight: 650;
}

.ch-case-message {
  display: flex;

  gap: 14px;

  margin-top: 25px;
  padding: 17px;

  border: 1px solid #eeeeef;

  border-radius: 11px;

  background: #fafafa;
}

.ch-message-icon {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--ch-red-soft);

  color: var(--ch-red);
}

.ch-case-message strong {
  display: block;

  color: #27272a;

  font-size: 0.76rem;
}

.ch-case-message p {
  margin: 4px 0 0;

  color: #a1a1aa;

  font-size: 0.67rem;
}

.ch-progress {
  padding: 28px 5px 25px;
}

.ch-progress-step {
  display: flex;
  align-items: center;

  gap: 11px;
}

.ch-progress-step > span {
  width: 30px;
  height: 30px;

  flex: 0 0 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f4f4f5;

  color: #a1a1aa;

  font-size: 0.65rem;
}

.ch-progress-step.done > span {
  background: #ecfdf3;
  color: #15803d;
}

.ch-progress-step.current > span {
  background: var(--ch-red-soft);
  color: var(--ch-red);
}

.ch-progress-step strong {
  display: block;

  color: #3f3f46;

  font-size: 0.69rem;
}

.ch-progress-step small {
  display: block;

  color: #a1a1aa;

  font-size: 0.61rem;

  margin-top: 2px;
}

.ch-progress-line {
  height: 18px;

  width: 1px;

  margin-left: 14px;

  background: #e4e4e7;
}

.ch-secure-note {
  padding-top: 16px;

  border-top: 1px solid #f0f0f1;

  color: #a1a1aa;

  font-size: 0.63rem;
}

.ch-secure-note i {
  color: #198754;

  margin-right: 5px;
}

/* =========================================================
   PROBLEMS
========================================================= */

.ch-problems {
  padding: 105px 0;

  background: #fafafa;

  border-top: 1px solid #f0f0f1;
}

.ch-section-head {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 45px;
}

.ch-section-head h2,
.ch-centered-head h2 {
  margin: 13px 0 0;

  color: var(--ch-black);

  font-size: clamp(2rem, 4vw, 2.9rem);

  font-weight: 720;

  letter-spacing: -1.7px;
}

.ch-section-head > p {
  max-width: 390px;

  margin: 0;

  color: #71717a;

  font-size: 0.82rem;

  line-height: 1.7;
}

.ch-problem-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #dedee1;
  border-left: 1px solid #dedee1;
}

.ch-problem {
  min-height: 260px;

  padding: 27px;

  background: #ffffff;

  border-right: 1px solid #dedee1;
  border-bottom: 1px solid #dedee1;

  color: inherit;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ch-problem:hover {
  background: #fff;

  color: inherit;

  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(24, 24, 27, 0.05);
}

.ch-problem-top {
  display: flex;

  justify-content: space-between;
  align-items: center;

  margin-bottom: 32px;
}

.ch-problem-top > span {
  color: #c4c4c9;

  font-size: 0.65rem;

  font-weight: 650;
}

.ch-problem-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--ch-red-soft);

  color: var(--ch-red);
}

.ch-problem h3 {
  margin: 0 0 9px;

  color: #27272a;

  font-size: 1rem;

  font-weight: 680;
}

.ch-problem p {
  max-width: 280px;

  min-height: 50px;

  margin: 0;

  color: #85858d;

  font-size: 0.74rem;

  line-height: 1.7;
}

.ch-problem-link {
  margin-top: 25px;

  color: var(--ch-red);

  font-size: 0.7rem;

  font-weight: 650;
}

.ch-problem-link i {
  margin-left: 5px;
}

/* =========================================================
   HOW IT WORKS
========================================================= */

.ch-how {
  padding: 110px 0;

  background: #ffffff;
}

.ch-centered-head {
  max-width: 650px;

  margin: 0 auto;

  text-align: center;
}

.ch-centered-head p {
  margin: 17px auto 0;

  color: #71717a;

  font-size: 0.83rem;

  line-height: 1.7;
}

.ch-steps {
  display: flex;

  align-items: center;

  margin-top: 65px;
}

.ch-step {
  flex: 1;

  text-align: center;
}

.ch-step-number {
  color: #d4d4d8;

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.5px;

  margin-bottom: 15px;
}

.ch-step-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 18px;

  border: 1px solid #e4e4e7;

  border-radius: 11px;

  color: var(--ch-red);

  background: #ffffff;
}

.ch-step h3 {
  margin: 0 0 8px;

  color: #27272a;

  font-size: 0.88rem;

  font-weight: 680;
}

.ch-step p {
  max-width: 180px;

  margin: auto;

  color: #85858d;

  font-size: 0.7rem;

  line-height: 1.65;
}

.ch-step-arrow {
  color: #d4d4d8;

  font-size: 0.8rem;

  margin: 0 15px;
}

/* =========================================================
   TRUST
========================================================= */

.ch-trust {
  padding: 105px 0;

  background: #fafafa;

  border-top: 1px solid #f0f0f1;
}

.ch-trust h2 {
  max-width: 470px;

  margin: 18px 0;

  color: #18181b;

  font-size: clamp(2rem, 4vw, 2.8rem);

  line-height: 1.08;

  font-weight: 720;

  letter-spacing: -1.8px;
}

.ch-trust h2 span {
  display: block;

  color: var(--ch-red);
}

.ch-trust > .container > .row > .col-lg-5 > p {
  max-width: 470px;

  color: #71717a;

  font-size: 0.82rem;

  line-height: 1.8;
}

.ch-trust-list {
  background: #ffffff;

  border: 1px solid #e4e4e7;

  border-radius: 14px;

  overflow: hidden;
}

.ch-trust-item {
  display: flex;

  gap: 18px;

  padding: 23px;

  border-bottom: 1px solid #eeeeef;
}

.ch-trust-item:last-child {
  border-bottom: 0;
}

.ch-trust-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--ch-red-soft);

  color: var(--ch-red);

  font-size: 0.9rem;
}

.ch-trust-item h3 {
  margin: 0 0 5px;

  color: #27272a;

  font-size: 0.78rem;

  font-weight: 680;
}

.ch-trust-item p {
  margin: 0;

  color: #85858d;

  font-size: 0.7rem;

  line-height: 1.6;
}

/* =========================================================
   LEARN
========================================================= */

.ch-learn {
  padding: 80px 0;

  background: #ffffff;
}

.ch-learn-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 42px;

  border: 1px solid #e4e4e7;

  border-radius: 16px;
}

.ch-learn-inner h2 {
  margin: 13px 0 8px;

  color: #27272a;

  font-size: 1.45rem;

  font-weight: 700;

  letter-spacing: -0.7px;
}

.ch-learn-inner p {
  margin: 0;

  color: #85858d;

  font-size: 0.76rem;
}

.ch-learn-actions {
  display: flex;

  align-items: center;

  gap: 20px;

  flex-shrink: 0;
}

.ch-btn-dark {
  color: #ffffff;

  background: #18181b;
}

.ch-btn-dark:hover {
  color: #ffffff;

  background: #27272a;

  transform: translateY(-2px);
}

.ch-text-link {
  color: #52525b;

  font-size: 0.72rem;

  font-weight: 650;
}

.ch-text-link:hover {
  color: var(--ch-red);
}

/* =========================================================
   FINAL CTA
========================================================= */

.ch-final-cta {
  padding: 25px 0 100px;

  background: #ffffff;
}

.ch-final-box {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 48px 52px;

  background: #18181b;

  border-radius: 17px;

  overflow: hidden;

  position: relative;
}

.ch-final-box::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  right: -110px;
  top: -140px;

  background: rgba(220, 53, 69, 0.15);
}

.ch-final-content {
  position: relative;

  z-index: 1;
}

.ch-final-content .ch-eyebrow {
  color: #a1a1aa;
}

.ch-final-content h2 {
  margin: 13px 0 8px;

  color: #ffffff;

  font-size: 2rem;

  font-weight: 700;

  letter-spacing: -1px;
}

.ch-final-content p {
  margin: 0;

  color: #a1a1aa;

  font-size: 0.78rem;
}

.ch-btn-white {
  position: relative;

  z-index: 2;

  flex-shrink: 0;

  color: #18181b;

  background: #ffffff;
}

.ch-btn-white:hover {
  color: #18181b;

  background: #f4f4f5;

  transform: translateY(-2px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .ch-hero {
    padding: 75px 0 85px;
  }

  .ch-hero-title {
    font-size: 3.4rem;
  }

  .ch-case-preview {
    margin: 15px auto 0;
  }

  .ch-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ch-steps {
    flex-wrap: wrap;

    gap: 45px 15px;
  }

  .ch-step {
    flex: 0 0 calc(50% - 10px);
  }

  .ch-step-arrow {
    display: none;
  }

  .ch-learn-inner {
    align-items: flex-start;

    flex-direction: column;
  }

  .ch-final-box {
    padding: 40px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .ch-hero,
  .ch-problems,
  .ch-how,
  .ch-trust {
    padding: 65px 0;
  }

  .ch-hero-title {
    font-size: 2.65rem;

    letter-spacing: -2px;
  }

  .ch-hero-text {
    font-size: 0.9rem;
  }

  .ch-hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .ch-btn {
    width: 100%;
  }

  .ch-hero-note {
    display: block;
  }

  .ch-hero-note span {
    display: block;

    margin-bottom: 8px;
  }

  .ch-case-body {
    padding: 22px;
  }

  .ch-section-head {
    display: block;

    margin-bottom: 35px;
  }

  .ch-section-head > p {
    margin-top: 18px;
  }

  .ch-problem-grid {
    grid-template-columns: 1fr;
  }

  .ch-problem {
    min-height: auto;

    padding: 24px;
  }

  .ch-steps {
    display: block;

    margin-top: 45px;
  }

  .ch-step {
    margin-bottom: 40px;
  }

  .ch-step:last-child {
    margin-bottom: 0;
  }

  .ch-trust h2 {
    font-size: 2.2rem;
  }

  .ch-learn {
    padding: 60px 0;
  }

  .ch-learn-inner {
    padding: 28px;
  }

  .ch-learn-actions {
    width: 100%;

    flex-direction: column;

    align-items: stretch;
  }

  .ch-text-link {
    text-align: center;
  }

  .ch-final-cta {
    padding-bottom: 65px;
  }

  .ch-final-box {
    display: block;

    padding: 35px 25px;
  }

  .ch-final-box .ch-btn {
    margin-top: 25px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
  .ch-hero-title {
    font-size: 2.35rem;
  }

  .ch-case-preview {
    border-radius: 13px;
  }

  .ch-progress-step small {
    display: none;
  }
}

/* How-it-wiorks */

.ch-how-page {
  --hiw-red: #dc3545;
  --hiw-red-dark: #c92f3f;
  --hiw-red-light: #fff4f5;
  --hiw-black: #151518;
  --hiw-heading: #202024;
  --hiw-text: #4f4f56;
  --hiw-muted: #77777f;
  --hiw-white: #ffffff;
  --hiw-bg: #f8f8f9;
  --hiw-border: #e8e8eb;
  color: var(--hiw-text);
} /* ========================================================= HERO ========================================================= */
.hiw-hero {
  position: relative;
  padding: 92px 0 105px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(220, 53, 69, 0.07),
      transparent 25%
    ),
    #fff;
  overflow: hidden;
}
.hiw-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -280px;
  bottom: -260px;
  border: 1px solid rgba(220, 53, 69, 0.07);
  border-radius: 50%;
}
.hiw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid #ececee;
  border-radius: 100px;
  background: #fff;
  color: #686870;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.025);
}
.hiw-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hiw-red);
}
.hiw-hero h1 {
  max-width: 720px;
  margin: 22px 0 20px;
  color: var(--hiw-black);
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: -3.6px;
}
.hiw-hero h1 span {
  display: block;
  color: var(--hiw-red);
}
.hiw-hero-text {
  max-width: 610px;
  margin: 0;
  color: var(--hiw-muted);
  font-size: 0.92rem;
  line-height: 1.85;
}
.hiw-hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.hiw-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #55555d;
  font-size: 0.72rem;
  font-weight: 650;
  text-decoration: none;
  transition: 0.2s ease;
}
.hiw-text-link:hover {
  color: var(--hiw-red);
}
.hiw-text-link i {
  font-size: 0.65rem;
}
.hiw-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #ededee;
}
.hiw-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #85858c;
  font-size: 0.62rem;
  font-weight: 550;
}
.hiw-hero-trust i {
  color: #55555c;
  font-size: 0.72rem;
} /* ========================================================= HERO VISUAL ========================================================= */
.hiw-hero-visual {
  position: relative;
  padding: 25px;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 25px 70px rgba(24, 24, 27, 0.07),
    0 5px 15px rgba(24, 24, 27, 0.025);
}
.hiw-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ededee;
}
.hiw-mini-label {
  display: block;
  margin-bottom: 5px;
  color: #a0a0a7;
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 1px;
}
.hiw-visual-top strong {
  display: block;
  color: #29292e;
  font-size: 0.83rem;
  font-weight: 700;
}
.hiw-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 100px;
  background: #f4f4f5;
  color: #66666d;
  font-size: 0.56rem;
  font-weight: 650;
}
.hiw-status i {
  color: #4b5563;
  font-size: 0.4rem;
}
.hiw-progress {
  position: relative;
  padding: 28px 5px 24px;
}
.hiw-progress-line {
  position: absolute;
  left: 16px;
  top: 39px;
  bottom: 39px;
  width: 1px;
  background: #e3e3e6;
}
.hiw-progress-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 0;
}
.hiw-progress-step > span {
  position: relative;
  z-index: 2;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dedee1;
  border-radius: 50%;
  background: #fff;
  color: #9a9aa1;
  font-size: 0.53rem;
  font-weight: 700;
}
.hiw-progress-step.active > span {
  border-color: var(--hiw-red);
  background: var(--hiw-red);
  color: #fff;
}
.hiw-progress-step strong {
  display: block;
  color: #3c3c42;
  font-size: 0.67rem;
  font-weight: 680;
}
.hiw-progress-step small {
  display: block;
  margin-top: 2px;
  color: #9a9aa1;
  font-size: 0.54rem;
}
.hiw-visual-footer {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 13px;
  border-radius: 9px;
  background: #fafafa;
  color: #85858c;
  font-size: 0.59rem;
  line-height: 1.5;
}
.hiw-visual-footer i {
  color: var(--hiw-red);
  font-size: 0.75rem;
} /* ========================================================= COMMON ========================================================= */
.hiw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #929299;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 1.1px;
}
.hiw-kicker > span {
  width: 17px;
  height: 1px;
  background: var(--hiw-red);
}
.hiw-section-heading {
  max-width: 650px;
  margin-bottom: 52px;
}
.hiw-section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hiw-section-heading.center .hiw-kicker {
  justify-content: center;
}
.hiw-section-heading h2 {
  margin: 15px 0 13px;
  color: var(--hiw-black);
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 740;
  letter-spacing: -2px;
}
.hiw-section-heading h2 span {
  color: var(--hiw-red);
}
.hiw-section-heading p {
  max-width: 570px;
  margin: 0;
  color: var(--hiw-muted);
  font-size: 0.78rem;
  line-height: 1.8;
}
.hiw-section-heading.center p {
  margin-left: auto;
  margin-right: auto;
} /* ========================================================= STEPS ========================================================= */
.hiw-steps-section {
  padding: 105px 0;
  background: var(--hiw-bg);
}
.hiw-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.hiw-step-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--hiw-border);
  border-radius: 15px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.hiw-step-card:hover {
  transform: translateY(-4px);
  border-color: #dcdcdf;
  box-shadow: 0 18px 45px rgba(20, 20, 25, 0.055);
}
.hiw-step-card.featured {
  border-color: #e5b9bd;
  background: linear-gradient(145deg, #fff, #fffafa);
}
.hiw-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hiw-step-number {
  color: #b1b1b7;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.7px;
}
.hiw-step-icon {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e7e9;
  border-radius: 11px;
  background: #fff;
  color: var(--hiw-red);
  font-size: 0.85rem;
}
.hiw-step-body {
  margin-top: auto;
  padding-top: 20px;
}
.hiw-card-label {
  display: block;
  margin-bottom: 9px;
  color: #a2a2a9;
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 1px;
}
.hiw-step-card h3 {
  margin: 0 0 11px;
  color: #27272c;
  font-size: 1.15rem;
  font-weight: 710;
  letter-spacing: -0.4px;
}
.hiw-step-card p {
  max-width: 500px;
  margin: 0;
  color: #7a7a82;
  font-size: 0.72rem;
  line-height: 1.75;
}
.hiw-card-link {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 25px;
  color: var(--hiw-red);
  font-size: 0.64rem;
  font-weight: 680;
}
.hiw-card-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 25px;
  color: #909098;
  font-size: 0.61rem;
}
.hiw-card-note i {
  color: var(--hiw-red);
} /* ========================================================= JOURNEY ========================================================= */
.hiw-journey-section {
  padding: 110px 0;
  background: #fff;
}
.hiw-journey-section h2 {
  max-width: 460px;
  margin: 16px 0 19px;
  color: var(--hiw-black);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.06;
  font-weight: 740;
  letter-spacing: -2px;
}
.hiw-journey-section h2 strong {
  color: var(--hiw-red);
  font-weight: inherit;
}
.hiw-journey-section > .container .col-lg-5 > p {
  max-width: 450px;
  margin-bottom: 12px;
  color: var(--hiw-muted);
  font-size: 0.76rem;
  line-height: 1.8;
}
.hiw-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 11px 15px;
  border: 1px solid #dedee1;
  border-radius: 8px;
  color: #3e3e44;
  background: #fff;
  font-size: 0.64rem;
  font-weight: 680;
  text-decoration: none;
  transition: 0.2s ease;
}
.hiw-outline-btn:hover {
  color: var(--hiw-red);
  border-color: #e2b7bb;
}
.hiw-journey-box {
  position: relative;
  padding: 30px 30px 30px 27px;
  border: 1px solid var(--hiw-border);
  border-radius: 16px;
  background: #fafafa;
}
.hiw-journey-line {
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 48px;
  width: 1px;
  background: #dedee1;
}
.hiw-journey-item {
  position: relative;
  display: flex;
  gap: 17px;
  padding: 15px 0;
}
.hiw-journey-icon {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e2e5;
  border-radius: 10px;
  background: #fff;
  color: var(--hiw-red);
  font-size: 0.8rem;
}
.hiw-journey-content {
  padding-top: 2px;
}
.hiw-journey-content > span {
  display: block;
  margin-bottom: 5px;
  color: #a0a0a7;
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.8px;
}
.hiw-journey-content h3 {
  margin: 0;
  color: #303035;
  font-size: 0.82rem;
  font-weight: 700;
}
.hiw-journey-content p {
  max-width: 420px;
  margin: 5px 0 0;
  color: #85858d;
  font-size: 0.65rem;
  line-height: 1.65;
} /* ========================================================= INFORMATION ========================================================= */
.hiw-info-section {
  padding: 105px 0;
  background: var(--hiw-bg);
}
.hiw-info-card {
  min-height: 220px;
  padding: 27px;
  border: 1px solid var(--hiw-border);
  border-radius: 14px;
  background: #fff;
  transition: 0.2s ease;
}
.hiw-info-card:hover {
  border-color: #dedee1;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 20, 25, 0.04);
}
.hiw-info-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.hiw-info-card-head span {
  color: var(--hiw-red);
  font-size: 0.6rem;
  font-weight: 750;
}
.hiw-info-card-head i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--hiw-red-light);
  color: var(--hiw-red);
  font-size: 0.72rem;
}
.hiw-info-card h3 {
  margin: 0 0 8px;
  color: #303035;
  font-size: 0.92rem;
  font-weight: 700;
}
.hiw-info-card p {
  max-width: 290px;
  margin: 0;
  color: #85858d;
  font-size: 0.68rem;
  line-height: 1.7;
} /* ========================================================= SECURITY ========================================================= */
.hiw-security-section {
  padding: 75px 0;
  background: #fff;
}
.hiw-security-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 35px 38px;
  border: 1px solid #efd5d8;
  border-radius: 16px;
  background: #fffafa;
}
.hiw-security-main {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.hiw-security-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--hiw-red-light);
  color: var(--hiw-red);
  font-size: 0.9rem;
}
.hiw-security-label {
  display: block;
  margin-bottom: 7px;
  color: #a18b8e;
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 1px;
}
.hiw-security h2 {
  margin: 0 0 8px;
  color: #303035;
  font-size: 1.2rem;
  font-weight: 710;
  letter-spacing: -0.5px;
}
.hiw-security p {
  max-width: 610px;
  margin: 0;
  color: #77777f;
  font-size: 0.69rem;
  line-height: 1.7;
}
.hiw-security-points {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 25px;
  border-left: 1px solid #eadcdd;
}
.hiw-security-points div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #77777f;
  font-size: 0.61rem;
  white-space: nowrap;
}
.hiw-security-points i {
  color: #388052;
  font-size: 0.7rem;
} /* ========================================================= EXPECTATIONS ========================================================= */
.hiw-expect-section {
  padding: 105px 0;
  background: var(--hiw-bg);
}
.hiw-expect-section h2 {
  max-width: 460px;
  margin: 16px 0;
  color: var(--hiw-black);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.06;
  font-weight: 740;
  letter-spacing: -2px;
}
.hiw-expect-section h2 span {
  display: block;
  color: var(--hiw-red);
}
.hiw-expect-section > .container .col-lg-5 > p {
  max-width: 430px;
  color: var(--hiw-muted);
  font-size: 0.75rem;
  line-height: 1.8;
}
.hiw-expect-list {
  border-top: 1px solid #dedee1;
}
.hiw-expect-row {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #dedee1;
}
.hiw-expect-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
}
.hiw-expect-icon.good {
  background: #eaf7ef;
  color: #28764b;
}
.hiw-expect-icon.bad {
  background: var(--hiw-red-light);
  color: var(--hiw-red);
}
.hiw-expect-row h3 {
  margin: 0;
  color: #343439;
  font-size: 0.77rem;
  font-weight: 700;
}
.hiw-expect-row p {
  margin: 5px 0 0;
  color: #85858d;
  font-size: 0.65rem;
  line-height: 1.65;
} /* ========================================================= FINAL CTA ========================================================= */
.hiw-final-cta {
  padding: 25px 0 100px;
  background: var(--hiw-bg);
}
.hiw-cta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 45px 50px;
  border-radius: 17px;
  background: #18181b;
  overflow: hidden;
}
.hiw-cta-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.13);
}
.hiw-cta-content {
  position: relative;
  z-index: 2;
}
.hiw-cta-content > span {
  color: #8f8f98;
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 1px;
}
.hiw-cta-content h2 {
  margin: 11px 0 7px;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 720;
  letter-spacing: -1px;
}
.hiw-cta-content p {
  margin: 0;
  color: #9999a2;
  font-size: 0.69rem;
}
.hiw-cta-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 12px 17px;
  border-radius: 8px;
  background: #fff;
  color: #252529;
  font-size: 0.66rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}
.hiw-cta-button:hover {
  color: var(--hiw-red);
  transform: translateY(-2px);
} /* ========================================================= RESPONSIVE ========================================================= */
@media (max-width: 991.98px) {
  .hiw-hero {
    padding: 75px 0 80px;
  }
  .hiw-hero h1 {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }
  .hiw-hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }
  .hiw-security-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .hiw-security-points {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid #eadcdd;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .hiw-hero {
    padding: 60px 0 65px;
  }
  .hiw-hero h1 {
    margin-top: 18px;
    font-size: 2.7rem;
    letter-spacing: -2.4px;
  }
  .hiw-hero-text {
    font-size: 0.82rem;
  }
  .hiw-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .hiw-hero-trust {
    flex-direction: column;
    gap: 9px;
  }
  .hiw-hero-visual {
    padding: 19px;
    border-radius: 14px;
  }
  .hiw-section-heading {
    margin-bottom: 35px;
  }
  .hiw-section-heading h2 {
    font-size: 2rem;
    letter-spacing: -1.3px;
  }
  .hiw-steps-section,
  .hiw-journey-section,
  .hiw-info-section,
  .hiw-expect-section {
    padding: 72px 0;
  }
  .hiw-steps-grid {
    grid-template-columns: 1fr;
  }
  .hiw-step-card {
    min-height: 220px;
  }
  .hiw-journey-box {
    padding: 20px;
  }
  .hiw-journey-line {
    left: 41px;
  }
  .hiw-security-section {
    padding: 60px 0;
  }
  .hiw-security-box {
    padding: 25px;
  }
  .hiw-security-main {
    gap: 13px;
  }
  .hiw-security h2 {
    font-size: 1.05rem;
  }
  .hiw-security-points {
    flex-direction: column;
  }
  .hiw-final-cta {
    padding-bottom: 65px;
  }
  .hiw-cta-box {
    display: block;
    padding: 32px 25px;
  }
  .hiw-cta-content h2 {
    font-size: 1.45rem;
  }
  .hiw-cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }
}
@media (max-width: 400px) {
  .hiw-hero h1 {
    font-size: 2.35rem;
  }
  .hiw-step-card {
    padding: 22px;
  }
  .hiw-journey-item {
    gap: 12px;
  }
  .hiw-journey-icon {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }
  .hiw-journey-line {
    left: 38px;
  }
}

/* Problems page */

/* =========================================================
   VorteFix CREATORHELP — PROBLEMS PAGE
========================================================= */

.ch-problems-page {
  --cp-red: #dc3545;
  --cp-red-dark: #c92f3f;

  --cp-black: #17171a;
  --cp-heading: #28282d;
  --cp-text: #696970;
  --cp-muted: #909097;

  --cp-border: #e7e7e9;
  --cp-light: #f8f8f9;

  background: #fff;

  color: var(--cp-text);
}

/* =========================================================
   HERO
========================================================= */

.cp-hero {
  position: relative;

  padding: 88px 0 92px;

  overflow: hidden;

  background: #fff;

  border-bottom: 1px solid #efeff0;
}

.cp-hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -250px;
  top: -300px;

  border-radius: 50%;

  background: rgba(220, 53, 69, 0.045);

  pointer-events: none;
}

.cp-hero-grid {
  position: relative;

  display: grid;

  grid-template-columns: 1.05fr 0.75fr;

  align-items: center;

  gap: 90px;
}

.cp-hero-content {
  max-width: 650px;
}

.cp-eyebrow {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #929299;

  font-size: 0.54rem;

  font-weight: 760;

  letter-spacing: 1.15px;
}

.cp-eyebrow span {
  width: 19px;
  height: 1px;

  background: var(--cp-red);

  display: inline-block;
}

.cp-hero h1 {
  margin: 19px 0 18px;

  color: var(--cp-black);

  font-size: clamp(3.2rem, 5.8vw, 5rem);

  line-height: 1.01;

  font-weight: 760;

  letter-spacing: -3.8px;
}

.cp-hero h1 strong {
  display: block;

  color: var(--cp-red);

  font-weight: 760;
}

.cp-hero-content > p {
  max-width: 540px;

  margin: 0;

  color: var(--cp-muted);

  font-size: 0.78rem;

  line-height: 1.85;
}

.cp-hero-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 27px;
}

.cp-hero-meta span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #77777e;

  font-size: 0.59rem;

  font-weight: 620;
}

.cp-hero-meta i {
  color: var(--cp-red);

  font-size: 0.72rem;
}

/* =========================================================
   HERO PANEL
========================================================= */

.cp-hero-panel {
  position: relative;

  padding: 21px;

  border: 1px solid #dedee1;

  border-radius: 16px;

  background: #fafafa;

  box-shadow: 0 25px 70px rgba(20, 20, 25, 0.055);
}

.cp-panel-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 2px 3px 18px;
}

.cp-panel-top span {
  display: block;

  margin-bottom: 4px;

  color: #a0a0a7;

  font-size: 0.48rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cp-panel-top strong {
  color: #303035;

  font-size: 0.78rem;

  font-weight: 700;
}

.cp-panel-count {
  color: #b3b3b9;

  font-size: 0.57rem;

  font-weight: 750;
}

.cp-panel-option {
  display: grid;

  grid-template-columns: 38px 1fr 15px;

  align-items: center;

  gap: 12px;

  padding: 13px 12px;

  margin-top: 7px;

  border: 1px solid transparent;

  border-radius: 10px;

  background: #fff;

  transition: 0.2s ease;
}

.cp-panel-option.active {
  border-color: #efd2d5;

  background: #fff8f8;
}

.cp-panel-option:hover {
  border-color: #e3e3e5;

  transform: translateX(2px);
}

.cp-panel-icon {
  width: 35px;
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #fff0f2;

  color: var(--cp-red);

  font-size: 0.72rem;
}

.cp-panel-option strong {
  display: block;

  color: #343439;

  font-size: 0.66rem;

  font-weight: 700;
}

.cp-panel-option div span {
  display: block;

  margin-top: 3px;

  color: #96969d;

  font-size: 0.52rem;
}

.cp-panel-option > i {
  color: #aaaab0;

  font-size: 0.62rem;
}

.cp-panel-more {
  padding: 16px 4px 2px;

  color: #a0a0a6;

  text-align: center;

  font-size: 0.54rem;

  font-weight: 620;
}

/* =========================================================
   PROBLEMS
========================================================= */

.cp-problems {
  padding: 100px 0 105px;

  background: var(--cp-light);
}

.cp-heading-row {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 50px;

  margin-bottom: 35px;
}

.cp-heading-row h2 {
  margin: 14px 0 0;

  color: var(--cp-black);

  font-size: 2rem;

  font-weight: 740;

  letter-spacing: -1.4px;
}

.cp-heading-row > p {
  max-width: 390px;

  margin: 0;

  color: var(--cp-muted);

  font-size: 0.65rem;

  line-height: 1.75;
}

/* =========================================================
   FEATURED CARDS
========================================================= */

.cp-featured-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

.cp-featured-card {
  position: relative;

  min-height: 330px;

  display: flex;

  flex-direction: column;

  padding: 26px;

  border: 1px solid var(--cp-border);

  border-radius: 14px;

  background: #fff;

  color: inherit;

  text-decoration: none;

  overflow: hidden;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.cp-featured-card::after {
  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  right: -75px;
  bottom: -75px;

  border-radius: 50%;

  background: rgba(220, 53, 69, 0.035);

  transition: 0.25s ease;
}

.cp-featured-card:hover {
  color: inherit;

  transform: translateY(-5px);

  border-color: #dedee1;

  box-shadow: 0 20px 45px rgba(20, 20, 25, 0.06);
}

.cp-featured-card:hover::after {
  transform: scale(1.6);
}

.cp-card-number {
  color: #aaaab0;

  font-size: 0.56rem;

  font-weight: 760;
}

.cp-featured-icon {
  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-top: 44px;

  border-radius: 11px;

  background: #fff0f2;

  color: var(--cp-red);

  font-size: 0.86rem;
}

.cp-featured-content {
  margin-top: 20px;

  flex: 1;
}

.cp-featured-content > span {
  display: block;

  margin-bottom: 7px;

  color: #a0a0a7;

  font-size: 0.49rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cp-featured-content h3 {
  margin: 0 0 9px;

  color: var(--cp-heading);

  font-size: 1.08rem;

  font-weight: 720;

  letter-spacing: -0.4px;
}

.cp-featured-content p {
  max-width: 310px;

  margin: 0;

  color: #85858d;

  font-size: 0.65rem;

  line-height: 1.75;
}

.cp-card-arrow {
  position: absolute;

  right: 24px;
  bottom: 22px;

  width: 29px;
  height: 29px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #e5e5e7;

  border-radius: 50%;

  background: #fff;

  color: var(--cp-red);

  font-size: 0.61rem;

  z-index: 2;

  transition: 0.2s ease;
}

.cp-featured-card:hover .cp-card-arrow {
  background: var(--cp-red);

  border-color: var(--cp-red);

  color: #fff;

  transform: rotate(5deg);
}

/* =========================================================
   SECONDARY GRID
========================================================= */

.cp-secondary-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 12px;

  margin-top: 12px;
}

.cp-secondary-card {
  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 13px;

  min-height: 125px;

  padding: 18px;

  border: 1px solid var(--cp-border);

  border-radius: 11px;

  background: #fff;

  color: inherit;

  text-decoration: none;

  transition: 0.2s ease;
}

.cp-secondary-card:hover {
  color: inherit;

  border-color: #d9d9dc;

  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(20, 20, 25, 0.04);
}

.cp-secondary-icon {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: #f5f5f6;

  color: #66666d;

  font-size: 0.7rem;
}

.cp-secondary-card > div:nth-child(2) {
  padding-right: 15px;
}

.cp-secondary-card > div span {
  display: block;

  margin-bottom: 5px;

  color: #aaaab0;

  font-size: 0.48rem;

  font-weight: 750;
}

.cp-secondary-card h3 {
  margin: 0 0 4px;

  color: #343439;

  font-size: 0.68rem;

  font-weight: 700;
}

.cp-secondary-card p {
  margin: 0;

  color: #929299;

  font-size: 0.54rem;

  line-height: 1.55;
}

.cp-secondary-arrow {
  position: absolute;

  right: 15px;
  bottom: 15px;

  color: #b0b0b6;

  font-size: 0.59rem;

  transition: 0.2s ease;
}

.cp-secondary-card:hover .cp-secondary-arrow {
  color: var(--cp-red);

  transform: translateX(2px);
}

/* =========================================================
   NOT SURE
========================================================= */

.cp-not-sure {
  padding: 75px 0;

  background: #fff;
}

.cp-not-sure-box {
  display: flex;

  align-items: center;

  gap: 20px;

  padding: 30px 34px;

  border: 1px solid var(--cp-border);

  border-radius: 14px;

  background: #fff;
}

.cp-not-sure-symbol {
  width: 43px;
  height: 43px;

  flex: 0 0 43px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f4f4f5;

  color: #55555c;

  font-size: 0.82rem;

  font-weight: 700;
}

.cp-not-sure-content {
  flex: 1;
}

.cp-not-sure-content > span {
  display: block;

  margin-bottom: 5px;

  color: #9b9ba2;

  font-size: 0.49rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cp-not-sure-content h2 {
  margin: 0 0 5px;

  color: #303035;

  font-size: 0.96rem;

  font-weight: 710;
}

.cp-not-sure-content p {
  margin: 0;

  color: #88888f;

  font-size: 0.62rem;

  line-height: 1.6;
}

.cp-not-sure-button {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  flex-shrink: 0;

  padding: 10px 14px;

  border: 1px solid #e0e0e2;

  border-radius: 7px;

  color: #505057;

  font-size: 0.59rem;

  font-weight: 680;

  text-decoration: none;

  transition: 0.2s ease;
}

.cp-not-sure-button:hover {
  color: var(--cp-red);

  border-color: #e5c6c9;
}

/* =========================================================
   MINI PROCESS
========================================================= */

.cp-mini-process {
  padding: 100px 0;

  background: var(--cp-light);
}

.cp-mini-heading {
  max-width: 650px;

  margin-bottom: 45px;
}

.cp-mini-heading h2 {
  margin: 14px 0 0;

  color: var(--cp-black);

  font-size: 2rem;

  line-height: 1.1;

  font-weight: 740;

  letter-spacing: -1.4px;
}

.cp-mini-steps {
  display: grid;

  grid-template-columns: 1fr auto 1fr auto 1fr;

  align-items: center;

  gap: 18px;
}

.cp-mini-step {
  display: flex;

  align-items: flex-start;

  gap: 14px;
}

.cp-mini-step > span {
  color: #aaaab0;

  font-size: 0.53rem;

  font-weight: 750;

  padding-top: 5px;
}

.cp-mini-step > i {
  width: 39px;
  height: 39px;

  flex: 0 0 39px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #dfdfe2;

  border-radius: 9px;

  background: #fff;

  color: var(--cp-red);

  font-size: 0.73rem;
}

.cp-mini-step strong {
  display: block;

  color: #35353a;

  font-size: 0.7rem;

  font-weight: 700;
}

.cp-mini-step p {
  max-width: 200px;

  margin: 5px 0 0;

  color: #8b8b92;

  font-size: 0.57rem;

  line-height: 1.6;
}

.cp-mini-line {
  width: 35px;

  height: 1px;

  background: #d8d8db;
}

/* =========================================================
   SECURITY
========================================================= */

.cp-security {
  padding: 70px 0;

  background: #fff;
}

.cp-security-box {
  display: flex;

  align-items: center;

  gap: 19px;

  padding: 29px 31px;

  border: 1px solid #ead2d5;

  border-radius: 14px;

  background: #fffafa;
}

.cp-security-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #fff0f2;

  color: var(--cp-red);

  font-size: 0.82rem;
}

.cp-security-content {
  flex: 1;
}

.cp-security-content > span {
  display: block;

  margin-bottom: 5px;

  color: #a28c8f;

  font-size: 0.48rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cp-security-content h2 {
  margin: 0 0 6px;

  color: #303035;

  font-size: 0.94rem;

  font-weight: 710;
}

.cp-security-content p {
  max-width: 670px;

  margin: 0;

  color: #85858d;

  font-size: 0.61rem;

  line-height: 1.7;
}

.cp-security-tag {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  flex-shrink: 0;

  padding: 9px 11px;

  border: 1px solid #e7dada;

  border-radius: 7px;

  background: #fff;

  color: #717178;

  font-size: 0.55rem;

  font-weight: 650;
}

.cp-security-tag i {
  color: #398054;
}

/* =========================================================
   FINAL CTA
========================================================= */

.cp-final {
  padding: 10px 0 100px;

  background: #fff;
}

.cp-final-box {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 48px;

  border-radius: 17px;

  background: #18181b;

  overflow: hidden;
}

.cp-final-box::after {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  right: -165px;
  top: -200px;

  border-radius: 50%;

  background: rgba(220, 53, 69, 0.13);
}

.cp-final-content {
  position: relative;

  z-index: 1;
}

.cp-final-content > span {
  color: #8d8d95;

  font-size: 0.49rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cp-final-content h2 {
  margin: 10px 0 7px;

  color: #fff;

  font-size: 1.65rem;

  line-height: 1.15;

  font-weight: 710;

  letter-spacing: -1px;
}

.cp-final-content h2 strong {
  color: #ef5967;

  font-weight: 710;
}

.cp-final-content p {
  margin: 0;

  color: #96969e;

  font-size: 0.63rem;
}

.cp-final-button {
  position: relative;

  z-index: 2;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  flex-shrink: 0;

  padding: 12px 17px;

  border-radius: 8px;

  background: #fff;

  color: #242428;

  font-size: 0.61rem;

  font-weight: 700;

  text-decoration: none;

  transition: 0.2s ease;
}

.cp-final-button:hover {
  color: var(--cp-red);

  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .cp-hero-grid {
    gap: 50px;
  }

  .cp-secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-mini-steps {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .cp-mini-line {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .cp-hero {
    padding: 70px 0 75px;
  }

  .cp-hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .cp-hero-content {
    max-width: 700px;
  }

  .cp-hero-panel {
    max-width: 550px;
  }

  .cp-featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cp-featured-card:first-child {
    grid-column: span 2;
  }

  .cp-heading-row {
    align-items: flex-start;

    flex-direction: column;

    gap: 14px;
  }

  .cp-security-box {
    align-items: flex-start;

    flex-wrap: wrap;
  }

  .cp-security-content {
    min-width: calc(100% - 65px);
  }

  .cp-security-tag {
    margin-left: 63px;
  }
}

@media (max-width: 767.98px) {
  .cp-hero {
    padding: 60px 0 65px;
  }

  .cp-hero h1 {
    font-size: 2.7rem;

    letter-spacing: -2.4px;
  }

  .cp-hero-content > p {
    font-size: 0.73rem;
  }

  .cp-hero-meta {
    gap: 10px;

    flex-direction: column;
  }

  .cp-problems {
    padding: 70px 0 75px;
  }

  .cp-heading-row h2,
  .cp-mini-heading h2 {
    font-size: 1.75rem;
  }

  .cp-featured-grid {
    grid-template-columns: 1fr;
  }

  .cp-featured-card:first-child {
    grid-column: auto;
  }

  .cp-featured-card {
    min-height: 290px;
  }

  .cp-secondary-grid {
    grid-template-columns: 1fr;
  }

  .cp-not-sure {
    padding: 55px 0;
  }

  .cp-not-sure-box {
    display: block;

    padding: 25px;
  }

  .cp-not-sure-symbol {
    margin-bottom: 16px;
  }

  .cp-not-sure-button {
    width: 100%;

    justify-content: center;

    margin-top: 20px;
  }

  .cp-mini-process {
    padding: 70px 0;
  }

  .cp-security {
    padding: 55px 0;
  }

  .cp-security-box {
    display: block;

    padding: 25px;
  }

  .cp-security-icon {
    margin-bottom: 16px;
  }

  .cp-security-content {
    min-width: 0;
  }

  .cp-security-tag {
    margin: 20px 0 0;
  }

  .cp-final {
    padding-bottom: 65px;
  }

  .cp-final-box {
    display: block;

    padding: 32px 25px;
  }

  .cp-final-content h2 {
    font-size: 1.4rem;
  }

  .cp-final-button {
    width: 100%;

    margin-top: 23px;
  }
}

@media (max-width: 400px) {
  .cp-hero h1 {
    font-size: 2.35rem;
  }

  .cp-hero-panel {
    padding: 15px;
  }

  .cp-panel-option {
    grid-template-columns: 34px 1fr 12px;

    gap: 9px;

    padding: 11px 8px;
  }
}

/* Learn page */

/* =========================================================
   VorteFix CREATORHELP — LEARN PAGE
========================================================= */

.ch-learn-page {
  --cl-red: #dc3545;
  --cl-red-dark: #c92f3f;

  --cl-black: #17171a;
  --cl-heading: #29292e;
  --cl-text: #68686f;
  --cl-muted: #929299;

  --cl-border: #e7e7e9;
  --cl-light: #f8f8f9;

  background: #fff;
  color: var(--cl-text);
}

/* =========================================================
   HERO
========================================================= */

.cl-hero {
  position: relative;

  padding: 88px 0 95px;

  overflow: hidden;

  border-bottom: 1px solid #eeeeef;

  background: #fff;
}

.cl-hero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -270px;
  top: -290px;

  border-radius: 50%;

  background: rgba(220, 53, 69, 0.045);

  pointer-events: none;
}

.cl-hero-grid {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 0.76fr;

  align-items: center;

  gap: 85px;
}

.cl-hero-content {
  max-width: 670px;
}

.cl-eyebrow {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #929299;

  font-size: 0.54rem;

  font-weight: 760;

  letter-spacing: 1.15px;
}

.cl-eyebrow span {
  width: 19px;
  height: 1px;

  background: var(--cl-red);

  display: inline-block;
}

.cl-hero h1 {
  margin: 19px 0 19px;

  color: var(--cl-black);

  font-size: clamp(3rem, 5.5vw, 4.8rem);

  line-height: 1.02;

  font-weight: 760;

  letter-spacing: -3.7px;
}

.cl-hero h1 strong {
  display: block;

  color: var(--cl-red);

  font-weight: 760;
}

.cl-hero-content > p {
  max-width: 550px;

  margin: 0;

  color: var(--cl-muted);

  font-size: 0.78rem;

  line-height: 1.85;
}

.cl-hero-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 29px;
}

.cl-primary-btn,
.cl-secondary-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 11px 15px;

  border-radius: 7px;

  font-size: 0.59rem;

  font-weight: 700;

  text-decoration: none;

  transition: 0.2s ease;
}

.cl-primary-btn {
  background: var(--cl-red);

  color: #fff;

  border: 1px solid var(--cl-red);
}

.cl-primary-btn:hover {
  background: var(--cl-red-dark);

  border-color: var(--cl-red-dark);

  color: #fff;

  transform: translateY(-2px);
}

.cl-secondary-btn {
  background: #fff;

  color: #515158;

  border: 1px solid #dfdfe2;
}

.cl-secondary-btn:hover {
  color: var(--cl-red);

  border-color: #e1c5c8;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.cl-hero-visual {
  position: relative;
}

.cl-learning-card {
  padding: 21px;

  border: 1px solid #dedee1;

  border-radius: 16px;

  background: #fafafa;

  box-shadow: 0 25px 70px rgba(20, 20, 25, 0.055);
}

.cl-learning-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding-bottom: 18px;
}

.cl-learning-top span {
  display: block;

  margin-bottom: 4px;

  color: #a0a0a7;

  font-size: 0.48rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cl-learning-top strong {
  color: #303035;

  font-size: 0.78rem;

  font-weight: 700;
}

.cl-learning-mark {
  width: 35px;
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #fff0f2;

  color: var(--cl-red);

  font-size: 0.72rem;
}

.cl-learning-item {
  display: grid;

  grid-template-columns: 28px 1fr 14px;

  align-items: center;

  gap: 10px;

  padding: 14px 10px;

  margin-top: 7px;

  border: 1px solid transparent;

  border-radius: 10px;

  background: #fff;

  transition: 0.2s ease;
}

.cl-learning-item.active {
  border-color: #efd2d5;

  background: #fff8f8;
}

.cl-learning-item:hover {
  border-color: #e1e1e3;

  transform: translateX(2px);
}

.cl-learning-number {
  color: #aaaab0;

  font-size: 0.5rem;

  font-weight: 760;
}

.cl-learning-info strong {
  display: block;

  color: #343439;

  font-size: 0.64rem;

  font-weight: 700;
}

.cl-learning-info span {
  display: block;

  margin-top: 3px;

  color: #96969d;

  font-size: 0.51rem;
}

.cl-learning-item > i {
  color: #aaaab0;

  font-size: 0.6rem;
}

.cl-learning-footer {
  padding: 16px 3px 2px;

  color: #9d9da4;

  text-align: center;

  font-size: 0.53rem;

  font-weight: 620;
}

/* =========================================================
   FEATURED
========================================================= */

.cl-featured {
  padding: 100px 0;

  background: #fff;
}

.cl-section-heading {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 50px;

  margin-bottom: 36px;
}

.cl-section-heading h2 {
  max-width: 570px;

  margin: 14px 0 0;

  color: var(--cl-black);

  font-size: 2rem;

  line-height: 1.1;

  font-weight: 740;

  letter-spacing: -1.5px;
}

.cl-section-heading > p {
  max-width: 390px;

  margin: 0;

  color: var(--cl-muted);

  font-size: 0.64rem;

  line-height: 1.75;
}

.cl-featured-guide {
  position: relative;

  display: grid;

  grid-template-columns: 35px 52px 1fr 40px;

  align-items: start;

  gap: 19px;

  padding: 32px;

  border: 1px solid var(--cl-border);

  border-radius: 15px;

  background: #fafafa;

  color: inherit;

  text-decoration: none;

  overflow: hidden;

  transition: 0.22s ease;
}

.cl-featured-guide::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -125px;
  bottom: -145px;

  border-radius: 50%;

  background: rgba(220, 53, 69, 0.035);

  transition: 0.25s ease;
}

.cl-featured-guide:hover {
  color: inherit;

  border-color: #dcdcdf;

  box-shadow: 0 18px 45px rgba(20, 20, 25, 0.055);

  transform: translateY(-4px);
}

.cl-featured-guide:hover::after {
  transform: scale(1.4);
}

.cl-featured-number {
  color: #aaaab0;

  font-size: 0.54rem;

  font-weight: 760;

  padding-top: 5px;
}

.cl-featured-symbol {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: #fff0f2;

  color: var(--cl-red);

  font-size: 0.85rem;
}

.cl-featured-main {
  position: relative;

  z-index: 1;
}

.cl-guide-label {
  margin-bottom: 8px;

  color: #a09da0;

  font-size: 0.49rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cl-featured-main h3 {
  margin: 0 0 9px;

  color: var(--cl-heading);

  font-size: 1.15rem;

  line-height: 1.35;

  font-weight: 720;

  letter-spacing: -0.45px;
}

.cl-featured-main p {
  max-width: 650px;

  margin: 0;

  color: #85858d;

  font-size: 0.63rem;

  line-height: 1.75;
}

.cl-guide-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 18px;
}

.cl-guide-meta span {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: #96969d;

  font-size: 0.53rem;

  font-weight: 620;
}

.cl-guide-meta i {
  color: var(--cl-red);

  font-size: 0.62rem;
}

.cl-featured-arrow {
  position: relative;

  z-index: 2;

  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #dfdfe2;

  border-radius: 50%;

  background: #fff;

  color: var(--cl-red);

  font-size: 0.64rem;

  transition: 0.2s ease;
}

.cl-featured-guide:hover .cl-featured-arrow {
  background: var(--cl-red);

  border-color: var(--cl-red);

  color: #fff;
}

/* =========================================================
   LEARNING PATHS
========================================================= */

.cl-paths {
  padding: 100px 0;

  background: var(--cl-light);
}

.cl-section-title {
  margin-bottom: 38px;
}

.cl-section-title h2 {
  max-width: 600px;

  margin: 14px 0 0;

  color: var(--cl-black);

  font-size: 2rem;

  line-height: 1.1;

  font-weight: 740;

  letter-spacing: -1.5px;
}

.cl-path-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 13px;
}

.cl-path-card {
  min-height: 365px;

  display: flex;

  flex-direction: column;

  padding: 23px;

  border: 1px solid var(--cl-border);

  border-radius: 13px;

  background: #fff;

  color: inherit;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.cl-path-card:hover {
  color: inherit;

  transform: translateY(-5px);

  border-color: #dcdcdf;

  box-shadow: 0 18px 40px rgba(20, 20, 25, 0.055);
}

.cl-path-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;
}

.cl-path-top > span {
  color: #aaaab0;

  font-size: 0.54rem;

  font-weight: 760;
}

.cl-path-icon {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #f6f6f7;

  color: #626269;

  font-size: 0.77rem;

  transition: 0.2s ease;
}

.cl-path-card:hover .cl-path-icon {
  background: #fff0f2;

  color: var(--cl-red);
}

.cl-path-body {
  flex: 1;

  padding-top: 53px;
}

.cl-path-body > span {
  display: block;

  margin-bottom: 8px;

  color: #a09fa5;

  font-size: 0.48rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cl-path-body h3 {
  margin: 0 0 10px;

  color: #303035;

  font-size: 0.95rem;

  line-height: 1.4;

  font-weight: 710;

  letter-spacing: -0.25px;
}

.cl-path-body p {
  margin: 0;

  color: #898990;

  font-size: 0.6rem;

  line-height: 1.7;
}

.cl-path-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding-top: 18px;

  border-top: 1px solid #eeeeef;

  color: #77777e;

  font-size: 0.54rem;

  font-weight: 650;
}

.cl-path-bottom i {
  color: #a3a3a9;

  font-size: 0.62rem;

  transition: 0.2s ease;
}

.cl-path-card:hover .cl-path-bottom i {
  color: var(--cl-red);

  transform: translateX(3px);
}

/* =========================================================
   QUICK TOPICS
========================================================= */

.cl-topics {
  padding: 100px 0;

  background: #fff;
}

.cl-topics-grid {
  display: grid;

  grid-template-columns: 0.72fr 1.28fr;

  gap: 80px;

  align-items: start;
}

.cl-topics-intro h2 {
  max-width: 380px;

  margin: 14px 0 13px;

  color: var(--cl-black);

  font-size: 2rem;

  line-height: 1.1;

  font-weight: 740;

  letter-spacing: -1.5px;
}

.cl-topics-intro p {
  max-width: 350px;

  margin: 0;

  color: var(--cl-muted);

  font-size: 0.64rem;

  line-height: 1.8;
}

.cl-topic-list {
  border-top: 1px solid var(--cl-border);
}

.cl-topic {
  display: grid;

  grid-template-columns: 35px 1fr 20px;

  align-items: center;

  gap: 15px;

  min-height: 62px;

  border-bottom: 1px solid var(--cl-border);

  color: inherit;

  text-decoration: none;

  transition: 0.18s ease;
}

.cl-topic:hover {
  color: var(--cl-red);

  padding-left: 5px;
}

.cl-topic > span {
  color: #aaaab0;

  font-size: 0.51rem;

  font-weight: 750;
}

.cl-topic strong {
  color: #444449;

  font-size: 0.63rem;

  font-weight: 670;
}

.cl-topic:hover strong {
  color: var(--cl-red);
}

.cl-topic > i {
  color: #aaaab0;

  font-size: 0.6rem;
}

.cl-topic:hover > i {
  color: var(--cl-red);

  transform: translateX(2px);
}

/* =========================================================
   IMPORTANT NOTE
========================================================= */

.cl-note {
  padding: 0 0 85px;

  background: #fff;
}

.cl-note-box {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 27px 30px;

  border: 1px solid #e4e4e6;

  border-radius: 13px;

  background: #fafafa;
}

.cl-note-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #fff;

  color: #77777e;

  font-size: 0.76rem;
}

.cl-note-content {
  flex: 1;
}

.cl-note-content > span {
  display: block;

  margin-bottom: 5px;

  color: #9d9da4;

  font-size: 0.48rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cl-note-content h2 {
  margin: 0 0 5px;

  color: #343439;

  font-size: 0.92rem;

  font-weight: 710;
}

.cl-note-content p {
  max-width: 700px;

  margin: 0;

  color: #88888f;

  font-size: 0.59rem;

  line-height: 1.65;
}

.cl-note-link {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  flex-shrink: 0;

  padding: 10px 13px;

  border: 1px solid #dedee1;

  border-radius: 7px;

  background: #fff;

  color: #55555c;

  font-size: 0.55rem;

  font-weight: 680;

  text-decoration: none;

  transition: 0.2s ease;
}

.cl-note-link:hover {
  color: var(--cl-red);

  border-color: #e1c5c8;
}

/* =========================================================
   FINAL CTA
========================================================= */

.cl-final {
  padding: 0 0 100px;

  background: #fff;
}

.cl-final-box {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 47px;

  border-radius: 17px;

  background: #18181b;

  overflow: hidden;
}

.cl-final-box::after {
  content: "";

  position: absolute;

  width: 340px;
  height: 340px;

  right: -175px;
  top: -210px;

  border-radius: 50%;

  background: rgba(220, 53, 69, 0.13);
}

.cl-final-content {
  position: relative;

  z-index: 1;
}

.cl-final-content > span {
  color: #8e8e96;

  font-size: 0.49rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cl-final-content h2 {
  max-width: 650px;

  margin: 10px 0 7px;

  color: #fff;

  font-size: 1.65rem;

  line-height: 1.18;

  font-weight: 710;

  letter-spacing: -1px;
}

.cl-final-content h2 strong {
  color: #ef5967;

  font-weight: 710;
}

.cl-final-content p {
  margin: 0;

  color: #96969e;

  font-size: 0.63rem;
}

.cl-final-btn {
  position: relative;

  z-index: 2;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  flex-shrink: 0;

  padding: 12px 17px;

  border-radius: 8px;

  background: #fff;

  color: #242428;

  font-size: 0.61rem;

  font-weight: 700;

  text-decoration: none;

  transition: 0.2s ease;
}

.cl-final-btn:hover {
  color: var(--cl-red);

  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .cl-hero-grid {
    gap: 50px;
  }

  .cl-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .cl-hero {
    padding: 70px 0 75px;
  }

  .cl-hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .cl-hero-content {
    max-width: 700px;
  }

  .cl-hero-visual {
    max-width: 560px;
  }

  .cl-section-heading {
    align-items: flex-start;

    flex-direction: column;

    gap: 15px;
  }

  .cl-topics-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .cl-note-box {
    align-items: flex-start;

    flex-wrap: wrap;
  }

  .cl-note-content {
    min-width: calc(100% - 65px);
  }

  .cl-note-link {
    margin-left: 60px;
  }
}

@media (max-width: 767.98px) {
  .cl-hero {
    padding: 58px 0 65px;
  }

  .cl-hero h1 {
    font-size: 2.65rem;

    letter-spacing: -2.4px;
  }

  .cl-hero-content > p {
    font-size: 0.72rem;
  }

  .cl-hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .cl-primary-btn,
  .cl-secondary-btn {
    width: 100%;
  }

  .cl-featured {
    padding: 70px 0;
  }

  .cl-section-heading h2,
  .cl-section-title h2,
  .cl-topics-intro h2 {
    font-size: 1.75rem;
  }

  .cl-featured-guide {
    grid-template-columns: 28px 1fr 35px;

    gap: 13px;

    padding: 24px;
  }

  .cl-featured-symbol {
    grid-column: 2;

    grid-row: 1;
  }

  .cl-featured-number {
    grid-column: 1;

    grid-row: 1;
  }

  .cl-featured-main {
    grid-column: 1 / -1;

    grid-row: 2;
  }

  .cl-featured-arrow {
    grid-column: 3;

    grid-row: 1;
  }

  .cl-paths {
    padding: 70px 0;
  }

  .cl-path-grid {
    grid-template-columns: 1fr;
  }

  .cl-path-card {
    min-height: 310px;
  }

  .cl-path-body {
    padding-top: 42px;
  }

  .cl-topics {
    padding: 70px 0;
  }

  .cl-note {
    padding-bottom: 65px;
  }

  .cl-note-box {
    display: block;

    padding: 25px;
  }

  .cl-note-icon {
    margin-bottom: 16px;
  }

  .cl-note-content {
    min-width: 0;
  }

  .cl-note-link {
    width: 100%;

    justify-content: center;

    margin: 20px 0 0;
  }

  .cl-final {
    padding-bottom: 65px;
  }

  .cl-final-box {
    display: block;

    padding: 32px 25px;
  }

  .cl-final-content h2 {
    font-size: 1.4rem;
  }

  .cl-final-btn {
    width: 100%;

    margin-top: 23px;
  }
}

@media (max-width: 400px) {
  .cl-hero h1 {
    font-size: 2.3rem;
  }

  .cl-learning-card {
    padding: 15px;
  }

  .cl-learning-item {
    grid-template-columns: 25px 1fr 12px;

    gap: 8px;

    padding: 12px 8px;
  }
}

/* FAQ page  */

/* =========================================================
   VorteFix CREATORHELP — FAQ PAGE
========================================================= */

.ch-faq-page {
  --cf-red: #dc3545;
  --cf-red-dark: #c92f3f;

  --cf-black: #17171a;
  --cf-heading: #29292e;
  --cf-text: #68686f;
  --cf-muted: #929299;

  --cf-border: #e7e7e9;
  --cf-light: #f8f8f9;

  background: #fff;
  color: var(--cf-text);
}

/* =========================================================
   HERO
========================================================= */

.cf-hero {
  position: relative;

  padding: 88px 0 95px;

  overflow: hidden;

  border-bottom: 1px solid #eeeeef;

  background: #fff;
}

.cf-hero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -280px;
  top: -310px;

  border-radius: 50%;

  background: rgba(220, 53, 69, 0.045);

  pointer-events: none;
}

.cf-hero-grid {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 0.76fr;

  align-items: center;

  gap: 85px;
}

.cf-hero-content {
  max-width: 670px;
}

.cf-eyebrow {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #929299;

  font-size: 0.54rem;

  font-weight: 760;

  letter-spacing: 1.15px;
}

.cf-eyebrow span {
  width: 19px;
  height: 1px;

  display: inline-block;

  background: var(--cf-red);
}

.cf-hero h1 {
  margin: 19px 0 19px;

  color: var(--cf-black);

  font-size: clamp(3rem, 5.5vw, 4.8rem);

  line-height: 1.02;

  font-weight: 760;

  letter-spacing: -3.7px;
}

.cf-hero h1 strong {
  display: block;

  color: var(--cf-red);

  font-weight: 760;
}

.cf-hero-content > p {
  max-width: 550px;

  margin: 0;

  color: var(--cf-muted);

  font-size: 0.78rem;

  line-height: 1.85;
}

.cf-hero-points {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 27px;
}

.cf-hero-points span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #77777e;

  font-size: 0.58rem;

  font-weight: 620;
}

.cf-hero-points i {
  color: var(--cf-red);

  font-size: 0.7rem;
}

/* =========================================================
   HERO PANEL
========================================================= */

.cf-hero-panel {
  padding: 21px;

  border: 1px solid #dedee1;

  border-radius: 16px;

  background: #fafafa;

  box-shadow: 0 25px 70px rgba(20, 20, 25, 0.055);
}

.cf-panel-heading {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding-bottom: 18px;
}

.cf-panel-heading span {
  display: block;

  margin-bottom: 4px;

  color: #a0a0a7;

  font-size: 0.48rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cf-panel-heading strong {
  color: #303035;

  font-size: 0.78rem;

  font-weight: 700;
}

.cf-panel-icon {
  width: 35px;
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #fff0f2;

  color: var(--cf-red);

  font-size: 0.72rem;
}

.cf-question-preview {
  display: grid;

  grid-template-columns: 25px 1fr 14px;

  align-items: center;

  gap: 10px;

  padding: 14px 10px;

  margin-top: 7px;

  border: 1px solid transparent;

  border-radius: 10px;

  background: #fff;

  transition: 0.2s ease;
}

.cf-question-preview.active {
  border-color: #efd2d5;

  background: #fff8f8;
}

.cf-question-preview:hover {
  border-color: #e1e1e3;

  transform: translateX(2px);
}

.cf-question-preview > span {
  color: #aaaab0;

  font-size: 0.5rem;

  font-weight: 760;
}

.cf-question-preview strong {
  color: #3d3d42;

  font-size: 0.61rem;

  font-weight: 680;
}

.cf-question-preview > i {
  color: #aaaab0;

  font-size: 0.59rem;
}

.cf-panel-footer {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  padding: 16px 3px 2px;

  color: #9d9da4;

  font-size: 0.53rem;

  font-weight: 620;
}

/* =========================================================
   FAQ SECTION
========================================================= */

.cf-faq-section {
  padding: 100px 0 110px;

  background: var(--cf-light);
}

.cf-faq-layout {
  display: grid;

  grid-template-columns: 0.55fr 1.45fr;

  gap: 80px;

  align-items: start;
}

/* =========================================================
   SIDEBAR
========================================================= */

.cf-faq-sidebar {
  position: sticky;

  top: 105px;
}

.cf-faq-sidebar h2 {
  margin: 14px 0 11px;

  color: var(--cf-black);

  font-size: 2rem;

  line-height: 1.08;

  font-weight: 740;

  letter-spacing: -1.5px;
}

.cf-faq-sidebar > p {
  max-width: 320px;

  margin: 0;

  color: var(--cf-muted);

  font-size: 0.63rem;

  line-height: 1.75;
}

.cf-category-list {
  display: flex;

  flex-direction: column;

  gap: 3px;

  margin-top: 30px;
}

.cf-category-list a {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 10px 11px;

  border-radius: 7px;

  color: #77777e;

  font-size: 0.59rem;

  font-weight: 650;

  text-decoration: none;

  transition: 0.18s ease;
}

.cf-category-list a i {
  width: 18px;

  color: #9b9ba1;

  font-size: 0.66rem;
}

.cf-category-list a:hover {
  color: var(--cf-red);

  background: #fff;
}

.cf-category-list a:hover i {
  color: var(--cf-red);
}

.cf-category-list a.active {
  color: var(--cf-red);

  background: #fff;

  box-shadow: 0 5px 18px rgba(20, 20, 25, 0.035);
}

.cf-category-list a.active i {
  color: var(--cf-red);
}

/* =========================================================
   FAQ GROUP
========================================================= */

.cf-faq-group {
  margin-bottom: 60px;

  scroll-margin-top: 100px;
}

.cf-faq-group:last-child {
  margin-bottom: 0;
}

.cf-group-heading {
  display: flex;

  align-items: flex-start;

  gap: 16px;

  margin-bottom: 19px;
}

.cf-group-heading > span {
  padding-top: 4px;

  color: #aaaab0;

  font-size: 0.54rem;

  font-weight: 760;
}

.cf-group-heading small {
  display: block;

  margin-bottom: 5px;

  color: #a09fa5;

  font-size: 0.48rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cf-group-heading h3 {
  margin: 0;

  color: var(--cf-heading);

  font-size: 1.05rem;

  font-weight: 710;

  letter-spacing: -0.35px;
}

/* =========================================================
   ACCORDION
========================================================= */

.cf-accordion {
  border-top: 1px solid var(--cf-border);
}

.cf-accordion details {
  border-bottom: 1px solid var(--cf-border);

  background: transparent;
}

.cf-accordion summary {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  min-height: 66px;

  padding: 0 4px;

  color: #3e3e43;

  font-size: 0.66rem;

  font-weight: 680;

  cursor: pointer;

  list-style: none;

  transition: 0.18s ease;
}

.cf-accordion summary::-webkit-details-marker {
  display: none;
}

.cf-accordion summary::marker {
  display: none;
}

.cf-accordion summary:hover {
  color: var(--cf-red);
}

.cf-accordion summary i {
  width: 25px;
  height: 25px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 25px;

  border: 1px solid #dedee1;

  border-radius: 50%;

  color: #9999a0;

  font-size: 0.62rem;

  transition: 0.2s ease;
}

.cf-accordion details[open] summary {
  color: var(--cf-red);
}

.cf-accordion details[open] summary i {
  color: var(--cf-red);

  border-color: #e4c6ca;

  transform: rotate(45deg);
}

.cf-answer {
  padding: 0 42px 21px 4px;

  animation: cfAnswer 0.18s ease;
}

@keyframes cfAnswer {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cf-answer p {
  max-width: 720px;

  margin: 0 0 10px;

  color: #818188;

  font-size: 0.62rem;

  line-height: 1.8;
}

.cf-answer p:last-of-type {
  margin-bottom: 0;
}

.cf-answer a {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-top: 8px;

  color: var(--cf-red);

  font-size: 0.57rem;

  font-weight: 680;

  text-decoration: none;
}

.cf-answer a:hover {
  color: var(--cf-red-dark);
}

.cf-answer a i {
  font-size: 0.59rem;
}

/* =========================================================
   HELP
========================================================= */

.cf-help {
  padding: 75px 0;

  background: #fff;
}

.cf-help-box {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 29px 31px;

  border: 1px solid var(--cf-border);

  border-radius: 14px;

  background: #fff;
}

.cf-help-icon {
  width: 43px;
  height: 43px;

  flex: 0 0 43px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #fff0f2;

  color: var(--cf-red);

  font-size: 0.76rem;
}

.cf-help-content {
  flex: 1;
}

.cf-help-content > span {
  display: block;

  margin-bottom: 5px;

  color: #9d9da4;

  font-size: 0.48rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cf-help-content h2 {
  margin: 0 0 5px;

  color: #343439;

  font-size: 0.95rem;

  font-weight: 710;
}

.cf-help-content p {
  margin: 0;

  color: #88888f;

  font-size: 0.6rem;

  line-height: 1.65;
}

.cf-help-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  flex-shrink: 0;

  padding: 11px 15px;

  border-radius: 7px;

  background: var(--cf-red);

  color: #fff;

  font-size: 0.57rem;

  font-weight: 700;

  text-decoration: none;

  transition: 0.2s ease;
}

.cf-help-btn:hover {
  background: var(--cf-red-dark);

  color: #fff;

  transform: translateY(-2px);
}

/* =========================================================
   FINAL CTA
========================================================= */

.cf-final {
  padding: 0 0 100px;

  background: #fff;
}

.cf-final-box {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 47px;

  border-radius: 17px;

  background: #18181b;

  overflow: hidden;
}

.cf-final-box::after {
  content: "";

  position: absolute;

  width: 340px;
  height: 340px;

  right: -175px;
  top: -210px;

  border-radius: 50%;

  background: rgba(220, 53, 69, 0.13);
}

.cf-final-content {
  position: relative;

  z-index: 1;
}

.cf-final-content > span {
  color: #8e8e96;

  font-size: 0.49rem;

  font-weight: 760;

  letter-spacing: 1px;
}

.cf-final-content h2 {
  max-width: 650px;

  margin: 10px 0 7px;

  color: #fff;

  font-size: 1.65rem;

  line-height: 1.18;

  font-weight: 710;

  letter-spacing: -1px;
}

.cf-final-content h2 strong {
  color: #ef5967;

  font-weight: 710;
}

.cf-final-content p {
  margin: 0;

  color: #96969e;

  font-size: 0.63rem;
}

.cf-final-btn {
  position: relative;

  z-index: 2;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  flex-shrink: 0;

  padding: 12px 17px;

  border-radius: 8px;

  background: #fff;

  color: #242428;

  font-size: 0.61rem;

  font-weight: 700;

  text-decoration: none;

  transition: 0.2s ease;
}

.cf-final-btn:hover {
  color: var(--cf-red);

  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .cf-hero-grid {
    gap: 50px;
  }

  .cf-faq-layout {
    gap: 55px;
  }
}

@media (max-width: 991.98px) {
  .cf-hero {
    padding: 70px 0 75px;
  }

  .cf-hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .cf-hero-content {
    max-width: 700px;
  }

  .cf-hero-panel {
    max-width: 560px;
  }

  .cf-faq-section {
    padding: 80px 0 90px;
  }

  .cf-faq-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .cf-faq-sidebar {
    position: static;
  }

  .cf-faq-sidebar > p {
    max-width: 550px;
  }

  .cf-category-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    max-width: 650px;
  }

  .cf-help-box {
    flex-wrap: wrap;
  }

  .cf-help-content {
    min-width: calc(100% - 65px);
  }

  .cf-help-btn {
    margin-left: 61px;
  }
}

@media (max-width: 767.98px) {
  .cf-hero {
    padding: 58px 0 65px;
  }

  .cf-hero h1 {
    font-size: 2.65rem;

    letter-spacing: -2.4px;
  }

  .cf-hero-content > p {
    font-size: 0.72rem;
  }

  .cf-hero-points {
    flex-direction: column;

    align-items: flex-start;

    gap: 9px;
  }

  .cf-hero-panel {
    padding: 15px;
  }

  .cf-question-preview {
    grid-template-columns: 22px 1fr 12px;

    gap: 8px;

    padding: 12px 8px;
  }

  .cf-faq-section {
    padding: 65px 0 75px;
  }

  .cf-faq-sidebar h2 {
    font-size: 1.75rem;
  }

  .cf-category-list {
    grid-template-columns: 1fr;
  }

  .cf-faq-group {
    margin-bottom: 48px;
  }

  .cf-group-heading {
    gap: 12px;
  }

  .cf-accordion summary {
    min-height: 62px;

    font-size: 0.62rem;
  }

  .cf-answer {
    padding-right: 20px;
  }

  .cf-answer p {
    font-size: 0.59rem;
  }

  .cf-help {
    padding: 55px 0;
  }

  .cf-help-box {
    display: block;

    padding: 25px;
  }

  .cf-help-icon {
    margin-bottom: 16px;
  }

  .cf-help-content {
    min-width: 0;
  }

  .cf-help-btn {
    width: 100%;

    margin: 20px 0 0;
  }

  .cf-final {
    padding-bottom: 65px;
  }

  .cf-final-box {
    display: block;

    padding: 32px 25px;
  }

  .cf-final-content h2 {
    font-size: 1.4rem;
  }

  .cf-final-btn {
    width: 100%;

    margin-top: 23px;
  }
}

@media (max-width: 400px) {
  .cf-hero h1 {
    font-size: 2.3rem;
  }
}

/* =========================================================
   VorteFix CREATORHELP — RESOURCES PAGE
========================================================= */

.ch-resources-page {
  --cr-red: #dc3545;
  --cr-red-dark: #bb2d3b;
  --cr-black: #17171a;
  --cr-heading: #252529;
  --cr-text: #606068;
  --cr-muted: #85858d;
  --cr-white: #ffffff;
  --cr-light: #f8f8f9;
  --cr-border: #e7e7e9;
  --cr-border-dark: #dcdcdf;

  color: var(--cr-text);
  background: var(--cr-white);
}

/* =========================================================
   COMMON
========================================================= */

.ch-resources-page a {
  text-decoration: none;
}

.cr-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;

  color: var(--cr-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cr-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--cr-red);
}

.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
   border-radius: 8px;

  min-height: 48px;
  padding: 0 22px;

  border: 1px solid transparent;

  font-size: 13px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.cr-btn:hover {
  transform: translateY(-2px);
}

.cr-btn i {
  font-size: 15px;
}

/* =========================================================
   HERO
========================================================= */

.cr-hero {
  padding: 100px 0 90px;
  border-bottom: 1px solid var(--cr-border);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.cr-hero h1 {
  margin: 0;

  color: var(--cr-heading);

  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.cr-hero h1 strong {
  color: var(--cr-red);
  font-weight: 700;
}

.cr-hero-text {
  max-width: 620px;

  margin: 28px 0 0;

  color: var(--cr-text);

  font-size: 17px;
  line-height: 1.75;
}

.cr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}

.cr-btn-dark {
  color: var(--cr-white);
  background: var(--cr-black);
}

.cr-btn-dark:hover {
  color: var(--cr-white);
  background: #2b2b30;
}

.cr-btn-light {
  color: var(--cr-heading);
  background: var(--cr-white);
  border-color: var(--cr-border-dark);
}

.cr-btn-light:hover {
  color: var(--cr-heading);
  border-color: #bfc0c4;
}

.cr-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;

  margin-top: 24px;
}

.cr-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--cr-muted);

  font-size: 12px;
  font-weight: 600;
}

.cr-hero-meta i {
  color: var(--cr-red);
  font-size: 14px;
}

/* =========================================================
   HERO PREVIEW
========================================================= */

.cr-resource-preview {
  padding: 28px;

  background: var(--cr-white);
  border: 1px solid var(--cr-border);

  box-shadow: 0 20px 60px rgba(23, 23, 26, 0.06);
}

.cr-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 20px;

  border-bottom: 1px solid var(--cr-border);

  color: var(--cr-muted);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cr-preview-top i {
  color: var(--cr-red);
  font-size: 18px;
}

.cr-preview-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;

  padding: 22px 0;

  border-bottom: 1px solid var(--cr-border);
}

.cr-preview-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  color: var(--cr-red);
  background: #fff4f5;

  font-size: 19px;
}

.cr-preview-item strong {
  display: block;

  color: var(--cr-heading);

  font-size: 14px;
  font-weight: 700;
}

.cr-preview-item small {
  display: block;

  margin-top: 4px;

  color: var(--cr-muted);

  font-size: 11px;
}

.cr-preview-item > i {
  color: #a0a0a6;
  font-size: 15px;
}

.cr-preview-more {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 20px;

  color: var(--cr-red);

  font-size: 12px;
  font-weight: 700;
}

/* =========================================================
   LIBRARY
========================================================= */

.cr-library {
  padding: 105px 0;
}

.cr-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;

  margin-bottom: 55px;
}

.cr-section-heading h2,
.cr-reference h2,
.cr-security h2 {
  margin: 0;

  color: var(--cr-heading);

  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.cr-section-heading h2 strong,
.cr-reference h2 strong,
.cr-security h2 strong {
  color: var(--cr-red);
}

.cr-section-heading > p {
  max-width: 410px;

  margin: 0;

  color: var(--cr-text);

  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   FEATURED CARDS
========================================================= */

.cr-featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;

  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
}

.cr-featured-card {
  position: relative;

  display: block;

  min-height: 390px;
  padding: 38px;

  color: var(--cr-heading);

  background: var(--cr-white);

  overflow: hidden;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.cr-featured-card + .cr-featured-card {
  border-left: 1px solid var(--cr-border);
}

.cr-featured-card:hover {
  color: var(--cr-white);
  background: var(--cr-black);
}

.cr-card-number {
  position: absolute;
  top: 30px;
  right: 32px;

  color: #d7d7da;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cr-featured-card:hover .cr-card-number {
  color: #55555b;
}

.cr-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  margin-bottom: 55px;

  color: var(--cr-red);
  background: #fff4f5;

  font-size: 21px;
}

.cr-featured-card:hover .cr-card-icon {
  color: var(--cr-white);
  background: var(--cr-red);
}

.cr-card-content {
  max-width: 510px;
}

.cr-card-label {
  display: block;

  margin-bottom: 12px;

  color: var(--cr-red);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.cr-featured-card:hover .cr-card-label {
  color: #ff7885;
}

.cr-card-content h3 {
  margin: 0 0 14px;

  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.cr-card-content p {
  max-width: 470px;

  margin: 0;

  color: var(--cr-text);

  font-size: 14px;
  line-height: 1.75;
}

.cr-featured-card:hover .cr-card-content p {
  color: #b7b7bd;
}

.cr-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 28px;

  color: var(--cr-heading);

  font-size: 12px;
  font-weight: 800;
}

.cr-featured-card:hover .cr-card-link {
  color: var(--cr-white);
}

.cr-card-link i {
  transition: transform 0.2s ease;
}

.cr-featured-card:hover .cr-card-link i {
  transform: translateX(4px);
}

/* =========================================================
   TOPICS
========================================================= */

.cr-category-heading {
  margin: 70px 0 18px;

  color: var(--cr-muted);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.cr-topic-grid {
  border-top: 1px solid var(--cr-border);
  border-left: 1px solid var(--cr-border);
}

.cr-topic-card {
  display: block;

  min-height: 280px;
  padding: 28px;

  color: var(--cr-heading);
  background: var(--cr-white);

  border-right: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.cr-topic-card:hover {
  color: var(--cr-white);
  background: var(--cr-black);
}

.cr-topic-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 50px;
}

.cr-topic-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  color: var(--cr-red);
  background: #fff4f5;

  font-size: 17px;
}

.cr-topic-card:hover .cr-topic-icon {
  color: var(--cr-white);
  background: var(--cr-red);
}

.cr-topic-arrow {
  color: #a3a3a9;
  font-size: 14px;
}

.cr-topic-card:hover .cr-topic-arrow {
  color: #ffffff;
}

.cr-topic-label {
  display: block;

  margin-bottom: 9px;

  color: var(--cr-red);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cr-topic-card:hover .cr-topic-label {
  color: #ff7885;
}

.cr-topic-card h3 {
  margin: 0 0 12px;

  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
}

.cr-topic-card p {
  margin: 0;

  color: var(--cr-muted);

  font-size: 12px;
  line-height: 1.65;
}

.cr-topic-card:hover p {
  color: #b7b7bd;
}

/* =========================================================
   QUICK REFERENCE
========================================================= */

.cr-reference {
  padding: 105px 0;

  background: var(--cr-light);
  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
}

.cr-reference h2 {
  margin-bottom: 25px;
}

.cr-reference > .container > .row > .col-lg-5 > p {
  max-width: 480px;

  margin: 0;

  font-size: 14px;
  line-height: 1.8;
}

.cr-reference-list {
  border-top: 1px solid var(--cr-border-dark);
}

.cr-reference-row {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  align-items: start;
  gap: 18px;

  padding: 24px 0;

  border-bottom: 1px solid var(--cr-border-dark);
}

.cr-reference-number {
  color: var(--cr-red);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cr-reference-row h3 {
  margin: 0 0 6px;

  color: var(--cr-heading);

  font-size: 15px;
  font-weight: 700;
}

.cr-reference-row p {
  max-width: 520px;

  margin: 0;

  color: var(--cr-muted);

  font-size: 12px;
  line-height: 1.65;
}

.cr-reference-row > i {
  margin-top: 2px;

  color: #9b9ba1;

  font-size: 13px;
}

/* =========================================================
   OFFICIAL SOURCES
========================================================= */

.cr-official {
  padding: 80px 0;
}

.cr-official-box {
  display: grid;
  grid-template-columns: 64px 1fr 30px;
  align-items: center;
  gap: 25px;

  padding: 38px;

  background: #fbfbfb;
  border: 1px solid var(--cr-border);
}

.cr-official-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  color: var(--cr-red);
  background: #fff1f2;

  font-size: 22px;
}

.cr-official-content h2 {
  margin: 0 0 10px;

  color: var(--cr-heading);

  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.cr-official-content p {
  max-width: 820px;

  margin: 0;

  color: var(--cr-text);

  font-size: 13px;
  line-height: 1.75;
}

.cr-official-mark {
  color: var(--cr-red);
  font-size: 17px;
}

/* =========================================================
   SECURITY
========================================================= */

.cr-security {
  padding: 105px 0;

  border-top: 1px solid var(--cr-border);
}

.cr-security h2 {
  margin-bottom: 25px;
}

.cr-security .col-lg-7 > p {
  max-width: 650px;

  margin: 0;

  font-size: 14px;
  line-height: 1.8;
}

.cr-security-list {
  border-top: 1px solid var(--cr-border);
}

.cr-security-list > div {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 20px 0;

  border-bottom: 1px solid var(--cr-border);

  color: var(--cr-heading);

  font-size: 13px;
  font-weight: 600;
}

.cr-security-list i {
  color: var(--cr-red);
  font-size: 17px;
}

/* =========================================================
   FINAL CTA
========================================================= */

.cr-final-cta {
  padding: 85px 0;

  color: var(--cr-white);
  background: var(--cr-black);
}

.cr-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cr-final-label {
  display: block;

  margin-bottom: 18px;

  color: #99999f;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.cr-final-inner h2 {
  margin: 0;

  color: var(--cr-white);

  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.cr-final-inner h2 strong {
  color: #ff5a68;
}

.cr-final-inner p {
  margin: 20px 0 0;

  color: #a8a8ae;

  font-size: 14px;
}

.cr-final-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;

  min-width: 190px;
}

.cr-btn-white {
  color: var(--cr-black);
  background: var(--cr-white);
}

.cr-btn-white:hover {
  color: var(--cr-black);
  background: #eeeeef;
}


.cr-final-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 20px;

    background: var(--cr-white);
    color: #252529;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.cr-final-link:hover {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
    transform: translateY(-2px);
}

.cr-final-link i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.cr-final-link:hover i {
    transform: translateX(3px);
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .cr-hero {
    padding: 75px 0;
  }

  .cr-resource-preview {
    max-width: 650px;
  }

  .cr-section-heading {
    display: block;
  }

  .cr-section-heading > p {
    margin-top: 25px;
  }

  .cr-featured-grid {
    grid-template-columns: 1fr;
  }

  .cr-featured-card + .cr-featured-card {
    border-left: 0;
    border-top: 1px solid var(--cr-border);
  }

  .cr-final-inner {
    display: block;
  }

  .cr-final-actions {
    margin-top: 35px;
  }
}

@media (max-width: 767.98px) {
  .cr-hero {
    padding: 60px 0;
  }

  .cr-hero h1 {
    font-size: 48px;
  }

  .cr-hero-text {
    font-size: 15px;
  }

  .cr-library,
  .cr-reference,
  .cr-security {
    padding: 75px 0;
  }

  .cr-featured-card {
    min-height: 340px;
    padding: 28px;
  }

  .cr-card-icon {
    margin-bottom: 42px;
  }

  .cr-topic-card {
    min-height: 250px;
  }

  .cr-official {
    padding: 60px 0;
  }

  .cr-official-box {
    grid-template-columns: 50px 1fr;

    padding: 26px;

    gap: 18px;
  }

  .cr-official-icon {
    width: 48px;
    height: 48px;
  }

  .cr-official-mark {
    display: none;
  }

  .cr-final-cta {
    padding: 70px 0;
  }
}

@media (max-width: 575.98px) {
  .cr-hero h1 {
    font-size: 42px;
  }

  .cr-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cr-btn {
    width: 100%;
  }

  .cr-hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .cr-resource-preview {
    padding: 20px;
  }

  .cr-preview-item {
    grid-template-columns: 40px 1fr auto;
    gap: 11px;
  }

  .cr-preview-icon {
    width: 40px;
    height: 40px;
  }

  .cr-section-heading h2,
  .cr-reference h2,
  .cr-security h2 {
    font-size: 38px;
  }

  .cr-reference-row {
    grid-template-columns: 32px 1fr;
  }

  .cr-reference-row > i {
    display: none;
  }

  .cr-official-content h2 {
    font-size: 21px;
  }

  .cr-final-inner h2 {
    font-size: 40px;
  }
}

/* =========================================================
   VorteFix CREATORHELP — REGISTER PAGE
========================================================= */

.ch-register-page {
  --crg-red: #dc3545;
  --crg-red-dark: #bb2d3b;

  --crg-black: #17171a;
  --crg-heading: #252529;
  --crg-text: #606068;
  --crg-muted: #85858d;

  --crg-white: #ffffff;
  --crg-light: #f8f8f9;

  --crg-border: #e7e7e9;
  --crg-border-dark: #d8d8dc;

  color: var(--crg-text);
  background: var(--crg-white);
}

/* =========================================================
   HERO / REGISTER SECTION
========================================================= */

.crg-register-section {
  padding: 90px 0 85px;

  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);

  border-bottom: 1px solid var(--crg-border);
}

/* =========================================================
   EYEBROW
========================================================= */

.crg-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;

  color: var(--crg-muted);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.crg-eyebrow span {
  width: 28px;
  height: 2px;

  display: inline-block;

  background: var(--crg-red);
}

/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.crg-register-section h1 {
  margin: 0;

  color: var(--crg-heading);

  font-size: clamp(43px, 5.2vw, 70px);

  line-height: 0.99;

  font-weight: 700;

  letter-spacing: -0.055em;
}

.crg-register-section h1 strong {
  color: var(--crg-red);

  font-weight: 700;
}

.crg-intro {
  max-width: 590px;

  margin: 27px 0 0;

  color: var(--crg-text);

  font-size: 16px;

  line-height: 1.8;
}

/* =========================================================
   BENEFITS
========================================================= */

.crg-benefits {
  max-width: 590px;

  margin-top: 42px;
}

.crg-benefit {
  display: flex;
  align-items: flex-start;

  gap: 15px;

  padding: 19px 0;

  border-top: 1px solid var(--crg-border);
}

.crg-benefit:last-child {
  border-bottom: 1px solid var(--crg-border);
}

.crg-benefit-icon {
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--crg-red);

  background: #fff2f3;

  font-size: 17px;
}

.crg-benefit h3 {
  margin: 0 0 4px;

  color: var(--crg-heading);

  font-size: 14px;

  font-weight: 700;
}

.crg-benefit p {
  margin: 0;

  color: var(--crg-muted);

  font-size: 12px;

  line-height: 1.6;
}

/* =========================================================
   FORM WRAPPER
========================================================= */

.crg-form-wrapper {
  max-width: 520px;

  margin-left: auto;

  padding: 35px;

  background: var(--crg-white);

  border: 1px solid var(--crg-border);

  box-shadow: 0 25px 70px rgba(23, 23, 26, 0.065);
}

/* =========================================================
   FORM HEADER
========================================================= */

.crg-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding-bottom: 25px;

  margin-bottom: 27px;

  border-bottom: 1px solid var(--crg-border);
}

.crg-form-label {
  display: block;

  margin-bottom: 8px;

  color: var(--crg-red);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.16em;
}

.crg-form-header h2 {
  margin: 0;

  color: var(--crg-heading);

  font-size: 28px;

  font-weight: 700;

  letter-spacing: -0.03em;
}

.crg-form-number {
  color: #d1d1d5;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.1em;
}

/* =========================================================
   FORM FIELDS
========================================================= */

.crg-field {
  margin-bottom: 21px;
}

.crg-field label {
  display: block;

  margin-bottom: 8px;

  color: var(--crg-heading);

  font-size: 12px;

  font-weight: 700;
}

.crg-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.crg-label-row span {
  color: var(--crg-muted);

  font-size: 10px;

  font-weight: 500;
}

/* =========================================================
   INPUT
========================================================= */

.crg-input-wrap {
  position: relative;

  display: flex;
  align-items: center;
}

.crg-input-wrap > i:first-child {
  position: absolute;

  left: 15px;

  color: #96969c;

  font-size: 15px;

  pointer-events: none;

  z-index: 2;
}

.crg-input-wrap input {
  width: 100%;

  height: 50px;

  padding: 0 15px 0 43px;

  color: var(--crg-heading);

  background: var(--crg-white);

  border: 1px solid var(--crg-border-dark);

  border-radius: 0;

  outline: none;

  font-size: 13px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.crg-input-wrap input::placeholder {
  color: #a7a7ad;
}

.crg-input-wrap input:hover {
  border-color: #bdbdc2;
}

.crg-input-wrap input:focus {
  border-color: var(--crg-red);

  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08);
}

/* =========================================================
   PASSWORD
========================================================= */

.crg-password-wrap input {
  padding-right: 50px;
}

.crg-password-toggle {
  position: absolute;

  right: 1px;
  top: 1px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #8c8c92;

  background: transparent;

  border: 0;

  cursor: pointer;

  transition: color 0.2s ease;
}

.crg-password-toggle:hover {
  color: var(--crg-heading);
}

.crg-password-message {
  min-height: 17px;

  margin-top: 6px;

  font-size: 10px;

  font-weight: 600;
}

.crg-password-message.success {
  color: #198754;
}

.crg-password-message.error {
  color: var(--crg-red);
}

/* =========================================================
   VALIDATION
========================================================= */

.crg-input-wrap input.is-valid {
  border-color: #198754;
}

.crg-input-wrap input.is-invalid {
  border-color: var(--crg-red);
}

/* =========================================================
   TERMS CHECKBOX
========================================================= */

.crg-terms {
  margin-top: 4px;

  margin-bottom: 22px;
}

.crg-checkbox {
  display: flex !important;

  align-items: flex-start;

  gap: 10px;

  margin: 0 !important;

  cursor: pointer;
}

.crg-checkbox input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.crg-checkmark {
  flex: 0 0 auto;

  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 1px;

  color: transparent;

  background: var(--crg-white);

  border: 1px solid var(--crg-border-dark);

  font-size: 12px;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.crg-checkbox input:checked + .crg-checkmark {
  color: var(--crg-white);

  background: var(--crg-red);

  border-color: var(--crg-red);
}

.crg-checkbox input:focus-visible + .crg-checkmark {
  outline: 3px solid rgba(220, 53, 69, 0.15);
}

.crg-terms-text {
  color: var(--crg-muted);

  font-size: 11px;

  line-height: 1.6;
}

.crg-terms-text a {
  color: var(--crg-heading);

  font-weight: 700;

  text-decoration: underline;

  text-decoration-color: #c9c9cd;

  text-underline-offset: 2px;
}

.crg-terms-text a:hover {
  color: var(--crg-red);

  text-decoration-color: var(--crg-red);
}

/* =========================================================
   SUBMIT
========================================================= */

.crg-submit-btn {
  width: 100%;

  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  color: var(--crg-white);

  background: var(--crg-black);

  border: 1px solid var(--crg-black);

  font-size: 13px;
   border-radius: 8px;

  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.crg-submit-btn:hover {
  background: #2b2b30;

  transform: translateY(-1px);
}

.crg-submit-btn:active {
  transform: translateY(0);
}

.crg-submit-btn i {
  font-size: 15px;

  transition: transform 0.2s ease;
}

.crg-submit-btn:hover i {
  transform: translateX(4px);
}

/* =========================================================
   LOGIN LINK
========================================================= */

.crg-login-link {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  margin-top: 22px;

  font-size: 11px;
}

.crg-login-link span {
  color: var(--crg-muted);
}

.crg-login-link a {
  display: inline-flex;
  align-items: center;

  gap: 5px;

  color: var(--crg-heading);

  font-weight: 700;
}

.crg-login-link a:hover {
  color: var(--crg-red);
}

/* =========================================================
   SECURITY SECTION
========================================================= */

.crg-security-section {
  padding: 75px 0;

  background: var(--crg-light);

  border-bottom: 1px solid var(--crg-border);
}

.crg-security-box {
  display: grid;

  grid-template-columns:
    60px
    1fr;

  align-items: center;

  gap: 24px;

  padding: 34px;

  background: var(--crg-white);

  border: 1px solid var(--crg-border);
}

.crg-security-icon {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--crg-red);

  background: #fff1f2;

  font-size: 21px;
}

.crg-security-content > span {
  display: block;

  margin-bottom: 8px;

  color: var(--crg-red);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.15em;
}

.crg-security-content h2 {
  margin: 0 0 8px;

  color: var(--crg-heading);

  font-size: 21px;

  line-height: 1.3;

  font-weight: 700;

  letter-spacing: -0.02em;
}

.crg-security-content p {
  max-width: 850px;

  margin: 0;

  color: var(--crg-text);

  font-size: 12px;

  line-height: 1.75;
}

/* =========================================================
   BOTTOM CTA
========================================================= */

.crg-bottom {
  padding: 80px 0;

  color: var(--crg-white);

  background: var(--crg-black);
}

.crg-bottom-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}

.crg-bottom-label {
  display: block;

  margin-bottom: 15px;

  color: #94949b;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.16em;
}

.crg-bottom h2 {
  margin: 0;

  color: var(--crg-white);

  font-size: clamp(34px, 4vw, 52px);

  line-height: 1.04;

  font-weight: 700;

  letter-spacing: -0.045em;
}

.crg-bottom h2 strong {
  color: #ff6572;

  font-weight: 700;
}

.crg-outline-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding: 0 22px;
  text-decoration: none;
   border-radius: 8px;

  color: var(--crg-white);

  border: 1px solid #55555b;

  font-size: 12px;

  font-weight: 700;

  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.crg-outline-btn:hover {
  color: var(--crg-black);

  background: var(--crg-white);

  border-color: var(--crg-white);

  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .crg-register-section {
    padding: 70px 0;
  }

  .crg-form-wrapper {
    max-width: none;

    margin-left: 0;
  }

  .crg-bottom-inner {
    display: block;
  }

  .crg-outline-btn {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .crg-register-section {
    padding: 55px 0;
  }

  .crg-register-section h1 {
    font-size: 47px;
  }

  .crg-intro {
    font-size: 14px;
  }

  .crg-form-wrapper {
    padding: 26px;
  }

  .crg-security-section {
    padding: 60px 0;
  }

  .crg-security-box {
    grid-template-columns: 1fr;

    padding: 27px;
  }

  .crg-security-icon {
    width: 48px;
    height: 48px;
  }

  .crg-bottom {
    padding: 65px 0;
  }
}

@media (max-width: 575.98px) {
  .crg-register-section h1 {
    font-size: 40px;
  }

  .crg-benefit {
    gap: 12px;
  }

  .crg-benefit-icon {
    width: 38px;
    height: 38px;

    font-size: 15px;
  }

  .crg-form-wrapper {
    padding: 22px;
  }

  .crg-form-header h2 {
    font-size: 25px;
  }

  .crg-label-row {
    align-items: flex-start;

    flex-direction: column;

    gap: 4px;
  }

  .crg-bottom h2 {
    font-size: 38px;
  }

  .crg-outline-btn {
    width: 100%;
  }
}

/* =========================================================
   VorteFix CREATORHELP — LOGIN PAGE
========================================================= */

.ch-login-page {
  --clg-red: #dc3545;
  --clg-red-dark: #bb2d3b;

  --clg-black: #17171a;
  --clg-heading: #252529;
  --clg-text: #606068;
  --clg-muted: #85858d;

  --clg-white: #ffffff;
  --clg-light: #f8f8f9;

  --clg-border: #e7e7e9;
  --clg-border-dark: #d8d8dc;

  color: var(--clg-text);
  background: var(--clg-white);
}

/* =========================================================
   LOGIN SECTION
========================================================= */

.clg-login-section {
  padding: 90px 0 85px;

  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);

  border-bottom: 1px solid var(--clg-border);
}

/* =========================================================
   EYEBROW
========================================================= */

.clg-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;

  color: var(--clg-muted);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.clg-eyebrow span {
  width: 28px;
  height: 2px;

  display: inline-block;

  background: var(--clg-red);
}

/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.clg-login-section h1 {
  margin: 0;

  color: var(--clg-heading);

  font-size: clamp(43px, 5.2vw, 70px);

  line-height: 0.99;

  font-weight: 700;

  letter-spacing: -0.055em;
}

.clg-login-section h1 strong {
  color: var(--clg-red);

  font-weight: 700;
}

.clg-intro {
  max-width: 590px;

  margin: 27px 0 0;

  color: var(--clg-text);

  font-size: 16px;

  line-height: 1.8;
}

/* =========================================================
   POINTS
========================================================= */

.clg-points {
  max-width: 590px;

  margin-top: 42px;
}

.clg-point {
  display: flex;
  align-items: flex-start;

  gap: 15px;

  padding: 19px 0;

  border-top: 1px solid var(--clg-border);
}

.clg-point:last-child {
  border-bottom: 1px solid var(--clg-border);
}

.clg-point-icon {
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--clg-red);

  background: #fff2f3;

  font-size: 17px;
}

.clg-point h3 {
  margin: 0 0 4px;

  color: var(--clg-heading);

  font-size: 14px;

  font-weight: 700;
}

.clg-point p {
  margin: 0;

  color: var(--clg-muted);

  font-size: 12px;

  line-height: 1.6;
}

/* =========================================================
   FORM WRAPPER
========================================================= */

.clg-form-wrapper {
  max-width: 520px;

  margin-left: auto;

  padding: 35px;

  background: var(--clg-white);

  border: 1px solid var(--clg-border);

  box-shadow: 0 25px 70px rgba(23, 23, 26, 0.065);
}

/* =========================================================
   FORM HEADER
========================================================= */

.clg-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding-bottom: 25px;

  margin-bottom: 27px;

  border-bottom: 1px solid var(--clg-border);
}

.clg-form-label {
  display: block;

  margin-bottom: 8px;

  color: var(--clg-red);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.16em;
}

.clg-form-header h2 {
  margin: 0;

  color: var(--clg-heading);

  font-size: 28px;

  font-weight: 700;

  letter-spacing: -0.03em;
}

.clg-form-number {
  color: #d1d1d5;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.1em;
}

/* =========================================================
   FIELDS
========================================================= */

.clg-field {
  margin-bottom: 22px;
}

.clg-field label {
  display: block;

  margin-bottom: 8px;

  color: var(--clg-heading);

  font-size: 12px;

  font-weight: 700;
}

.clg-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.clg-forgot-link {
  color: var(--clg-muted);

  font-size: 10px;

  font-weight: 600;

  transition: color 0.2s ease;
}

.clg-forgot-link:hover {
  color: var(--clg-red);
}

/* =========================================================
   INPUT
========================================================= */

.clg-input-wrap {
  position: relative;

  display: flex;
  align-items: center;
}

.clg-input-wrap > i:first-child {
  position: absolute;

  left: 15px;

  color: #96969c;

  font-size: 15px;

  pointer-events: none;

  z-index: 2;
}

.clg-input-wrap input {
  width: 100%;

  height: 50px;

  padding: 0 15px 0 43px;

  color: var(--clg-heading);

  background: var(--clg-white);

  border: 1px solid var(--clg-border-dark);

  border-radius: 0;

  outline: none;

  font-size: 13px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.clg-input-wrap input::placeholder {
  color: #a7a7ad;
}

.clg-input-wrap input:hover {
  border-color: #bdbdc2;
}

.clg-input-wrap input:focus {
  border-color: var(--clg-red);

  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08);
}

/* =========================================================
   PASSWORD
========================================================= */

.clg-password-wrap input {
  padding-right: 50px;
}

.clg-password-toggle {
  position: absolute;

  right: 1px;
  top: 1px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #8c8c92;

  background: transparent;

  border: 0;

  cursor: pointer;

  transition: color 0.2s ease;
}

.clg-password-toggle:hover {
  color: var(--clg-heading);
}

/* =========================================================
   REMEMBER
========================================================= */

.clg-options {
  margin-top: -2px;

  margin-bottom: 23px;
}

.clg-remember {
  display: inline-flex !important;

  align-items: center;

  gap: 9px;

  margin: 0 !important;

  color: var(--clg-muted) !important;

  font-size: 11px !important;

  font-weight: 500 !important;

  cursor: pointer;
}

.clg-remember input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.clg-checkmark {
  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: transparent;

  background: var(--clg-white);

  border: 1px solid var(--clg-border-dark);

  font-size: 12px;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.clg-remember input:checked + .clg-checkmark {
  color: var(--clg-white);

  background: var(--clg-red);

  border-color: var(--clg-red);
}

.clg-remember input:focus-visible + .clg-checkmark {
  outline: 3px solid rgba(220, 53, 69, 0.15);
}

/* =========================================================
   SUBMIT
========================================================= */

.clg-submit-btn {
  width: 100%;

  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  color: var(--clg-white);

  background: var(--clg-black);

  border: 1px solid var(--clg-black);

  font-size: 13px;
   border-radius: 8px;

  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.clg-submit-btn:hover {
  color: var(--clg-white);

  background: #2b2b30;

  transform: translateY(-1px);
}

.clg-submit-btn:active {
  transform: translateY(0);
}

.clg-submit-btn i {
  font-size: 15px;

  transition: transform 0.2s ease;
}

.clg-submit-btn:hover i {
  transform: translateX(4px);
}

/* =========================================================
   REGISTER LINK
========================================================= */

.clg-register-link {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  margin-top: 22px;

  font-size: 11px;
}

.clg-register-link span {
  color: var(--clg-muted);
}

.clg-register-link a {
  display: inline-flex;
  align-items: center;

  gap: 5px;

  color: var(--clg-heading);

  font-weight: 700;
}

.clg-register-link a:hover {
  color: var(--clg-red);
}

/* =========================================================
   SECURITY
========================================================= */

.clg-security-section {
  padding: 75px 0;

  background: var(--clg-light);

  border-bottom: 1px solid var(--clg-border);
}

.clg-security-box {
  display: grid;

  grid-template-columns:
    60px
    1fr;

  align-items: center;

  gap: 24px;

  padding: 34px;

  background: var(--clg-white);

  border: 1px solid var(--clg-border);
}

.clg-security-icon {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--clg-red);

  background: #fff1f2;

  font-size: 21px;
}

.clg-security-content > span {
  display: block;

  margin-bottom: 8px;

  color: var(--clg-red);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.15em;
}

.clg-security-content h2 {
  margin: 0 0 8px;

  color: var(--clg-heading);

  font-size: 21px;

  line-height: 1.3;

  font-weight: 700;

  letter-spacing: -0.02em;
}

.clg-security-content p {
  max-width: 850px;

  margin: 0;

  color: var(--clg-text);

  font-size: 12px;

  line-height: 1.75;
}

/* =========================================================
   BOTTOM CTA
========================================================= */

.clg-bottom {
  padding: 80px 0;

  color: var(--clg-white);

  background: var(--clg-black);
}

.clg-bottom-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}

.clg-bottom-label {
  display: block;

  margin-bottom: 15px;

  color: #94949b;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.16em;
}

.clg-bottom h2 {
  margin: 0;

  color: var(--clg-white);

  font-size: clamp(34px, 4vw, 52px);

  line-height: 1.04;

  font-weight: 700;

  letter-spacing: -0.045em;
}

.clg-bottom h2 strong {
  color: #ff6572;

  font-weight: 700;
}

.clg-outline-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding: 0 22px;

  color: var(--clg-white);

  border: 1px solid #55555b;

  font-size: 12px;

  font-weight: 700;

  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
        text-decoration: none;
    border-radius: 8px;
}

.clg-outline-btn:hover {
  color: var(--clg-black);

  background: var(--clg-white);

  border-color: var(--clg-white);

  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .clg-login-section {
    padding: 70px 0;
  }

  .clg-form-wrapper {
    max-width: none;

    margin-left: 0;
  }

  .clg-bottom-inner {
    display: block;
  }

  .clg-outline-btn {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .clg-login-section {
    padding: 55px 0;
  }

  .clg-login-section h1 {
    font-size: 47px;
  }

  .clg-intro {
    font-size: 14px;
  }

  .clg-form-wrapper {
    padding: 26px;
  }

  .clg-security-section {
    padding: 60px 0;
  }

  .clg-security-box {
    grid-template-columns: 1fr;

    padding: 27px;
  }

  .clg-security-icon {
    width: 48px;
    height: 48px;
  }

  .clg-bottom {
    padding: 65px 0;
  }
}

@media (max-width: 575.98px) {
  .clg-login-section h1 {
    font-size: 40px;
  }

  .clg-point {
    gap: 12px;
  }

  .clg-point-icon {
    width: 38px;
    height: 38px;

    font-size: 15px;
  }

  .clg-form-wrapper {
    padding: 22px;
  }

  .clg-form-header h2 {
    font-size: 25px;
  }

  .clg-label-row {
    align-items: flex-start;

    flex-direction: column;

    gap: 5px;
  }

  .clg-bottom h2 {
    font-size: 38px;
  }

  .clg-outline-btn {
    width: 100%;
  }
}


/* =========================================================
   VorteFix CREATORHELP — CONTACT PAGE
========================================================= */

.ch-contact-page {
    --cc-red: #dc3545;
    --cc-red-dark: #b02a37;
    --cc-black: #17171a;
    --cc-heading: #252529;
    --cc-text: #606068;
    --cc-muted: #85858d;
    --cc-light: #f8f8f9;
    --cc-border: #e7e7e9;
    --cc-white: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.cc-hero {
    padding: 105px 0 95px;
    background: var(--cc-white);
}

.cc-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.7px;
    color: var(--cc-muted);
}

.cc-eyebrow span {
    width: 25px;
    height: 2px;
    background: var(--cc-red);
    display: inline-block;
}

.cc-hero h1 {
    max-width: 720px;
    margin: 0;

    color: var(--cc-heading);

    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -2.8px;
    font-weight: 700;
}

.cc-hero h1 strong {
    display: block;
    color: var(--cc-red);
    font-weight: 700;
}

.cc-hero-text {
    max-width: 650px;
    margin: 28px 0 0;

    color: var(--cc-text);
    font-size: 17px;
    line-height: 1.8;
}

.cc-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;

    margin-top: 30px;
}

.cc-hero-points div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--cc-heading);
    font-size: 13px;
    font-weight: 600;
}

.cc-hero-points i {
    color: var(--cc-red);
    font-size: 17px;
}


/* =========================================================
   CONTACT PREVIEW
========================================================= */

.cc-contact-preview {
    padding: 34px;

    border: 1px solid var(--cc-border);
    background: var(--cc-light);
}

.cc-preview-label {
    margin-bottom: 18px;

    color: var(--cc-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.cc-contact-preview h3 {
    margin: 0;

    color: var(--cc-heading);
    font-size: 27px;
    letter-spacing: -.7px;
}

.cc-contact-preview p {
    margin: 15px 0 0;

    color: var(--cc-text);
    font-size: 14px;
    line-height: 1.75;
}

.cc-preview-divider {
    height: 1px;
    margin: 27px 0;

    background: var(--cc-border);
}

.cc-whatsapp {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 13px;

    border: 1px solid var(--cc-border);
    background: var(--cc-white);

    color: var(--cc-heading);
    text-decoration: none;

    transition: .25s ease;
}

.cc-whatsapp:hover {
    border-color: #25d366;
    transform: translateY(-2px);
}

.cc-whatsapp-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #25d366;
    color: #fff;

    font-size: 21px;
}

.cc-whatsapp span:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cc-whatsapp small {
    color: var(--cc-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.cc-whatsapp strong {
    font-size: 13px;
}

.cc-whatsapp > i:last-child {
    margin-left: auto;
    color: var(--cc-muted);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.cc-contact-section {
    padding: 105px 0;
    background: var(--cc-light);
}

.cc-section-heading {
    margin-bottom: 38px;
}

.cc-section-heading h2 {
    margin: 0;

    color: var(--cc-heading);

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.cc-section-heading h2 strong {
    color: var(--cc-red);
}

.cc-section-heading p {
    max-width: 580px;
    margin: 17px 0 0;

    color: var(--cc-text);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   FORM
========================================================= */

.cc-form {
    padding: 36px;

    background: var(--cc-white);
    border: 1px solid var(--cc-border);
}

.cc-form label {
    display: block;

    margin-bottom: 9px;

    color: var(--cc-heading);

    font-size: 12px;
    font-weight: 700;
}

.cc-form label span {
    color: var(--cc-muted);
    font-weight: 400;
}

.cc-form .form-control,
.cc-form .form-select {
    min-height: 50px;

    border: 1px solid #dedee2;
    border-radius: 0;

    color: var(--cc-heading);
    background: var(--cc-white);

    font-size: 14px;

    box-shadow: none;
}

.cc-form .form-control::placeholder {
    color: #aaaab0;
}

.cc-form .form-control:focus,
.cc-form .form-select:focus {
    border-color: var(--cc-red);

    box-shadow: 0 0 0 3px rgba(220, 53, 69, .08);
}

.cc-form .cc-message {
    min-height: 165px;
    resize: vertical;
}

.cc-field-note {
    margin-top: 9px;

    color: var(--cc-muted);

    font-size: 11px;
    line-height: 1.5;
}

.cc-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 24px;

    border: 0;
    border-radius: 0;

    background: var(--cc-black);
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: .25s ease;
}

.cc-submit:hover {
    background: var(--cc-red);
    transform: translateY(-2px);
}

.cc-submit i {
    font-size: 16px;
}


/* =========================================================
   SIDE CONTENT
========================================================= */

.cc-side {
    position: sticky;
    top: 100px;
}

.cc-side-block {
    padding: 31px;

    border: 1px solid var(--cc-border);
    background: var(--cc-white);
}

.cc-side-block + .cc-side-block {
    border-top: 0;
}

.cc-side-number {
    margin-bottom: 17px;

    color: var(--cc-red);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.cc-side-block h3 {
    margin: 0;

    color: var(--cc-heading);

    font-size: 22px;
    letter-spacing: -.5px;
}

.cc-side-block > p {
    margin: 13px 0 0;

    color: var(--cc-text);

    font-size: 13px;
    line-height: 1.75;
}

.cc-side-block ul {
    list-style: none;

    padding: 0;
    margin: 22px 0 0;
}

.cc-side-block li {
    display: flex;
    gap: 10px;

    padding: 9px 0;

    color: var(--cc-heading);

    font-size: 13px;
}

.cc-side-block li i {
    color: var(--cc-red);
    font-size: 16px;
}

.cc-security-block {
    background: var(--cc-light);
}

.cc-security-list {
    margin-top: 22px;
}

.cc-security-list div {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 10px 0;

    border-top: 1px solid var(--cc-border);

    color: var(--cc-heading);

    font-size: 12px;
    font-weight: 600;
}

.cc-security-list i {
    color: var(--cc-red);
    font-size: 16px;
}

.cc-response-note {
    display: flex;
    gap: 15px;

    margin-top: 20px;
    padding: 21px;

    border-left: 2px solid var(--cc-red);
    background: var(--cc-white);
}

.cc-response-note > i {
    color: var(--cc-red);
    font-size: 20px;
}

.cc-response-note strong {
    display: block;

    color: var(--cc-heading);
    font-size: 13px;
}

.cc-response-note p {
    margin: 6px 0 0;

    color: var(--cc-text);
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   USEFUL LINKS
========================================================= */

.cc-links-section {
    padding: 95px 0;
    background: var(--cc-white);
}

.cc-links-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 35px;
}

.cc-links-header h2 {
    margin: 0;

    color: var(--cc-heading);

    font-size: clamp(31px, 3.5vw, 43px);
    letter-spacing: -1.5px;
}

.cc-links-header h2 strong {
    color: var(--cc-red);
}

.cc-links-header > p {
    max-width: 400px;
    margin: 0;

    color: var(--cc-text);

    font-size: 14px;
    line-height: 1.7;
}

.cc-link-card {
    min-height: 92px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 17px;

    border: 1px solid var(--cc-border);

    color: var(--cc-heading);
    text-decoration: none;

    transition: .25s ease;
}

.cc-link-card:hover {
    border-color: var(--cc-red);
    transform: translateY(-2px);
}

.cc-link-card > span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--cc-light);

    color: var(--cc-red);

    font-size: 18px;
}

.cc-link-card div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cc-link-card small {
    color: var(--cc-muted);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.cc-link-card strong {
    font-size: 13px;
}

.cc-link-card > i:last-child {
    margin-left: auto;
    color: var(--cc-muted);
}


/* =========================================================
   DISCLAIMER
========================================================= */

.cc-disclaimer {
    padding: 50px 0;
    background: var(--cc-light);
}

.cc-disclaimer-inner {
    display: flex;
    gap: 18px;

    max-width: 900px;
}

.cc-disclaimer-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--cc-border);

    color: var(--cc-red);

    font-size: 18px;
}

.cc-disclaimer strong {
    display: block;

    margin-bottom: 8px;

    color: var(--cc-heading);
    font-size: 13px;
}

.cc-disclaimer p {
    margin: 0 0 6px;

    color: var(--cc-text);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.cc-final-cta {
    padding: 80px 0;

    background: var(--cc-black);
    color: #fff;
}

.cc-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cc-final-eyebrow {
    margin-bottom: 14px;

    color: #a6a6ad;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.cc-final-inner h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.cc-final-inner p {
    margin: 13px 0 0;

    color: #a6a6ad;

    font-size: 14px;
}

.cc-final-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    padding: 15px 22px;

    background: #fff;
    color: var(--cc-black);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: .25s ease;
}

.cc-final-button:hover {
    background: var(--cc-red);
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .cc-hero {
        padding: 80px 0;
    }

    .cc-contact-section {
        padding: 80px 0;
    }

    .cc-side {
        position: static;
    }

    .cc-links-header {
        display: block;
    }

    .cc-links-header > p {
        margin-top: 18px;
    }

    .cc-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 767.98px) {

    .cc-hero {
        padding: 65px 0;
    }

    .cc-hero h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .cc-hero-text {
        font-size: 15px;
    }

    .cc-hero-points {
        flex-direction: column;
        gap: 13px;
    }

    .cc-contact-preview {
        padding: 25px;
    }

    .cc-contact-section {
        padding: 65px 0;
    }

    .cc-form {
        padding: 24px 20px;
    }

    .cc-side-block {
        padding: 25px;
    }

    .cc-links-section {
        padding: 65px 0;
    }

    .cc-link-card {
        min-height: 82px;
    }

    .cc-disclaimer-inner {
        align-items: flex-start;
    }

    .cc-final-cta {
        padding: 60px 0;
    }

    .cc-final-button {
        width: 100%;
        justify-content: center;
    }

}



/* =========================================
   VORTEFIX CREATORHELP
   LEGAL PAGES
   Terms / Privacy / Disclaimer
========================================= */

.legal-page {
    min-height: 100vh;
    background: #f6f8fb;
}

/* =========================================
   LEGAL HERO
========================================= */

.legal-hero {
    position: relative;
    padding: 72px 20px 60px;
    background: linear-gradient(135deg, #111827 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -180px;
    right: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.legal-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: -150px;
    left: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.legal-hero .container {
    position: relative;
    z-index: 1;
    /* max-width: 1050px;
    margin: 0 auto; */
}

/* Badge */

.legal-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    margin-bottom: 17px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

/* Hero Heading */

.legal-hero h1 {
    position: relative;
    margin: 0 0 15px;

    color: #ffffff;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

/* Hero Description */

.legal-hero p {
    position: relative;
    max-width: 760px;
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

/* Last Updated */

.legal-hero .legal-updated {
    margin-top: 13px;

    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   LEGAL CONTENT
========================================= */

.legal-content {
    padding: 55px 20px 85px;
}

/* .legal-content .container {
    max-width: 1050px;
    margin: 0 auto;
} */


/* =========================================
   LEGAL CARD
========================================= */

.legal-card {
    padding: 48px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05),
        0 2px 8px rgba(15, 23, 42, 0.03);
}


/* =========================================
   MAIN HEADINGS
========================================= */

.legal-card h2 {
    margin: 36px 0 13px;

    color: #111827;

    font-size: 22px;
    font-weight: 750;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.legal-card h2:first-child {
    margin-top: 0;
}


/* =========================================
   SUB HEADINGS
========================================= */

.legal-card h3 {
    margin: 27px 0 10px;

    color: #1f2937;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}


/* =========================================
   PARAGRAPHS
========================================= */

.legal-card p {
    margin: 0 0 17px;

    color: #4b5563;

    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.85;
}


/* =========================================
   LISTS
========================================= */

.legal-card ul {
    margin: 8px 0 23px;
    padding-left: 26px;
}

.legal-card li {
    margin-bottom: 9px;

    color: #4b5563;

    font-size: 15.5px;
    line-height: 1.75;
}

.legal-card li:last-child {
    margin-bottom: 0;
}


/* =========================================
   LINKS
========================================= */

.legal-card a {
    color: #2563eb;
    font-weight: 650;
    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.legal-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}


/* =========================================
   IMPORTANT NOTICE
========================================= */

.legal-notice {
    position: relative;

    margin-top: 38px;
    padding: 20px 22px;

    background: #eff6ff;

    border: 1px solid #dbeafe;
    border-left: 4px solid #2563eb;
    border-radius: 10px;

    color: #374151;

    font-size: 14.5px;
    line-height: 1.75;
}

.legal-notice strong {
    color: #1e3a8a;
}


/* =========================================
   OPTIONAL: LEGAL PAGE SEPARATOR
========================================= */

.legal-card hr {
    height: 1px;
    margin: 30px 0;

    border: 0;
    background: #e5e7eb;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .legal-hero {
        padding: 55px 18px 45px;
    }

    .legal-hero h1 {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .legal-hero p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .legal-content {
        padding: 30px 15px 55px;
    }

    .legal-card {
        padding: 30px 22px;

        border-radius: 15px;
    }

    .legal-card h2 {
        margin-top: 30px;
        font-size: 20px;
    }

    .legal-card h3 {
        font-size: 17px;
    }

    .legal-card p,
    .legal-card li {
        font-size: 15px;
        line-height: 1.75;
    }

    .legal-card ul {
        padding-left: 22px;
    }

    .legal-notice {
        padding: 17px 18px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .legal-hero {
        padding: 45px 16px 38px;
    }

    .legal-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .legal-hero h1 {
        font-size: 30px;
    }

    .legal-hero p {
        font-size: 15px;
    }

    .legal-content {
        padding: 22px 10px 45px;
    }

    .legal-card {
        padding: 25px 18px;
        border-radius: 13px;
    }

    .legal-card h2 {
        font-size: 19px;
    }

    .legal-card h3 {
        font-size: 16.5px;
    }

    .legal-card p,
    .legal-card li {
        font-size: 14.5px;
    }
}





/* =========================================================
   LEARNING DETAIL PAGE
========================================================= */

.ld-page {
    min-height: 100vh;
    background: #f6f8fb;
}

.ld-hero {
    position: relative;
    overflow: hidden;
    padding: 55px 0 75px;
    background: linear-gradient(135deg, #111827 0%, #172554 55%, #312e81 100%);
    color: #fff;
}

.ld-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
    font-size: 14px;
}

.ld-breadcrumb a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ld-breadcrumb a:hover {
    color: #fff;
}

.ld-breadcrumb span {
    color: rgba(255,255,255,.35);
}

.ld-breadcrumb strong {
    color: #fff;
}

.ld-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, .75fr);
    gap: 70px;
    align-items: center;
}

.ld-category {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.85);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.ld-category i {
    font-size: 15px;
}

.ld-hero h1 {
    max-width: 850px;
    margin: 22px 0 20px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.ld-excerpt {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 1.75;
}

.ld-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ld-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.8);
    font-size: 13px;
}

.ld-hero-card {
    padding: 34px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 70px rgba(0,0,0,.2);
}

.ld-hero-card-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 17px;
    background: rgba(255,255,255,.12);
    font-size: 28px;
}

.ld-hero-card > span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.ld-hero-card strong {
    display: block;
    font-size: 24px;
    line-height: 1.25;
}

.ld-hero-card p {
    margin: 15px 0 0;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
}


/* CONTENT */

.ld-content {
    padding: 70px 0 100px;
}

.ld-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 55px;
    align-items: start;
}

.ld-article {
    min-width: 0;
    padding: 45px;
    border: 1px solid #e7ebf1;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(15,23,42,.05);
}

.ld-article-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid #edf0f4;
}

.ld-article-top > span {
    color: #4f46e5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
}

.ld-article-top > div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7b8494;
    font-size: 13px;
}

.ld-section {
    display: grid;
    grid-template-columns: 55px minmax(0,1fr);
    gap: 20px;
    padding: 35px 0;
    border-bottom: 1px solid #edf0f4;
}

.ld-section:first-of-type {
    padding-top: 0;
}

.ld-section-number {
    color: #c7cdd7;
    font-size: 15px;
    font-weight: 800;
    padding-top: 7px;
}

.ld-section-body h2 {
    margin: 0 0 18px;
    color: #151b2b;
    font-size: 27px;
    line-height: 1.3;
}

.ld-section-body p {
    margin: 0 0 18px;
    color: #5d6675;
    font-size: 16px;
    line-height: 1.85;
}

.ld-section-body p:last-child {
    margin-bottom: 0;
}

.ld-section-body ul {
    margin: 0;
    padding-left: 22px;
    color: #5d6675;
}

.ld-section-body li {
    margin: 10px 0;
    line-height: 1.7;
}


/* HIGHLIGHT */

.ld-highlight {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    border: 1px solid #e6e8ff;
    border-radius: 14px;
    background: #f7f7ff;
}

.ld-highlight > i {
    color: #4f46e5;
    font-size: 22px;
}

.ld-highlight strong {
    display: block;
    margin-bottom: 6px;
    color: #20243a;
}

.ld-highlight p {
    margin: 0;
    font-size: 14px;
}


/* CHECK LIST */

.ld-check-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.ld-check-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid #edf0f4;
    border-radius: 10px;
    color: #505a69;
}

.ld-check-list i {
    color: #16a34a;
    font-size: 18px;
}


/* IMPORTANT */

.ld-important {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    padding: 25px;
    border-radius: 17px;
    background: #fff8e8;
    border: 1px solid #f4e3b8;
}

.ld-important-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff0c9;
    color: #a16207;
}

.ld-important span,
.ld-security span {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
}

.ld-important h3,
.ld-security h3 {
    margin: 0 0 8px;
    color: #272b36;
    font-size: 18px;
}

.ld-important p,
.ld-security p {
    margin: 0;
    color: #626b78;
    font-size: 14px;
    line-height: 1.7;
}


/* SECURITY */

.ld-security {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    padding: 25px;
    border-radius: 17px;
    background: #f2fbf6;
    border: 1px solid #d7efdf;
}

.ld-security-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #dcf5e5;
    color: #15803d;
}


/* BACK LINKS */

.ld-back {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 35px;
}

.ld-back a,
.ld-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 17px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.ld-back a:first-child {
    color: #596273;
    background: #f4f6f8;
}

.ld-back a:last-child,
.ld-button {
    color: #fff;
    background: #4f46e5;
}


/* SIDEBAR */

.ld-sidebar {
    position: sticky;
    top: 25px;
    display: grid;
    gap: 18px;
}

.ld-sidebar-card {
    padding: 23px;
    border: 1px solid #e7ebf1;
    border-radius: 18px;
    background: #fff;
}

.ld-sidebar-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ld-sidebar-heading span {
    color: #8a93a1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
}

.ld-sidebar-heading i {
    color: #9ba3ae;
}

.ld-toc {
    display: grid;
}

.ld-toc a {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
    color: #596273;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.45;
}

.ld-toc a:last-child {
    border-bottom: 0;
}

.ld-toc a:hover {
    color: #4f46e5;
}

.ld-toc span {
    color: #b2b9c4;
    font-weight: 800;
}

.ld-related {
    padding-bottom: 10px;
}

.ld-related > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #f0f2f5;
    color: #4f5968;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.ld-related > a:last-child {
    border-bottom: 0;
}

.ld-related > a i {
    color: #4f46e5;
    font-size: 18px;
}

.ld-sidebar-note {
    padding: 23px;
    border-radius: 18px;
    background: #eef2ff;
}

.ld-sidebar-note > i {
    display: block;
    margin-bottom: 12px;
    color: #4f46e5;
    font-size: 22px;
}

.ld-sidebar-note strong {
    display: block;
    margin-bottom: 7px;
    color: #30364a;
}

.ld-sidebar-note p {
    margin: 0;
    color: #646d7e;
    font-size: 13px;
    line-height: 1.65;
}


/* NOT FOUND */

.ld-not-found {
    padding: 100px 0;
}

.ld-not-found-card {
    max-width: 650px;
    margin: auto;
    padding: 55px;
    text-align: center;
    border: 1px solid #e7ebf1;
    border-radius: 24px;
    background: #fff;
}

.ld-not-found-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 30px;
}

.ld-not-found-card > span {
    color: #8a93a1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
}

.ld-not-found-card h1 {
    margin: 15px 0;
    color: #171b28;
}

.ld-not-found-card p {
    margin: 0 auto 25px;
    max-width: 500px;
    color: #667080;
    line-height: 1.7;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .ld-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ld-hero-card {
        max-width: 600px;
    }

    .ld-layout {
        grid-template-columns: 1fr;
    }

    .ld-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

}

@media (max-width: 767px) {

    .ld-hero {
        padding: 35px 0 55px;
    }

    .ld-breadcrumb {
        margin-bottom: 30px;
    }

    .ld-hero h1 {
        font-size: 38px;
    }

    .ld-excerpt {
        font-size: 16px;
    }

    .ld-content {
        padding: 40px 0 70px;
    }

    .ld-article {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .ld-article-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .ld-section {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .ld-section-number {
        padding-top: 0;
    }

    .ld-section-body h2 {
        font-size: 23px;
    }

    .ld-sidebar {
        grid-template-columns: 1fr;
    }

    .ld-back {
        flex-direction: column;
    }

    .ld-back a {
        justify-content: center;
    }

    .ld-important,
    .ld-security {
        flex-direction: column;
    }

    .ld-not-found-card {
        padding: 35px 22px;
    }

}





/* =====================================================
   YOUTUBE CHANNEL HIGHLIGHT
===================================================== */

.ch-youtube {
    padding: 90px 0;
    background: #f7f8fa;
}


.ch-youtube-box {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border: 1px solid #e6e8ec;
    border-radius: 28px;
    background: #ffffff;
}


.ch-youtube-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}


.ch-youtube-logo {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;
    background: #ff0000;
    color: #ffffff;

    font-size: 31px;
    flex-shrink: 0;
}


.ch-youtube-brand span {
    display: block;
    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #777f89;
}


.ch-youtube-brand h2 {
    margin: 0;

    font-size: 30px;
    font-weight: 750;
    line-height: 1.2;
    color: #17191c;
}


.ch-youtube-text {
    max-width: 680px;
    margin: 22px 0 25px;

    font-size: 16px;
    line-height: 1.75;
    color: #666d76;
}


.ch-youtube-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}


.ch-youtube-highlight {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 600;
    color: #33383e;
}


.ch-youtube-highlight i {
    font-size: 17px;
}


.ch-youtube-action {
    min-height: 230px;
    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 22px;
    background: #17191c;
    color: #ffffff;
}


.ch-youtube-channel-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 13px;
    background: #ff0000;

    font-size: 23px;
}


.ch-youtube-action small {
    display: block;
    margin-bottom: 5px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;

    opacity: .65;
}


.ch-youtube-action h3 {
    margin: 0 0 22px;

    font-size: 24px;
    font-weight: 700;
}


.ch-btn-youtube {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border-radius: 10px;

    background: #ffffff;
    color: #17191c;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: transform .2s ease,
                background .2s ease;
}


.ch-btn-youtube:hover {
    transform: translateY(-2px);
    background: #f1f1f1;
    color: #17191c;
}


@media (max-width: 991px) {

    .ch-youtube {
        padding: 70px 0;
    }

    .ch-youtube-box {
        padding: 35px;
    }

}


@media (max-width: 575px) {

    .ch-youtube {
        padding: 55px 0;
    }

    .ch-youtube-box {
        padding: 25px;
        border-radius: 22px;
    }

    .ch-youtube-brand {
        align-items: flex-start;
    }

    .ch-youtube-logo {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        font-size: 26px;
    }

    .ch-youtube-brand h2 {
        font-size: 24px;
    }

    .ch-youtube-text {
        font-size: 15px;
    }

    .ch-youtube-highlights {
        flex-direction: column;
        gap: 12px;
    }

    .ch-youtube-action {
        min-height: auto;
        padding: 24px;
    }

}
