/* ============================
   Landing Page Shared Styles
   ============================ */

/* Above-fold wrapper */
.lp-above-fold {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 28px;
}

/* Hero */
.lp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
main > .lp-hero {
  padding: 180px 24px 80px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
main > .lp-hero > h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 24px;
  color: #f5f5f5;
}
main > .lp-hero > p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 36px;
}
main > .lp-hero > .lp-cta-row {
  justify-content: center;
}
@media (max-width: 768px) {
  main > .lp-hero { padding: 140px 16px 60px; }
  main > .lp-hero > h1 { font-size: clamp(28px, 6vw, 42px); }
  main > .lp-hero > p { font-size: 16px; }
}
@media (max-width: 480px) {
  main > .lp-hero { padding: 120px 14px 48px; }
}
.lp-hero-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #f5f5f5;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
  max-width: 780px;
}
.lp-hero-card {
  width: 100%;
  max-width: 780px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 32px 24px;
  position: relative;
}
.lp-hero-sublabel {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.lp-hero-ph-wrap {
  position: relative;
  min-height: 28px;
  margin-bottom: 40px;
}
.lp-hero-ph {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.lp-hero-ph span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  line-height: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.lp-hero-ph span.active { opacity: 1; transform: translateY(0); }
.lp-hero-ph span.exit-up { opacity: 0; transform: translateY(-18px); }
.lp-hero-ph.hidden { opacity: 0; transition: opacity 0.15s ease; }
.lp-hero-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  resize: none;
  min-height: 28px;
  padding: 0;
  position: relative;
  z-index: 2;
}
.lp-hero-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 4px;
  background: var(--accent, #FDFAC3);
  color: var(--bg-primary, #0D100F);
  border: 1px solid rgba(253,250,195,0.3);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  font-family: var(--font);
}
.lp-hero-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* Credibility Bar */
.lp-credbar {
  padding: 12px 0 0;
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
  flex-shrink: 0;
}
.lp-credbar-row {
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 14px;
}
.lp-credbar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 20px;
  letter-spacing: 0.01em;
}
.lp-marquee-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
}
.lp-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: lp-scroll 40s linear infinite;
}
.lp-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes lp-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lp-marquee-item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.lp-marquee-item img {
  height: 16px;
  width: 16px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.6;
  filter: brightness(0) invert(1);
}
.lp-marquee-item.others {
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}
.lp-credbar-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  padding: 0;
}
.lp-credbar-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.lp-credbar-stat svg {
  flex-shrink: 0;
  opacity: 0.35;
}

/* Shared Section */
.lp-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}
.lp-section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lp-section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}

/* Pain Grid */
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-pain-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 24px;
}
.lp-pain-title {
  font-size: 16px;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.lp-pain-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* Solution / Benefit Grid */
.lp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lp-benefit {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 24px;
}
.lp-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(253,250,195,0.08);
  border: 1px solid rgba(253,250,195,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent, #FDFAC3);
}
.lp-benefit-title {
  font-size: 16px;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.lp-benefit-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* Steps */
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}
.lp-step {
  position: relative;
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  counter-increment: step;
}
.lp-step-num {
  display: none;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lp-step-title {
  font-size: 16px;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.lp-step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* Use Cases */
.lp-usecases-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lp-usecase {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}
.lp-usecase:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.lp-usecase-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(253,250,195,0.5);
  flex-shrink: 0;
}

/* Use Cases by Team (LP2) */
.lp-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lp-team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 24px;
}
.lp-team-name {
  font-size: 15px;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 10px;
}
.lp-team-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* FAQ */
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lp-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: inherit;
}
.lp-faq-q::after {
  content: "+";
  font-size: 20px;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.lp-faq-item.open .lp-faq-q::after {
  content: "−";
}
.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.lp-faq-item.open .lp-faq-a {
  max-height: 300px;
}
.lp-faq-a p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* Hero Demo (SaaS browser) */
.lp-hero-demo {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
@media (max-width: 768px) {
  .lp-hero-demo { padding: 0 16px 32px; }
}

/* Social Proof Quote */
.lp-quote {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}
.lp-quote blockquote {
  margin: 0;
  padding: 0;
}
.lp-quote blockquote p {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}
.lp-quote blockquote cite {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  font-style: normal;
  display: block;
}

/* Segment LP Sections */
.lp-problem {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}
.lp-problem h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.lp-problem p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 720px;
}
.lp-problem p:last-child { margin-bottom: 0; }

.lp-solution {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}
.lp-solution h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lp-solution > p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}
.lp-benefit h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 10px;
}
.lp-benefit p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.lp-step-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.lp-benefit .lp-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(253,250,195,0.08);
  border: 1px solid rgba(253,250,195,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent, #FDFAC3);
}
.lp-benefit .lp-ico svg { flex-shrink: 0; }
.lp-step .lp-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(253,250,195,0.08);
  border: 1px solid rgba(253,250,195,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent, #FDFAC3);
}
.lp-step .lp-ico svg { flex-shrink: 0; }
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lp-how {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}
.lp-how h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 40px;
}
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}
.lp-faq > h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 40px;
}

