/*
 * CreatorFlow Homepage V3
 * Modern design: Linear/Vercel/Stripe inspired
 * White cards, lime accents, one dark section
 */

/* ============================================================================
   SHARED PATTERNS — Containers, headers, badges, buttons
   ========================================================================= */

.cf-hp-bento,
.cf-hp-personas,
.cf-hp-steps,
.cf-hp-features,
.cf-hp-trust,
.cf-hp-social,
.cf-hp-faq {
  padding: 96px 0;
  position: relative;
}

.cf-hp-bento__container,
.cf-hp-personas__container,
.cf-hp-steps__container,
.cf-hp-features__container,
.cf-hp-trust__container,
.cf-hp-social__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section headers */
.cf-hp-bento__header,
.cf-hp-personas__header,
.cf-hp-steps__header,
.cf-hp-features__header,
.cf-hp-social__header,
.cf-hp-faq__header {
  text-align: center;
  margin-bottom: 56px;
}

/* Badges */
.cf-hp-bento__badge,
.cf-hp-personas__badge,
.cf-hp-steps__badge,
.cf-hp-features__badge,
.cf-hp-trust__badge,
.cf-hp-social__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
}

/* Section titles */
.cf-hp-bento__title,
.cf-hp-personas__title,
.cf-hp-steps__title,
.cf-hp-features__title,
.cf-hp-trust__title,
.cf-hp-social__title,
.cf-hp-faq__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #000000;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

/* Subtitles */
.cf-hp-bento__subtitle,
.cf-hp-personas__subtitle,
.cf-hp-steps__subtitle,
.cf-hp-features__subtitle,
.cf-hp-faq__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

/* ============================================================================
   1. BENTO FEATURE GRID — White bg
   ========================================================================= */

.cf-hp-bento {
  background: #ffffff;
}

.cf-hp-bento__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.cf-hp-bento__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cf-hp-bento__card:hover {
  border-color: #d1fe17;
}

/* Hero card — spans first row, taller */
.cf-hp-bento__card--hero {
  grid-column: 1;
  grid-row: 1 / 3;
  border-left: 4px solid #d1fe17;
  display: flex;
  flex-direction: column;
}

.cf-hp-bento__card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cf-hp-bento__card-top {
  flex: 1;
}

.cf-hp-bento__pro-badge {
  display: inline-block;
  background: #d1fe17;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.cf-hp-bento__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.cf-hp-bento__card--hero .cf-hp-bento__card-title {
  font-size: 28px;
}

.cf-hp-bento__card-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.cf-hp-bento__card--hero .cf-hp-bento__card-desc {
  font-size: 16px;
  max-width: 480px;
}

/* Flow visualization */
.cf-hp-bento__flow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.cf-hp-bento__flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.cf-hp-bento__flow-step--result {
  color: #000000;
  font-weight: 700;
  background: rgba(209, 254, 23, 0.1);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(209, 254, 23, 0.3);
}

.cf-hp-bento__flow-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.cf-hp-bento__flow-arrow {
  flex-shrink: 0;
  color: #d1fe17;
}

.cf-hp-bento__flow-arrow svg {
  display: block;
}

/* Tags */
.cf-hp-bento__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.cf-hp-bento__tag {
  font-size: 12px;
  color: #374151;
  padding: 5px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  font-weight: 500;
}

/* CTA */
.cf-hp-bento__cta {
  text-align: center;
}

.cf-hp-bento__cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid #000000;
}

.cf-hp-bento__cta-btn:hover {
  background: #d1fe17;
  color: #000000;
  border-color: #d1fe17;
}

.cf-hp-bento__cta-note {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
}

/* ============================================================================
   2. PERSONAS / USE CASES — Light grey bg
   ========================================================================= */

.cf-hp-personas {
  background: #ffffff;
}

.cf-hp-personas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cf-hp-personas__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-hp-personas__card:hover {
  border-color: #d1fe17;
}

