/* Landing page specific styles */
/* Design tokens and Bootstrap overrides (landing) */

/* Default navbar styling - using Bootstrap defaults */

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon {
  font-size: 1.5rem;
  color: var(--brand-primary);
  background: var(--color-primary-50);
  padding: 0.5rem;
  border-radius: var(--radius-md);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--brand-primary);
  letter-spacing: -0.5px;
}

/* Modern nav link styles removed - using Bootstrap defaults */

/* Beta Banner Sticker - Inside Hero Layout */
.hero-split-shell {
  position: relative;
  overflow: hidden;
}
.beta-banner {
	position: absolute;
	top: 100px;
	right: -100px;
	z-index: 10;
	transform: rotate(45deg);
	transform-origin: center;
	pointer-events: none;
	align: center;
	text-align: center;
	width: max-content;
}
.beta-sticker {
  background: var(--gradient-warning);
  color: var(--color-text);
  padding: 8px 60px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  border: 2px solid var(--color-warning);
  animation: pulse-glow 2s ease-in-out infinite;
}
.beta-text {
  display: inline-block;
  animation: slide-shimmer 3s linear infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.7), 0 0 30px rgba(245, 158, 11, 0.5); }
}
@keyframes slide-shimmer {
  0% { text-shadow: 0 0 5px rgba(255,255,255,0.3); }
  50% { text-shadow: 0 0 15px rgba(255,255,255,0.8); }
  100% { text-shadow: 0 0 5px rgba(255,255,255,0.3); }
}
@media (max-width: 768px) {
  .beta-banner {
    top: 15px;
    right: -75px;
    width: 240px;
  }
  .beta-sticker {
    padding: 6px 50px;
    font-size: 0.7rem;
  }
}

/* Bootstrap component refinements for landing */
/* Button styles are centralized in brand.css; landing defers to shared styles */

/* Hero split (two-column) - keep sizing/help classes; colors and radii come from tokens below */
.brand-mark { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
.hero-img { width: 100%; height: 120px; object-fit: cover; }
.hero-img.wide { height: 160px; }
.text-white-90 { color: rgba(255,255,255,0.9); }

/* Features section uses token-based styles below */

/* How section styles are defined with tokens below */

/* Samples section styles are defined with tokens below */

/* Stats section styles are defined with tokens below */

/* Calculator section styles are defined with tokens below */

/* Card styles: landing uses flat look but declared later with tokens */

/* Range sliders and value labels centralized via tokens below */

/* Suggestions styling uses token-based rules below; keep hidden helper and keyframes */
.suggestions-list.hidden { display: none; }
@keyframes mini-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* CTA section uses token-based gradient below */

/* Role Insights sentence + Material 3 pill inputs */
/* Apply both in dedicated insights section and hero splash */
.insights-section .sentence-inline, .insights-sentence .sentence-inline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 18px; /* more breathing room horizontally */
  row-gap: 16px;    /* ensure fields don't touch when wrapped */
}
.btn-pill { border-radius: 9999px; border: 2px solid var(--color-text); background: var(--color-text); color: var(--brand-on-dark); padding: 8px 16px; font-weight: 600; }
.btn-pill.btn-dark { background: var(--color-text); border-color: var(--color-text); }
.btn-pill:focus { box-shadow: 0 0 0 3px rgba(17,24,39,0.12); }

