/* =========================================
   TRIPNOTI LANDING PAGE — STYLE.CSS
   Design System: "The Intentional Voyager"
   Primary: #ffda55 | Cyan: #5af1fd | Charcoal: #373737
   ========================================= */

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

:root {
  --primary: #ffda55;
  --primary-dark: #f0cc48;
  --primary-dim: #6e5a00;
  --cyan: #5af1fd;
  --cyan-dark: #00666c;
  --charcoal: #373737;
  --charcoal-light: #5a5c56;
  --bg: #fafaf2;
  --bg-low: #f1f1e9;
  --bg-container: #e8e9e0;
  --white: #ffffff;
  --outline: #adaea7;
  --red: #FF3B30;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 16px rgba(45,47,42,0.06);
  --shadow-md: 0 8px 32px rgba(45,47,42,0.1);
  --shadow-lg: 0 20px 60px rgba(45,47,42,0.15);
  --shadow-float: 0 40px 80px -10px rgba(45,47,42,0.22);
  --trans: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; }

/* --- MATERIAL ICONS --- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatNotif {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50%       { transform: translateY(-8px) rotate(-3deg); }
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.08) translate(20px, -20px); }
  66%       { transform: scale(0.94) translate(-15px, 18px); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.animate-fadein { animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) both; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(255,218,85,0.35);
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,218,85,0.5);
}
.btn-primary:active { transform: scale(0.97); }

.btn-sm { font-size: 12px; padding: 9px 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--charcoal-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 0;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: -0.01em;
}
.btn-ghost:hover { color: var(--charcoal); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--charcoal);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }
.btn-dark:active { transform: scale(0.97); }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,242,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow var(--trans);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Real logo image */
.logo-img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}
.logo-img-footer {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: var(--charcoal);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--charcoal);
  transition: color var(--trans);
  letter-spacing: -0.01em;
}
.nav-link:hover { color: var(--primary-dim); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--trans);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
}
.mobile-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .navbar .btn-primary { display: none; }
  .hamburger { display: flex; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 40px 40px;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  animation: blobPulse 12s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  bottom: 80px; right: 100px;
  opacity: 0.2;
  animation-delay: -4s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  bottom: -60px; left: 100px;
  opacity: 0.2;
  animation-delay: -8s;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-low);
  border: 1px solid rgba(173,174,167,0.3);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--charcoal-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.headline-accent { color: var(--primary); }

.hero-sub {
  font-size: 17px;
  color: var(--charcoal-light);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.store-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.store-badge {
  display: inline-block;
  transition: transform var(--trans), box-shadow var(--trans);
  border-radius: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}
.store-badge:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.14));
}
.store-img { height: 42px; width: auto; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatars { display: flex; }
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -6px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: var(--primary); color: var(--primary-dim); }
.av2 { background: var(--cyan); color: var(--cyan-dark); }
.av3 { background: var(--charcoal); color: var(--bg); }
.av4 { background: var(--bg-container); color: var(--charcoal-light); }
.proof-text { font-size: 12px; color: var(--charcoal-light); }
.proof-text strong { color: var(--charcoal); }

