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

:root {
  --brand-50: #F0F8FF;
  --brand-100: #E8F4FD;
  --brand-200: #B8DEFF;
  --brand-400: #4DB8FF;
  --brand-500: #2D9CDB;
  --brand-600: #1A6FA8;
  --brand-900: #1A2332;
  --gold-400: #F4C430;
  --gold-600: #D4A017;
  --coral-400: #FF6B6B;
  --success: #27AE60;
  --bg: #F7FAFC;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  line-height: 1.2;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.navbar-logo {
  height: 120px;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.navbar-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--brand-500);
}

.navbar-cta {
  background: var(--brand-500);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.navbar-cta:hover {
  background: var(--brand-600) !important;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--white) 40%, #FFF8E1 70%, var(--brand-50) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 156, 219, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 196, 48, 0.1) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

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

/* Hero floating emoji decorations */
.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floater {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: floaterDrift 12s ease-in-out infinite;
}

.floater-1 { top: 15%; left: 8%; animation-delay: 0s; animation-duration: 10s; }
.floater-2 { top: 25%; right: 12%; animation-delay: -2s; animation-duration: 14s; }
.floater-3 { bottom: 30%; left: 5%; animation-delay: -4s; animation-duration: 11s; }
.floater-4 { top: 10%; right: 30%; animation-delay: -1s; animation-duration: 13s; }
.floater-5 { bottom: 15%; right: 8%; animation-delay: -3s; animation-duration: 9s; }
.floater-6 { bottom: 40%; left: 25%; animation-delay: -5s; animation-duration: 15s; }

@keyframes floaterDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(10deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
  75% { transform: translateY(-25px) rotate(5deg); }
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
  color: var(--gold-600);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(244, 196, 48, 0.3);
  animation: fadeInUp 0.6s ease-out both, badgePulse 3s ease-in-out 1s infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 196, 48, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(244, 196, 48, 0); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Globe */
.hero-globe {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-globe canvas {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.globe-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 156, 219, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-900);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45, 156, 219, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(45, 156, 219, 0.45);
}

.btn-bounce {
  animation: fadeInUp 0.6s ease-out 0.3s both, btnBounce 2s ease-in-out 1.5s infinite;
}

@keyframes btnBounce {
  0%, 100% { transform: translateY(0); }
  15% { transform: translateY(-4px); }
  30% { transform: translateY(0); }
  45% { transform: translateY(-2px); }
  60% { transform: translateY(0); }
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-600);
  border: 2px solid var(--brand-200);
}

.btn-secondary:hover {
  background: var(--brand-50);
  border-color: var(--brand-400);
  transform: translateY(-2px);
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

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

.hero-stat .number {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-500);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PHONE MOCKUP ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(45, 156, 219, 0.2) 0%, rgba(244, 196, 48, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: phoneGlow 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes phoneGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: var(--brand-900);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(26, 35, 50, 0.3), 0 0 0 1px rgba(255,255,255,0.1) inset, 0 0 60px rgba(45, 156, 219, 0.1);
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--brand-900);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-header {
  background: var(--brand-500);
  padding: 2.5rem 1.2rem 1.2rem;
  text-align: center;
  color: var(--white);
}

.phone-header img {
  height: 28px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.5rem;
}

.phone-header p {
  font-size: 0.7rem;
  opacity: 0.8;
}

.phone-qr {
  margin: 1.2rem auto;
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.phone-qr svg {
  width: 90px;
  height: 90px;
}

.phone-wallet {
  padding: 1rem 1.2rem;
  flex: 1;
}

.phone-wallet-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.phone-store {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.phone-store-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.phone-store-name {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-800);
}

.phone-store-points {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--gold-600);
}

.phone-store-pts {
  font-size: 0.6rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===== SOCIAL PROOF TICKER ===== */
.social-proof-ticker {
  background: var(--brand-900);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}

.social-proof-ticker::before,
.social-proof-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.social-proof-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--brand-900), transparent);
}

.social-proof-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--brand-900), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
}

.ticker-content {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  background: var(--brand-100);
  color: var(--brand-600);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-900);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 2rem;
  background: var(--white);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--gold-400), var(--brand-400));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--brand-200);
  box-shadow: 0 16px 48px rgba(45, 156, 219, 0.12);
  transform: translateY(-6px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-900);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--brand-50) 0%, var(--white) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-200), var(--brand-400), var(--brand-200));
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 20px rgba(45, 156, 219, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}

.step-card:hover .step-number {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(45, 156, 219, 0.4);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-900);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== FOR BUSINESSES ===== */
.for-business {
  padding: 6rem 2rem;
  background: var(--brand-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.for-business::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(45, 156, 219, 0.08);
}

.for-business .section-label {
  background: rgba(45, 156, 219, 0.15);
  color: var(--brand-400);
}

.for-business .section-header h2 {
  color: var(--white);
}

.for-business .section-header p {
  color: var(--gray-400);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.business-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.business-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(45, 156, 219, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.business-card:hover .business-card-icon {
  transform: scale(1.1) rotate(-3deg);
}

.business-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 156, 219, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.business-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.business-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 2rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 2rem;
  right: 5%;
  font-size: 20rem;
  font-family: 'Nunito', sans-serif;
  color: var(--brand-100);
  line-height: 1;
  pointer-events: none;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-200);
}

.testimonial-stars {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.testimonial-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--brand-900);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===== PRICING ===== */
.pricing {
  padding: 6rem 2rem;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
  border-color: var(--brand-500);
  box-shadow: 0 20px 60px rgba(45, 156, 219, 0.15);
  transform: scale(1.05);
  background: linear-gradient(180deg, #F0F8FF 0%, var(--white) 30%);
}

.pricing-card.popular:hover {
  transform: scale(1.07) translateY(-4px);
  box-shadow: 0 24px 70px rgba(45, 156, 219, 0.2);
}

.pricing-card.popular .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  color: var(--white);
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-900);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: 'Nunito', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-500);
  margin-bottom: 0.3rem;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-400);
}