/* Clear (X) buttons inside pill inputs */
.pill-input .clear-btn { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border: none; background: transparent; color: var(--color-text); opacity: 0; pointer-events: none; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.pill-input .clear-btn:hover { background: var(--color-surface-hover); }
.pill-input.has-value .clear-btn { opacity: 0.8; pointer-events: auto; }

/* Suggestions list Material 3 styling */
.suggestions-list.m3 { border-color: var(--color-text); border-width: 2px; border-radius: 14px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.suggestions-list.m3 li { font-size: 0.95rem; }

/* Searching state */
.insights-searching .searching-line { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.insights-searching .dots { display: inline-block; animation: dots-blink 1.2s ease-in-out infinite; }
@keyframes dots-blink { 0% { opacity: 0.2; } 50% { opacity: 1; } 100% { opacity: 0.2; } }

/* SIMPLIFIED Platform spinner (marquee style) */
.platform-spinner .spinner-viewport {
  height: 28px; /* Height of one item */
  width: 32px;  /* Ensure full icon visibility */
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

.platform-spinner .spinner-stage {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transform: translateY(0);
  animation: marquee-scroll-up 5s linear infinite;
}

.platform-spinner .platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px; /* Match viewport height */
  font-size: 20px;
}

/* Ensure SVG/IMG brand logos fit the same visual box as font icons */
.platform-spinner .platform-img {
  height: 20px;        /* match visual size of 20px font icons */
  width: auto;         /* keep aspect ratio */
  max-width: 28px;     /* never exceed viewport width */
  display: block;      /* avoid baseline gaps */
}

@keyframes marquee-scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-196px); } /* 7 items * 28px */
}

/* Results as light, borderless cards with black text */
.insights-results .kpi.kpi-light { background: var(--color-surface-3); border: none; box-shadow: none; border-radius: 14px; padding: 16px; }
.insights-results .kpi-number { color: var(--color-text); }
.insights-results .kpi-label { color: var(--color-text); opacity: 0.75; }
/* Landing theming overrides using design tokens */
.hero-split-shell { border: 1px solid var(--color-border); }
.hero-left { background: var(--color-surface); }
.hero-right { background: var(--gradient-primary); color: var(--brand-on-primary); }
.brand-mark { background: var(--color-primary-50); color: var(--brand-primary); border-radius: var(--radius-md); }
.hero-img { border-radius: var(--radius-lg); }
.hero-highlights li { margin-bottom: var(--space-2); }
.cta-buttons { gap: var(--space-4); }

.features-section { padding: var(--space-20) 0; background-color: var(--color-surface-2); }
.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  height: 100%;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--brand-on-primary);
  font-size: 2rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(35, 35, 35, 0.2);
}
.feature-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gradient-primary);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: subtract;
}
.feature-title { font-size: var(--fs-lg); font-weight: var(--fw-semibold); margin-bottom: 1rem; color: var(--color-text-strong); }
.feature-description { color: var(--color-text-muted); line-height: 1.6; }

.how-section .how-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-section .how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.how-section .how-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--brand-on-primary);
  background: var(--brand-primary);
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(35, 35, 35, 0.25);
}

.samples-section .sample-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.samples-section .sample-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.samples-section .sample-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  color: var(--brand-on-primary);
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(35, 35, 35, 0.2);
}

.stats-section { padding: var(--space-16) 0; background: var(--color-surface); }
.stat-item { text-align: center; padding: var(--space-4); }
.stat-number { font-size: var(--fs-3xl); font-weight: var(--fw-bold); color: var(--brand-primary); display: block; }
.stat-label { color: var(--color-text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }

.calculator-section { background-color: var(--color-surface-2); }
.calculator-section .card { background: var(--color-surface); }
.calculator-section .sentence-inline { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem; justify-content: center; font-size: 1.1rem; }
.calculator-section .pill-input { display: inline-block; }
.calculator-section .kpi { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 16px; transition: all 0.3s ease; }
.calculator-section .kpi:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.calculator-section .kpi-label { text-transform: uppercase; font-size: 0.75rem; color: var(--color-text-muted); letter-spacing: 0.6px; font-weight: var(--fw-semibold); }
.calculator-section .kpi-number { font-size: var(--fs-2xl); font-weight: var(--fw-bold); line-height: 1.2; }
.calculator-section .searching-line { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.calculator-section .dots { animation: dots-pulse 1.4s infinite; }
@keyframes dots-pulse { 0%, 20% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } }

.card { border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: none !important; }

.form-range { accent-color: var(--brand-primary); }
.value-label { font-weight: var(--fw-semibold); color: var(--color-text); }

.suggestions-list { position: absolute; top: 100%; left: 0; right: 0; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); margin-top: 4px; list-style: none; padding: 4px 0; z-index: 1000; max-height: 260px; overflow-y: auto; }
.suggestions-list li { padding: 8px 12px; cursor: pointer; color: var(--color-text); }
.suggestions-list li:hover { background: var(--color-surface-hover); }
/* Loading state inside suggestions */
.suggestions-list li.loading { cursor: default; color: var(--color-text-muted-2); display: flex; align-items: center; gap: 8px; }
.mini-spinner { width: 14px; height: 14px; border: 2px solid var(--color-border-strong); border-top-color: var(--brand-primary); border-radius: 50%; display: inline-block; animation: mini-spin 0.8s linear infinite; }

