@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --red: #e8192c;
  --red2: #ff4757;
  --red-dark: #b0101f;
  --pink: #ff6b81;
  --dark: #1a0a0d;
  --dark2: #f9f2f3;
  --dark3: #f3eaeb;
  --card: #ffffff;
  --border: rgba(232,25,44,0.12);
  --border2: rgba(0,0,0,0.08);
  --text: #1a0a0d;
  --muted: #8a6068;
  --grad1: linear-gradient(135deg, #e8192c, #ff4757);
  --grad2: linear-gradient(135deg, #ff4757, #ff6b81);
  --grad3: linear-gradient(135deg, #b0101f, #e8192c);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: multiply;
}
.cursor-trail {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(232,25,44,0.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: all 0.18s ease;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #fff5f5; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(232,25,44,0.07);
  transition: all 0.3s ease;
}
nav.scrolled { padding: 0.8rem 5%; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 42px; }
.nav-logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--grad1);
  border: none; border-radius: 50px;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  cursor: none; letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(232,25,44,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.hamburger span { width: 24px; height: 2px; background: var(--red); transition: all 0.3s; }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 5% 4rem;
  position: relative; overflow: hidden;
  background: #fff;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,25,44,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 60%, rgba(255,71,87,0.05) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 50% 100%, rgba(176,16,31,0.04) 0%, transparent 60%);
}
.hero-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 650px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(232,25,44,0.25);
  border-radius: 50px;
  font-size: 0.78rem; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: rgba(232,25,44,0.05);
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-badge span { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 1.5s infinite; }

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text);
  animation: fadeSlideUp 0.8s 0.15s ease both;
}
h1 .grad-text {
  background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block;
}
h1 .grad-text2 {
  background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}
.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--grad1);
  border: none; border-radius: 50px;
  color: #fff; font-weight: 700; font-size: 1rem;
  cursor: none; letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,25,44,0.3); }
.btn-secondary {
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1.5px solid rgba(232,25,44,0.2);
  border-radius: 50px;
  color: var(--text); font-weight: 500; font-size: 1rem;
  cursor: none; letter-spacing: 0.02em;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); background: rgba(232,25,44,0.04); }

.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 420px; z-index: 1;
  animation: fadeSlideLeft 1s 0.3s ease both;
}
.phone-mockup {
  width: 260px; margin: 0 auto;
  background: #fff;
  border-radius: 44px;
  border: 1.5px solid var(--border);
  padding: 1.5rem 1rem;
  position: relative;
  box-shadow: 0 0 60px rgba(232,25,44,0.08), 0 40px 80px rgba(0,0,0,0.12);
  animation: float 6s ease-in-out infinite;
}
.phone-notch {
  width: 100px; height: 24px;
  background: #f5f5f5;
  border-radius: 20px;
  margin: 0 auto 1.2rem;
}
.match-card {
  background: linear-gradient(160deg, #fff5f5, #fff);
  border-radius: 28px; overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.match-card-img {
  width: 100%; height: 200px;
  background: linear-gradient(160deg, #fff0f1, #ffe4e6);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.match-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(255,245,245,0.9));
}
.match-info { padding: 0.8rem; }
.match-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); }
.match-meta { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }
.match-vibe {
  display: inline-block; margin-top: 0.4rem;
  padding: 0.2rem 0.6rem;
  background: rgba(232,25,44,0.07); border: 1px solid rgba(232,25,44,0.2);
  border-radius: 20px; font-size: 0.7rem; color: var(--red);
}
.match-actions {
  display: flex; justify-content: center; gap: 1rem; padding: 0.8rem;
}
.match-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: none; border: none;
  transition: transform 0.2s; background: #fff;
}
.match-btn:hover { transform: scale(1.1); }
.match-btn.skip { background: rgba(0,0,0,0.04); border: 1.5px solid rgba(0,0,0,0.1); }
.match-btn.like { background: rgba(232,25,44,0.08); border: 1.5px solid rgba(232,25,44,0.25); }

.float-cards {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.float-chip {
  position: absolute;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 50px; padding: 0.4rem 0.9rem;
  font-size: 0.72rem; color: var(--text);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(232,25,44,0.1);
}
.fc1 { top: 5%; left: -20%; animation: float 4s 0s ease-in-out infinite; }
.fc2 { top: 30%; right: -15%; animation: float 4s 1s ease-in-out infinite; }
.fc3 { bottom: 20%; left: -25%; animation: float 4s 2s ease-in-out infinite; }

.hero-stats {
  position: absolute; bottom: 0rem; left: 5%; right: 5%;
  display: flex; gap: 3rem;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.8rem;
  background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.8rem; color: var(--muted); }

/* SECTIONS SHARED */
section { padding: 6rem 5%; }
.section-label {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(232,25,44,0.2);
  border-radius: 50px;
  font-size: 0.72rem; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.2rem;
  background: rgba(232,25,44,0.05);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1;
  margin-bottom: 1rem; color: var(--text);
}
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 520px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* HOW IT WORKS */
#how { background: #fff5f5; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; margin-top: 4rem;
}
.step-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 24px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(232,25,44,0.04);
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(232,25,44,0.3); box-shadow: 0 12px 32px rgba(232,25,44,0.1); }
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,25,44,0.02) 0%, transparent 60%);
}
.step-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 3.5rem; line-height: 1;
  background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.2; margin-bottom: 1rem;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text); }
.step-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* WHY DIFFERENT */
#why { position: relative; overflow: hidden; background: #fff; }
.why-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 100% 50%, rgba(232,25,44,0.04) 0%, transparent 60%);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-top: 2rem;
}
.features-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; border-radius: 16px;
  border: 1.5px solid transparent;
  transition: all 0.3s;
}
.feature-item:hover {
  background: #fff5f5; border-color: var(--border);
  transform: translateX(6px);
}
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(232,25,44,0.07); border: 1.5px solid rgba(232,25,44,0.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.feature-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--text); }
.feature-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.vibe-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 1.5rem;
  text-align: center; transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(232,25,44,0.04);
}
.vibe-card:hover { transform: scale(1.03); border-color: var(--red); box-shadow: 0 8px 24px rgba(232,25,44,0.1); }
.vibe-card:nth-child(1) { grid-column: span 2; }
.vibe-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.vibe-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.vibe-desc { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }
.vibe-tag {
  display: inline-block; margin-top: 0.6rem;
  padding: 0.2rem 0.7rem;
  background: rgba(232,25,44,0.07); border-radius: 20px;
  font-size: 0.7rem; color: var(--red);
}

/* VIBES SECTION */
#vibes { background: #fff5f5; }
.vibes-scroll-wrap { overflow: hidden; margin-top: 3rem; }
.vibes-scroll {
  display: flex; gap: 1.5rem;
  animation: scroll-x 25s linear infinite;
  width: max-content;
}
.vibes-scroll:hover { animation-play-state: paused; }
.vibe-pill {
  display: flex; align-items: center; gap: 0.7rem;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 50px; padding: 0.7rem 1.4rem;
  white-space: nowrap; transition: border-color 0.3s;
  box-shadow: 0 2px 8px rgba(232,25,44,0.04);
}
.vibe-pill:hover { border-color: var(--red); }
.vibe-pill span { font-size: 1.4rem; }
.vibe-pill p { font-size: 0.85rem; font-weight: 500; color: var(--text); }

/* TESTIMONIALS */
#love { background: #fff; }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 24px; padding: 1.8rem;
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(232,25,44,0.04);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(232,25,44,0.08); }
.testi-card.featured {
  background: linear-gradient(135deg, rgba(232,25,44,0.03), rgba(255,71,87,0.03));
  border-color: rgba(232,25,44,0.2);
}
.quote-icon { font-size: 2rem; color: var(--red); opacity: 0.3; margin-bottom: 0.8rem; }
.testi-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.testi-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.testi-meta { font-size: 0.75rem; color: var(--muted); }
.stars { color: #f59e0b; font-size: 0.8rem; margin-bottom: 0.6rem; letter-spacing: 2px; }

/* SAFETY */
#safety { background: #fff5f5; }
.safety-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.safety-card {
  padding: 1.8rem; border-radius: 20px;
  border: 1.5px solid var(--border); background: #fff;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(232,25,44,0.04);
}
.safety-card:hover { border-color: rgba(232,25,44,0.3); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(232,25,44,0.08); }
.safety-icon { font-size: 2rem; margin-bottom: 1rem; }
.safety-title { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.safety-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* CTA */
#cta {
  text-align: center; padding: 7rem 5%;
  position: relative; overflow: hidden;
  background: #fff;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,25,44,0.05) 0%, transparent 70%);
}
.cta-card {
  position: relative; z-index: 1;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 32px; padding: 5rem 3rem;
  max-width: 720px; margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(232,25,44,0.08);
}
.cta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad1);
}
.cta-card h2 { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--text); }
.cta-card p { color: var(--muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
.store-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.9rem 1.8rem;
  background: #fff5f5; border: 1.5px solid var(--border);
  border-radius: 14px; color: var(--text);
  text-decoration: none; transition: all 0.3s;
}
.store-btn:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,25,44,0.12); }
.store-btn-icon { font-size: 1.8rem; }
.store-btn-text small { display: block; font-size: 0.7rem; color: var(--muted); }
.store-btn-text strong { font-size: 0.95rem; color: var(--text); }

/* FOOTER */
footer {
  background: #1a0a0d;
  border-top: 1px solid rgba(232,25,44,0.2);
  padding: 5rem 5% 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo img { height: 38px; }
.footer-logo span {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem;
  background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.social-icon:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem;
  transition: color 0.3s; display: flex; align-items: center; gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--red); }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.8rem; }
.newsletter-input {
  flex: 1; padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: #fff; font-family: inherit; font-size: 0.85rem;
  outline: none; transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: var(--red); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-btn {
  padding: 0.7rem 1.2rem;
  background: var(--grad1); border: none; border-radius: 10px;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  cursor: none; transition: transform 0.2s;
}
.newsletter-btn:hover { transform: scale(1.05); }
.footer-mid {
  padding: 2rem 0;
  display: flex; gap: 2rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.app-badge {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 0.7rem 1.2rem; text-decoration: none;
}
.app-badge-icon { font-size: 1.5rem; }
.app-badge-text small { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.app-badge-text strong { font-size: 0.9rem; display: block; color: #fff; }
.footer-stats { display: flex; gap: 3rem; margin-left: auto; align-items: center; flex-wrap: wrap; }
.f-stat-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--red); }
.f-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-bottom {
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-copy span { color: var(--red); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-made { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.made-heart { color: var(--red); animation: pulse 1.5s infinite; }

/* ANIMATIONS */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: span 2; }
  .hero-stats { gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-stats { margin-left: 0; justify-content: center; }
  .footer-mid { justify-content: center; }
}