/* ==========================================================================
   BELIEVERS CAPITAL — Agency for Content Creators
   Design System & Main Stylesheet
   Tech Stack: Pure CSS3 (No Frameworks)
   ========================================================================== */

:root {
  --primary: #0b1020;
  --primary-light: #151d38;
  --primary-dark: #070a14;
  --blue: #3157ff;
  --blue-2: #5b6cff;
  --blue-light: rgba(49, 87, 255, 0.08);
  --white: #ffffff;
  --background: #f7f8fc;
  --surface: #ffffff;
  --muted: #667085;
  --line: #dfe5f2;
  --line-light: rgba(11, 16, 32, 0.06);
  --accent: #12a56b;
  --accent-light: rgba(18, 165, 107, 0.1);
  --warning: #f59e0b;
  --danger: #ef4444;

  --shadow-sm: 0 4px 12px rgba(11, 16, 32, 0.04);
  --shadow-md: 0 12px 28px rgba(13, 25, 61, 0.07);
  --shadow-soft: 0 18px 42px rgba(13, 25, 61, 0.08);
  --shadow-hover: 0 24px 50px rgba(49, 87, 255, 0.14);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 9999px;

  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;

  --container: min(1200px, calc(100% - 40px));
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, textarea, select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

/* Typography Defaults */
h1, h2, h3, h4, p {
  margin-top: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.25;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Container & Sections */
.container {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(239, 243, 255, 0.4) 0%, rgba(247, 248, 252, 0.8) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin-top: 12px;
}

.section-heading p {
  font-size: 1.12rem;
  margin-top: 10px;
  color: var(--muted);
}

/* Badges & Eyebrows */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(49, 87, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
}

.eyebrow.dark {
  color: var(--primary);
  background: rgba(11, 16, 32, 0.04);
  border-color: rgba(11, 16, 32, 0.08);
}

.eyebrow.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.badge-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 16px;
}

.badge-label.alt {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 14px 24px;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  box-shadow: 0 10px 24px rgba(49, 87, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(49, 87, 255, 0.35);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: rgba(11, 16, 32, 0.1);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(11, 16, 32, 0.12);
  padding: 10px 18px;
  font-size: 0.92rem;
}

.btn-ghost:hover {
  background: rgba(11, 16, 32, 0.04);
  border-color: var(--primary);
}

.light-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.light-btn:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.block-btn {
  width: 100%;
}

/* ==========================================================================
   Premium Top Announcement Bar
   ========================================================================== */

.top-announcement-bar {
  position: relative;
  background: linear-gradient(135deg, #080d1c 0%, #0e1738 50%, #17265a 100%);
  color: var(--white);
  height: 52px;
  display: flex;
  align-items: center;
  overflow: visible;
  border-bottom: 1px solid rgba(53, 189, 246, 0.22);
  box-shadow: 0 4px 18px rgba(8, 13, 28, 0.35);
  z-index: 1002;
}

.top-bar-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(53, 189, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Left: Badge */
.top-bar-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.creator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #e2e8f0;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: liveDotPulse 2s infinite;
}

@keyframes liveDotPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Center: Main Message & Earning Potential */
.top-bar-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1px;
  flex-grow: 1;
}

.top-bar-main-msg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.15;
}

.followers-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 2px 8px;
  border-radius: 5px;
  text-transform: uppercase;
}

.earning-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  outline: none;
}

.earning-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 700;
}

.earning-value {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #35bdf6;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  text-shadow: 0 0 16px rgba(53, 189, 246, 0.4);
}

.disclaimer-star {
  font-size: 14px;
  color: #94a3b8;
  cursor: help;
  padding: 0 1px;
  outline: none;
  transition: color 0.2s ease;
}

.disclaimer-star:hover,
.disclaimer-star:focus {
  color: #35bdf6;
}

.trend-icon {
  font-size: 11.5px;
  color: #35bdf6;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.top-bar-main-msg:hover .trend-icon {
  transform: translate(1px, -1px);
}

.disclaimer-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #080d1c;
  color: #e2e8f0;
  border: 1px solid rgba(53, 189, 246, 0.45);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1020;
}

.disclaimer-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 5px 5px 5px;
  border-style: solid;
  border-color: transparent transparent rgba(53, 189, 246, 0.45) transparent;
}