.cta-section { background: var(--gradient-primary); color: var(--brand-on-primary); padding: var(--space-20) 0; text-align: center; }

/* Role Insights sentence + Material 3 pill inputs */
.form-control-pill { border-radius: var(--radius-pill); border: 2px solid var(--color-text); padding: 6px 12px; height: 34px; line-height: 1; box-shadow: none; padding-right: 34px; }
.form-control-pill:focus { outline: none; border-color: var(--color-text); box-shadow: 0 0 0 3px rgba(17,24,39,0.08); }
.btn-pill { border-radius: var(--radius-pill); border: 2px solid var(--color-text); background: var(--color-text); color: var(--brand-on-dark); padding: 8px 16px; font-weight: var(--fw-semibold); }
.btn-pill.btn-dark { background: var(--color-text); border-color: var(--color-text); }

.suggestions-list.m3 { border-color: var(--color-text); border-width: 2px; border-radius: 14px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

.insights-results .kpi.kpi-light { background: var(--color-surface-3); border: none; box-shadow: none; border-radius: 14px; padding: 16px; }
.insights-results .kpi-number { color: var(--color-text); }
.insights-results .kpi-label { color: var(--color-text); opacity: 0.75; }

/* Product Showcase Section */
.product-showcase-section { 
  padding: var(--space-20) 0; 
  background-color: var(--color-surface-2);
}
.screenshot-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}
.screenshot-caption {
  text-align: center;
}
.screenshot-caption h5 {
  color: var(--color-text-strong);
  font-size: var(--fs-lg);
}
.feature-description {
  padding: var(--space-4);
}
.feature-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-showcase-section h3 {
  color: var(--color-text-strong);
}
.product-showcase-section .feature-description p {
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section { padding: var(--space-20) 0; background-color: var(--color-surface); }
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--color-border-strong);
}
.testimonial-rating { font-size: 0.85rem; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.author-info { flex: 1; }
.author-name { font-size: 0.95rem; color: var(--color-text-strong); }
.author-role { font-size: 0.85rem; }
.author-meta { font-size: 0.8rem; }

/* Pricing Section */
.pricing-section { background-color: var(--color-surface-2); }

/* Pay-as-you-go gradient banner */
.pay-as-you-go-banner {
  background: var(--gradient-primary) !important;
  color: var(--brand-on-primary) !important;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.pricing-card-popular {
  border: 2px solid var(--brand-primary);
}
.pricing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
}
.pricing-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-strong);
}
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.price-amount { color: var(--brand-primary); }
.price-period { font-size: var(--fs-base); }
.pricing-body ul li {
  font-size: 0.9rem;
  color: var(--color-text);
}

/* Feature Badges */
.feature-badge {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
.feature-card-coming {
  opacity: 0.9;
  position: relative;
}
.feature-card-coming::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent 0%, rgba(245, 158, 11, 0.03) 100%);
  pointer-events: none;
}

