/* ============================================
   LyncUp Landing Page — Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* LyncUp Brand Colors — from Figma */
  --primary: #EC1E4E;
  --primary-dark: #A51437;
  --primary-medium: #CA1A43;
  --primary-light: #DB1C49;
  --pink-light: #FDD3DE;
  --pink-orchid: #FCC4DE;
  --pink-blossom: #FCB8CA;
  --pink-blossom-alt: #FBACC1;
  --pink-amaranth: #F9A1B8;
  --red-bittersweet: #FE5655;
  --text-dark: #1F1F1F;
  --text-medium: #5D5C5C;
  --gray-dark-1: #8E8E93;
  --gray-dark-2: #AEAEB2;
  --gray-50: #F2F2F7;
  --gray-100: #E5E5EA;
  --gray-200: #D1D1D6;
  --gray-300: #C7C7CC;
  --gray-400: #AEAEB2;
  --gray-500: #8E8E93;
  --gray-600: #5D5C5C;
  --gray-700: #404040;
  --gray-800: #1F1F1F;
  --gray-900: #171717;
  --white: #FFFFFF;
  --green: #10B981;
  --amber: #F59E0B;
  --gradient-primary: linear-gradient(135deg, #EC1E4E, #A51437);
  --gradient-primary-light: linear-gradient(135deg, #FDD3DE, #E6E6E6);
  --gradient-hero: linear-gradient(180deg, #FDD3DE 0%, #E8E5E6 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 60px rgba(236, 30, 78, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lexend Deca', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(236, 30, 78, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(236, 30, 78, 0.3);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 30, 78, 0.4);
}

.btn-outline {
  border: 2px solid var(--gray-200);
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-nav {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(236, 30, 78, 0.25);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(236, 30, 78, 0.35);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.navbar.scrolled .logo-text {
  color: var(--text-dark);
}

.navbar.scrolled .nav-links a {
  color: var(--text-medium);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.navbar.scrolled .nav-links a.btn-nav,
.nav-links a.btn-nav {
  color: var(--white);
}

.navbar.scrolled .mobile-menu-btn span {
  background: var(--text-dark);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 30, 78, 0.06), transparent 70%);
  top: -15%;
  right: -10%;
  animation: float-slow 20s ease-in-out infinite;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(252, 196, 222, 0.3), transparent 70%);
  bottom: 5%;
  left: -10%;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
  top: 40%;
  left: 40%;
  animation: float-slow 18s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 24px;
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: none;
  align-items: center;
  gap: 32px;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
}

.stat-suffix {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 13px;
  color: var(--text-medium);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
}

/* --- Phone Screenshot --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
}

.phone-screenshot-wrapper {
  width: 300px;
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}

.phone-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.phone-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(40px);
}

/* --- Floating Cards --- */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 5;
}

.fc-icon {
  font-size: 24px;
}

.fc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800);
}

.fc-sub {
  font-size: 11px;
  color: var(--gray-400);
}

.fc-1 {
  top: 15%;
  right: -20px;
  animation: float-card 6s ease-in-out infinite;
}

.fc-2 {
  bottom: 20%;
  left: -10px;
  animation: float-card 6s ease-in-out infinite 3s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--gray-300);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* --- Trusted By --- */
