/* ============================================
   BORROWED AUDIENCE METHOD — LANDING PAGE CSS
   
   TARGET MARKET VARIABLES (edit to duplicate)
   ============================================ */
:root {
  /* === BRAND COLORS === */
  --color-bg:        #FFFFFF;
  --color-surface:   #F0F5FA;
  --color-surface-2: #E4ECF4;
  --color-border:    #D0DAE8;
  --color-text:      #2A3A4D;
  --color-text-dim:  #5A6E85;
  --color-accent:    #0093FF;
  --color-accent-2:  #0080E0;
  --color-cta:       #0093FF;
  --color-cta-hover: #0080E0;
  --color-cta-text:  #FFFFFF;
  --color-proof:     #4ADE80;
  --color-white:     #08182F;
  --color-urgent:    #EF4444;

  /* === TYPOGRAPHY === */
  --font-display: 'DM Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* === SPACING === */
  --section-pad: clamp(60px, 10vw, 120px);
  --side-pad:    clamp(20px, 5vw, 40px);
  --max-width:   1100px;
  --max-width-main:   920px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
section {
  padding: var(--section-pad) 0;
}
.section-border {
  border-top: 1px solid var(--color-border);
}

.container-main {
  max-width: var(--max-width-main);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
section {
  padding: var(--section-pad) 0;
}
.section-border {
  border-top: 1px solid var(--color-border);
}

/* Animations disabled for performance */

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.hero {
  padding: 48px 0 40px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 80% 0%, #EEF5FF 0%, #FFFFFF 80%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0093FF0F 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid #0093FF40;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  max-width: 92vw;
  animation: fadeDown 0.8s ease both;
}
@media (max-width: 420px) {
  .hero-badge {
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    padding: 7px 16px;
  }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  color: var(--color-accent);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 3.5vw, 1.1875rem);
  color: var(--color-text-dim);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeUp 0.8s 0.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === VIDEO EMBED === */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  margin-bottom: 12px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.video-wrapper iframe,
.video-wrapper .video-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  transition: background 0.3s;
}
.video-placeholder:hover {
  background: linear-gradient(135deg, var(--color-surface-2) 0%, #D0DAE8 100%);
}
.play-btn {
  width: 72px; height: 72px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 0 0 #0093FF4D;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 #0093FF59; }
  70%  { box-shadow: 0 0 0 18px #0093FF00; }
  100% { box-shadow: 0 0 0 0 #0093FF00; }
}
.video-placeholder:hover .play-btn {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 0 12px #0093FF1A;
}
.play-btn svg {
  width: 28px; height: 28px;
  fill: var(--color-bg);
  margin-left: 3px;
}
.play-text {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.hero-note {
  font-size: 0.8125rem;
  color: var(--color-text-dim);
  animation: fadeUp 0.8s 0.4s ease both;
}

/* ============================================
   TRUST BAR (below hero)
   ============================================ */
.trust-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  text-align: center;
  animation: fadeUp 0.8s 0.5s ease both;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
  white-space: nowrap;
}
.trust-item .trust-icon {
  font-size: 1rem;
}
.trust-item strong {
  color: var(--color-text);
  font-weight: 600;
}
.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--color-border);
}
.trust-as-seen-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  white-space: nowrap;
}
.trust-bar .seen-logo {
  padding: 6px 14px;
  font-size: 0.75rem;
}
@media (max-width: 480px) {
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 16px; }
}

/* ============================================
   SECTION 2 — THE PROBLEM
   ============================================ */
.problem {
  background: var(--color-surface);
}
.problem-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 36px;
}
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  line-height: 1.55;
}
.pain-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: #0093FF14;
  border: 1px solid #0093FF26;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 0.875rem;
}

/* ============================================
   SECTION 3 — THE METHOD
   ============================================ */
.method h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.method-sub {
  color: var(--color-text-dim);
  margin-bottom: 48px;
  font-size: 1.0625rem;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  counter-increment: step;
  transition: border-color 0.3s, transform 0.3s;
}
.step:hover {
  border-color: #0093FF4D;
  transform: translateY(-2px);
}
.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: #0093FF1F;
  line-height: 1;
  flex-shrink: 0;
}
.step h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.625rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0;
}
.step p {
  color: var(--color-text-dim);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* === FIRST CTA (appears after method) === */
.cta-mid {
  text-align: center;
  padding: 48px 0 0;
}
.cta-mid .price-tag {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 8px;
}
.cta-mid .price-note {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  margin-bottom: 24px;
}

/* ============================================
   CTA BUTTON (shared)
   ============================================ */
.btn-cta {
  display: inline-block;
  background: var(--color-cta);
  color: var(--color-cta-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn-cta:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px #0093FF33;
}
.btn-cta:active {
  transform: translateY(0);
}
/* Subtle shimmer on CTA buttons */
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #FFFFFF33, transparent);
  transition: none;
  animation: shimmer 3s infinite 2s;
}
@keyframes shimmer {
  0%   { left: -100%; }
  20%  { left: 120%; }
  100% { left: 120%; }
}

/* Risk reversal micro-text under CTAs */
.cta-risk-reversal {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cta-risk-reversal svg {
  flex-shrink: 0;
}

/* ============================================
   SECTION 4 — SOFTWARE
   ============================================ */
.software {
  background: var(--color-surface);
}
.software-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-proof);
  margin-bottom: 20px;
}
.software h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.software-sub {
  color: var(--color-text-dim);
  font-size: 1.0625rem;
  margin-bottom: 36px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: #4ADE8040;
  transform: translateY(-2px);
}
.feature-card .feat-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.feature-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  line-height: 1.55;
}
.software-value {
  background: #4ADE800F;
  border: 1px solid #4ADE8026;
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
}
.software-value p {
  font-size: 0.9375rem;
  color: var(--color-proof);
  font-weight: 500;
}
.software-value strong {
  color: var(--color-white);
  font-weight: 700;
}
@media (min-width: 480px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   SECTION 5 — SOCIAL PROOF
   ============================================ */
.proof h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 40px;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s;
}
.testimonial:hover {
  border-color: #0093FF33;
}
.testimonial-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}
.testimonial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.testimonial .result {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
  line-height: 1.2;
}
.testimonial .quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
  background: var(--color-surface-2);
}
.author-info .name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}
.author-info .role {
  font-size: 0.8125rem;
  color: var(--color-text-dim);
}