/* How It Works - Step Numbers */
.how-step-number {
  position: absolute;
  top: -12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* How It Works - Connection Lines */
.how-it-works-connector {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right,
    var(--color-primary-50) 0%,
    var(--brand-primary) 25%,
    var(--brand-primary) 75%,
    var(--color-primary-50) 100%
  );
  z-index: 0;
  opacity: 0.3;
  transform: translateY(-50%);
}
.how-card { position: relative; z-index: 1; }

/* Success Images Section */
.success-images-section {
  background-color: var(--color-surface-2);
}
.success-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.success-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.success-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.success-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.success-image-card:hover .success-overlay {
  opacity: 1;
}
.success-caption {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/* Modern Feature Cards - Clean, borderless design */
.feature-card-modern {
  background: transparent;
  border: none;
  padding: var(--space-6);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-lg);
}

.feature-card-modern:hover {
  background: var(--color-surface);
  transform: translateY(-4px);
}

.feature-icon-modern {
  width: 56px;
  height: 56px;
  background: var(--color-primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brand-primary);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
  transform: scale(1.1);
}

.feature-title-modern {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.75rem;
  color: var(--color-text-strong);
}

.feature-desc-modern {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Hero Section - Clean design */
.hero-section {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fancy Highlights Section (Google-style) */
.highlights-section {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
}

.highlight-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-primary);
}

.highlight-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 16px rgba(35, 35, 35, 0.3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1) rotate(5deg);
}

.highlight-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  color: var(--color-text-strong);
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-description {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Scrollable Screenshots Section (Google Antigravity style) */
.screenshots-scroll-section {
  padding: var(--space-20) 0;
  background: var(--color-surface);
  overflow: hidden;
}

.screenshots-scroll-wrapper {
  position: relative;
  margin: 0 auto;
  padding: var(--space-4) 0;
}

.screenshots-scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-primary) var(--color-border);
  padding: var(--space-4) var(--space-2);
}

.screenshots-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.screenshots-scroll-container::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: var(--radius-pill);
}

.screenshots-scroll-container::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: var(--radius-pill);
  transition: background 0.3s ease;
}

.screenshots-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--brand-secondary);
}

.screenshot-scroll-item {
  min-width: 600px;
  max-width: 600px;
  scroll-snap-align: center;
  flex-shrink: 0;
  position: relative;
}

.screenshot-scroll-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.screenshot-scroll-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-primary);
}

.screenshot-scroll-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.screenshot-scroll-info {
  padding: var(--space-6);
  background: var(--color-surface);
}

.screenshot-scroll-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-text-strong);
  margin-bottom: 0.5rem;
}

.screenshot-scroll-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Use Cases / Personal Stories Section */
.use-cases-section {
  padding: var(--space-20) 0;
  background: var(--color-surface-2);
}

.use-case-card {
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.use-case-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: var(--color-primary-50);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  background: var(--color-surface);
}

.use-case-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.use-case-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-border);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.use-case-author-info {
  flex: 1;
}

.use-case-name {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-strong);
  margin-bottom: 0.25rem;
}

.use-case-role {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.use-case-story {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.use-case-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.use-case-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.use-case-stat i {
  color: var(--brand-primary);
}

.use-case-stat strong {
  color: var(--color-text-strong);
  font-weight: var(--fw-semibold);
}

@media (max-width: 768px) {
  .hero-img { height: 100px; }
  .hero-img.wide { height: 120px; }

  /* Hide connector line on mobile */
  .how-it-works-connector { display: none; }

  /* Adjust step number position on mobile */
  .how-step-number {
    top: -16px;
    right: 50%;
    transform: translateX(50%);
  }

  /* Success images adjust height on mobile */
  .success-img {
    height: 250px;
  }

  /* Scrollable screenshots on mobile */
  .screenshot-scroll-item {
    min-width: 320px;
    max-width: 320px;
  }
}