.trusted-by {
  padding: 48px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.trusted-label {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 24px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.trusted-logo:hover {
  color: var(--gray-400);
}

/* --- Features Section --- */
.features {
  padding: 120px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- How It Works --- */
.how-it-works {
  padding: 120px 0;
  background: var(--gray-50);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 48px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease;
}

.step:hover {
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.step-number {
  font-size: 64px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.7;
  min-width: 80px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 400px;
}

.step-visual {
  width: 200px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-mockup {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(236,30,78,0.05), rgba(253,211,222,0.15));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(236,30,78,0.08);
}

/* Step Mockup Illustrations */
.mock-profile {
  text-align: center;
}

.mock-avatar-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(236,30,78,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.mock-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  max-width: 180px;
}

.mock-tag {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  background: rgba(236,30,78,0.08);
  color: var(--primary);
  font-weight: 500;
}

.mock-map {
  width: 160px;
  height: 140px;
  position: relative;
  background: radial-gradient(circle at center, rgba(236,30,78,0.05) 0%, transparent 70%);
}

.mock-pin {
  position: absolute;
  font-size: 20px;
  animation: bounce-pin 2s ease-in-out infinite;
}

.pin-1 { top: 20%; left: 30%; animation-delay: 0s; }
.pin-2 { top: 40%; right: 20%; animation-delay: 0.5s; }
.pin-3 { bottom: 25%; left: 20%; animation-delay: 1s; }
.pin-4 { top: 15%; right: 35%; animation-delay: 1.5s; }

@keyframes bounce-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.mock-radius {
  width: 100px;
  height: 100px;
  border: 2px dashed rgba(236,30,78,0.15);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mock-connect {
  text-align: center;
}

.mock-people {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.mock-person {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 -6px;
  border: 3px solid white;
}

.p1 { background: linear-gradient(135deg, #EC1E4E, #A51437); z-index: 4; }
.p2 { background: linear-gradient(135deg, #CA1A43, #A51437); z-index: 3; }
.p3 { background: linear-gradient(135deg, #FDD3DE, #FCB8CA); z-index: 2; }
.p4 { background: linear-gradient(135deg, #DB1C49, #B7173C); z-index: 1; }

.mock-check {
  margin-bottom: 4px;
  animation: check-pop 2s ease-in-out infinite;
}

@keyframes check-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.mock-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

/* --- Categories --- */
.categories {
  padding: 120px 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  height: 200px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s;
}

.cat-nightlife .cat-overlay { background: linear-gradient(135deg, #2A0E1C, #A51437); }
.cat-dining .cat-overlay { background: linear-gradient(135deg, #7c2d12, #c2410c); }
.cat-fitness .cat-overlay { background: linear-gradient(135deg, #064e3b, #059669); }
.cat-sports .cat-overlay { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.cat-music .cat-overlay { background: linear-gradient(135deg, #3D0A1E, #CA1A43); }
.cat-creative .cat-overlay { background: linear-gradient(135deg, #4A0D28, #EC1E4E); }
.cat-outdoor .cat-overlay { background: linear-gradient(135deg, #134e4a, #14b8a6); }
.cat-social .cat-overlay { background: linear-gradient(135deg, #78350f, #f59e0b); }

.category-card:hover .cat-overlay {
  opacity: 0.9;
}

.cat-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.cat-emoji {
  font-size: 32px;
  margin-bottom: 8px;
}

.cat-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.cat-content p {
  font-size: 12px;
  opacity: 0.7;
}

/* --- Business Section --- */
.business {
  padding: 120px 0;
  background: var(--gray-50);
}

.business-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.business-content .section-tag,
.business-content .section-title,
.business-content .section-subtitle {
  text-align: left;
}

.business-content .section-subtitle {
  margin-bottom: 36px;
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.biz-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.biz-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(236, 30, 78, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.biz-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.biz-feature p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Business Dashboard Mockup */
.biz-dashboard {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dash-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
}

.dash-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gradient-primary);
  color: white;
  letter-spacing: 0.05em;
}

.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 16px;
}

.dash-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
}

.dash-stat-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.dash-stat-change {
  font-size: 12px;
  font-weight: 700;
}

.dash-stat-change.positive {
  color: var(--green);
}

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 8px;
}

.chart-bar {
  flex: 1;
  background: rgba(236, 30, 78, 0.1);
  border-radius: 6px 6px 0 0;
  transition: background 0.3s;
  min-height: 10px;
}

.chart-bar.active {
  background: var(--gradient-primary);
}

.chart-bar:hover {
  background: rgba(236, 30, 78, 0.25);
}

.chart-bar.active:hover {
  background: var(--gradient-primary);
}

.dash-chart-labels {
  display: flex;
  gap: 8px;
}

.dash-chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
}

/* --- Testimonials --- */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, #EC1E4E, #AB1438);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255,255,255,0.85);
}

.testimonial-card.featured .author-name {
  color: var(--white);
}

.testimonial-card.featured .author-role {
  color: rgba(255,255,255,0.5);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
}

.author-role {
  font-size: 13px;
  color: var(--gray-400);
}

/* --- Download CTA --- */
.download-cta {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFF5F7 0%, #FDE8ED 100%);
  position: relative;
  overflow: hidden;
}

.download-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dl-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.dl-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 30, 78, 0.06), transparent 70%);
  top: -20%;
  left: -10%;
}

.dl-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 30, 78, 0.08), transparent 70%);
  bottom: -20%;
  right: -10%;
}

.download-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.download-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.download-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}

.store-badge img {
  display: block;
  height: 49px;
  width: auto;
  border-radius: 8px;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  line-height: 1.3;
}

.download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 600;
}

.qr-frame {
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(31, 31, 31, 0.08);
  border: 1px solid var(--gray-100);
}

.qr-image {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* --- Contact Section --- */
.contact {
  padding: 120px 0;
  background: var(--gray-50);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark-2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(236, 30, 78, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  align-self: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--white);
}

.contact-info-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-info-card {
    flex: 1;
    min-width: 160px;
  }
}

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  padding: 80px 0 40px;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links-group a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-500);
}

/* --- Legal Pages --- */
.legal-page {
  padding: 140px 0 100px;
  background: var(--white);
  min-height: 70vh;
}

.legal-header {
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--gray-dark-1);
}

.legal-content {
  max-width: 760px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section ul li {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.legal-footer-links {
  display: flex;
  gap: 24px;
}

.legal-footer-links a {
  color: var(--gray-400);
  font-size: 13px;
  transition: color 0.2s;
}

.legal-footer-links a:hover {
  color: var(--white);
}

/* --- Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .business-content .section-tag,
  .business-content .section-title,
  .business-content .section-subtitle {
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .step {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }

  .step-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 211, 222, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
    color: var(--text-dark);
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-card {
    height: 160px;
  }

  .step {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 16px;
  }

  .step-number {
    font-size: 40px;
    min-width: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .floating-card {
    display: none;
  }

  .phone-screenshot-wrapper {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-badge img {
    height: 44px;
  }
}