/* === TEXT TESTIMONIALS === */
.text-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 600px) {
  .text-testimonials {
    grid-template-columns: 1fr;
  }
}
.testimonial-text {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.testimonial-text:hover {
  border-color: #0093FF33;
}
.testimonial-text::before {
  content: '\201C';
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.testimonial-text .quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 16px;
  font-style: italic;
  flex: 1;
}
.testimonial-text .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

/* === INLINE PROOF CTA (after testimonials) === */
.proof-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.proof-cta p {
  font-size: 1.0625rem;
  color: var(--color-text-dim);
  margin-bottom: 20px;
}
.proof-cta p strong {
  color: var(--color-white);
}

/* ============================================
   SECTION 6 — FAQ / OBJECTIONS
   ============================================ */
.faq {
  background: var(--color-surface);
}
.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 36px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-bg);
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: #0093FF33;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--color-accent); }
.faq-q .arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
  font-size: 1.125rem;
  color: var(--color-text-dim);
}
.faq-item.open .arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-dim);
}

/* ============================================
   SECTION 7 — FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 7vw, 3rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.final-cta h2 em {
  color: var(--color-accent);
  font-style: italic;
}

/* Urgency strip */
.urgency-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EF444414;
  border: 1px solid #EF444433;
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #F87171;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* Value Stack */
.value-stack {
  max-width: 400px;
  margin: 0 auto 32px;
  text-align: left;
}
.value-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}
.value-row .item { color: var(--color-text); }
.value-row .val {
  color: var(--color-text-dim);
  text-decoration: line-through;
}
.value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
}
.value-total .item { color: var(--color-text-dim); }
.value-total .val {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
}
.final-cta .btn-cta {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 1.125rem;
  padding: 20px 40px;
}
.guarantee {
  font-size: 0.8125rem;
  color: var(--color-text-dim);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}
.guarantee svg {
  vertical-align: middle;
  margin-right: 4px;
}

/* Trust badges row */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-text-dim);
}
.trust-badge svg {
  opacity: 0.5;
}

/* ============================================
   SECTION 8 — FOUNDER
   ============================================ */
.founder {
  background: var(--color-surface);
}
.founder-inner {
  text-align: center;
}
.founder-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 2px solid var(--color-border);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 8px;
}
.founder .title {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.founder p {
  font-size: 0.9375rem;
  color: var(--color-text-dim);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.founder-stat {
  text-align: center;
}
.founder-stat .num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
}
.founder-stat .label {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ============================================
   CREATOR SECTION (photo left · bio right)
   ============================================ */
.creator-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.creator-photo-col {
  display: flex;
  justify-content: center;
}
.creator-photo-wrap {
  width: 260px;
  max-width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
.creator-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.creator-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.creator-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 6px;
}
.creator-role {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.5;
}
.creator-bio {
  font-size: 1rem;
  color: var(--color-text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}
.creator-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.creator-cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text);
}
.creator-cred .cred-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #0093FF14;
  border: 1px solid #0093FF26;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  margin-top: 1px;
}
@media (min-width: 768px) {
  .creator-inner {
    grid-template-columns: 280px 1fr;
    gap: 60px;
  }
  .creator-photo-col {
    justify-content: flex-start;
  }
  .creator-photo-wrap {
    width: 100%;
    height: 400px;
  }
}

/* ============================================
   AS SEEN ON
   ============================================ */
.as-seen-in {
  background: var(--color-surface);
}
.seen-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  text-align: center;
  margin-bottom: 28px;
}
.seen-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.seen-logo {
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-dim);
  letter-spacing: 0.03em;
  background: var(--color-bg);
  transition: border-color 0.3s, color 0.3s;
}
.seen-logo:hover {
  border-color: #0093FF33;
  color: var(--color-text);
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #08182F;
  border-top: none;
  padding: 14px var(--side-pad);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px #00000040;
}
.sticky-bar.visible {
  transform: translateY(0);
}
.sticky-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-price {
  font-size: 1rem;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  font-weight: 600;
}
.sticky-price strong {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 4px;
}
.sticky-bar .btn-cta {
  padding: 14px 28px;
  font-size: 0.875rem;
  white-space: nowrap;
  background: #0093FF;
  color: #FFFFFF;
  flex-shrink: 0;
}
@media (max-width: 400px) {
  .sticky-price { font-size: 0.875rem; }
  .sticky-bar .btn-cta { padding: 12px 20px; font-size: 0.8125rem; }
}
.sticky-bar .btn-cta:hover {
  background: #0080E0;
  box-shadow: none;
}
/* Remove shimmer from sticky bar button (too distracting) */
.sticky-bar .btn-cta::after {
  display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  text-align: center;
  padding: 40px 0 100px; /* extra bottom padding for sticky bar */
  font-size: 0.8125rem;
  color: var(--color-text-dim);
}

/* ============================================
   DESKTOP ENHANCEMENTS
   ============================================ */
@media (min-width: 768px) {
  body { font-size: 1.0625rem; }
  .hero { padding: 80px 0 60px; }
  .step { padding: 32px 28px; }
  .footer { padding-bottom: 40px; } /* no sticky overlap on desktop */
}