.earning-wrap:hover .disclaimer-tooltip,
.disclaimer-star:focus + .disclaimer-tooltip,
.earning-wrap:focus-within .disclaimer-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.top-bar-subtext {
  font-size: 9.5px;
  color: rgba(226, 232, 240, 0.7);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.subtext-separator {
  color: #35bdf6;
  font-size: 8px;
  opacity: 0.7;
}

/* Right: CTA Button */
.top-bar-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.top-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #080d1c;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.top-bar-cta .cta-label-short {
  display: none;
}

.cta-arrow {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.top-bar-cta:hover {
  background: #ffffff;
  color: #080d1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(53, 189, 246, 0.45);
}

.top-bar-cta:hover .cta-arrow {
  transform: translateX(2px);
}

/* Glowing Bottom Line */
.top-bar-glow-line {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(53, 189, 246, 0.7) 50%, transparent 100%);
  pointer-events: none;
}

/* Smooth anchor offsets */
.anchor-target {
  display: block;
  position: relative;
  top: -140px;
  visibility: hidden;
  height: 0;
}

#creator-form,
#brand-form,
#join,
#contact {
  scroll-margin-top: 140px;
}

/* Header & Sticky Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 248, 252, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 16, 32, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(11, 16, 32, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
  transition: min-height 0.25s ease;
}

.site-header.scrolled .nav-wrap {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo-mark {
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-word {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.brand-word:last-child {
  color: var(--blue);
}

.brand-tagline {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--primary);
}

.main-nav a {
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line-light);
  box-shadow: var(--shadow-md);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(247, 248, 252, 0.8);
  font-weight: 600;
  color: var(--primary);
}

.mobile-menu a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

/* Hero Section */
.hero {
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.tagline-quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.subhead {
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero-text {
  max-width: 580px;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(18, 165, 107, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(18, 165, 107, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(18, 165, 107, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(18, 165, 107, 0);
  }
}

.trust-line {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 600;
}

/* Hero Visual: High-Fidelity Creator Workspace Scene */
.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-scene {
  position: relative;
  width: min(100%, 540px);
  height: 520px;
  margin-left: auto;
  background: linear-gradient(145deg, #0d1429 0%, #172242 100%);
  border: 1px solid rgba(49, 87, 255, 0.15);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 24px;
}

.studio-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ring-light {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 14px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 60px rgba(49, 87, 255, 0.25);
}

.studio-mic {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 14px;
  height: 50px;
  background: linear-gradient(180deg, #374774, #1b243d);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.studio-mic::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -12px;
  width: 26px;
  height: 26px;
  background: radial-gradient(circle, #5b6cff, #253358);
  border-radius: 50%;
}

/* Visual Laptop */
.visual-laptop {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 380px;
  height: 230px;
  background: #232d4b;
  border-radius: 18px 18px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.visual-laptop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 76%;
  height: 16px;
  border-radius: 0 0 24px 24px;
  background: #11172a;
}

.laptop-screen {
  position: absolute;
  inset: 12px 14px 12px;
  background: #090e1d;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ec4899);
}

.user-info strong {
  display: block;
  font-size: 11px;
  color: var(--white);
}

.user-info small {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}

.status-live {
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
}

.stat-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 70px;
  padding: 6px 4px 0;
  gap: 8px;
}

.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 4px;
}

.bar-col span {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
}

.bar-col small {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-card {
  border-radius: 8px;
  padding: 8px 10px;
}

.mini-card small {
  display: block;
  font-size: 9px;
  opacity: 0.8;
  color: var(--white);
}

.mini-card strong {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.1;
}

.card-blue {
  background: linear-gradient(135deg, rgba(49, 87, 255, 0.4), rgba(49, 87, 255, 0.15));
  border: 1px solid rgba(49, 87, 255, 0.3);
}

.card-green {
  background: linear-gradient(135deg, rgba(18, 165, 107, 0.4), rgba(18, 165, 107, 0.15));
  border: 1px solid rgba(18, 165, 107, 0.3);
}

/* Smartphone Device Mockup */
.visual-phone {
  position: absolute;
  left: 24px;
  top: 50px;
  width: 160px;
  height: 290px;
  background: #11172a;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 3;
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
}

.visual-phone:hover {
  transform: rotate(0deg) scale(1.03);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 5px;
  background: #232d4b;
  border-radius: 99px;
  z-index: 4;
}

.phone-screen {
  position: absolute;
  inset: 6px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1b2646 0%, #0d1326 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px 4px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.reel-preview {
  flex: 1;
  background: radial-gradient(circle at center, #2e3e6b 0%, #151d38 100%);
  border-radius: 16px;
  margin: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.reel-overlay {
  color: var(--white);
}

.sponsored-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.reel-overlay strong {
  display: block;
  font-size: 10px;
  line-height: 1.2;
}

.reel-overlay p {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.7);
  margin: 2px 0 6px;
  line-height: 1.2;
}

.reel-actions {
  display: flex;
  gap: 6px;
  font-size: 8.5px;
  color: var(--white);
  font-weight: 600;
}

/* Camera Lens Badge */
.camera-lens-badge {
  position: absolute;
  right: 32px;
  top: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  z-index: 3;
}

/* Floating Mockup Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  padding: 10px 14px;
  z-index: 4;
  animation: float 4s ease-in-out infinite;
}

.floating-badge .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.green-bg { background: #dcfce7; color: var(--accent); }
.blue-bg { background: #e0e7ff; color: var(--blue); }
.gold-bg { background: #fef3c7; color: #d97706; }

.badge-tag {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--muted);
}

.floating-badge strong {
  display: block;
  font-size: 12px;
  color: var(--primary);
  line-height: 1.2;
}

.badge-match {
  right: 20px;
  top: 96px;
  animation-delay: 0s;
}

.badge-analytics {
  left: 20px;
  bottom: 24px;
  animation-delay: 1.5s;
}

.badge-notification {
  right: 18px;
  bottom: 40px;
  animation-delay: 0.8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Social Proof Strip */
.proof-strip {
  padding: 40px 0 60px;
}

.proof-header {
  text-align: center;
  margin-bottom: 30px;
}

.proof-header h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-top: 10px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 16px;
  gap: 14px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(49, 87, 255, 0.03) 0%, rgba(49, 87, 255, 0.01) 100%);
  border: 1px solid rgba(49, 87, 255, 0.05);
  transition: var(--transition);
}

.proof-item:hover {
  transform: translateY(-3px);
  background: rgba(49, 87, 255, 0.06);
}

.proof-item strong {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-item span {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.proof-item p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* Business Ecosystem Flow Section */
.flow-section {
  padding: 90px 0;
}

.ecosystem-flow {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.flow-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.flow-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.flow-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.flow-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.flow-card p {
  font-size: 0.94rem;
  margin-bottom: 16px;
}

.flow-pill {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
}

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.flow-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
}

.agency-node {
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(49, 87, 255, 0.2);
  width: 100%;
}

.node-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
}

.agency-node small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.node-badge {
  display: inline-block;
  margin-top: 10px;
  background: rgba(18, 165, 107, 0.2);
  border: 1px solid var(--accent);
  color: #34d399;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

.focus-notice-box {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.focus-notice-box strong {
  display: block;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.focus-tags span {
  background: rgba(11, 16, 32, 0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.notice-disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Who We Serve: Dual Feature Cards */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  padding: 44px 38px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 87, 255, 0.2);
  box-shadow: var(--shadow-hover);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 20px;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.98rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}

.card-eligibility-note {
  background: rgba(11, 16, 32, 0.03);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 24px;
}

.card-eligibility-note small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  display: block;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 87, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.service-icon {
  font-size: 26px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.96rem;
  margin: 0;
}

/* Companies & Industries We Serve */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.industry-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.ind-icon {
  font-size: 28px;
}

.ind-title {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--primary);
}

.illustrative-brands-box {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.illustrative-sub {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: -6px;
}

.industry-pill-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 20px;
}

.industry-pill {
  background: rgba(247, 248, 252, 0.85);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pill-title {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.pill-examples {
  font-size: 0.8rem;
  color: var(--muted);
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}

/* How It Works Section */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-card-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 16px;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
}

.step-num {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.process-list strong {
  display: block;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.process-list p {
  margin: 0;
  font-size: 0.92rem;
}

.process-footer-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.process-footer-note p {
  font-size: 0.88rem;
  margin-bottom: 18px;
}

/* Content Formats */
.content-format-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.format-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 87, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.format-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  width: fit-content;
}

.format-badge.instagram { background: #fce7f3; color: #db2777; }
.format-badge.youtube { background: #fee2e2; color: #dc2626; }
.format-badge.facebook { background: #e0e7ff; color: #4338ca; }
.format-badge.demo { background: #fef3c7; color: #b45309; }
.format-badge.explainer { background: #ecfdf5; color: #047857; }
.format-badge.launch { background: #ede9fe; color: #6d28d9; }
.format-badge.edu { background: #e0f2fe; color: #0369a1; }

.format-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.format-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* Why Believers Capital */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.reason-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(49, 87, 255, 0.15);
}

.reason-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.reason-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.reason-card p {
  font-size: 0.94rem;
  margin: 0;
}

/* Earning Potential Section */
.earnings-section {
  padding: 40px 0 80px;
}

.earnings-wrap {
  background: radial-gradient(circle at top right, rgba(49, 87, 255, 0.25) 0%, rgba(11, 16, 32, 0.98) 70%), #0b1020;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 60px 54px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.earnings-copy h2 {
  color: var(--white);
  margin-top: 14px;
}

.earnings-highlight {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #38bdf8;
  margin-bottom: 14px;
}

.earnings-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  max-width: 580px;
  margin-bottom: 24px;
}

.light-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  margin-top: 14px;
}

.earning-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.stat-badge {
  display: inline-block;
  background: rgba(18, 165, 107, 0.3);
  color: #34d399;
  border: 1px solid var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 12px;
}

.earning-stat-card strong {
  display: block;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 6px;
}

.earning-stat-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.earning-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, var(--accent));
  border-radius: 99px;
}

/* Creator Eligibility */
.eligibility-box {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.large-list {
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
  margin-bottom: 30px;
}

.eligibility-note-callout {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.eligibility-note-callout p {
  color: var(--primary);
  font-size: 0.94rem;
  margin: 0;
}

/* Reviews Section (Placeholders with Code Comments) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.3;
  margin-bottom: -10px;
}

.placeholder-quote {
  font-style: italic;
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.person-meta strong {
  display: block;
  font-size: 1.05rem;
  color: var(--primary);
}

.person-meta span {
  font-size: 0.88rem;
  color: var(--muted);
}

.brand-testimonials-wrap {
  margin-top: 60px;
  border-top: 1px solid var(--line-light);
  padding-top: 50px;
}

.narrow-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
}

.brand-card {
  border-left: 3px solid var(--blue);
}

/* FAQ Section */
.faq-container {
  max-width: 880px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-list details[open] {
  border-color: rgba(49, 87, 255, 0.25);
  box-shadow: var(--shadow-md);
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

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

.faq-list summary::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  color: var(--blue);
  transition: transform 0.2s ease;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Final CTA (Dark Premium) */
.final-cta {
  background: linear-gradient(135deg, #070a14 0%, #0d1429 50%, #172242 100%);
  padding: 70px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(49, 87, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.final-copy {
  max-width: 640px;
}

.final-copy h2 {
  color: var(--white);
  margin-top: 14px;
}

.final-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

.final-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* Forms Section */
.forms-section {
  padding: 100px 0;
}

.form-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  box-shadow: var(--shadow-soft);
}

.creator-join-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.creator-join-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10px 0 28px;
}

.join-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(18, 165, 107, 0.12);
  color: var(--accent);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 2px;
}

.join-highlight-item strong {
  display: block;
  font-size: 1.02rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.join-highlight-item p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.creator-join-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.join-badge-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.small-heading {
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 18px;
}

.small-heading h3 {
  margin: 10px 0 6px;
}

.small-heading p {
  font-size: 0.94rem;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

input, textarea {
  border: 1px solid rgba(11, 16, 32, 0.14);
  background: #fbfcfd;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(49, 87, 255, 0.12);
}

.full-span {
  grid-column: 1 / -1;
}

.checkbox-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 24px;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.88rem;
  cursor: pointer;
}

.checkbox-wrap input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.long-btn {
  width: 100%;
}

.form-feedback {
  min-height: 24px;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-feedback.success {
  color: var(--accent);
}

.form-feedback.error {
  color: var(--danger);
}

/* Site Footer */
.site-footer {
  background: #f0f3fb;
  border-top: 1px solid var(--line-light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-desc {
  font-size: 0.92rem;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-nav-col strong,
.footer-social-col strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--blue);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.social-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  margin-top: 36px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.legal-notice {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  max-width: 780px;
}

.footer-bottom small {
  font-size: 0.86rem;
  color: var(--muted);
  white-space: nowrap;
}

/* Floating WhatsApp Widget */
.wa-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
}

.wa-trigger-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.wa-trigger-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

.wa-ping {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.7;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.wa-dropdown {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 310px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.wa-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-dropdown-header {
  background: linear-gradient(135deg, #075e54, #128c7e);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-dropdown-header strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.wa-dropdown-header small {
  font-size: 11px;
  opacity: 0.85;
}

.wa-close {
  margin-left: auto;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  opacity: 0.8;
  padding: 0 4px;
}

.wa-close:hover {
  opacity: 1;
}

.wa-dropdown-body {
  padding: 16px;
}

.wa-dropdown-body p {
  font-size: 12px;
  margin-bottom: 12px;
  color: var(--muted);
}

.wa-option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-light);
  margin-bottom: 10px;
  background: #fbfcfd;
  transition: var(--transition);
}

.wa-option-btn:last-child {
  margin-bottom: 0;
}

.wa-option-btn:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  transform: translateX(3px);
}

.opt-icon {
  font-size: 20px;
}

.wa-option-btn strong {
  display: block;
  font-size: 13px;
  color: var(--primary);
}

.wa-option-btn small {
  font-size: 10.5px;
  color: var(--muted);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 32, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 26px;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 16, 32, 0.05);
}

.modal-close:hover {
  background: rgba(11, 16, 32, 0.1);
  color: var(--primary);
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1140px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .industry-pill-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .content-format-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .main-nav, .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid,
  .ecosystem-flow,
  .split-grid,
  .process-grid,
  .earnings-wrap,
  .form-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .flow-line {
    display: none;
  }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-visual {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-actions, .final-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn, .final-actions .btn {
    width: 100%;
  }
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industry-pill-row {
    grid-template-columns: 1fr;
  }
  .content-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonial-grid, .narrow-grid {
    grid-template-columns: 1fr;
  }
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .large-list {
    grid-template-columns: 1fr;
  }
  .visual-scene {
    height: 440px;
  }
  .visual-laptop {
    width: 290px;
    height: 180px;
  }
  .visual-phone {
    left: 10px;
    width: 130px;
    height: 230px;
  }
  .floating-badge {
    padding: 6px 10px;
  }
  .floating-badge strong {
    font-size: 10px;
  }
  .badge-match {
    top: 70px;
    right: 10px;
  }
  .badge-analytics {
    left: 10px;
    bottom: 16px;
  }
  .badge-notification {
    right: 10px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .nav-wrap {
    min-height: 68px;
  }
  .brand-word {
    font-size: 1rem;
  }
  .brand-tagline {
    font-size: 8px;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .content-format-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .feature-card, .process-card, .form-card, .earnings-wrap, .eligibility-box {
    padding: 24px 20px;
  }
  .wa-dropdown {
    width: calc(100vw - 48px);
    right: 0;
  }

  /* Mobile Top Announcement Bar */
  .top-announcement-bar {
    min-height: 60px;
    padding: 6px 0;
  }
  .top-bar-container {
    gap: 8px;
  }
  .followers-tag {
    font-size: 10.5px;
  }
  .earning-value {
    font-size: 11.5px;
  }
  .top-bar-cta {
    padding: 6px 10px;
    font-size: 10.5px;
  }
}

/* Tablet & Mid-size Top Bar Adjustments */
@media (max-width: 960px) {
  .top-announcement-bar {
    height: 52px;
  }
  .creator-badge {
    padding: 3px 8px;
    font-size: 9.5px;
  }
  .desktop-extra {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-announcement-bar {
    height: auto;
    min-height: 58px;
    padding: 6px 0;
  }
  .top-bar-left {
    display: none;
  }
  .top-bar-subtext {
    display: none;
  }
  .top-bar-container {
    justify-content: space-between;
    gap: 10px;
  }
  .top-bar-center {
    align-items: flex-start;
    text-align: left;
  }
  .top-bar-main-msg {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .followers-tag {
    font-size: 11px;
    padding: 1px 6px;
  }
  .earning-label {
    display: none;
  }
  .earning-value {
    font-size: 12px;
  }
  .top-bar-cta {
    padding: 6px 12px;
    font-size: 11px;
  }
  .top-bar-cta .cta-label-full {
    display: none;
  }
  .top-bar-cta .cta-label-short {
    display: inline;
  }
  .disclaimer-tooltip {
    left: 0;
    transform: none;
    max-width: 250px;
    white-space: normal;
  }
  .disclaimer-tooltip::before {
    left: 20px;
  }
}

/* Accessibility: Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .live-dot {
    animation: none !important;
  }
  .top-bar-cta,
  .trend-icon,
  .cta-arrow {
    transition: none !important;
  }
}

