@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
  /* Colors based on AppTheme */
  --primary: #051c2c;
  --primary-light: #1a3a4f;
  --primary-dark: #000d17;

  --secondary: #f95e85;
  --secondary-light: #ff8fa8;
  --secondary-dark: #d43a60;

  --tertiary: #00D9A5;

  --background: #F8F9FE;
  --surface: #FFFFFF;
  --surface-variant: #F0F1F8;

  --text-primary: #051c2c;
  --text-secondary: #4a6274;
  --text-tertiary: #8899a6;
  --text-inverse: #ffffff;

  --border-radius-sm: 12px;
  --border-radius-md: 16px;
  --border-radius-lg: 20px;
  --border-radius-xl: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Material Icons Helper */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-inverse);
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 100px;
  /* Fully rounded */
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: inherit;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--text-inverse);
  box-shadow: 0 6px 16px rgba(249, 94, 133, 0.35);
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmerBtn 2.5s infinite linear;
  z-index: -1;
}

@keyframes shimmerBtn {
  100% {
    left: 200%;
  }
}

.btn-download {
  padding: 10px 24px;
}

.btn-download .btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.1;
  margin-right: 12px;
}

.btn-download .btn-subtext {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.btn-download .btn-maintext {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn-gradient:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 24px rgba(249, 94, 133, 0.45);
}

.btn-gradient:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 10px rgba(249, 94, 133, 0.3);
}

.btn-gradient:focus-visible {
  box-shadow: 0 0 0 4px rgba(249, 94, 133, 0.4);
}

.btn .icon {
  font-size: 28px;
  /* Slightly larger for stores */
  transition: transform 0.3s ease;
}

.btn:hover .icon.animate-pulse {
  animation: iconPulse 1s infinite alternate ease-in-out;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15) rotate(5deg);
  }
}

/* Base Layout Container */
.container {
  max-width: 600px;
  /* Matching mobile-first/app-like center layout */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Header & Hero Background */
.hero-wrapper {
  position: relative;
  width: 100%;
}

.hero-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-split {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-split>div {
    flex: 1;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 380px;
  background: linear-gradient(180deg, var(--primary) 0%, #0F1A30 100%);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  z-index: 1;
}

/* Decorative circles */
.circle-blur {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 30px;
  left: -30px;
  animation: float1 8s infinite alternate ease-in-out;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 80px;
  right: -20px;
  background: rgba(255, 255, 255, 0.03);
  animation: float2 6s infinite alternate ease-in-out;
}

.circle-3 {
  width: 50px;
  height: 50px;
  bottom: 40px;
  left: 60px;
  background: rgba(255, 255, 255, 0.05);
  animation: float3 10s infinite alternate ease-in-out;
}

@keyframes float1 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(15px);
  }
}

@keyframes float2 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes float3 {
  0% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(10px);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  text-align: center;
  color: var(--text-inverse);
}

.logo-container {
  margin-top: 20px;
  margin-bottom: 30px;
  animation: fadeSlideDown 0.6s ease-out backwards;
}

.logo-container img {
  height: 28px;
}

.welcome-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  animation: fadeSlideUp 0.7s ease-out 0.2s backwards;
}

