/* ===================== CSS VARIABLES ===================== */
:root {
  --primary: #ff6b6b;
  --secondary: #4ecdc4;
  --accent: #feca57;
  --success: #1dd1a1;
  --warning: #ff9ff3;
  --error: #ff6b6b;
  
  --text: #2d3436;
  --text-muted: #636e72;
  --text-muted-2: #b2bec3;
  
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-section: #fdfdfd;
  
  --border: #e9ecef;
  --border-light: #f1f3f4;
  
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.1);
  
  --container-width: 1200px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===================== APPLE-LIKE DEMO SECTIONS ===================== */
.demo-section {
  background: #fff;
  padding: 8rem 0;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.demo-grid.reverse { grid-template-columns: 1fr 1.2fr; }
.demo-grid.reverse { direction: rtl; }
.demo-grid.reverse > * { direction: ltr; }

.demo-copy {
  max-width: 620px;
}

.demo-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.demo-sub {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.demo-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text);
}
.demo-bullets li::before { content: '• '; color: var(--primary); margin-right: 6px; }

.demo-media { display: flex; justify-content: center; }

.demo-device {
  width: clamp(280px, 42vw, 520px);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.gradient-1 { background: linear-gradient(135deg, #ffd8a8, #f8a5c2); }
.gradient-2 { background: linear-gradient(135deg, #a8e6cf, #dcedc1); }
.gradient-3 { background: linear-gradient(135deg, #d4e0ff, #f6d0ff); }

.demo-screen {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  min-height: 280px;
  border: 1px solid var(--border-light);
}

/* Full-bleed video variant */
.demo-screen.video {
  padding: 0;
  overflow: hidden;
}

.demo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px; /* match the screen radius */
}

/* Full-bleed image variant (promo section) */
.demo-screen.image {
  padding: 0;
  overflow: hidden;
}

.demo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

/* Promo badge and section tweaks */
.promo-section { background: #f6fafc; }
.promo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0b1210;
  background: rgba(0,0,0,0.06);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.promo-badge.red {
  background: #ffebeb;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.demo-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.demo-row .pill { background: #f5f7f9; border: 1px solid var(--border-light); color: var(--text); font-weight: 600; }

.demo-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 16px;
}
.demo-card-title { font-weight: 700; margin-bottom: 6px; }
.demo-card-text { color: var(--text-muted); }

/* Vault mock */
.vault { display: grid; gap: 12px; }
.vault-row { display: flex; align-items: center; gap: 8px; background: var(--bg-alt); border: 1px solid var(--border-light); padding: 12px 14px; border-radius: 12px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.green { background: #10b981; }
.dot.blue { background: #3b82f6; }
.dot.purple { background: #8b5cf6; }
.vault-footer { font-size: 0.85rem; color: var(--text-muted); text-align: center; padding-top: 6px; }

/* Agent list mock */
.agent-list { display: grid; gap: 10px; }
.agent-item { background: var(--bg-alt); border: 1px solid var(--border-light); padding: 12px 14px; border-radius: 12px; font-weight: 600; display: flex; align-items: center; gap: 10px; }

@media (max-width: 992px) {
  .demo-grid, .demo-grid.reverse { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .demo-section { padding: 5rem 0; }
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #0b1210;
  color: #fff;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 0.5rem; color: rgba(255,255,255,0.7); }

.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-links a:hover { color: #fff; }

.footer-meta { display: grid; gap: 10px; justify-items: end; }
.footer-meta .social { display: flex; gap: 10px; }
.site-footer .chip { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.site-footer .chip:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-meta { justify-items: start; }
}

/* ===================== MODAL (Video) ===================== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}
.modal.open { display: block; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 420px); /* phone-sized width */
  max-height: 92vh;
}
.modal-content {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.modal-video {
  width: 100%;
  height: auto;
  max-height: 92vh;
  display: block;
}
.modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  border: 1px solid var(--border-light);
  display: grid;
  place-items: center;
  font-size: 22px;
  cursor: pointer;
}

/* Phone frame look for the modal content */
.phone-frame {
  background: #0a0a0a;
  border-radius: 36px;
  padding: 12px; /* bezel */
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.phone-frame .modal-video {
  border-radius: 28px;
  aspect-ratio: 9 / 16;
}

/* Brand logo sizing */
.logo-img { width: 28px; height: 28px; display: inline-block; vertical-align: middle; }

/* ===================== RESET & BASE ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================== TYPOGRAPHY ===================== */
.h1, .h2, .h3 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.display {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
}

.subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.muted {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.muted-2 {
  color: var(--text-muted-2);
  font-size: 0.875rem;
}

.center {
  text-align: center;
}

/* ===================== LAYOUT ===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section.sm {
  padding: 3rem 0;
}

.section.lg {
  padding: 8rem 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

/* ===================== NAV (rounded black pill) ===================== */
.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  background: transparent;
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background: #0b1210; /* near-black */
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.brand { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; }
.brand .logo { width: 28px; height: 28px; border-radius: 999px; background: #111; border: 2px solid #2a2f2d; display: inline-block; }

.nav-links { display: flex; justify-content: center; gap: 22px; }
.nav-links a { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav .btn-outline { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.35); }
.nav .btn-outline:hover { color: #fff; }
.nav .btn-dark { background: #111; color: #fff; }

.mobile-toggle { display: none; color: #fff; }

/* Mobile menu hidden by default; opens with .open */
.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  background: #0b1210;
  color: #fff;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.mobile-menu a { color: #fff; padding: 10px 12px; display: block; border-radius: 12px; }
.mobile-menu a:hover { background: rgba(255,255,255,0.06); }
.mobile-menu .mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 8px 0 4px; }
.mobile-menu.open { display: block; }

/* ===================== COMPONENTS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

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

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
  border-radius: 30px;
}

.btn-icon {
  font-size: 1.1em;
  margin-left: 0.25rem;
}

.tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.chip {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.chip:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.chip.accent {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.style-chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0.25rem;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.style-chip:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

/* ===================== GRADIENTS ===================== */
.orange-gradient {
  background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
}

.blue-gradient {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.purple-gradient {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.pink-gradient {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.yellow-gradient {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.green-gradient {
  background: linear-gradient(135deg, #a8caba 0%, #5d4e75 100%);
}

.yellow-orange-gradient {
  background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
}

.red-gradient {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

/* ===================== HERO ===================== */
.hero {
  background: #ffffff; /* white hero */
  color: var(--text);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none; /* remove purple sheen */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #feca57;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.gradient-text {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Inline sticker over the AI-powered phrase */
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  transform: translateY(-0.6em) rotate(-12deg);
  margin-left: 0.25rem;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15));
}
.sticker-red { background: #e23b3b; }

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

/* New hero grid to match reference */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qr {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: repeating-linear-gradient(45deg, #111, #111 8px, #fff 8px, #fff 16px);
  box-shadow: var(--shadow);
}

.meta-lines { display: flex; flex-direction: column; line-height: 1.2; }
.meta { font-size: 0.9rem; opacity: 0.9; }

.avatar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  box-shadow: var(--shadow);
  border: 2px solid rgba(255,255,255,0.6);
}

.avatar.more {
  width: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.8rem;
}

.tab-card {
  position: relative;
  background: #fff;
  color: var(--text);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  max-width: 320px;
}

.tab-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 24px;
  width: 72px;
  height: 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-bottom: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.04);
}

.pill {
  display: inline-block;
  padding: 6px 10px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tab-body { margin-top: 8px; }
.tab-body p { color: var(--text-muted); margin-top: 4px; }

.hero-center { display: flex; justify-content: center; position: relative; }

.hero-sides {
  position: relative;
  height: 560px;
  display: grid;
  grid-template-rows: 1fr;
  gap: 16px;
}

.side-img {
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.25);
}

.side-left {
  background-image: url('../images/first.png');
  /* Fill and crop so any top white area of the source image is not visible */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.side-right {
  background-image: url('https://images.unsplash.com/photo-1520975916090-3105956dac38?q=80&w=800&auto=format&fit=crop');
}

/* Integrations layout: 2 items per row */
.integrations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;                               /* row gap, column gap */
  align-items: start;
  align-content: start;
  justify-content: start;
  width: 100%;
}

.integration-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;                           /* keep logo and label on one line */
}

.integration-logo {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.integration-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .integrations { gap: 6px 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .integration-card { justify-content: center; padding: 6px 8px; }
  .integration-name { display: none; }
  .integration-logo { width: 22px; height: 22px; padding: 3px; }
}

/* Hero floating popups */
.hero-popups { position: absolute; inset: 0; pointer-events: none; }
.popup {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  animation: popup-in 700ms ease forwards, popup-float 6s ease-in-out infinite;
}
.popup .emoji { font-size: 1.1rem; }
.popup-reward { top: -12px; right: -20px; animation-delay: 150ms, 0ms; }
.popup-discount { bottom: -16px; left: -20px; animation-delay: 300ms, 1s; }
.popup-reco { top: 38%; left: -52px; animation-delay: 450ms, 2s; }

@keyframes popup-in {
  0% { opacity: 0; transform: translateY(8px) scale(0.96); }
  60% { opacity: 1; transform: translateY(-2px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes popup-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.01); }
}

.phone-stack {
  position: relative;
  width: 300px;
  height: 400px;
}

.phone {
  position: absolute;
  width: 180px;
  height: 320px;
  border-radius: 25px;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
}

.phone-1 {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-5deg);
}

.phone-2 {
  top: 20px;
  left: 60px;
  z-index: 2;
  transform: rotate(5deg);
}

.phone-3 {
  top: 40px;
  left: 120px;
  z-index: 1;
  transform: rotate(10deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Image-based phone mockups */
.phone-mock {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.style-text {
  font-weight: 600;
  font-size: 1.1rem;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
}

.card-1 {
  top: 50px;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.card-2 {
  bottom: 80px;
  left: -30px;
  animation: float 3s ease-in-out infinite 1.5s;
}

.card-icon {
  font-size: 1.2rem;
}

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

/* Dark / Green pill buttons */
.btn-dark {
  background: #111;
  color: #fff;
  border-radius: 30px;
  padding: 0.9rem 1.6rem;
}
.btn-dark:hover { background: #0b0b0b; transform: translateY(-2px); }

.btn-green {
  background: #16a34a;
  color: #fff;
  border-radius: 30px;
  padding: 0.9rem 1.6rem;
}
.btn-green:hover { background: #128a3f; transform: translateY(-2px); }

/* ===================== SECTION HEADERS ===================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.025em;
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.accent {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
  opacity: 0.3;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  .sticker { padding: 5px 10px; font-size: 0.8rem; transform: translateY(-0.5em) rotate(-10deg); }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-sides { order: 3; height: 260px; grid-template-rows: 1fr 1fr; }
  .hero-aside { order: 1; }
  .hero-center { order: 2; margin-top: 8px; }
  
  .phone-stack {
    width: 250px;
    height: 300px;
  }
  
  .phone {
    width: 140px;
    height: 250px;
  }
  
  .style-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .categories-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .app-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .user-stats {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  .mobile-menu { position: fixed; top: 70px; left: 16px; right: 16px; }
  .popup { padding: 10px 12px; font-size: 0.9rem; }
  .popup-reward { top: 8px; right: 8px; }
  .popup-discount { bottom: 8px; left: 8px; }
  .popup-reco { top: calc(50% - 10px); left: 8px; transform: translateY(-50%); }
}

/* ===================== STYLE SHOWCASE ===================== */
.style-showcase {
  background: var(--bg-section);
  padding: 6rem 0;
  margin: 0;
}

.style-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.style-main {
  position: relative;
}

.main-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-silhouette {
  width: 200px;
  height: 300px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(5px);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem;
  color: white;
}

.style-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.style-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.style-info p {
  opacity: 0.9;
}

.style-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.small-card .card-content {
  padding: 2rem;
  text-align: center;
}

.small-card .card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.small-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.small-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-image {
  height: 120px;
  position: relative;
}

.product-info {
  padding: 1.5rem;
}

.product-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-rating {
  font-size: 0.9rem;
}

/* ===================== FEATURES ===================== */
.features-section {
  background: white;
  padding: 6rem 0;
}

.features-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.feature-main {
  position: relative;
}

.large-feature {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.feature-visual {
  margin-bottom: 2rem;
}

.style-circles {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.circle:hover {
  transform: scale(1.1);
}

.circle-1 { animation: bounce 2s ease-in-out infinite; }
.circle-2 { animation: bounce 2s ease-in-out infinite 0.2s; }
.circle-3 { animation: bounce 2s ease-in-out infinite 0.4s; }
.circle-4 { animation: bounce 2s ease-in-out infinite 0.6s; }
.circle-5 { animation: bounce 2s ease-in-out infinite 0.8s; }

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

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.feature-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.small-feature {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  text-align: center;
}

.small-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.small-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.small-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===================== LIFESTYLE CATEGORIES ===================== */
.lifestyle-categories {
  background: var(--bg-section);
  padding: 6rem 0;
}

.categories-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.categories-main {
  position: relative;
}

.large-category {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.category-image {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-overlay h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-overlay h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.category-overlay p {
  opacity: 0.9;
  font-size: 1rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.small-category {
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.3s ease;
}

.small-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ===================== APP EXPERIENCE ===================== */
.app-experience {
  background: white;
  padding: 6rem 0;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.user-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
}

.stat-card .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.phone-container {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.phone-frame {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow-xl);
}

.phone-screen {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.app-interface {
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.app-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.style-card-mini {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mini-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
}

.mini-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mini-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.feature-list-mini {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-icon-mini {
  font-size: 1.2rem;
}

.floating-badge {
  position: absolute;
  top: -10px;
  right: -20px;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.app-badge {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  background: var(--bg-section);
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
}

.user-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.user-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.rating {
  font-size: 0.9rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ===================== CTA ===================== */
.cta-section {
  padding: 6rem 0;
  background: var(--bg-section);
}

.cta-band {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  color: #feca57;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-feature .feature-icon {
  font-size: 1.1rem;
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero {
    margin: 1rem auto;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .avatars {
    justify-content: center;
  }
  
  .hero-ui {
    grid-template-columns: 1fr;
  }
}