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

    :root {
      --hc-bg: #f7f8fa;
      --hc-surface: #ffffff;
      --hc-text: #151515;
      --hc-muted: #6b7280;
      --hc-border: #e5e7eb;
      --hc-accent: #e6b541;
      --hc-accent-dark: #d4a52e;
    }

    body {
      font-family: var(--hc-font-sans, "Plus Jakarta Sans", "Segoe UI", sans-serif);
      background: var(--hc-bg);
      color: var(--hc-text);
      min-height: 100vh;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; }

    /* â”€â”€ NAVBAR â”€â”€ */
    .hc-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #ffffff;
      border-bottom: 1px solid #f0f0f0;
      height: 64px;
      display: flex;
      align-items: center;
      padding: 0 32px;
    }

    .hc-nav-inner {
      display: flex;
      align-items: center;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
    }

    .hc-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 20px;
      font-weight: 800;
      color: #151515;
      margin-right: 40px;
      flex-shrink: 0;
    }

    .hc-logo-icon {
      width: 36px;
      height: 36px;
      background: #e6b541;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #151515;
      font-weight: 900;
    }

    .hc-nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
    }

    .hc-nav-link {
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      color: #666;
      transition: background 0.15s, color 0.15s;
    }

    .hc-nav-link:hover { background: #f5f5f5; color: #151515; }

    .hc-nav-link.active {
      background: #151515;
      color: #ffffff;
    }

    /* Dropdown trigger uses underline only when active (not filled black) */
    .hc-nav-link-btn.active {
      background: transparent;
      color: #151515;
      font-weight: 700;
      border-bottom: 2px solid #e6b541;
      border-radius: 0;
      padding-bottom: 6px;
    }

    .hc-nav-link-btn.active:hover {
      background: transparent;
      color: #151515;
    }

    .hc-nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }

    .hc-icon-btn {
      position: relative;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #f5f5f5;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #444;
      transition: background 0.15s;
    }

    .hc-icon-btn:hover { background: #ebebeb; }
    .hc-icon-btn svg { width: 20px; height: 20px; }

    .hc-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      object-fit: cover;
      cursor: pointer;
      border: 2px solid #f0f0f0;
      transition: border-color 0.15s;
    }

    .hc-avatar:hover { border-color: #e6b541; }

    .hc-btn-ghost {
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #444;
      border: 1.5px solid #e8e8e8;
      transition: border-color 0.15s, color 0.15s;
    }

    .hc-btn-ghost:hover { border-color: #151515; color: #151515; }

    .hc-btn-gold {
      padding: 8px 18px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      background: #e6b541;
      color: #151515;
      transition: background 0.15s;
    }

    .hc-btn-gold:hover { background: #d4a52e; }

    /* â”€â”€ LOGO IMAGE â”€â”€ */
    .hc-logo-img {
      height: 34px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    /* â”€â”€ DROPDOWN WRAPPER â”€â”€ */
    .hc-nav-dropdown {
      position: relative;
    }

    .hc-nav-link-btn {
      background: none;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      font-family: inherit;
    }

    .hc-dd-chevron {
      width: 14px;
      height: 14px;
      transition: transform 0.2s;
    }

    .hc-nav-link-btn[aria-expanded="true"] .hc-dd-chevron,
    .hc-dd-chevron.open {
      transform: rotate(180deg);
    }

    /* â”€â”€ DROPDOWN MENU â”€â”€ */
    .hc-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 210px;
      background: #ffffff;
      border: 1px solid #ebebeb;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 6px;
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      transition: opacity 0.15s, transform 0.15s;
    }

    .hc-dropdown-menu.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    /* User dropdown aligns right */
    .hc-user-dropdown {
      left: auto;
      right: 0;
      min-width: 240px;
    }

    .hc-dd-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 12px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      color: #333;
      transition: background 0.12s, color 0.12s;
      white-space: nowrap;
    }

    .hc-dd-item:hover { background: #f5f5f5; color: #151515; }

    .hc-dd-create { color: #c89c20; font-weight: 700; }
    .hc-dd-create:hover { color: #b38a10; background: #fdf6e3; }

    .hc-dd-signout { color: #d9534f; }
    .hc-dd-signout:hover { background: #fff5f5; color: #b52b27; }

    .hc-dd-divider {
      height: 1px;
      background: #f0f0f0;
      margin: 5px 4px;
    }

    /* User dropdown header */
    .hc-dd-user-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px 8px;
    }

    .hc-dd-user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid #f0f0f0;
    }

    .hc-dd-user-name {
      font-size: 14px;
      font-weight: 700;
      color: #151515;
      line-height: 1.3;
    }

    .hc-dd-user-email {
      font-size: 12px;
      color: #999;
      line-height: 1.3;
    }

    /* â”€â”€ COUNTER BADGE â”€â”€ */
    .hc-badge {
      position: absolute;
      top: 2px;
      right: 2px;
      min-width: 18px;
      height: 18px;
      padding: 0 4px;
      border-radius: 9px;
      background: #e6b541;
      color: #151515;
      font-size: 11px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      border: 2px solid #fff;
    }

    .hc-badge-red {
      background: #e53e3e;
      color: #fff;
    }

    /* â”€â”€ AVATAR BUTTON â”€â”€ */
    .hc-avatar-btn {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .hc-user-menu {
      position: relative;
    }

    /* â”€â”€ HERO SECTION â”€â”€ */
    .hc-hero {
      text-align: center;
      padding: 64px 24px 36px;
      background:
        radial-gradient(circle at 10% -20%, rgba(230,181,65,0.2), transparent 35%),
        radial-gradient(circle at 90% -30%, rgba(17,24,39,0.08), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
      border-bottom: 1px solid var(--hc-border);
    }

    .hc-hero h1 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      color: #151515;
      letter-spacing: -0.5px;
      line-height: 1.15;
    }

    .hc-hero-sub {
      margin-top: 10px;
      font-size: 16px;
      color: #888;
    }

    .hc-hero-sub a {
      color: #e6b541;
      font-weight: 600;
    }

    .hc-hero-sub a:hover { text-decoration: underline; }

    /* â”€â”€ SEARCH BAR â”€â”€ */
    .hc-search-wrap {
      max-width: 760px;
      margin: 28px auto 0;
    }

    .hc-hero-search-form { width: 100%; }

    .hc-search {
      display: flex;
      align-items: center;
      background: #ffffff;
      border: 1.5px solid var(--hc-border);
      border-radius: 14px;
      padding: 0 18px;
      height: 52px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .hc-search:focus-within {
      border-color: #e6b541;
      box-shadow: 0 0 0 4px rgba(230,181,65,0.12);
      background: #fff;
    }

    .hc-search svg {
      width: 20px;
      height: 20px;
      color: #aaa;
      flex-shrink: 0;
    }

    .hc-search input {
      flex: 1;
      border: none;
      background: transparent;
      font-size: 15px;
      color: #151515;
      padding: 0 12px;
      outline: none;
    }

    .hc-search input::placeholder { color: #aaa; }

    .hc-search-submit {
      border: none;
      background: var(--hc-accent);
      color: #151515;
      font-size: 13px;
      font-weight: 700;
      border-radius: 10px;
      padding: 9px 14px;
      cursor: pointer;
      transition: background 0.15s;
      flex-shrink: 0;
    }

    .hc-search-submit:hover { background: var(--hc-accent-dark); }

    /* â”€â”€ FILTER PILLS â”€â”€ */
    .hc-filters {
      max-width: 1120px;
      margin: 36px auto 0;
      padding: 0 24px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .hc-pill {
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      border: 1.5px solid #e8e8e8;
      background: #fff;
      color: #444;
      cursor: pointer;
      transition: all 0.15s;
      white-space: nowrap;
    }

    .hc-pill:hover {
      border-color: #e6b541;
      color: #151515;
    }

    .hc-pill.active {
      background: #151515;
      border-color: #151515;
      color: #ffffff;
    }

    /* â”€â”€ SECTION HEADING â”€â”€ */
    .hc-section {
      max-width: 1120px;
      margin: 40px auto 0;
      padding: 0 24px;
    }

    .hc-section-title {
      font-size: 22px;
      font-weight: 700;
      color: #151515;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hc-section-title span {
      font-size: 14px;
      font-weight: 500;
      color: #aaa;
    }

    /* â”€â”€ COMMUNITY GRID â”€â”€ */
    .hc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding-bottom: 60px;
      align-items: start;
    }

    @media (max-width: 1024px) { .hc-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px)  { .hc-grid { grid-template-columns: 1fr; } }

    /* â”€â”€ COMMUNITY CARD â”€â”€ */
    .hc-card {
      background: #fff;
      border: 1.5px solid #f0f0f0;
      border-radius: 16px;
      overflow: visible;
      transition: transform 0.18s, box-shadow 0.18s;
      cursor: pointer;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .hc-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      border-color: #e8e8e8;
    }

    .hc-card-banner {
      position: relative;
      height: 130px;
      background: linear-gradient(135deg, #151515 0%, #3a3a3a 100%);
      overflow: hidden;
      border-radius: 14px 14px 0 0;
      flex-shrink: 0;
    }

    .hc-card-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hc-rank-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #e6b541;
      color: #151515;
      font-size: 11px;
      font-weight: 800;
      padding: 3px 9px;
      border-radius: 20px;
      letter-spacing: 0.3px;
    }

    .hc-privacy-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(21,21,21,0.7);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 20px;
      backdrop-filter: blur(4px);
      text-transform: capitalize;
    }

    .hc-card-avatar-wrap {
      position: absolute;
      bottom: -20px;
      left: 18px;
    }

    .hc-card-avatar {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      border: 3px solid #fff;
      object-fit: cover;
      background: #f0f0f0;
    }

    .hc-card-body {
      padding: 30px 18px 18px;
      flex: 1;
      border-radius: 0 0 14px 14px;
    }

    .hc-card-name {
      font-size: 16px;
      font-weight: 700;
      color: #151515;
      margin-bottom: 5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .hc-card-desc {
      font-size: 13px;
      color: #777;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 39px;
    }

    .hc-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid #f5f5f5;
    }

    .hc-card-members {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      color: #888;
      font-weight: 500;
    }

    .hc-card-members svg {
      width: 15px;
      height: 15px;
      color: #bbb;
    }

    .hc-card-price {
      font-size: 13px;
      font-weight: 700;
      color: #2a9d2a;
      background: #edfaed;
      padding: 3px 10px;
      border-radius: 20px;
    }
    .hc-card-price-paid {
      color: #444;
      background: #f5f5f5;
    }
    .hc-card-joined {
      color: #555 !important;
      background: #f5f5f5 !important;
      font-weight: 600 !important;
    }
    .hc-card-banner-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    }

    .hc-join-btn {
      display: block;
      width: 100%;
      margin-top: 12px;
      padding: 10px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      border: none;
      transition: all 0.15s;
    }

    .hc-join-btn.join {
      background: #151515;
      color: #fff;
    }

    .hc-join-btn.join:hover { background: #2d2d2d; }

    .hc-join-btn.joined {
      background: #f5f5f5;
      color: #888;
      border: 1.5px solid #e8e8e8;
    }

    .hc-join-btn.joined:hover {
      background: #fee;
      border-color: #f99;
      color: #c00;
    }

    .hc-join-btn.signup-join {
      background: #fffbf0;
      color: #c9940d;
      border: 1.5px solid #e6b541;
      font-weight: 700;
    }

    .hc-join-btn.signup-join:hover {
      background: #e6b541;
      color: #151515;
    }

    /* â”€â”€ EMPTY STATE â”€â”€ */
    .hc-empty {
      text-align: center;
      padding: 80px 24px;
      color: #aaa;
      grid-column: 1 / -1;
    }

    .hc-empty-icon {
      font-size: 52px;
      margin-bottom: 16px;
    }

    .hc-empty h3 {
      font-size: 18px;
      font-weight: 700;
      color: #555;
      margin-bottom: 6px;
    }

    .hc-empty p { font-size: 14px; }

    /* â”€â”€ LOAD MORE â”€â”€ */
    .hc-loadmore {
      text-align: center;
      padding: 24px 0 48px;
    }

    .hc-loadmore-btn {
      background: #fff;
      border: 1.5px solid #e8e8e8;
      border-radius: 10px;
      padding: 11px 32px;
      font-size: 14px;
      font-weight: 600;
      color: #444;
      cursor: pointer;
      transition: all 0.15s;
    }

    .hc-loadmore-btn:hover {
      border-color: #e6b541;
      color: #151515;
      background: #fffbf0;
    }

    /* â”€â”€ FOOTER â”€â”€ */
    .hc-footer {
      background: #fafafa;
      border-top: 1px solid #f0f0f0;
      padding: 36px 32px;
    }

    .hc-footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .hc-footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hc-footer-links a {
      font-size: 13px;
      color: #aaa;
      transition: color 0.15s;
    }

    .hc-footer-links a:hover { color: #e6b541; }

    .hc-footer-copy {
      font-size: 13px;
      color: #ccc;
    }

    @media (max-width: 768px) {
      .hc-nav { padding: 0 16px; }
      .hc-logo { margin-right: 16px; }
      .hc-logo-text { display: none; }
      .hc-nav-link { padding: 8px 12px; font-size: 14px; }
    }

    /* â”€â”€ MORE CATEGORIES PILL â”€â”€ */
    .hc-pill-more {
      border-color: #e6b541;
      color: #e6b541;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-weight: 600;
    }

    .hc-pill-more:hover {
      background: #fffbf0;
      border-color: #e6b541;
      color: #c9940d;
    }

    .hc-pill-more .hc-pill-more-chevron {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }

    .hc-pill-more.open .hc-pill-more-chevron {
      transform: rotate(180deg);
    }

    /* â”€â”€ EXTRA CATEGORIES ROW (collapsed by default) â”€â”€ */
    .hc-filters-extra {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
      margin-top: 0;
    }

    .hc-filters-extra.open {
      max-height: 300px;
      opacity: 1;
      margin-top: 8px;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CREATE COMMUNITY MODAL
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    .ccm-overlay {
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(4px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      animation: ccmFadeIn 0.2s ease;
    }
    .ccm-overlay.open { display: flex; }
    @keyframes ccmFadeIn { from { opacity: 0; } to { opacity: 1; } }

    .ccm-dialog {
      background: #f5f5f5;
      border-radius: 20px;
      width: 100%;
      max-width: 720px;
      max-height: 92vh;
      overflow-y: auto;
      box-shadow: 0 24px 80px rgba(0,0,0,0.25);
      position: relative;
      animation: ccmSlideUp 0.25s ease;
    }
    @keyframes ccmSlideUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .ccm-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0,0,0,0.06);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.15s;
    }
    .ccm-close:hover { background: rgba(0,0,0,0.12); }
    .ccm-close svg { width: 18px; height: 18px; color: #555; }

    .ccm-step { display: none; }
    .ccm-step.active { display: block; }

    /* â”€â”€ Step 1: Intro Slider â”€â”€ */
    .ccm-intro {
      padding: 48px 32px 40px;
      text-align: center;
    }

    .ccm-intro-logo {
      height: 36px;
      width: auto;
      margin: 0 auto 24px;
    }

    .ccm-intro h2 {
      font-size: 28px;
      font-weight: 800;
      color: #151515;
      line-height: 1.2;
      margin-bottom: 6px;
    }

    .ccm-intro h3 {
      font-size: 24px;
      font-weight: 700;
      color: #151515;
      margin-bottom: 12px;
    }

    .ccm-intro-sub {
      font-size: 14px;
      color: #888;
      margin-bottom: 32px;
    }

    /* Carousel */
    .ccm-carousel {
      position: relative;
      width: 100%;
      max-width: 500px;
      margin: 0 auto 24px;
      overflow: hidden;
      border-radius: 14px;
    }

    .ccm-carousel-track {
      display: flex;
      transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
    }

    .ccm-slide {
      min-width: 100%;
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #151515, #3a3a3a);
    }

    .ccm-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .ccm-slide-label {
      position: absolute;
      top: 16px;
      right: 16px;
      background: #22c55e;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 8px;
      line-height: 1.4;
      text-align: left;
    }

    .ccm-slide-label strong {
      display: block;
      font-size: 13px;
    }

    .ccm-slide-footer {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ccm-slide-footer img {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      object-fit: cover;
    }

    /* Carousel controls */
    .ccm-carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 32px;
    }

    .ccm-arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid #ddd;
      background: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.15s;
    }
    .ccm-arrow:hover { border-color: #999; }
    .ccm-arrow svg { width: 16px; height: 16px; color: #555; }

    .ccm-dots {
      display: flex;
      gap: 8px;
    }

    .ccm-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #d1d5db;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s;
    }
    .ccm-dot.active { background: #3b82f6; }

    .ccm-cta-btn {
      display: inline-block;
      padding: 16px 48px;
      background: #e6b541;
      color: #151515;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
    }
    .ccm-cta-btn:hover { background: #d4a52e; transform: translateY(-1px); }
    .ccm-cta-btn:active { transform: translateY(0); }

    /* â”€â”€ Step 2: Pricing â”€â”€ */
    .ccm-pricing {
      padding: 40px 24px 36px;
      text-align: center;
    }

    .ccm-pricing h2 {
      font-size: 30px;
      font-weight: 800;
      color: #151515;
      margin-bottom: 20px;
    }

    .ccm-toggle-wrap {
      display: inline-flex;
      align-items: center;
      position: relative;
      margin-bottom: 28px;
    }

    .ccm-toggle {
      display: flex;
      background: #e5e7eb;
      border-radius: 50px;
      padding: 4px;
      position: relative;
    }

    .ccm-toggle-opt {
      padding: 10px 28px;
      font-size: 14px;
      font-weight: 600;
      color: #666;
      border: none;
      background: none;
      cursor: pointer;
      border-radius: 50px;
      transition: color 0.2s, background 0.2s;
      position: relative;
      z-index: 1;
    }
    .ccm-toggle-opt.active {
      background: #fff;
      color: #151515;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }

    .ccm-free-badge {
      position: absolute;
      top: -12px;
      right: -14px;
      background: #166534;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 6px;
      white-space: nowrap;
    }

    .ccm-plans {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 560px;
      margin: 0 auto;
    }

    @media (max-width: 540px) {
      .ccm-plans { grid-template-columns: 1fr; }
    }

    .ccm-plan {
      background: #fff;
      border-radius: 16px;
      padding: 28px 24px;
      text-align: left;
      border: 2px solid transparent;
      transition: border-color 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }
    .ccm-plan:hover, .ccm-plan.selected {
      border-color: #e6b541;
      box-shadow: 0 4px 20px rgba(230,181,65,0.15);
    }

    .ccm-plan-name {
      font-size: 22px;
      font-weight: 800;
      color: #151515;
      display: inline;
    }

    .ccm-plan-price {
      font-size: 14px;
      font-weight: 600;
      color: #666;
    }

    .ccm-plan-features {
      margin: 18px 0 22px;
      list-style: none;
      padding: 0;
    }

    .ccm-plan-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #333;
      padding: 4px 0;
    }

    .ccm-feat-yes { color: #22c55e; font-size: 16px; }
    .ccm-feat-half { color: #9ca3af; font-size: 16px; }
    .ccm-feat-no { color: #d1d5db; font-size: 14px; }

    .ccm-plan-btn {
      display: block;
      width: 100%;
      padding: 12px;
      background: #e6b541;
      color: #151515;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.15s;
    }
    .ccm-plan-btn:hover { background: #d4a52e; }

    /* â”€â”€ Step 3: Create Form â”€â”€ */
    .ccm-create {
      padding: 40px 32px;
      text-align: center;
      background: #fff;
      border-radius: 20px;
    }

    .ccm-create-logo {
      height: 32px;
      width: auto;
      margin: 0 auto 16px;
    }

    .ccm-create h2 {
      font-size: 22px;
      font-weight: 800;
      color: #151515;
      margin-bottom: 6px;
    }

    .ccm-create-sub {
      font-size: 13px;
      color: #888;
      margin-bottom: 24px;
    }
    .ccm-create-sub a {
      color: #3b82f6;
      cursor: pointer;
    }

    .ccm-field {
      margin-bottom: 16px;
      text-align: left;
    }

    .ccm-field label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: #888;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }

    .ccm-input {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid #e5e7eb;
      border-radius: 10px;
      font-size: 15px;
      color: #151515;
      background: #fff;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      font-family: inherit;
    }
    .ccm-input:focus {
      border-color: #e6b541;
      box-shadow: 0 0 0 3px rgba(230,181,65,0.12);
    }

    .ccm-input-help {
      display: flex;
      justify-content: space-between;
      margin-top: 5px;
      font-size: 12px;
      color: #aaa;
    }

    .ccm-select {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid #e5e7eb;
      border-radius: 10px;
      font-size: 15px;
      color: #151515;
      background: #fff;
      outline: none;
      font-family: inherit;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      transition: border-color 0.2s;
    }
    .ccm-select:focus {
      border-color: #e6b541;
    }

    .ccm-submit-btn {
      display: block;
      width: 100%;
      padding: 14px;
      background: #e6b541;
      color: #151515;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.15s, opacity 0.15s;
      margin-top: 20px;
    }
    .ccm-submit-btn:hover { background: #d4a52e; }
    .ccm-submit-btn:disabled {
      background: #e5e7eb;
      color: #aaa;
      cursor: not-allowed;
    }

    .ccm-disclaimer {
      font-size: 11px;
      color: #aaa;
      margin-top: 14px;
      line-height: 1.5;
    }

    .ccm-back-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      color: #888;
      cursor: pointer;
      background: none;
      border: none;
      margin-bottom: 16px;
      transition: color 0.15s;
      font-family: inherit;
    }
    .ccm-back-link:hover { color: #151515; }

    .ccm-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 18px 0;
      font-size: 12px;
      color: #bbb;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .ccm-divider::before, .ccm-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e5e7eb;
    }

    @media (max-width: 600px) {
      .ccm-dialog { border-radius: 14px; }
      .ccm-intro, .ccm-pricing, .ccm-create { padding: 32px 16px; }
      .ccm-intro h2 { font-size: 22px; }
      .ccm-intro h3 { font-size: 20px; }
      .ccm-pricing h2 { font-size: 24px; }
    }

    .hc-logged-subtitle a {
      color: #c48817;
      font-weight: 700;
    }

    .ccm-overlay {
      background: rgba(20, 24, 31, 0.78);
      backdrop-filter: blur(6px);
      padding: 20px;
    }

    .ccm-dialog {
      width: min(820px, calc(100vw - 24px));
      max-height: min(92vh, 900px);
      border-radius: 28px;
      overflow: auto;
      background: #f8f6f2;
      box-shadow: 0 32px 80px rgba(15, 23, 42, 0.28);
    }

    .ccm-close {
      top: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      background: rgba(15, 23, 42, 0.06);
      z-index: 4;
    }

    .ccm-step {
      display: none;
    }

    .ccm-step.active {
      display: block;
    }

    .ccm-intro,
    .ccm-pricing,
    .ccm-create {
      padding: 46px 54px 42px;
    }

    .ccm-intro {
      text-align: center;
    }

    .ccm-intro-logo,
    .ccm-create-logo {
      height: 40px;
      width: auto;
      margin: 0 auto 26px;
      object-fit: contain;
    }

    .ccm-intro h2,
    .ccm-pricing h2,
    .ccm-create h2 {
      margin: 0;
      color: #151515;
      font-size: clamp(38px, 4vw, 54px);
      line-height: 1.04;
      font-weight: 800;
      letter-spacing: -1.4px;
    }

    .ccm-intro h3 {
      margin: 8px 0 0;
      font-size: clamp(22px, 2.3vw, 38px);
      line-height: 1.14;
      font-weight: 800;
      color: #151515;
      letter-spacing: -0.8px;
    }

    .ccm-intro-sub,
    .ccm-create-sub {
      margin: 14px 0 0;
      color: #505762;
      font-size: 18px;
      line-height: 1.55;
    }

    .ccm-carousel {
      margin: 34px auto 0;
      max-width: 680px;
    }

    .ccm-stage {
      position: relative;
      height: 340px;
      overflow: hidden;
    }

    .ccm-slide {
      position: absolute;
      top: 22px;
      left: 50%;
      width: min(100%, 392px);
      transition: transform 0.38s ease, opacity 0.38s ease, filter 0.38s ease;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) scale(0.84);
      filter: blur(8px);
    }

    .ccm-slide.is-active {
      opacity: 1;
      filter: none;
      transform: translateX(-50%) translateY(0) scale(1);
      z-index: 3;
    }

    .ccm-slide.is-prev {
      opacity: 0.45;
      transform: translateX(calc(-50% - 168px)) translateY(34px) scale(0.82);
      z-index: 1;
      filter: blur(1px);
    }

    .ccm-slide.is-next {
      opacity: 0.45;
      transform: translateX(calc(-50% + 168px)) translateY(34px) scale(0.82);
      z-index: 1;
      filter: blur(1px);
    }

    .ccm-slide.is-hidden-left,
    .ccm-slide.is-hidden-right {
      opacity: 0;
      z-index: 0;
    }

    .ccm-slide.is-hidden-left {
      transform: translateX(calc(-50% - 280px)) translateY(56px) scale(0.74);
    }

    .ccm-slide.is-hidden-right {
      transform: translateX(calc(-50% + 280px)) translateY(56px) scale(0.74);
    }

    .ccm-slide-media {
      position: relative;
      min-height: 210px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
      background: #fff;
    }

    .ccm-slide-media img,
    .ccm-slide-fallback {
      width: 100%;
      height: 210px;
      display: block;
      object-fit: cover;
    }

    .ccm-slide-fallback {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px;
      text-align: center;
      color: #101828;
      font-size: 34px;
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -1px;
      overflow: hidden;
    }

    .ccm-slide-fallback-copy {
      position: relative;
      z-index: 1;
      max-width: 280px;
    }

    .ccm-slide-fallback-accent {
      position: absolute;
      left: 16%;
      right: 16%;
      bottom: 42px;
      height: 12px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(255, 221, 87, 0.92), rgba(250, 204, 21, 0.58));
    }

    .ccm-theme-amber .ccm-slide-fallback {
      background: linear-gradient(135deg, #ffe29c 0%, #fef3c7 45%, #ffd7b8 100%);
    }

    .ccm-theme-coral .ccm-slide-fallback {
      background: linear-gradient(135deg, #ffd1ba 0%, #ffe7d9 46%, #fff0d8 100%);
    }

    .ccm-theme-sky .ccm-slide-fallback {
      background: linear-gradient(135deg, #d9efff 0%, #edf7ff 46%, #dbf4ff 100%);
    }

    .ccm-theme-mint .ccm-slide-fallback {
      background: linear-gradient(135deg, #d7ffe7 0%, #ecfff5 46%, #ccfbf1 100%);
    }

    .ccm-theme-violet .ccm-slide-fallback {
      background: linear-gradient(135deg, #efe2ff 0%, #faf5ff 46%, #f7d7ff 100%);
    }

    .ccm-slide-badge {
      position: absolute;
      top: -18px;
      right: -26px;
      display: grid;
      gap: 2px;
      min-width: 170px;
      padding: 12px 16px;
      border-radius: 12px 12px 4px 12px;
      background: #06a353;
      color: #fff;
      box-shadow: 0 18px 34px rgba(6, 163, 83, 0.24);
      text-align: left;
      z-index: 2;
    }

    .ccm-slide-badge strong {
      font-size: 18px;
      line-height: 1.1;
      font-weight: 800;
    }

    .ccm-slide-badge span {
      font-size: 13px;
      line-height: 1.25;
      font-weight: 700;
    }

    .ccm-slide-caption {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 14px auto 0;
      width: calc(100% - 18px);
      padding: 14px 16px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
      text-align: left;
    }

    .ccm-slide-caption strong {
      display: block;
      color: #182230;
      font-size: 15px;
      line-height: 1.2;
    }

    .ccm-slide-caption span {
      display: block;
      color: #667085;
      font-size: 13px;
      line-height: 1.3;
      margin-top: 2px;
    }

    .ccm-slide-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      overflow: hidden;
      flex: 0 0 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #111827, #374151);
      color: #fff;
      font-size: 18px;
      font-weight: 800;
    }

    .ccm-slide-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ccm-carousel-nav {
      margin-top: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
    }

    .ccm-arrow {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      background: transparent;
      color: #8a8f98;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .ccm-arrow:hover {
      color: #2f3440;
      transform: translateY(-1px);
    }

    .ccm-dots {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ccm-dot {
      width: 10px;
      height: 10px;
      border: none;
      border-radius: 999px;
      background: #d0d5dd;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .ccm-dot.active {
      background: #3b82f6;
      transform: scale(1.24);
    }

    .ccm-cta-btn,
    .ccm-plan-btn,
    .ccm-submit-btn {
      border-radius: 8px;
      min-height: 38px;
      background: #f4d37a;
      color: #111827;
      border: none;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.02em;
      transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
    }

    .ccm-cta-btn {
      display: block;
      width: min(360px, 100%);
      margin: 26px auto 0;
      padding: 14px 18px;
      box-shadow: 0 10px 22px rgba(212, 165, 46, 0.2);
    }

    .ccm-plan-btn,
    .ccm-submit-btn {
      width: 100%;
      padding: 14px 18px;
      box-shadow: 0 10px 22px rgba(212, 165, 46, 0.18);
    }

    .ccm-cta-btn:hover,
    .ccm-plan-btn:hover,
    .ccm-submit-btn:hover {
      background: #eac562;
      transform: translateY(-1px);
    }

    .ccm-submit-btn:disabled {
      background: #e4e7ec;
      color: #98a2b3;
      box-shadow: none;
      transform: none;
      cursor: not-allowed;
    }

    .ccm-pricing {
      text-align: center;
    }

    .ccm-toggle-wrap {
      margin-top: 26px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .ccm-toggle {
      display: inline-grid;
      grid-template-columns: repeat(2, minmax(120px, 1fr));
      padding: 4px;
      border-radius: 999px;
      background: #e8eaee;
    }

    .ccm-toggle-opt {
      border: none;
      background: transparent;
      border-radius: 999px;
      padding: 10px 22px;
      font-size: 15px;
      font-weight: 700;
      color: #182230;
    }

    .ccm-toggle-opt.active {
      background: #fff;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
    }

    .ccm-free-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 6px;
      background: #08a552;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
    }

    .ccm-plans {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .ccm-plan {
      text-align: left;
      padding: 26px 30px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #d9d9df;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      cursor: pointer;
    }

    .ccm-plan.selected {
      border-color: #c79b2a;
      box-shadow: 0 18px 38px rgba(199, 155, 42, 0.15);
    }

    .ccm-plan-head {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }

    .ccm-plan-name {
      font-size: 28px;
      font-weight: 800;
      color: #111827;
      letter-spacing: -0.6px;
    }

    .ccm-plan-price {
      font-size: 18px;
      font-weight: 700;
      color: #111827;
    }

    .ccm-plan-features {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .ccm-plan-features li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: center;
      color: #111827;
      font-size: 15px;
      line-height: 1.35;
    }

    .ccm-feat-yes,
    .ccm-feat-half,
    .ccm-feat-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      font-size: 12px;
      font-weight: 900;
    }

    .ccm-feat-yes {
      background: #12b76a;
      color: #fff;
    }

    .ccm-feat-half {
      background: #d0d5dd;
      color: #fff;
    }

    .ccm-feat-no {
      background: #eaecf0;
      color: #98a2b3;
    }

    .ccm-plan-btn {
      margin-top: 20px;
    }

    .ccm-create {
      max-width: 460px;
      margin: 0 auto;
      text-align: center;
      padding-top: 34px;
    }

    .ccm-create h2 {
      font-size: clamp(32px, 4vw, 44px);
      margin-top: 4px;
    }

    .ccm-create-sub {
      font-size: 18px;
      margin-top: 12px;
    }

    .ccm-create-sub a {
      color: #266cf1;
      font-weight: 600;
      text-decoration: none;
    }

    .ccm-back-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0;
      margin: 0 0 18px;
      background: transparent;
      border: none;
      color: #667085;
      font-size: 14px;
      font-weight: 600;
    }

    .ccm-field {
      margin-top: 18px;
      text-align: left;
    }

    .ccm-field label {
      display: block;
      margin-bottom: 8px;
      color: #344054;
      font-size: 13px;
      font-weight: 600;
    }

    .ccm-input {
      width: 100%;
      min-height: 52px;
      padding: 0 15px;
      border-radius: 10px;
      border: 1px solid #cfd4dc;
      background: #fff;
      color: #101828;
      font-size: 15px;
      transition: border-color 0.16s ease, box-shadow 0.16s ease;
    }

    .ccm-input:focus {
      outline: none;
      border-color: #d3a63e;
      box-shadow: 0 0 0 4px rgba(211, 166, 62, 0.12);
    }

    .ccm-input-help {
      margin-top: 8px;
      color: #98a2b3;
      font-size: 12px;
      line-height: 1.3;
    }

    .ccm-input-help-split {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .ccm-payment-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid #d8dde5;
      background: #fff;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    .ccm-card-brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 62px;
      height: 32px;
      border-radius: 8px;
      background: linear-gradient(135deg, #111827, #344054);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .ccm-card-copy strong,
    .ccm-card-copy span {
      display: block;
    }

    .ccm-card-copy strong {
      color: #182230;
      font-size: 14px;
      font-weight: 700;
    }

    .ccm-card-copy span {
      margin-top: 2px;
      color: #667085;
      font-size: 13px;
    }

    .ccm-card-grid {
      margin-top: 18px;
    }

    .ccm-card-grid-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .ccm-form-alert {
      margin-top: 18px;
      padding: 12px 14px;
      border-radius: 10px;
      background: #fff1f2;
      border: 1px solid #fecdd3;
      color: #b42318;
      font-size: 13px;
      font-weight: 600;
      text-align: left;
    }

    .ccm-submit-btn {
      margin-top: 26px;
    }

    .ccm-disclaimer {
      margin: 16px auto 0;
      max-width: 360px;
      color: #667085;
      font-size: 12px;
      line-height: 1.6;
    }

    @media (max-width: 860px) {
      .ccm-dialog {
        width: min(100vw - 18px, 760px);
        border-radius: 22px;
      }

      .ccm-intro,
      .ccm-pricing,
      .ccm-create {
        padding: 38px 24px 30px;
      }

      .ccm-stage {
        height: 304px;
      }

      .ccm-slide {
        width: min(100%, 330px);
      }

      .ccm-slide.is-prev {
        transform: translateX(calc(-50% - 118px)) translateY(30px) scale(0.82);
      }

      .ccm-slide.is-next {
        transform: translateX(calc(-50% + 118px)) translateY(30px) scale(0.82);
      }

      .ccm-plans {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .ccm-overlay {
        padding: 10px;
      }

      .ccm-intro h2,
      .ccm-pricing h2,
      .ccm-create h2 {
        font-size: 24px;
        letter-spacing: -0.7px;
      }

      .ccm-intro h3 {
        font-size: 18px;
      }

      .ccm-intro-sub,
      .ccm-create-sub {
        font-size: 14px;
      }

      .ccm-stage {
        height: 276px;
      }

      .ccm-slide {
        top: 18px;
        width: min(100%, 280px);
      }

      .ccm-slide.is-prev,
      .ccm-slide.is-next,
      .ccm-slide.is-hidden-left,
      .ccm-slide.is-hidden-right {
        opacity: 0;
        transform: translateX(-50%) scale(0.82);
      }

      .ccm-slide-badge {
        right: -8px;
        min-width: 142px;
        padding: 10px 12px;
      }

      .ccm-slide-badge strong {
        font-size: 15px;
      }

      .ccm-slide-badge span {
        font-size: 12px;
      }

      .ccm-slide-media img,
      .ccm-slide-fallback {
        height: 178px;
      }

      .ccm-slide-caption {
        padding: 12px 14px;
      }

      .ccm-card-grid-meta {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }
