/* ============================================
   GoWithDog Landing Page
   Palette: Sage Green + Honey Amber
   Font: Plus Jakarta Sans
   ============================================ */

:root {
  /* Brand colors */
  --accent: #3a7d5c;
  --accent-light: #4a9e74;
  --accent-dark: #2d6148;
  --accent-bg: #eef6f1;
  --secondary: #c48a2a;
  --secondary-light: #d9a84e;
  --secondary-dark: #a07022;
  --secondary-bg: #fdf5e8;

  /* Neutrals */
  --bg: #faf9f6;
  --bg-alt: #f3f1ec;
  --fg: #1a2e23;
  --fg-muted: #5a6b60;
  --fg-subtle: #8a9a8f;
  --border: #ddd8cf;
  --border-light: #eae6df;

  /* Semantic */
  --success: #3a7d5c;
  --danger: #c4523b;

  /* Dimensions */
  --nav-h: 72px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 125, 92, 0.3);
}
.btn--secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn--secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 8px 20px; font-size: 14px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: all 0.3s ease;
}
.nav--scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav__logo-icon { width: 36px; height: 36px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
  position: relative;
}
.nav__links a:not(.btn):hover { color: var(--accent); }
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav__links a:not(.btn):hover::after { width: 100%; }

/* Language toggle */
.lang-toggle {
  display: flex;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  padding: 2px;
  border: 1px solid var(--border-light);
}
.nav--scrolled .lang-toggle { background: rgba(243, 241, 236, 0.8); }
.lang-toggle__btn {
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--fg-subtle);
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}
.lang-toggle__btn--active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 6px rgba(58, 125, 92, 0.25);
}
.lang-toggle__btn:not(.lang-toggle__btn--active):hover {
  color: var(--fg);
  background: rgba(0,0,0,0.04);
}

.nav__right-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  border-bottom: 1px solid var(--border-light);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  font-size: 17px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--fg-muted);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(58, 125, 92, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(196, 138, 42, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(58, 125, 92, 0.04) 0%, transparent 60%);
}
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-bg);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero__title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__phone {
  width: 280px;
  height: 560px;
  background: #1a2e23;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 40px 80px rgba(26, 46, 35, 0.2),
    0 20px 40px rgba(26, 46, 35, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero__phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a2e23;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e8f0ea 0%, #d4e4d9 40%, #c8d9ce 100%);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.hero__phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__phone-map {
  position: absolute;
  inset: 0;
  /* Subtle map grid pattern */
  background-image:
    linear-gradient(rgba(58,125,92,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,125,92,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero__map-pin {
  position: absolute;
  animation: float-pin 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.hero__map-pin--1 { top: 20%; left: 30%; animation-delay: 0s; }
.hero__map-pin--2 { top: 35%; left: 65%; animation-delay: 0.5s; }
.hero__map-pin--3 { top: 55%; left: 25%; animation-delay: 1s; }
.hero__map-pin--4 { top: 45%; left: 50%; animation-delay: 1.5s; }
@keyframes float-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__phone-card {
  position: absolute;
  bottom: 16px;
  left: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hero__card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-bg), var(--accent-light));
  flex-shrink: 0;
}
.hero__card-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--fg);
}
.hero__card-stars {
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 4px;
}
.hero__card-stars span { color: var(--fg-muted); font-size: 11px; }
.hero__card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  background: var(--accent-bg);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Floating elements */
.hero__float {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  opacity: 0.7;
}
.hero__float--1 { top: 5%; right: 10%; animation-delay: 0s; }
.hero__float--2 { bottom: 20%; left: -5%; animation-delay: 2s; }
.hero__float--3 { top: 40%; right: -8%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(5deg); }
  66% { transform: translateY(6px) rotate(-3deg); }
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--fg-subtle);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.5;
}
.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--fg-subtle);
  border-radius: 3px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--fg);
  padding: 48px 0;
  position: relative;
  z-index: 2;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.stat__suffix {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--secondary-light);
}
.stat__label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 120px 0;
  position: relative;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26, 46, 35, 0.08);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card__icon--green { background: var(--accent-bg); color: var(--accent); }
.feature-card__icon--amber { background: var(--secondary-bg); color: var(--secondary); }
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-alt);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.step--reverse { direction: rtl; }
.step--reverse > * { direction: ltr; }
.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(58, 125, 92, 0.25);
}
.step__content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.step__content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 400px;
}

/* Step mockups */
.step__visual {
  display: flex;
  justify-content: center;
}
.step__mockup {
  width: 240px;
  height: 180px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(26, 46, 35, 0.06);
  border: 1px solid var(--border-light);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.step__mockup-bar {
  width: 100%;
  height: 8px;
  background: var(--accent-bg);
  border-radius: 4px;
  margin-bottom: 20px;
}
.step__mockup-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  margin: 0 auto 16px;
}
.step__mockup-lines div {
  height: 6px;
  border-radius: 3px;
  background: var(--bg-alt);
  margin-bottom: 8px;
}
.step__mockup-lines div:nth-child(1) { width: 80%; margin: 0 auto 8px; }
.step__mockup-lines div:nth-child(2) { width: 60%; margin: 0 auto 8px; }
.step__mockup-lines div:nth-child(3) { width: 40%; margin: 0 auto; }

/* Map mockup */
.step__mockup--map {
  background: linear-gradient(180deg, #e8f0ea 0%, #d4e4d9 100%);
  background-image:
    linear-gradient(rgba(58,125,92,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,125,92,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.step__mockup-pin {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.step__mockup-pin--1 { top: 30%; left: 25%; background: var(--accent); }
.step__mockup-pin--2 { top: 50%; left: 55%; background: var(--secondary); }
.step__mockup-pin--3 { top: 25%; left: 70%; background: var(--accent); }
.step__mockup-pin--4 { top: 60%; left: 35%; background: var(--danger); }
.step__mockup-pin--5 { top: 40%; left: 80%; background: var(--secondary); }
.step__mockup-search {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  height: 28px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Social mockup */
.step__mockup--social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
.step__mockup-user {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #fff;
  position: relative;
  z-index: 1;
}
.step__mockup-user--1 { background: linear-gradient(135deg, var(--accent), var(--accent-light)); margin-right: -12px; z-index: 3; }
.step__mockup-user--2 { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); z-index: 2; }
.step__mockup-user--3 { background: linear-gradient(135deg, var(--accent-light), var(--secondary)); margin-left: -12px; z-index: 1; }
.step__mockup-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

/* ============================================
   COMMUNITY
   ============================================ */
.community {
  padding: 120px 0;
}
.community__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.community-card {
  text-align: center;
  padding: 48px 32px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}
.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26, 46, 35, 0.06);
}
.community-card__icon { margin-bottom: 20px; }
.community-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.community-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 120px 0;
  background: var(--bg-alt);
}
.cta__inner {
  background: linear-gradient(135deg, var(--fg) 0%, #243d2e 100%);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.cta__inner h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta__inner p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta__form { position: relative; }
.cta__input-group {
  display: flex;
  gap: 12px;
}
.cta__input-group input {
  flex: 1;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}
.cta__input-group input::placeholder { color: rgba(255,255,255,0.4); }
.cta__input-group input:focus { border-color: var(--secondary); }
.cta__input-group .btn {
  flex-shrink: 0;
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.cta__input-group .btn:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
}
.cta__disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.4) !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}
.cta__success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(58, 125, 92, 0.15);
  border-radius: var(--radius-md);
  color: #8fd4aa;
  font-weight: 600;
}

/* Paw prints decoration */
.cta__visual { position: absolute; inset: 0; pointer-events: none; }
.cta__paw {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.04;
  background: #fff;
}
.cta__paw--1 { top: -30px; right: 10%; width: 200px; height: 200px; }
.cta__paw--2 { bottom: -40px; right: 30%; width: 160px; height: 160px; }
.cta__paw--3 { top: 50%; right: -20px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-light);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
}
.footer__brand p {
  color: var(--fg-muted);
  font-size: 15px;
  margin-top: 12px;
}
.footer__links {
  display: flex;
  gap: 64px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-subtle);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 15px;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border-light);
}
.footer__bottom p {
  font-size: 14px;
  color: var(--fg-subtle);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: auto 1fr; }
  .step__visual { display: none; }
  .step--reverse { direction: ltr; }
  .community__cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__right-mobile { display: flex; }
  .nav__hamburger { display: flex; }
  .mobile-menu.active { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 20px); min-height: auto; padding-bottom: 60px; }
  .hero__title { letter-spacing: -1px; }
  .hero__phone { width: 240px; height: 480px; }
  .hero__scroll-indicator { display: none; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .features, .how-it-works, .community, .cta { padding: 80px 0; }
  .features__grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }

  .step {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .step__number { margin: 0 auto; }
  .step__content p { max-width: none; }

  .community__cards { grid-template-columns: 1fr; }

  .cta__inner { padding: 48px 28px; }
  .cta__input-group { flex-direction: column; }
  .cta__input-group .btn { width: 100%; justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { gap: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
}