/* Phone cluster */
.phone-cluster {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  height: 520px;
}
.phone { position: relative; flex-shrink: 0; }
.phone-frame {
  background: #1a1a1a;
  border-radius: 40px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.phone-screen {
  border-radius: 32px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.phone-left {
  width: 160px;
  margin-right: -40px;
  z-index: 1;
  transform: rotate(-8deg) translateY(30px);
  animation: floatY 6s ease-in-out infinite;
  animation-delay: -2s;
}
.phone-center {
  width: 200px;
  z-index: 3;
  animation: floatY 7s ease-in-out infinite;
}
.phone-frame-center {
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow: 0 48px 100px -15px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-right {
  width: 160px;
  margin-left: -40px;
  z-index: 1;
  transform: rotate(8deg) translateY(30px);
  animation: floatY 5s ease-in-out infinite;
  animation-delay: -4s;
}

.float-notif {
  position: absolute;
  bottom: -20px;
  left: -60px;
  background: var(--charcoal);
  color: var(--bg);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  box-shadow: var(--shadow-lg);
  animation: floatNotif 5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 10;
}
.notif-icon { font-size: 20px; }
.notif-title { font-size: 10px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.notif-sub { font-size: 12px; font-weight: 600; color: var(--bg); margin-top: 1px; }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.4;
  animation: floatY 3s ease-in-out infinite;
}
.scroll-text { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--charcoal-light); }
.scroll-arrow { color: var(--charcoal-light); }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 40px;
    text-align: center;
    min-height: auto;
  }
  .hero-content { order: 1; }
  .hero-sub { max-width: 100%; }
  .store-btns { justify-content: center; }
  .hero-proof { justify-content: center; }
  .phone-cluster { order: 2; height: 380px; }
  .phone-left { width: 120px; }
  .phone-center { width: 155px; }
  .phone-right { width: 120px; }
  .float-notif { left: -20px; bottom: -10px; min-width: 160px; }
  .blob-1 { width: 300px; height: 300px; }
  .scroll-cue { display: none; }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--charcoal);
  padding: 32px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.stat-prefix {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 10px;
  color: rgba(250,250,242,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(250,250,242,0.08);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .stat-divider { display: none; }
  .stats-inner { gap: 16px; }
  .stat-num { font-size: 1.9rem; }
  .stat-suffix { font-size: 1.3rem; }
}

/* =========================================
   SECTION SHARED
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--charcoal-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.accent-yellow { color: var(--primary); }
.accent-cyan { color: var(--cyan-dark); }

/* =========================================
   FEATURES
   ========================================= */
.features {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }

/* Phone showcase */
.phone-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-frame-showcase {
  background: #1a1a1a;
  border-radius: 44px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-float);
  max-width: 260px;
  width: 100%;
  overflow: hidden;
}
.tilt-left { transform: rotate(2deg); }
.tilt-right { transform: rotate(-2deg); }
.phone-frame-showcase:hover {
  transform: rotate(0deg) scale(1.02);
  transition: transform 0.4s ease;
}
.tilt-left:hover { transform: rotate(0deg) scale(1.02); }
.tilt-right:hover { transform: rotate(0deg) scale(1.02); }

/* Feature chip / floating card */
.feature-chip {
  position: absolute;
  bottom: -24px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 170px;
  animation: floatNotif 5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.2);
}
.chip-cyan { background: var(--cyan); color: var(--cyan-dark); }
.chip-yellow { background: var(--primary); color: var(--primary-dim); }
.chip-red { background: var(--red); color: var(--white); }
.chip-right { right: auto; left: -24px; animation-delay: -2.5s; }
.chip-bottom { bottom: -28px; right: -10px; }
/* chip-flash: 精简为更精致的标签样式 */
.chip-flash {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 20;
  padding: 6px 12px;
  gap: 8px;
  width: fit-content; /* 核心修复：宽度随内容自适应，不再拉长 */
  min-width: auto;
  border-radius: var(--radius-sm);
  display: inline-flex; /* 确保是行内弹性布局 */
  align-items: center;
  animation-delay: -1s;
}
.chip-flash .chip-icon { 
  font-size: 16px; 
}
.chip-flash .chip-title { 
  font-size: 9px; 
}
.chip-flash .chip-value { 
  font-size: 11px; 
}
.chip-icon { font-size: 22px; }
.chip-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; }
.chip-value { font-size: 13px; font-weight: 800; margin-top: 1px; }

/* Feature copy */
.feature-copy { }
.feature-visual {
  position: relative;
  overflow: visible;
}
.feature-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 900;
  color: var(--outline);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.feature-desc {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 420px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.tag {
  background: var(--bg-low);
  color: var(--charcoal-light);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Dual phone */
.dual-phone-wrap {
  position: relative;
  width: 320px;
  height: 440px;
  margin: 0 auto;
}
.phone-frame-dual {
  background: #1a1a1a;
  border-radius: 36px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-float);
  width: 200px;
  overflow: hidden;
  position: absolute;
}
.phone-dual-back {
  right: 0; top: 0;
  transform: rotate(4deg);
  z-index: 1;
  opacity: 0.9;
}
.phone-dual-front {
  left: 0; bottom: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

@media (max-width: 800px) {
  .feature-row, .feature-row-reverse { grid-template-columns: 1fr; }
  .feature-row-reverse { direction: ltr; }
  .phone-showcase { margin-bottom: 40px; }
  .dual-phone-wrap { width: 260px; height: 360px; }
  .phone-frame-dual { width: 160px; }
  /* Allow subtitle to wrap on small screens */
  .section-sub { white-space: normal !important; }
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-section {
  background: var(--charcoal);
  padding: 100px 24px;
}
.how-section .section-eyebrow { color: rgba(250,250,242,0.5); }
.how-section .section-title { color: var(--bg); }

.steps-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 24px;
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  transition: background var(--trans), transform var(--trans);
}
.step-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.step-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255,218,85,0.1);
  border-radius: 20px;
  margin-bottom: 20px;
}
.step-icon {
  font-size: 28px;
  color: var(--primary);
}
.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: var(--charcoal);
  font-size: 9px;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
}
.step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-desc { font-size: 13px; color: rgba(250,250,242,0.55); line-height: 1.65; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  opacity: 0.25;
}
.step-connector::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 100px 0;
  background: var(--bg-low);
  overflow: hidden;
}
.testimonials .section-header { padding: 0 24px; }

