
/* ============ Content Factory styles ============ */

/* HERO with side video columns */
.cf-hero {
  position: relative;
  padding: clamp(80px, 6vw, 112px) 0 64px;
  overflow: hidden;
  isolation: isolate;
}

/* Side video columns — absolutely positioned outside container */
.cf-side-videos {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.cf-side-videos-left { left: 0; }
.cf-side-videos-right { right: 0; }

@media (max-width: 1280px) {
  .cf-side-videos { width: 160px; }
}
@media (max-width: 1024px) {
  .cf-side-videos { display: none; }
}

.cf-vid-track-up,
.cf-vid-track-down {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px;
  will-change: transform;
}
.cf-vid-track-up { animation: cf-scroll-vert-up 60s linear infinite; }
.cf-vid-track-down { animation: cf-scroll-vert-down 65s linear infinite; }
@keyframes cf-scroll-vert-up { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes cf-scroll-vert-down { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } }

.cf-vid-card-side {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(56,65,87,0.08);
  background: #f5f5f5;
}
.cf-vid-card-side video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Container above the side columns */
.cf-hero .container { position: relative; z-index: 2; }

/* Hero text */
.cf-hero-eyebrow { text-align: center; margin-bottom: 18px; }
.cf-studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(119,126,245,0.10);
  border: 1px solid var(--primary-light);
  color: var(--primary-pressed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cf-studio-badge svg { width: 12px; height: 12px; color: var(--primary); }

.cf-hero-h1 {
  font-size: 52px;
  line-height: 1.06;
  font-weight: 800;
  color: #0c1230;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto 14px;
  max-width: 820px;
}
.cf-hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #777EF5 0%, #A7ABF9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1024px) { .cf-hero-h1 { font-size: 44px; } }
@media (max-width: 768px) { .cf-hero-h1 { font-size: 32px; } }

.cf-hero-sub {
  font-size: 16px;
  line-height: 1.5;
  color: #4b5563;
  text-align: center;
  margin: 0 auto 24px;
  max-width: 640px;
}

/* ========== UGC STUDIO BLOCK — compact, matches ai-crm composer proportions ========== */
.cf-studio-block {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  max-width: 765px;
  margin: 0 auto 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(167,171,249,0.15) inset,
    0 12px 36px rgba(56, 65, 87, 0.10),
    0 3px 10px rgba(56, 65, 87, 0.05);
}
@media (max-width: 768px) {
  .cf-studio-block { grid-template-columns: 1fr; padding: 8px; gap: 10px; }
}

.cf-studio-tabs { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 768px) { .cf-studio-tabs { flex-direction: row; gap: 6px; } }
.cf-studio-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  transition: all 0.2s;
  flex: 1;
  min-height: 62px;
}
.cf-studio-tab:hover { border-color: var(--primary-light); color: var(--primary-pressed); }
.cf-studio-tab-active {
  background: rgba(119,126,245,0.08);
  border-color: var(--primary);
  color: var(--primary-pressed);
  box-shadow: 0 0 0 1px var(--primary);
}
.cf-studio-tab-icon { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; }
.cf-studio-tab-icon svg { width: 100%; height: 100%; }
.cf-studio-tab-active .cf-studio-tab-icon { color: var(--primary); }

.cf-studio-main { display: flex; flex-direction: column; gap: 10px; min-width: 0; padding: 4px 6px 0; }
.cf-studio-textarea {
  width: 100%;
  min-height: 38px;
  max-height: 120px;
  padding: 4px 0;
  border: none;
  background: transparent;
  outline: none;
  resize: none;
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 1.45;
  color: #0c1230;
}
.cf-studio-textarea::placeholder { color: #9ca3af; }

.cf-studio-attach-row { display: flex; gap: 6px; flex-wrap: wrap; }
.cf-studio-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: #0c1230;
  transition: border-color 0.2s, background 0.2s;
}
.cf-studio-chip:hover { border-color: var(--primary-light); background: rgba(119,126,245,0.04); }
.cf-studio-chip svg { width: 12px; height: 12px; color: var(--primary); }

.cf-studio-bottom { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-top: 2px; }
.cf-studio-options { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.cf-studio-option {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 600;
  color: #0c1230;
  transition: border-color 0.2s, background 0.2s;
}
.cf-studio-option:hover { border-color: var(--primary-light); background: rgba(119,126,245,0.04); }
.cf-studio-option svg { width: 12px; height: 12px; color: var(--primary); }
.cf-studio-option .cf-chev { width: 9px; height: 9px; color: #9ca3af; opacity: 0.7; }

.cf-studio-generate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 13px;
  background: linear-gradient(135deg, var(--primary) 0%, #8b91f9 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-primary);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.cf-studio-generate:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(119,126,245,0.4); }
.cf-studio-generate svg { width: 13px; height: 13px; }
.cf-credit-badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 7px;
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  margin-left: 2px;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .cf-studio-bottom { flex-direction: column; align-items: stretch; }
  .cf-studio-generate { justify-content: center; }
}

/* 9 squares grid — match ai-crm proportions exactly */
.cf-agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 765px;
  margin: 12px auto 0;
}
.cf-agents-grid .agent-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1f36;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  line-height: 1.3;
  transition: all 0.2s;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 4px 14px rgba(56, 65, 87, 0.05);
}
.cf-agents-grid .agent-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(56, 65, 87, 0.08); border-color: var(--primary-light); }
.cf-agents-grid .ap-icon { display: inline-flex; width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.cf-agents-grid .ap-icon svg { width: 100%; height: 100%; }

/* Mobile horizontal video carousel — base styles (hidden by default, shown on mobile via media query below) */
.cf-mobile-video-strip {
  display: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 16px 12px;
  margin: 12px -16px 0;
}
.cf-mobile-video-strip::-webkit-scrollbar { display: none; }
.cf-mobile-video-strip-inner {
  display: flex;
  gap: 10px;
  width: max-content;
}
.cf-mobile-vid {
  width: 158px;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(56, 65, 87, 0.08);
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #f5f5f5;
}
.cf-mobile-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== MOBILE LAYOUT (<768px): single-row input + video carousel ===== */
@media (max-width: 768px) {
  /* Tighter hero spacing — videos visible above the fold */
  .cf-hero { padding: 20px 0 24px; overflow: visible; }
  .cf-hero-eyebrow { margin-bottom: 10px; }
  .cf-studio-badge { padding: 5px 10px; font-size: 10px; letter-spacing: 0.12em; }
  .cf-hero-h1 { font-size: 28px; margin-bottom: 8px; line-height: 1.1; }
  .cf-hero-sub { font-size: 13.5px; margin-bottom: 14px; max-width: 100%; }

  /* Studio block collapses to single-row input — like a search bar */
  .cf-studio-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 5px 5px 16px;
    gap: 6px;
    border-radius: 999px;
    margin-bottom: 0;
  }
  .cf-studio-tabs { display: none !important; }
  .cf-studio-main {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    min-width: 0;
  }
  .cf-studio-textarea {
    height: 36px;
    min-height: 36px;
    max-height: 36px;
    padding: 8px 0;
    font-size: 13.5px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
  }
  .cf-studio-attach-row { display: none !important; }
  .cf-studio-bottom { display: contents; }
  .cf-studio-options { display: none !important; }
  .cf-studio-generate {
    padding: 8px 14px 8px 12px;
    font-size: 12.5px;
    gap: 5px;
    flex-shrink: 0;
  }
  .cf-studio-generate svg { width: 12px; height: 12px; }
  .cf-credit-badge { display: none; }

  /* Show only first 2 pills on mobile in 2-column row, hide rest */
  .cf-agents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
    margin: 14px 0 0;
  }
  .cf-agents-grid .agent-pill:nth-child(n+3) { display: none; }
  .cf-agents-grid .agent-pill {
    padding: 13px 14px;
    font-size: 12.5px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.9);
  }
  .cf-agents-grid .ap-icon { width: 17px; height: 17px; }

  /* Video carousel visible immediately under buttons */
  .cf-mobile-video-strip { display: block; }
}