.cf-hp-personas__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(209, 254, 23, 0.08);
  border: 1px solid rgba(209, 254, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.cf-hp-personas__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.cf-hp-personas__card-scenario {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.cf-hp-personas__card-outcome {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}

.cf-hp-personas__card-link {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease;
}

.cf-hp-personas__card-link:hover {
  color: #d1fe17;
}

/* ============================================================================
   3. HOW IT WORKS — Pure black bg (the ONE dark section)
   ========================================================================= */

.cf-hp-steps {
  background: #000000;
  color: #ffffff;
}

.cf-hp-steps__badge {
  background: transparent;
  border-color: #d1fe17;
  color: #d1fe17;
}

.cf-hp-steps__title {
  color: #ffffff;
}

.cf-hp-steps__subtitle {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.cf-hp-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.cf-hp-steps__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.25s ease;
}

.cf-hp-steps__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(209, 254, 23, 0.3);
  transform: translateY(-2px);
}

.cf-hp-steps__number {
  font-size: 48px;
  font-weight: 700;
  color: #d1fe17;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.cf-hp-steps__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.cf-hp-steps__card-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

.cf-hp-steps__cta {
  text-align: center;
}

.cf-hp-steps__cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #d1fe17;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid #d1fe17;
}

.cf-hp-steps__cta-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.cf-hp-steps__cta-note {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================================
   4. POWER FEATURES — White bg (legacy grid, kept as fallback)
   ========================================================================= */

.cf-hp-features {
  background: #ffffff;
}

.cf-hp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.cf-hp-features__card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}

.cf-hp-features__card:hover {
  background: #ffffff;
}

/* Remove bottom border from last row */
.cf-hp-features__card:nth-last-child(-n+3) {
  border-bottom: none;
}

.cf-hp-features__card-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
  width: 40px;
  text-align: center;
}

.cf-hp-features__card-body {
  flex: 1;
  min-width: 0;
}

.cf-hp-features__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cf-hp-features__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.cf-hp-features__pro {
  display: inline-block;
  background: #d1fe17;
  color: #000000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.cf-hp-features__card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================================
   4b. PRODUCT SHOWCASE BENTO — Playground-style feature grid
   ========================================================================= */

.cf-hp-showcase {
  background: #ffffff;
  padding: 96px 0;
}

.cf-hp-showcase__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cf-hp-showcase__header {
  text-align: center;
  margin-bottom: 56px;
}

.cf-hp-showcase__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
}

.cf-hp-showcase__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #000000;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.cf-hp-showcase__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

/* Grid: 3 columns, 2 rows */
.cf-hp-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card base */
.cf-hp-showcase__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cf-hp-showcase__card:hover {
  border-color: #d1fe17;
}

/* Highlight card (testimonial/result) */
.cf-hp-showcase__card--highlight {
  background: #ffffff;
}

/* Card text section */
.cf-hp-showcase__card-text {
  padding: 28px 28px 20px;
  flex-shrink: 0;
}

.cf-hp-showcase__card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
}

.cf-hp-showcase__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.cf-hp-showcase__card-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Card visual section */
.cf-hp-showcase__card-visual {
  flex: 1;
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
}

/* Inline testimonial inside card */
.cf-hp-showcase__quote {
  margin-top: 20px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.cf-hp-showcase__quote-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0 0 10px 0;
  font-style: italic;
}

.cf-hp-showcase__quote-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.cf-hp-showcase__quote-handle {
  font-weight: 700;
  color: #000000;
}

.cf-hp-showcase__quote-followers {
  color: #6b7280;
}

/* ---- Mockup: Automation Flow ---- */
.cf-showcase-flow {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}

.cf-showcase-flow__steps {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cf-showcase-flow__step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}

.cf-showcase-flow__step--result {
  background: rgba(209, 254, 23, 0.08);
  border-color: rgba(209, 254, 23, 0.3);
  font-weight: 600;
  color: #000000;
}

.cf-showcase-flow__step-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.cf-showcase-flow__arrow {
  flex-shrink: 0;
  color: #d1d5db;
  display: flex;
}

/* ---- Mockup: Analytics Metrics ---- */
.cf-showcase-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf-showcase-metrics__row {
  display: flex;
  gap: 12px;
}

.cf-showcase-metrics__card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}

.cf-showcase-metrics__card-label {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 6px 0;
}