.lp-prompt-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.lp-prompt-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.lp-prompt-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.lp-prompt {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 56px 18px 20px;
  text-align: left;
}
.lp-prompt-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 18px 56px 18px 20px;
  pointer-events: none;
  overflow: hidden;
}
.lp-prompt-ph.hidden { opacity: 0; }
.lp-prompt-ph .lp-ph {
  position: absolute;
  font-size: 15px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s, transform 0.35s;
}
.lp-prompt-ph .lp-ph.active {
  opacity: 1;
  transform: translateY(0);
}
.lp-prompt-ph .lp-ph.exit-up {
  opacity: 0;
  transform: translateY(-16px);
}
.lp-prompt-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #f5f5f5;
  font-size: 15px;
  font-family: inherit;
  resize: none;
  line-height: 1.5;
}
.lp-prompt-send {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lp-prompt-send:hover,
.lp-prompt-send.has-text {
  background: var(--accent, #FDFAC3);
  border-color: var(--accent, #FDFAC3);
  color: var(--bg-primary, #0D100F);
}
.lp-visual {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.lp-features {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}
.lp-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 12px 0;
}
.lp-feature-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--accent, #FDFAC3);
  stroke-width: 2.5;
  fill: none;
}
@media (max-width: 768px) {
  .lp-prompt-section { padding: 60px 16px; }
  .lp-visual { padding: 0 16px 60px; }
  .lp-features { padding: 0 16px 60px; }
  .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lp-feature-grid { grid-template-columns: 1fr; }
}

.lp-final-cta {
  text-align: center;
  padding: 80px 24px 100px;
  max-width: 1000px;
  margin: 0 auto;
}
.lp-final-cta h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lp-final-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.lp-final-cta .lp-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-logos {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}
.lp-logos p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.lp-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.lp-logo-row img {
  height: 20px;
  opacity: 0.5;
  filter: brightness(0) invert(1);
}
.lp-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .lp-problem { padding: 60px 16px; }
  .lp-solution { padding: 60px 16px; }
  .lp-benefits { grid-template-columns: 1fr; }
  .lp-how { padding: 60px 16px; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-faq { padding: 60px 16px; }
  .lp-final-cta { padding: 60px 16px 80px; }
  .lp-quote { padding: 40px 16px; }
  .lp-quote blockquote p { font-size: 18px; }
}

/* CTA */
.lp-cta {
  text-align: center;
  padding: 80px 24px 100px;
  max-width: 1000px;
  margin: 0 auto;
}
.lp-cta-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.lp-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 32px;
}
.lp-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 4px;
  background: var(--accent, #FDFAC3);
  color: var(--bg-primary, #0D100F);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  font-family: var(--font);
}
.lp-btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  font-family: var(--font);
}
.lp-btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* Embedded Demos */
.lp-demo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.lp-demo-single {
  margin-top: 40px;
}
.lp-demo-row > div,
.lp-demo-single > div {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
}
.lp-demo-row .pd-card-demo {
  background: none;
  padding: 0;
}
.lp-demo-row .pd-card-demo > div {
  height: 100%;
}
@media (max-width: 768px) {
  .lp-demo-row {
    grid-template-columns: 1fr;
  }
}

/* Use Case Hero (text left + phone right) */
.uc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 180px 40px 60px;
  gap: 48px;
}
.uc-hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #f5f5f5;
}
.uc-hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.uc-hero-phone {
  display: flex;
  justify-content: center;
}
.uc-trusted {
  margin-top: 40px;
}
.uc-trusted-label {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 14px;
}
.uc-trusted-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.uc-trusted-logos img {
  height: 18px;
  opacity: 0.35;
  filter: brightness(0) invert(1);
}