/* HORIZONTAL VIDEO LANES */
.cf-lanes-section {
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cf-lanes-section { display: none; }
}
.cf-lanes-section::before,
.cf-lanes-section::after {
  content: '';
  position: absolute;
  top: 60px;
  bottom: 30px;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.cf-lanes-section::before { left: 0; background: linear-gradient(to right, #fff 0%, transparent 100%); }
.cf-lanes-section::after { right: 0; background: linear-gradient(to left, #fff 0%, transparent 100%); }

.cf-lane {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 14px;
}
.cf-lane:last-child { margin-bottom: 0; }
.cf-lane-track {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  will-change: transform;
}
.cf-lane-left .cf-lane-track { animation: cf-scroll-horiz-left 80s linear infinite; }
.cf-lane-right .cf-lane-track { animation: cf-scroll-horiz-right 90s linear infinite; }
@keyframes cf-scroll-horiz-left { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }
@keyframes cf-scroll-horiz-right { 0% { transform: translateX(-33.333%); } 100% { transform: translateX(0); } }

.cf-vid-card-lane {
  width: 200px;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(56,65,87,0.08);
  background: #f5f5f5;
  flex-shrink: 0;
}
.cf-vid-card-lane video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .cf-vid-card-lane { width: 140px; height: 200px; border-radius: 14px; }
}

/* SHARED SECTION STYLES */
.cf-section { padding: 80px 0; position: relative; }
.cf-section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.cf-section-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--primary-pressed); text-transform: uppercase; margin-bottom: 14px; }
.cf-section-title { font-size: 42px; line-height: 1.08; font-weight: 800; color: #0c1230; margin-bottom: 14px; letter-spacing: -0.022em; }
.cf-section-title em { font-style: normal; color: var(--primary); }
.cf-section-sub { font-size: 17px; line-height: 1.55; color: #4b5563; }
@media (max-width: 768px) { .cf-section-title { font-size: 30px; } .cf-section-sub { font-size: 15px; } .cf-section { padding: 60px 0; } }

/* CAPABILITIES CLASSIFICATION GRID */
.cf-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .cf-caps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cf-caps-grid { grid-template-columns: 1fr; } }
.cf-cap-card {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.cf-cap-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.cf-cap-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  color: var(--primary);
  background: rgba(119,126,245,0.1);
  border-radius: 12px;
  padding: 11px;
  flex-shrink: 0;
}
.cf-cap-icon svg { width: 100%; height: 100%; }
.cf-cap-info { flex: 1; min-width: 0; }
.cf-cap-name { font-size: 15px; font-weight: 800; color: #0c1230; margin: 0 0 4px; line-height: 1.25; letter-spacing: -0.01em; }
.cf-cap-desc { font-size: 13px; line-height: 1.5; color: #4b5563; margin: 0; }

/* PIPELINE */
.cf-pipeline { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; max-width: 1180px; margin: 0 auto; }
.cf-pipe-step {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  min-width: 120px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.cf-pipe-step:hover { transform: translateY(-2px); }
.cf-pipe-icon { display: inline-flex; width: 36px; height: 36px; color: var(--primary); margin-bottom: 8px; padding: 8px; background: rgba(119,126,245,0.08); border-radius: 10px; }
.cf-pipe-icon svg { width: 100%; height: 100%; }
.cf-pipe-title { font-size: 13px; font-weight: 700; color: #0c1230; margin-bottom: 3px; }
.cf-pipe-desc { font-size: 11px; color: #6b7280; }
.cf-pipe-arrow { display: inline-flex; width: 18px; height: 18px; color: var(--primary-light); }
.cf-pipe-arrow svg { width: 100%; height: 100%; }
@media (max-width: 768px) { .cf-pipe-arrow { display: none; } .cf-pipeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; } .cf-pipe-step { min-width: 0; } }

.cf-bridge {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 28px;
  max-width: 1180px;
  margin: 36px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.cf-bridge-icon { display: inline-flex; width: 32px; height: 32px; color: var(--primary); flex-shrink: 0; padding: 7px; background: rgba(119,126,245,0.1); border-radius: 10px; }
.cf-bridge-icon svg { width: 100%; height: 100%; }
.cf-bridge-text { flex: 1; font-size: 14px; line-height: 1.55; color: #1a1f36; }
.cf-bridge-text strong { color: var(--primary-pressed); font-weight: 700; }

/* AGENTS */
.cf-agents-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 14px; max-width: 1180px; margin: 0 auto; }
.cf-agent-card { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 18px; padding: 18px; display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.cf-agent-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.cf-agent-photo { width: 52px; height: 52px; border-radius: 14px; overflow: hidden; flex-shrink: 0; border: 2px solid var(--primary-light); }
.cf-agent-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-agent-info { flex: 1; min-width: 0; }
.cf-agent-name { font-size: 14px; font-weight: 700; color: #0c1230; margin-bottom: 4px; line-height: 1.25; }
.cf-agent-desc { font-size: 12px; line-height: 1.5; color: #6b7280; }
.cf-agent-status { display: flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: #22c55e; flex-shrink: 0; }
.cf-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.6); animation: cf-pulse 2s ease infinite; }
@keyframes cf-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Platform / Skill grids */
.cf-platforms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; max-width: 1180px; margin: 0 auto; }
.cf-platform-card { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-xs); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.cf-platform-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.cf-platform-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: var(--primary); background: rgba(119,126,245,0.08); border-radius: 10px; flex-shrink: 0; padding: 8px; }
.cf-platform-icon svg { width: 100%; height: 100%; }
.cf-platform-name { font-size: 13px; font-weight: 600; color: #0c1230; }

.cf-skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 10px; max-width: 1180px; margin: 0 auto; }
.cf-skill-card { background: rgba(255,255,255,0.96); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-xs); transition: transform 0.2s, border-color 0.2s; }
.cf-skill-card:hover { transform: translateY(-1px); border-color: var(--primary-light); }
.cf-skill-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; color: var(--primary); background: rgba(119,126,245,0.08); border-radius: 8px; flex-shrink: 0; padding: 6px; }
.cf-skill-icon svg { width: 100%; height: 100%; }
.cf-skill-name { font-size: 13px; color: #1a1f36; line-height: 1.4; }

/* CTA */
.cf-cta { background: linear-gradient(135deg, rgba(119,126,245,0.08) 0%, rgba(167,171,249,0.04) 100%); border: 1px solid var(--primary-light); border-radius: 32px; padding: 60px 40px; text-align: center; max-width: 980px; margin: 60px auto; }
.cf-cta h2 { font-size: 38px; font-weight: 800; color: #0c1230; margin-bottom: 14px; letter-spacing: -0.025em; }
.cf-cta h2 em { font-style: normal; color: var(--primary); }
.cf-cta p { font-size: 16px; color: #4b5563; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cf-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cf-cta-btn-primary { background: var(--primary); color: #fff; padding: 14px 28px; border-radius: 999px; border: none; font-weight: 700; font-size: 15px; cursor: pointer; box-shadow: var(--shadow-primary); transition: transform 0.2s, box-shadow 0.2s; font-family: var(--font); }
.cf-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(119,126,245,0.4); }
.cf-cta-btn-ghost { background: rgba(255,255,255,0.96); color: var(--primary-pressed); padding: 14px 28px; border-radius: 999px; border: 1px solid var(--primary-light); font-weight: 700; font-size: 15px; cursor: pointer; transition: background 0.2s; font-family: var(--font); }
.cf-cta-btn-ghost:hover { background: rgba(119,126,245,0.06); }
@media (max-width: 768px) { .cf-cta { padding: 40px 24px; } .cf-cta h2 { font-size: 26px; } }