.cf-showcase-metrics__card-value {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.cf-showcase-metrics__card-change {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  margin: 0;
}

/* ---- Mockup: Contact List ---- */
.cf-showcase-contacts {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.cf-showcase-contacts__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
}

.cf-showcase-contacts__row:last-child {
  border-bottom: none;
}

.cf-showcase-contacts__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.cf-showcase-contacts__info {
  flex: 1;
  min-width: 0;
}

.cf-showcase-contacts__name {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.cf-showcase-contacts__source {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
}

.cf-showcase-contacts__badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.cf-showcase-contacts__badge--email {
  background: rgba(209, 254, 23, 0.12);
  color: #374151;
}

.cf-showcase-contacts__badge--dm {
  background: #ffffff;
  color: #6b7280;
}

/* ---- Mockup: DM Templates ---- */
.cf-showcase-templates {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cf-showcase-templates__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cf-showcase-templates__item-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cf-showcase-templates__item-body {
  flex: 1;
  min-width: 0;
}

.cf-showcase-templates__item-name {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 3px 0;
}

.cf-showcase-templates__item-preview {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Mockup: Multi-Workspace ---- */
.cf-showcase-workspaces {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cf-showcase-workspaces__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cf-showcase-workspaces__item--active {
  border-color: #d1fe17;
  background: rgba(209, 254, 23, 0.04);
}

.cf-showcase-workspaces__item-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cf-showcase-workspaces__item--active .cf-showcase-workspaces__item-avatar {
  background: rgba(209, 254, 23, 0.15);
}

.cf-showcase-workspaces__item-info {
  flex: 1;
  min-width: 0;
}

.cf-showcase-workspaces__item-name {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.cf-showcase-workspaces__item-meta {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
}

.cf-showcase-workspaces__item-status {
  font-size: 10px;
  font-weight: 600;
  color: #22c55e;
  flex-shrink: 0;
}

/* ---- Mockup: Highlight card features ---- */
.cf-showcase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cf-showcase-features__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.cf-showcase-features__tag-icon {
  font-size: 14px;
}

/* ============================================================================
   5. SAFETY / TRUST — Light grey bg
   ========================================================================= */

.cf-hp-trust {
  background: #ffffff;
}

.cf-hp-trust__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.cf-hp-trust__content {
  min-width: 0;
}

.cf-hp-trust__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
}

.cf-hp-trust__title {
  margin-bottom: 16px;
}

.cf-hp-trust__copy {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.cf-hp-trust__checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-hp-trust__check {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cf-hp-trust__check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #d1fe17;
}

.cf-hp-trust__check span {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
}

.cf-hp-trust__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.cf-hp-trust__badge-img {
  max-width: 180px;
  width: 100%;
  height: auto;
}

.cf-hp-trust__badge-label {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

/* ============================================================================
   6. TESTIMONIALS — White bg
   ========================================================================= */

.cf-hp-social {
  background: #ffffff;
}

.cf-hp-social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cf-hp-social__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cf-hp-social__card:hover {
  border-color: #d1fe17;
}

.cf-hp-social__quote-mark {
  position: absolute;
  top: 24px;
  right: 24px;
}

.cf-hp-social__quote-mark svg {
  width: 32px;
  height: 32px;
}

.cf-hp-social__quote {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

.cf-hp-social__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.cf-hp-social__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  object-fit: cover;
  flex-shrink: 0;
}

.cf-hp-social__info {
  flex: 1;
  min-width: 0;
}

.cf-hp-social__handle {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2px;
}

.cf-hp-social__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}

.cf-hp-social__niche,
.cf-hp-social__followers {
  margin: 0;
}

.cf-hp-social__dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d1d5db;
}

/* ============================================================================
   7. FAQ — Light grey bg
   ========================================================================= */

.cf-hp-faq {
  background: #ffffff;
}

.cf-hp-faq__container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.cf-hp-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.cf-hp-faq__list {
  display: flex;
  flex-direction: column;
}

.cf-hp-faq__item {
  border-bottom: 1px solid #e5e7eb;
}

.cf-hp-faq__item:last-child {
  border-bottom: none;
}

.cf-hp-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.cf-hp-faq__question::-webkit-details-marker {
  display: none;
}

.cf-hp-faq__question::marker {
  display: none;
  content: '';
}

.cf-hp-faq__question:hover {
  color: #374151;
}

.cf-hp-faq__question span {
  flex: 1;
}

.cf-hp-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #6b7280;
}

.cf-hp-faq__item[open] .cf-hp-faq__icon {
  transform: rotate(180deg);
}

.cf-hp-faq__answer {
  padding: 0 0 20px 0;
}

.cf-hp-faq__answer p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

.cf-hp-faq__updated {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
}

/* ============================================================================
   RESPONSIVE — Tablet (1024px)
   ========================================================================= */

@media (max-width: 1024px) {
  .cf-hp-bento,
  .cf-hp-personas,
  .cf-hp-steps,
  .cf-hp-features,
  .cf-hp-trust,
  .cf-hp-social,
  .cf-hp-faq,
  .cf-hp-showcase {
    padding: 72px 0;
  }

  .cf-hp-bento__header,
  .cf-hp-personas__header,
  .cf-hp-steps__header,
  .cf-hp-features__header,
  .cf-hp-social__header,
  .cf-hp-faq__header,
  .cf-hp-showcase__header {
    margin-bottom: 40px;
  }

  .cf-hp-bento__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cf-hp-bento__card--hero {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .cf-hp-personas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-hp-steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-hp-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-hp-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-hp-social__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-hp-trust__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================================
   RESPONSIVE — Small tablet (768px)
   ========================================================================= */

@media (max-width: 768px) {
  .cf-hp-bento__card,
  .cf-hp-personas__card,
  .cf-hp-steps__card,
  .cf-hp-social__card {
    padding: 24px;
  }

  .cf-hp-features__card {
    padding: 20px 16px;
  }

  .cf-hp-showcase__card-text {
    padding: 24px 24px 16px;
  }

  .cf-hp-showcase__card-visual {
    padding: 0 24px 24px;
    min-height: 140px;
  }

  .cf-hp-trust__visual {
    padding: 32px;
  }
}

/* ============================================================================
   RESPONSIVE — Mobile (640px)
   ========================================================================= */

@media (max-width: 640px) {
  .cf-hp-bento,
  .cf-hp-personas,
  .cf-hp-steps,
  .cf-hp-features,
  .cf-hp-trust,
  .cf-hp-social,
  .cf-hp-faq,
  .cf-hp-showcase {
    padding: 48px 0;
  }

  .cf-hp-bento__container,
  .cf-hp-personas__container,
  .cf-hp-steps__container,
  .cf-hp-features__container,
  .cf-hp-social__container,
  .cf-hp-showcase__container {
    padding: 0 16px;
  }

  .cf-hp-bento__header,
  .cf-hp-personas__header,
  .cf-hp-steps__header,
  .cf-hp-features__header,
  .cf-hp-social__header,
  .cf-hp-faq__header,
  .cf-hp-showcase__header {
    margin-bottom: 32px;
  }

  .cf-hp-bento__grid,
  .cf-hp-personas__grid,
  .cf-hp-steps__grid,
  .cf-hp-features__grid,
  .cf-hp-social__grid,
  .cf-hp-showcase__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cf-showcase-flow__steps {
    flex-direction: column;
  }

  .cf-showcase-flow__arrow {
    transform: rotate(90deg);
  }

  .cf-hp-bento__card--hero {
    grid-column: 1;
    grid-row: auto;
    border-left-width: 3px;
  }

  .cf-hp-bento__flow {
    flex-direction: column;
    gap: 12px;
  }

  .cf-hp-bento__flow-arrow {
    transform: rotate(90deg);
  }

  .cf-hp-bento__flow-step {
    width: 100%;
    min-width: 0;
  }

  .cf-hp-features__card {
    flex-direction: column;
    gap: 12px;
  }

  .cf-hp-features__card:nth-last-child(-n+3) {
    border-bottom: 1px solid #f3f4f6;
  }

  .cf-hp-features__card:last-child {
    border-bottom: none;
  }

  .cf-hp-trust__container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  .cf-hp-trust__visual {
    order: -1;
    padding: 24px;
  }

  .cf-hp-faq__container {
    padding: 0 16px;
  }

  .cf-hp-faq__question {
    font-size: 15px;
    padding: 16px 0;
  }

  .cf-hp-faq__answer p {
    font-size: 14px;
  }

  .cf-hp-bento__cta-btn,
  .cf-hp-steps__cta-btn {
    display: block;
    text-align: center;
  }
}

/* ============================================================================
   RESPONSIVE — Extra small (480px)
   ========================================================================= */

@media (max-width: 480px) {
  .cf-hp-bento__card-title {
    font-size: 18px;
  }

  .cf-hp-bento__card--hero .cf-hp-bento__card-title {
    font-size: 22px;
  }

  .cf-hp-steps__number {
    font-size: 40px;
  }

  .cf-hp-steps__card-title {
    font-size: 18px;
  }

  .cf-hp-personas__card-title {
    font-size: 16px;
  }

  .cf-hp-features__card-icon {
    font-size: 24px;
  }
}
