/* ═══════════════════════════════════════════════════════════════
   Animalia Marketing Site — Stylesheet
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --navy: #0D2B6B;
  --navy-light: #1A3A80;
  --accent: #2563EB;
  --accent-light: #EFF6FF;
  --white: #FFFFFF;
  --bg-light: #F4F6FB;
  --text-primary: #0D2B6B;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --green: #22C55E;
  --red: #EF4444;
  --orange: #F97316;
  --purple: #8B5CF6;
  --card-radius: 20px;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.07);
  --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) { body { cursor: auto; } }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Paw cursor ───────────────────────────────────────────── */
#paw-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: transform 80ms linear;
  will-change: transform;
}

@media (pointer: coarse) { #paw-cursor { display: none; } }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  transition: color 0.4s;
  flex-shrink: 0;
}

#nav.scrolled .logo { color: var(--navy); }

.logo-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}

#nav.scrolled .logo-icon { background: var(--navy); }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

#nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--white); }
#nav.scrolled .nav-links a:hover { color: var(--navy); }

.btn-nav {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-nav:hover { background: var(--navy-light); transform: translateY(-1px); }
#nav.scrolled .btn-nav { background: var(--navy); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#nav.scrolled .nav-burger span { background: var(--navy); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  background: var(--white);
  border-top: 1px solid #F0F0F0;
  gap: 12px;
}

.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 0;
}

.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3F8A 60%, #0A1F52 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
}

.hero-blob {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 80vh;
  background: radial-gradient(ellipse, rgba(37,99,235,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Hero left */
.hero-left { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
}

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

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

.hero-left h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 420px;
}

/* Store buttons */
.store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 14px;
  transition: var(--transition);
  cursor: pointer;
}

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

/* Demo CTA button */
.btn-demo-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 100px;
  margin-bottom: 4px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  cursor: pointer;
}

.btn-demo-hero:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  background: #f0f4ff;
}

.store-btn div { display: flex; flex-direction: column; }
.store-label { font-size: 10px; opacity: 0.75; }
.store-btn strong { font-size: 14px; font-weight: 700; }

/* Hero right */
.hero-right {
  position: relative;
  z-index: 2;
  height: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.35) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

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

/* UI Cards */
.ui-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 16px;
  width: 100%;
}

.greeting-card {
  max-width: 340px;
  transform: rotate(-1.5deg);
  position: relative; z-index: 3;
}

.actions-card {
  max-width: 320px;
  align-self: flex-end;
  transform: rotate(1deg);
  position: relative; z-index: 2;
}

.rappels-card {
  max-width: 340px;
  transform: rotate(-0.5deg);
  position: relative; z-index: 3;
}

/* App header mini */
.app-header-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 12px;
  margin: -16px -16px 12px;
  background: var(--navy);
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.app-header-left { display: flex; align-items: center; gap: 6px; }

.app-logo-dot {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}

.app-logo-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.app-header-right { display: flex; align-items: center; gap: 8px; }

.notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.profile-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 3px 8px 3px 4px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
}

.chip-img {
  width: 20px; height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.greeting-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.greeting-body p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Quick actions */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}

.qa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.qa-item span {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.2;
  text-align: center;
}

