/* ════════════════════════════════════════════════════════════
   UBER CLONE LANDING PAGE — page-specific styles
   Builds on top of ../../taxi-app-development/css/styles.css
   (reuses variables: --primary, --secondary, --text-dark, etc.)
   ════════════════════════════════════════════════════════════ */

/* ── HERO OVERRIDE (lighter, more product-focused than taxi hero) ── */
.uc-hero {
  background: linear-gradient(135deg, #F4F8FB 0%, #FFFFFF 60%, #FFF6E0 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.uc-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,180,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.uc-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Green-tinted hero badge (overrides the orange .hero-badge from base styles) */
.uc-hero .hero-badge {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #059669;
}
.uc-hero .hero-badge::before { background: #10B981; }

.uc-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.uc-hero-content h1 .accent {
  color: var(--primary);
}

.uc-hero-content p {
  font-size: 1.12rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.uc-hero-trust {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-top: 36px;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 26, 26, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15, 26, 26, 0.08), 0 2px 6px rgba(15, 26, 26, 0.04);
  flex-wrap: wrap;
}

.uc-hero-trust .uc-trust-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 22px;
  border-right: 1px solid rgba(15, 26, 26, 0.08);
}
.uc-hero-trust .uc-trust-stat:last-child { border-right: none; }

.uc-trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,180,0,0.18) 0%, rgba(255,180,0,0.08) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.uc-trust-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary-dark);
}

.uc-trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.uc-trust-text strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
}
.uc-trust-text strong em {
  font-style: normal;
  color: var(--primary);
  margin-left: 1px;
}
.uc-trust-text span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.3px;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Tablet & mobile: force a clean 3-column grid so the strip never wraps
   into an awkward 2+1 layout. Stack icon → number → label vertically
   inside each cell for a card-style look. */
@media (max-width: 900px) {
  .uc-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 8px;
    flex-wrap: nowrap;
  }
  .uc-hero-trust .uc-trust-stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 8px 6px;
    border-right: 1px solid rgba(15, 26, 26, 0.08);
  }
  .uc-hero-trust .uc-trust-stat:last-child { border-right: none; }
  .uc-trust-icon { width: 40px; height: 40px; }
  .uc-trust-icon svg { width: 20px; height: 20px; }
  .uc-trust-text { align-items: center; }
  .uc-trust-text strong { font-size: 1.45rem; }
  .uc-trust-text span { font-size: 0.7rem; letter-spacing: 0.4px; }
}

@media (max-width: 420px) {
  .uc-hero-trust { padding: 12px 4px; }
  .uc-hero-trust .uc-trust-stat { padding: 6px 2px; gap: 6px; }
  .uc-trust-icon { width: 34px; height: 34px; border-radius: 10px; }
  .uc-trust-icon svg { width: 16px; height: 16px; }
  .uc-trust-text strong { font-size: 1.2rem; }
  .uc-trust-text span { font-size: 0.62rem; }
}

.uc-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uc-hero-illu {
  width: 100%;
  max-width: 560px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uc-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  animation: ucCarFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(15,26,26,0.18));
}

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

@media (prefers-reduced-motion: reduce) {
  .uc-hero-image { animation: none; }
}

.uc-hero-tag {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 36px rgba(15,26,26,0.18);
  font-size: 0.82rem;
}

.uc-hero-tag .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
}

.uc-hero-tag.tag-top { top: 18px; left: -18px; }
.uc-hero-tag.tag-bot { bottom: 24px; right: -18px; }

/* ── SECTION INTRO (smaller centered intro w/ accent word) ── */
.uc-section { padding: 90px 0; }
.uc-section-alt { background: var(--light-bg); }
.uc-section-dark { background: var(--secondary); color: var(--white); }

.uc-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.uc-intro h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.uc-intro h2 .accent { color: var(--primary); }
.uc-intro p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}
.uc-section-dark .uc-intro h2 { color: var(--white); }
.uc-section-dark .uc-intro p { color: rgba(255,255,255,0.7); }

/* ── INDUSTRY USE-CASE GRID (3 cols × ~4 rows) ── */
.uc-industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.uc-industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.uc-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15,26,26,0.10);
  border-color: var(--primary);
}

.uc-industry-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #F4F8FB;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.uc-industry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.uc-industry-card:hover .uc-industry-thumb img {
  transform: scale(1.06);
}