.pricing-card .price-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pricing-features li .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-features li .cross {
  color: var(--gray-400);
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  text-align: center;
  padding: 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  border: none;
}

.pricing-btn-outline {
  background: var(--white);
  color: var(--brand-500);
  border: 2px solid var(--brand-200);
}

.pricing-btn-outline:hover {
  background: var(--brand-50);
  border-color: var(--brand-500);
}

.pricing-btn-filled {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45, 156, 219, 0.3);
}

.pricing-btn-filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 156, 219, 0.4);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-400) 50%, #5CC4FF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-section::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
}

.cta-section::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
}

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

.cta-emoji-bg span {
  position: absolute;
  font-size: 3rem;
  opacity: 0.08;
  animation: floaterDrift 12s ease-in-out infinite;
}

.cta-emoji-bg span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.cta-emoji-bg span:nth-child(2) { top: 20%; right: 15%; animation-delay: -2s; }
.cta-emoji-bg span:nth-child(3) { bottom: 20%; left: 20%; animation-delay: -4s; }
.cta-emoji-bg span:nth-child(4) { bottom: 30%; right: 10%; animation-delay: -1s; }
.cta-emoji-bg span:nth-child(5) { top: 40%; left: 5%; animation-delay: -3s; }
.cta-emoji-bg span:nth-child(6) { top: 15%; right: 30%; animation-delay: -5s; }

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: var(--white);
  color: var(--brand-600);
  padding: 0.9rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brand-900);
  padding: 4rem 2rem 2rem;
  color: var(--gray-400);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 120px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--brand-400);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gray-400);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--brand-400);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Stagger children for grids */
.features-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.features-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.features-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.features-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.features-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.features-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }

.testimonials-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

.steps-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.steps-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.steps-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }
.steps-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.36s; }

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--white) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--brand-900);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== POLICY PAGES ===== */
.policy-content {
  padding: 4rem 2rem 6rem;
  background: var(--white);
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-900);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-100);
}

.policy-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-600);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.policy-section li strong {
  color: var(--gray-800);
}

.policy-section a {
  color: var(--brand-500);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.policy-section a:hover {
  color: var(--brand-600);
  text-decoration: underline;
}

.policy-contact {
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.policy-contact p {
  margin-bottom: 0.3rem;
}

.policy-contact p:last-child {
  margin-bottom: 0;
}

/* ===== MOBILE MENU ===== */
.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);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-container { gap: 1.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 0.8rem 1.2rem; }
  .navbar-links { display: none; }
  .mobile-menu-btn { display: block; }

  .navbar-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
    gap: 0.5rem;
  }

  .navbar-links.mobile-open .navbar-cta {
    text-align: center;
    display: block;
  }

  /* Hero */
  .hero { min-height: auto; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-description { margin: 0 auto 2rem; font-size: 1.05rem; }
  .hero-buttons { justify-content: center; }
  .hero-globe { order: -1; }
  .hero-globe canvas { max-width: 280px; }
  .globe-glow { width: 220px; height: 220px; }
  .hero-stats { justify-content: center; gap: 1.5rem; }

  /* Phone mockup */
  .phone-mockup {
    width: 240px;
    height: 480px;
    transform: none;
  }
  .phone-mockup:hover { transform: none; }
  .phone-glow { width: 200px; height: 200px; }

  /* Sections */
  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 4rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .for-business { padding: 4rem 1.5rem; }
  .business-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 4rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials::before { display: none; }
  .pricing { padding: 4rem 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 1rem; }

  /* CTA */
  .cta-section { padding: 4rem 1.5rem; }
  .cta-section h2 { font-size: 2rem; }
  .cta-section p { font-size: 1rem; }

  /* Page header */
  .page-header { padding: 6rem 1.5rem 3rem; }
  .page-header h1 { font-size: 2rem; }
  .page-header p { font-size: 1rem; }

  /* Policy */
  .policy-content { padding: 3rem 1.5rem 4rem; }

  /* Footer */
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-container { padding: 5rem 1rem 2rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-description { font-size: 0.95rem; }
  .hero-globe canvas { max-width: 220px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-stat .number { font-size: 1.5rem; }

  /* Sections */
  .features { padding: 3rem 1rem; }
  .how-it-works { padding: 3rem 1rem; }
  .for-business { padding: 3rem 1rem; }
  .testimonials { padding: 3rem 1rem; }
  .pricing { padding: 3rem 1rem; }
  .feature-card { padding: 1.5rem; }
  .business-card { padding: 1.5rem; }
  .testimonial-card { padding: 1.5rem; }
  .pricing-card { padding: 1.5rem; }
  .section-header h2 { font-size: 1.5rem; }

  /* CTA */
  .cta-section { padding: 3rem 1rem; }
  .cta-section h2 { font-size: 1.6rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-white, .btn-ghost { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 2.5rem 1rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand p { max-width: none; margin: 0 auto; }

  /* Page header */
  .page-header { padding: 5rem 1rem 2rem; }
  .page-header h1 { font-size: 1.6rem; }

  /* Policy */
  .policy-content { padding: 2rem 1rem 3rem; }
  .policy-section h2 { font-size: 1.3rem; }
}