/* Phone Device */
.uc-phone {
  position: relative;
  width: 270px;
  background: #000;
  border-radius: 48px;
  border: 3px solid #2a2a2a;
  padding: 4px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 1px #1a1a1a;
}
.uc-phone-screen {
  background: #0a0a0a;
  border-radius: 42px;
  padding: 12px 10px 18px;
  overflow: hidden;
}
.uc-phone-notch {
  width: 76px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  margin: 0 auto 4px;
  position: relative;
}
.uc-phone-notch::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.uc-phone-notch::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  background: #111;
  border-radius: 50%;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: none;
}
.uc-phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.uc-screen {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.uc-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 14px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.uc-step.active {
  opacity: 1;
  pointer-events: auto;
}

/* Phone CTA Buttons */
.uc-cta-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: rgba(253,250,195,0.35);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border: none;
  margin-top: 14px;
  cursor: default;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.uc-cta-btn.pressed {
  transform: scale(0.96);
  opacity: 0.55;
}
.uc-cta-sub {
  display: block;
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.uc-picon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Screen 1: Provider list */
.uc-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
}
.uc-search svg { flex-shrink: 0; opacity: 0.4; width: 11px; height: 11px; }
.uc-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.uc-picon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* Screen 2: Action selection */
.uc-action-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.uc-action-head h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.uc-action-head .uc-dots {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
}
.uc-option {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}
.uc-option.selected {
  background: rgba(253,250,195,0.15);
  border-color: rgba(253,250,195,0.35);
  color: #fff;
}

/* Screen 3: Timeline */
.uc-timeline { padding-top: 0; }
.uc-tl-item {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
}
.uc-tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: -28px;
  width: 2px;
  background: rgba(253,250,195,0.2);
}
.uc-tl-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(253,250,195,0.1);
  border: 2px solid rgba(253,250,195,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent, #FDFAC3);
}
.uc-tl-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 3px;
}
.uc-tl-text p {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin: 0;
  max-width: none;
}

/* Responsive: Use Case Hero */
@media (max-width: 900px) {
  .uc-hero {
    grid-template-columns: 1fr;
    padding: 150px 24px 40px;
    gap: 40px;
    text-align: center;
  }
  .uc-hero-text p { margin-left: auto; margin-right: auto; }
  .uc-hero-text .lp-cta-row { justify-content: center; }
  .uc-trusted { margin-top: 32px; }
  .uc-trusted-label { text-align: center; }
  .uc-trusted-logos { justify-content: center; }
}
@media (max-width: 480px) {
  .uc-hero { padding: 130px 16px 32px; }
  .uc-phone {
    width: 240px;
    border-radius: 42px;
    border-width: 3px;
    padding: 3px;
  }
  .uc-phone-screen {
    border-radius: 38px;
    padding: 10px 8px 14px;
  }
  .uc-screen { min-height: 420px; }
  .uc-screen { min-height: 360px; }
  .uc-trusted-logos { gap: 20px; }
  .uc-trusted-logos img { height: 16px; }
}

@media (max-width: 1024px) {
  .lp-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Card with thumbnail at top */
.lp-card-thumb {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.04);
}
.lp-card-thumb img {
  width: 100%;
  display: block;
  opacity: 0.8;
}

/* Divider */
.lp-divider {
  max-width: 1000px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .lp-above-fold {
    padding: 0 16px 20px;
  }
  .lp-hero {
    padding: 70px 0 0;
  }
  .lp-hero-card {
    padding: 22px 20px 20px;
  }
  .lp-hero-input {
    font-size: 18px;
    margin-bottom: 52px;
  }
  .lp-hero-btn {
    right: 16px;
    bottom: 16px;
    font-size: 13px;
    padding: 9px 18px;
  }
  .lp-credbar {
    padding: 16px 16px 0;
  }
  .lp-credbar-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .lp-credbar-label {
    margin-right: 0;
  }
  .lp-pain-grid,
  .lp-benefit-grid,
  .lp-steps-grid {
    grid-template-columns: 1fr;
  }
  .lp-team-grid {
    grid-template-columns: 1fr;
  }
  .lp-section {
    padding: 60px 16px;
  }
}
@media (max-width: 480px) {
  .lp-above-fold {
    padding: 0 14px 16px;
  }
  .lp-hero {
    padding: 60px 0 0;
  }
  .lp-hero-card {
    border-radius: 16px;
    padding: 18px 16px 18px;
  }
  .lp-hero-input {
    font-size: 16px;
    min-height: 48px;
    margin-bottom: 48px;
  }
  .lp-cta {
    padding: 60px 16px 80px;
  }
}