.testimonials-track-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.testimonials-track {
  display: flex;
  gap: 20px;
  animation: marquee 40s linear infinite;
  width: max-content;
  padding: 10px 0;
}
.testimonials-track:hover { animation-play-state: paused; }

.testi-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--trans), box-shadow var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-stars { font-size: 14px; color: var(--primary); margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 13.5px; color: var(--charcoal); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 700; color: var(--charcoal); }
.testi-role { font-size: 11px; color: var(--charcoal-light); margin-top: 1px; }

/* =========================================
   PRICING
   ========================================= */
.pricing-section {
  padding: 100px 24px;
  background: var(--bg);
}

.pricing-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform var(--trans), box-shadow var(--trans);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card-pro {
  background: var(--primary);
  border-color: var(--primary-dark);
  box-shadow: 0 16px 48px rgba(255,218,85,0.35);
}
.pricing-card-pro:hover { box-shadow: 0 24px 60px rgba(255,218,85,0.45); }

.pricing-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pricing-plan {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
}
.plan-pro { color: var(--primary-dim); }
.popular-badge {
  background: var(--charcoal);
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.price-curr { font-size: 14px; font-weight: 700; color: var(--charcoal-light); margin-right: 2px; }
.price-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.05em;
  line-height: 1;
}
.price-period { font-size: 13px; color: var(--charcoal-light); margin-left: 4px; }

.pricing-desc { font-size: 13px; color: var(--charcoal-light); margin-bottom: 20px; line-height: 1.6; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
}
.feat-check { font-size: 18px; color: var(--cyan-dark); }
.pro-features li { color: var(--charcoal); }
.pro-check { color: var(--charcoal); }

.pricing-btn { width: 100%; justify-content: center; }

@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
  background: var(--primary);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.eyebrow-dark { color: var(--primary-dim); }
.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  margin: 12px 0 16px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(55,55,55,0.65);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-stores {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.store-badge-large {
  display: inline-block;
  border-radius: 14px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
  transition: transform var(--trans), filter var(--trans);
}
.store-badge-large:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.28));
}
.store-img-large { height: 52px; width: auto; }

.cta-qr-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.qr-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.qr-inner {
  width: 80px; height: 80px;
  background: var(--charcoal);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.qr-icon { font-size: 44px; color: var(--primary); font-variation-settings: 'FILL' 1; }
.qr-label { font-size: 11px; font-weight: 700; color: var(--primary-dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--charcoal);
  padding: 60px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr auto;
  gap: 48px;
  align-items: start;
}
.footer-tagline { font-size: 13px; color: rgba(250,250,242,0.4); margin-bottom: 8px; }
.footer-copy { font-size: 11px; color: rgba(250,250,242,0.25); text-transform: uppercase; letter-spacing: 0.06em; }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250,250,242,0.35);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 13px;
  color: rgba(250,250,242,0.55);
  font-weight: 500;
  transition: color var(--trans);
}
.footer-link:hover { color: var(--primary); }

.footer-social { display: flex; flex-direction: column; gap: 8px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,242,0.4);
  transition: background var(--trans), color var(--trans);
}
.social-btn:hover { background: var(--primary); color: var(--charcoal); }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-social { flex-direction: row; }
}

/* =========================================
   TOAST
   ========================================= */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  z-index: 1000;
  opacity: 0;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