.uc-industry-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.uc-industry-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.uc-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: gap 0.2s ease;
}
.uc-link::after {
  content: '→';
  display: inline-block;
  transition: transform 0.2s ease;
}
.uc-link:hover { color: var(--primary-dark); }
.uc-link:hover::after { transform: translateX(4px); }

/* ── PITCH (Best Script Ready to Launch) ── */
.uc-pitch .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.uc-pitch h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.uc-pitch h2 .accent { color: var(--primary); }

.uc-pitch p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.uc-pitch-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.uc-pitch-image {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  border-radius: 24px;
  filter: drop-shadow(0 28px 56px rgba(15,26,26,0.18));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.uc-pitch-image:hover { transform: translateY(-6px); }

/* ── APP VARIANTS (User App / Driver App / Admin Panel) ──
   Sticky scroll-stack: each card pins under the header as the page scrolls,
   and the next card scrolls up to stack on top — clonifynow-style. */
.uc-apps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* Provide a stacking context so the box-shadow on later cards
     correctly layers above earlier (pinned) ones. */
  position: relative;
}

.uc-app-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  position: sticky;
  top: 100px;                /* sits below the fixed header */
  box-shadow: 0 24px 60px rgba(15,26,26,0.08);
  transition: transform 0.4s ease;
}

/* Each subsequent card sits a touch lower than the previous, so when
   pinned you see ~30px of the earlier card peeking out at the top —
   that's what produces the visible "stack". */
.uc-app-block:nth-child(1) { top:  90px; z-index: 1; }
.uc-app-block:nth-child(2) { top: 120px; z-index: 2; }
.uc-app-block:nth-child(3) { top: 150px; z-index: 3; }

.uc-app-block.flip { grid-template-columns: 1.2fr 1fr; }
.uc-app-block.flip .uc-app-media { order: 2; }
.uc-app-block.flip .uc-app-body  { order: 1; }

.uc-app-media {
  background: linear-gradient(135deg, #FFF6E0 0%, #FFE8B0 100%);
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 18px;
}
.uc-app-media.media-blue { background: linear-gradient(135deg, #E7EFF6 0%, #C7D6E6 100%); }
.uc-app-media.media-dark { background: linear-gradient(135deg, #1A2828 0%, #0F1A1A 100%); }

.uc-app-mock {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(15,26,26,0.25));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.uc-app-block:hover .uc-app-mock { transform: translateY(-6px) scale(1.02); }

/* Honour reduced-motion: disable sticky stack so users who opt out
   don't get unexpected pinning behaviour. */
@media (prefers-reduced-motion: reduce) {
  .uc-app-block { position: static; transition: none; }
  .uc-app-mock { transition: none; }
}

.uc-app-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #059669;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.uc-app-body h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.uc-app-body > p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.uc-app-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 26px;
}

.uc-app-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 0.94rem;
  font-weight: 500;
}

.uc-app-bullets li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%230F1A1A'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.uc-store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.uc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-dark);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uc-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.uc-badge svg { width: 24px; height: 24px; fill: var(--white); }
.uc-badge small { display: block; font-size: 0.65rem; opacity: 0.7; line-height: 1; margin-bottom: 2px; }
.uc-badge strong { font-weight: 700; font-size: 0.95rem; }

/* ── WHY CHOOSE — 4 col gradient cards ── */
.uc-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.uc-why-card {
  border-radius: 22px;
  padding: 34px 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.uc-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15,26,26,0.20);
}

.uc-why-card .uc-why-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  letter-spacing: -1px;
}

.uc-why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.uc-why-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.92;
}