.waving-hand {
  font-size: 24px;
  display: inline-block;
  transform-origin: bottom center;
  animation: wave 2.5s ease-in-out;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.subtitle {
  color: #B0C4DE;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease-out 0.5s backwards;
}

/* Promo Card */
.promo-card {
  background-color: #F5F8FF;
  border-radius: var(--border-radius-xl);
  border: 1.5px solid rgba(5, 28, 44, 0.08);
  /* AppColors.primary */
  padding: 24px;
  display: flex;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(5, 28, 44, 0.06), 0 -1px 1px rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  position: relative;
  animation: fadeSlideUp 0.8s ease-out 0.3s backwards;
  text-align: left;
}

.promo-info {
  flex: 3;
}

.promo-logo-group {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.promo-logo-group img {
  height: 18px;
}

.marketing-badge {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: lowercase;
  margin-top: 0px;
}

.promo-title {
  font-size: 1.125rem;
  /* 18px */
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.promo-desc {
  font-size: 0.8125rem;
  /* 13px */
  color: var(--text-secondary);
  margin-bottom: 20px;
}

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

.campaign-icon {
  font-size: clamp(56px, 18vw, 90px);
  color: rgba(249, 94, 133, 0.8);
  /* secondary with opacity */
  animation: pulseScaleRotate 4s infinite alternate ease-in-out;
}

.promo-action-meta {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 8px;
  text-align: center;
}

.btn-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

@keyframes pulseScaleRotate {
  0% {
    transform: scale(1) rotate(-1deg);
  }

  100% {
    transform: scale(1.08) rotate(1deg);
  }
}

/* Social Section */
.social-section {
  text-align: center;
  margin-bottom: 40px;
}

.social-top-text {
  background: linear-gradient(90deg, rgba(5, 28, 44, 0.04), rgba(5, 28, 44, 0.01));
  border-radius: var(--border-radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.5s ease-out 0.1s backwards;
}

.bell-icon-wrapper {
  background: rgba(5, 28, 44, 0.08);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  animation: bellPulse 4s infinite alternate ease-in-out;
}

.bell-icon-wrapper .material-symbols-rounded {
  font-size: 16px;
  color: rgba(5, 28, 44, 0.7);
}

@keyframes bellPulse {
  100% {
    transform: scale(1.15);
  }
}

.social-top-text p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: -0.1px;
}

.social-top-text p strong {
  color: var(--primary);
  font-weight: 700;
}

.social-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.social-card {
  flex: 1 1 calc(50% - 6px);
  min-width: 130px;
  border-radius: var(--border-radius-lg);
  padding: 16px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeSlideUp 0.8s ease-out 0.2s backwards;
}

.social-card:hover {
  transform: translateY(-4px);
}

.social-card:active {
  transform: translateY(0);
}

.social-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 3s infinite linear;
}

.card-instagram {
  background: linear-gradient(to top right, #F58529, #DD2A7B, #8134AF);
  box-shadow: 0 6px 18px rgba(245, 133, 41, 0.4), 0 -2px 8px rgba(129, 52, 175, 0.2);
}

.card-tiktok {
  background: linear-gradient(to bottom right, #0F172A, #1E293B);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.4), 0 -2px 8px rgba(30, 41, 59, 0.2);
}

.card-facebook {
  background: linear-gradient(to bottom right, #1877F2, #0056b3);
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4), 0 -2px 8px rgba(0, 86, 179, 0.2);
}

.card-linkedin {
  background: linear-gradient(to bottom right, #0A66C2, #004182);
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.4), 0 -2px 8px rgba(0, 65, 130, 0.2);
}

.card-x {
  background: linear-gradient(to bottom right, #000000, #2d2d2d);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4), 0 -2px 8px rgba(45, 45, 45, 0.2);
}

.social-card .icon-wrapper {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-card .icon-wrapper .material-symbols-rounded,
.social-card .icon-wrapper .social-svg-icon {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--text-inverse);
  animation: iconFloat 3s infinite alternate ease-in-out;
}

.social-card span {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

@media (min-width: 768px) {
  .social-cards {
    gap: 16px;
  }

  .social-card {
    flex: 1 1 calc(33.333% - 11px);
    padding: 18px 0;
    gap: 14px;
  }

  .social-card .icon-wrapper .material-symbols-rounded,
  .social-card .icon-wrapper .social-svg-icon {
    width: 24px;
    height: 24px;
  }

  .social-card span {
    font-weight: 900;
    font-size: 1.125rem;
    letter-spacing: 0.3px;
  }
}

@keyframes iconFloat {
  0% {
    transform: translateY(-3px) scale(0.95);
  }

  100% {
    transform: translateY(3px) scale(1.05);
  }
}

@keyframes shimmer {
  100% {
    left: 200%;
  }
}

.bottom-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeSlideUp 0.6s ease-out 0.6s backwards;
}

.sparkle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sparkle-line {
  width: 30px;
  height: 1px;
}

.sparkle-line.left {
  background: linear-gradient(to right, transparent, rgba(5, 28, 44, 0.3));
}

.sparkle-line.right {
  background: linear-gradient(to left, transparent, rgba(5, 28, 44, 0.3));
}

.sparkle-icon {
  font-size: 16px;
  animation: sparkleScale 3.6s infinite alternate ease-in-out;
}

@keyframes sparkleScale {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.gradient-text-shimmer {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  background: linear-gradient(to right, var(--primary), var(--primary-light), var(--tertiary));
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientShimmer 3s linear infinite;
  display: inline-block;
}

@keyframes gradientShimmer {
  to {
    background-position: 200% center;
  }
}

/* Content Pages (Privacy, Promote) */
.page-header {
  padding: 40px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--background) 0%, rgba(248, 249, 254, 0.5) 100%);
  position: relative;
}

.page-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.content-card {
  background: var(--surface);
  border-radius: var(--border-radius-xl);
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(5, 28, 44, 0.04);
  border: 1px solid var(--surface-variant);
  color: var(--text-secondary);
}

.content-card h3 {
  color: var(--primary);
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.content-card h3:first-child {
  margin-top: 0;
}

.content-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content-card li {
  margin-bottom: 8px;
}

.content-card p {
  margin-bottom: 16px;
}

/* Layout Utilities */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  position: relative;
  z-index: 100;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.navbar-brand img {
  height: 28px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-links {
  display: none;
  /* Mobile hidden by default */
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.nav-link {
  color: var(--text-inverse);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
}

.nav-link:hover {
  opacity: 1;
  color: var(--secondary-light);
}

/* Base Layout Extensions */
.container-large {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 80px 0;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(5, 28, 44, 0.05);
  border-radius: 100px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.section-heading {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Feature Cards (Onboarding Style) */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: var(--surface);
  border-radius: var(--border-radius-xl);
  padding: 32px 24px;
  text-align: left;
  border: 1px solid var(--surface-variant);
  box-shadow: 0 8px 24px rgba(5, 28, 44, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(5, 28, 44, 0.06);
}

.feature-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 16px rgba(5, 28, 44, 0.08);
}

.feature-icon-container.gradient-1 {
  background: linear-gradient(135deg, var(--primary), #0a3350);
}

.feature-icon-container.gradient-2 {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.feature-icon-container.gradient-3 {
  background: linear-gradient(135deg, var(--tertiary), #00E5B8);
}

.feature-icon-container.gradient-4 {
  background: linear-gradient(135deg, #FF6B6B, #FFE66D);
}

.feature-icon-container .material-symbols-rounded {
  color: white;
  font-size: 32px;
}

.feature-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-list-icon {
  background: rgba(5, 28, 44, 0.05);
  border-radius: 8px;
  padding: 4px;
  display: flex;
  color: var(--primary);
}

.feature-list-icon .material-symbols-rounded {
  font-size: 16px;
}

/* How It Works Steps */
.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  position: relative;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .steps-container {
    display: grid;
    grid-template-columns: 1fr minmax(100px, 0.5fr) 1fr minmax(100px, 0.5fr) 1fr;
    align-items: start;
    column-gap: 18px;
    max-width: 1200px;
  }
}

.step-card {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(100%, 340px);
}

.step-number {
  width: 86px;
  height: 86px;
  background: var(--surface);
  border: 1px solid rgba(255, 95, 162, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(7, 29, 51, 0.08), 0 0 0 8px rgba(255, 95, 162, 0.04);
}

.step-number::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 95, 162, 0.12);
}

.step-connector {
  width: 4px;
  height: 52px;
  margin: 2px auto 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5fa2 0%, #ff7db8 45%, #ff9ac9 100%);
  box-shadow: 0 8px 22px rgba(255, 95, 162, 0.22), 0 0 0 6px rgba(255, 95, 162, 0.035);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.step-connector::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: translateY(-120%);
  animation: wondeaShineVertical 3.8s ease-in-out infinite;
}

.step-connector::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 1px;
  transform: translateX(-50%);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0 8px, transparent 8px 20px);
  opacity: 0.35;
}

@media (min-width: 768px) {
  .step-card {
    width: auto;
  }

  .step-connector {
    width: 100%;
    height: 4px;
    margin-top: 42px;
  }

  .step-connector::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transform: translateX(-120%);
    animation: wondeaShineHorizontal 3.8s ease-in-out infinite;
  }

  .step-connector::after {
    top: 50%;
    left: 14px;
    right: 14px;
    bottom: auto;
    width: auto;
    height: 1px;
    transform: translateY(-50%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 8px, transparent 8px 20px);
  }
}

@media (max-width: 767.98px) {
  .step-number {
    width: 74px;
    height: 74px;
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .step-number::after {
    inset: 8px;
  }
}

@keyframes wondeaShineHorizontal {
  0% {
    transform: translateX(-120%);
  }

  45%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes wondeaShineVertical {
  0% {
    transform: translateY(-120%);
  }

  45%,
  100% {
    transform: translateY(120%);
  }
}

.step-title {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* App Mockup Preview & Gallery */
.mockup-section {
  padding: 40px 0 80px;
  overflow: hidden;
  position: relative;
}

/* Animated Gallery Slider */
.gallery-container {
  position: relative;
  width: 300px;
  height: 535px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 40px;
  border: 8px solid var(--primary);
  box-shadow: 0 24px 48px rgba(5, 28, 44, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
}

@media (min-width: 768px) {
  .gallery-container {
    width: 320px;
    height: 570px;
    transform: rotate(5deg);
    transition: transform 0.4s ease;
  }

  .gallery-container:hover {
    transform: rotate(0deg) translateY(-10px);
  }
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: 100% 100%;
  background-position: center;
  transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  position: relative;
  z-index: 10;
}

.gallery-btn {
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

/* Responsive adjustments for generic header */
@media (min-width: 768px) {
  .hero-bg {
    height: 520px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .hero-content {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .subtitle {
    font-size: 1.25rem;
  }

  .store-buttons {
    gap: 24px !important;
  }

  .promo-card {
    padding: 40px;
  }

  .promo-title {
    font-size: 1.5rem;
  }

  .promo-desc {
    font-size: 1rem;
  }
}

/* Hover link transition */
.hover-link-secondary {
  transition: color 0.2s ease;
}

.hover-link-secondary:hover {
  color: var(--secondary-light);
}