.qa-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qa-blue  { background: #DBEAFE; color: #1D4ED8; }
.qa-green { background: #DCFCE7; color: #15803D; }
.qa-orange { background: #FFEDD5; color: #C2410C; }
.qa-purple { background: #EDE9FE; color: #6D28D9; }

/* Rappels */
.rappels-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rappels-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.rappels-link { font-size: 11px; color: var(--accent); font-weight: 500; }

.rappel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #F4F6FB;
}

.rappel-row:first-of-type { border-top: none; }

.rappel-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.r-green { background: #DCFCE7; color: #15803D; }
.r-red { background: #FEE2E2; color: #DC2626; }

.rappel-info { flex: 1; min-width: 0; }
.rappel-name { display: block; font-size: 12px; font-weight: 600; color: var(--text-primary); }
.rappel-sub { font-size: 10px; color: var(--text-muted); }

.rappel-date {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.rappel-date.ok { color: var(--accent); }
.rappel-date.warn { color: var(--red); }

/* Float animations */
@keyframes float1 {
  0%, 100% { transform: rotate(-1.5deg) translateY(0px); }
  50% { transform: rotate(-1.5deg) translateY(-7px); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(1deg) translateY(0px); }
  50% { transform: rotate(1deg) translateY(-5px); }
}
@keyframes float3 {
  0%, 100% { transform: rotate(-0.5deg) translateY(0px); }
  50% { transform: rotate(-0.5deg) translateY(-8px); }
}

.float-1 { animation: float1 3.5s ease-in-out infinite; }
.float-2 { animation: float2 4s ease-in-out infinite 0.5s; }
.float-3 { animation: float3 3.2s ease-in-out infinite 1s; }

/* Hero card entrance */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal-hero.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

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

/* ══════════════════════════════════════════════════════════════
   SHARED SECTION ELEMENTS
══════════════════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.bg-light { background: var(--bg-light); }

/* ══════════════════════════════════════════════════════════════
   PILLARS
══════════════════════════════════════════════════════════════ */
.pillars {
  padding: 100px 0;
  background: var(--white);
}

.pillars .container { text-align: center; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid #EAEDF2;
  border-radius: var(--card-radius);
  padding: 28px 24px;
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: transparent;
}

.pillar-card:hover .pillar-icon { transform: scale(1.1); }

.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.pi-blue  { background: #DBEAFE; color: #1D4ED8; }
.pi-green { background: #DCFCE7; color: #15803D; }
.pi-orange { background: #FFEDD5; color: #C2410C; }
.pi-purple { background: #EDE9FE; color: #6D28D9; }

.pillar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}

.pillar-link:hover { gap: 8px; }

/* ══════════════════════════════════════════════════════════════
   FEATURE ROWS
══════════════════════════════════════════════════════════════ */
.feature-row { padding: 100px 0; overflow: hidden; }

.feature-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feature-row-alt .feature-inner {
  direction: rtl;
}

.feature-row-alt .feature-inner > * { direction: ltr; }

.feature-text { max-width: 480px; }

.feature-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.check-icon { color: var(--green); flex-shrink: 0; }

/* Feature visual */
.feature-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.img-blob {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  top: 10%;
  left: 10%;
  z-index: 0;
  pointer-events: none;
}

.img-blob-blue   { background: #BFDBFE; }
.img-blob-green  { background: #BBF7D0; }
.img-blob-orange { background: #FED7AA; }
.img-blob-purple { background: #DDD6FE; }
.img-blob-navy   { background: #BFDBFE; }

.feature-screenshot {
  width: 220px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* App card overlays */
.app-card-overlay {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--card-shadow-hover);
  padding: 16px;
  position: absolute;
  z-index: 4;
}

/* ID card overlay */
.id-card-overlay {
  bottom: -20px;
  right: -30px;
  width: 240px;
}

.id-card-top {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.id-avatar {
  width: 52px; height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.id-info h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.id-info p { font-size: 10px; color: var(--text-secondary); line-height: 1.5; }

.id-rows { display: flex; flex-direction: column; gap: 6px; }

.id-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-top: 1px solid #F4F6FB;
}

.id-row-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.id-row-text { flex: 1; min-width: 0; }
.id-row-text span { display: block; font-size: 11px; font-weight: 600; color: var(--text-primary); }
.id-row-text small { font-size: 9px; color: var(--text-muted); }

.badge-ok {
  background: #DCFCE7;
  color: #15803D;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
}

.id-val { font-size: 10px; font-weight: 600; color: var(--text-primary); }

/* Metrics overlay */
.metrics-overlay {
  position: absolute;
  bottom: -30px;
  right: -40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 260px;
  z-index: 4;
}

.metric-card {
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.metric-icon { margin-bottom: 4px; }
.metric-icon svg { margin: 0 auto; }

.metric-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 2px;
}

.metric-label { font-size: 9px; color: var(--text-muted); margin-bottom: 6px; }

.metric-badge {
  display: inline-block;
  background: #DCFCE7;
  color: #15803D;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.metric-alert {
  grid-column: 1 / -1;
  background: #DCFCE7;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-alert strong { display: block; font-size: 11px; font-weight: 700; color: #15803D; }
.metric-alert span { font-size: 10px; color: #16A34A; }
.alert-ok { margin-left: auto; font-size: 10px; font-weight: 700; color: #15803D; white-space: nowrap; }

/* Pro list overlay */
.pro-list-overlay {
  bottom: -30px;
  right: -40px;
  width: 260px;
}

.pro-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #F4F6FB;
  transition: var(--transition);
}

.pro-row:last-child { border-bottom: none; }
.pro-row:hover .pro-avatar { transform: scale(1.05); }

.pro-avatar {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pro-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pro-name { font-size: 12px; font-weight: 700; color: var(--text-primary); }
.pro-job { font-size: 10px; color: var(--text-muted); }

.pro-dist {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: var(--text-muted);
}

.pro-rating { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.stars { color: #F59E0B; font-size: 10px; }
.rating-num { font-size: 11px; font-weight: 700; color: var(--text-primary); }

/* Community overlay */
.community-overlay {
  bottom: -30px;
  right: -40px;
  width: 270px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.post-card {
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #EAEDF2;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.post-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.post-name { display: block; font-size: 12px; font-weight: 700; color: var(--text-primary); }
.post-city { font-size: 10px; color: var(--text-muted); }

.post-text { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }

.post-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
}

.post-actions span {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s;
}

.post-actions span:hover { color: var(--red); }

/* International overlay */
.intl-overlay {
  bottom: -30px;
  right: -40px;
  width: 240px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.country-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  cursor: pointer;
}

.country-card:hover { background: #E8EEFF; transform: scale(1.03); }
.flag { font-size: 22px; }
.country-card span:last-child { font-size: 11px; font-weight: 500; color: var(--text-primary); }

.intl-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 8px 10px;
}

.intl-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 11px;
  color: var(--text-primary);
  outline: none;
  font-family: inherit;
}

.intl-search button {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  cursor: pointer;
  font-family: inherit;
}

/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.stats-section {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

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

.paw-float {
  position: absolute;
  opacity: 0.06;
  animation: paw-drift linear infinite;
  will-change: transform;
}

@keyframes paw-drift {
  from { transform: translateY(100vh) rotate(0deg); }
  to   { transform: translateY(-200px) rotate(20deg); }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-num {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials { padding: 100px 0; }

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

.testi-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid #EAEDF2;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.testi-name { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.testi-city { font-size: 12px; color: var(--text-muted); }

.testi-stars { margin-bottom: 12px; font-size: 14px; color: #F59E0B; }

.testi-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   DOWNLOAD CTA
══════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-blob1 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(37,99,235,0.25);
  filter: blur(80px);
  top: -100px; left: -100px;
  pointer-events: none;
}

.cta-blob2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(139,92,246,0.15);
  filter: blur(60px);
  bottom: -60px; right: 20%;
  pointer-events: none;
}

.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.6;
}

.store-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.store-btn-outline:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}

/* CTA cards */
.cta-cards {
  position: relative;
  height: 320px;
}

.cta-card-1 {
  position: absolute;
  top: 0;
  left: 20px;
  width: 300px;
  z-index: 2;
  transform: rotate(-1deg);
}

.cta-card-2 {
  position: absolute;
  top: 140px;
  left: 60px;
  width: 280px;
  z-index: 3;
  transform: rotate(1.5deg);
  padding: 14px;
}

/* Slide in animation for CTA cards */
.slide-in-right {
  opacity: 0;
  transform: translateX(60px) rotate(-1deg);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0) rotate(-1deg);
}

.cta-card-2.slide-in-right { transform: translateX(60px) rotate(1.5deg); }
.cta-card-2.slide-in-right.visible { transform: translateX(0) rotate(1.5deg); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid #EAEDF2;
  padding-top: 64px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
}

.footer-logo { color: var(--navy); font-size: 18px; }
.footer-tagline { font-size: 14px; color: var(--text-secondary); margin-top: 10px; line-height: 1.6; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 9px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid #EAEDF2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span { font-size: 13px; color: var(--text-muted); }

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex; align-items: center;
}

.social-icons a:hover { color: var(--navy); }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .float-1, .float-2, .float-3 { animation: none; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-inner { gap: 40px; }
  .app-card-overlay { right: -10px; }
  .metrics-overlay { right: -10px; }
  .pro-list-overlay { right: -10px; }
  .community-overlay { right: -10px; }
  .intl-overlay { right: -10px; }
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 24px 60px;
    text-align: center;
  }

  .hero-left { order: 1; }
  .hero-right { order: 2; height: auto; align-items: center; }

  .hero-sub, .store-btns { max-width: 100%; }
  .store-btns { justify-content: center; }

  .greeting-card { max-width: 100%; }
  .actions-card { max-width: 100%; align-self: auto; }
  .rappels-card { max-width: 100%; }

  .feature-inner,
  .feature-row-alt .feature-inner {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 48px;
  }

  .feature-visual { justify-content: center; margin-bottom: 60px; }

  .feature-screenshot { width: 180px; }

  .id-card-overlay,
  .metrics-overlay,
  .pro-list-overlay,
  .community-overlay,
  .intl-overlay {
    position: relative;
    bottom: auto; right: auto;
    margin-top: 20px;
    width: 100%;
  }

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

  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text .store-btns { justify-content: center; }

  .cta-cards { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .hero-right { height: auto; gap: 12px; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .feature-screenshot { width: 160px; }
}