.uc-why-1 { background: linear-gradient(160deg, #FF6B6B 0%, #E94560 100%); }
.uc-why-2 { background: linear-gradient(160deg, #FFB400 0%, #F08A00 100%); }
.uc-why-3 { background: linear-gradient(160deg, #16A2D7 0%, #0E6E99 100%); }
.uc-why-4 { background: linear-gradient(160deg, #1F3C88 0%, #0F1F4D 100%); }

/* ── ADD-ON FEATURES — 6 icon cards (dark band) ── */
.uc-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.uc-addon-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.uc-addon-card:hover {
  background: rgba(255,180,0,0.10);
  border-color: rgba(255,180,0,0.45);
  transform: translateY(-4px);
}

.uc-addon-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: rgba(255,180,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.uc-addon-icon svg { width: 28px; height: 28px; fill: var(--primary); }

.uc-addon-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}

.uc-addon-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── BUSINESS BENEFITS — 6 cards (light bg, soft tinted) ── */
.uc-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.uc-benefit-card {
  padding: 30px 26px;
  border-radius: 16px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  box-shadow: 0 6px 18px rgba(15,26,26,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.uc-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15,26,26,0.10);
}

.uc-benefit-card.tint-1 { border-color: #E94560; background: #FFF5F7; }
.uc-benefit-card.tint-2 { border-color: #16A2D7; background: #F0F9FD; }
.uc-benefit-card.tint-3 { border-color: #FFB400; background: #FFF9EA; }
.uc-benefit-card.tint-4 { border-color: #10B981; background: #F0FBF7; }
.uc-benefit-card.tint-5 { border-color: #8B5CF6; background: #F7F4FF; }
.uc-benefit-card.tint-6 { border-color: #F97316; background: #FFF6EE; }

.uc-benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.uc-benefit-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── CORE FEATURES — 2-col rows ── */
.uc-core {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.uc-core-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.uc-core-row:last-child,
.uc-core-row:nth-last-child(2) { border-bottom: none; }

.uc-core-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,180,0,0.15);
  color: var(--primary-dark);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.uc-core-row h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.uc-core-row p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── REVENUE MODELS — 4 colour-coded cards ── */
.uc-revenue {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.uc-revenue-card {
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.uc-revenue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,26,26,0.10);
}

.uc-revenue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
}

.uc-revenue-card.rev-1::before { background: #16A2D7; }
.uc-revenue-card.rev-2::before { background: #FFB400; }
.uc-revenue-card.rev-3::before { background: #E94560; }
.uc-revenue-card.rev-4::before { background: #10B981; }

.uc-revenue-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.uc-revenue-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── DEVELOPMENT PROCESS — horizontal stepper ── */
.uc-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.uc-process::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.uc-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.uc-process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--primary);
  box-shadow: 0 8px 22px rgba(255,180,0,0.20);
}

.uc-process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.uc-process-step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .uc-industries { grid-template-columns: repeat(2, 1fr); }
  .uc-why { grid-template-columns: repeat(2, 1fr); }
  .uc-addons { grid-template-columns: repeat(2, 1fr); }
  .uc-benefits { grid-template-columns: repeat(2, 1fr); }
  .uc-process { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .uc-process::before { display: none; }
}

@media (max-width: 900px) {
  .uc-hero { padding: 120px 0 60px; }
  .uc-hero .container { grid-template-columns: 1fr; gap: 40px; }
  /* On mobile: show the right-side visual first, content below */
  .uc-hero-visual  { order: 1; }
  .uc-hero-content { order: 2; text-align: center; }
  .uc-hero-content p { margin-left: auto; margin-right: auto; }
  .uc-hero-trust { justify-content: center; }
  .uc-pitch .container { grid-template-columns: 1fr; gap: 36px; }
  .uc-app-block,
  .uc-app-block.flip {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .uc-app-block.flip .uc-app-media,
  .uc-app-block.flip .uc-app-body { order: initial; }
  /* Tablet: keep the stack effect but reduce the per-card top offset
     so cards still peek out nicely under the smaller header. */
  .uc-app-block:nth-child(1) { top:  80px; }
  .uc-app-block:nth-child(2) { top: 100px; }
  .uc-app-block:nth-child(3) { top: 120px; }
  .uc-core { grid-template-columns: 1fr; }
  .uc-revenue { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .uc-section { padding: 64px 0; }
  .uc-industries { grid-template-columns: 1fr; }
  .uc-why { grid-template-columns: 1fr; }
  .uc-addons { grid-template-columns: 1fr; }
  .uc-benefits { grid-template-columns: 1fr; }
  .uc-process { grid-template-columns: 1fr; row-gap: 30px; }
  /* Hero CTAs — equal full-width buttons, stacked */
  .uc-hero .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .uc-hero .hero-btns .btn-primary,
  .uc-hero .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    min-height: 56px;
    box-sizing: border-box;
  }
  .uc-app-block { padding: 28px 22px; }
  .uc-app-body h3 { font-size: 1.5rem; }
  .uc-app-bullets { grid-template-columns: 1fr; }
  /* Mobile: each card is taller than the viewport, so sticky stacking
     would trap content off-screen. Fall back to a normal scroll list. */
  .uc-app-block,
  .uc-app-block:nth-child(1),
  .uc-app-block:nth-child(2),
  .uc-app-block:nth-child(3) {
    position: static;
    top: auto;
  }
  .uc-hero-tag.tag-top { top: 8px; left: 8px; }
  .uc-hero-tag.tag-bot { bottom: 8px; right: 8px; }
}
