/* ============================================================
   21-Day Challenge — Landing page styles
   Brand: teal (#19c5a8) primary · sage accents · cream surface
============================================================ */

:root {
  --terra: #19c5a8;
  --terra-l: #4dd6bf;
  --terra-d: #0fa08a;
  --sage: #6bae75;
  --sage-l: #a8d4ae;
  --sage-d: #4a8a54;
  --cream: #f2fdfb;
  --warm: #e6f8f5;
  --peach: #c8f0ea;
  --lavender: #b8a4d4;
  --sky: #7dc4d8;
  --gold: #f5c842;
  --rose: #e88aa0;
  --ink: #0d2e28;
  --ink2: #2a5049;
  --muted: #6a9a90;
  --border: #c8eae5;
  --white: #ffffff;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 253, 251, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 234, 229, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.nav-logo img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  background: var(--terra);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .2s, background .2s;
  box-shadow: 0 4px 12px rgba(25, 197, 168, 0.32);
}
.nav-cta:hover { background: var(--terra-d); transform: translateY(-1px); color: white; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--ink); }

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 400px; padding: 12px 24px; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(200, 234, 229, 0.5); }
  .nav-links .nav-cta { margin: 8px 0; }
  .nav-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(25, 197, 168, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 174, 117, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--terra-d);
  margin-bottom: 20px;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 4px rgba(25, 197, 168, 0.2);
}
.hero-headline {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic;
  color: var(--terra);
  font-weight: 800;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: white;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 8px 24px rgba(25, 197, 168, 0.32);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(25, 197, 168, 0.4); background: var(--terra-d); color: white; }
.store-btn, .store-btn:hover, .store-btn:visited { color: white; text-decoration: none; }
.store-btn .store-icon { font-size: 26px; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn-text small { font-size: 10px; font-weight: 500; opacity: 0.8; }
.store-btn-text strong { font-size: 15px; font-weight: 700; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.hero-trust-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-item i { color: var(--terra); }

/* Phone mockup */
.hero-phone {
  justify-self: center;
  position: relative;
}
.phone-frame {
  width: 320px;
  height: 660px;
  border-radius: 48px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(13, 46, 40, 0.3),
    0 0 0 10px #0a2a24,
    0 0 0 12px #1a4a40;
}
.phone-screen {
  position: absolute;
  inset: 0;
  padding: 36px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--cream);
}
.ps-header { display: flex; justify-content: space-between; align-items: center; padding: 0 4px; }
.ps-greeting { font-size: 12px; color: var(--muted); font-weight: 500; }
.ps-name { font-size: 20px; font-weight: 700; color: var(--ink); }
.ps-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--terra), var(--terra-l)); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; }
.ps-streak {
  background: linear-gradient(135deg, var(--terra), var(--terra-d));
  color: white;
  border-radius: 22px;
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 160, 138, 0.32);
}
.ps-streak * { color: white; }
.ps-streak-label { font-size: 11px; color: rgba(255, 255, 255, 0.85); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.ps-streak-val { font-size: 30px; font-weight: 800; margin-top: 2px; color: white; }
.ps-streak-val small { font-size: 14px; color: rgba(255, 255, 255, 0.75); font-weight: 500; }
.ps-streak-stats { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.22); }
.ps-stat { flex: 1; }
.ps-stat-val { font-size: 14px; font-weight: 700; color: white; }
.ps-stat-lbl { font-size: 10px; color: rgba(255, 255, 255, 0.78); }
.ps-section-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-top: 6px; padding: 0 4px; }
.ps-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ps-card-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.ps-card-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.ps-card-day { font-size: 11px; color: var(--muted); }
.ps-check { width: 32px; height: 32px; border-radius: 50%; background: var(--terra); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-check.empty { background: white; border: 2px solid var(--border); color: var(--border); }

@media (max-width: 860px) {
  .hero { padding: 40px 0 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-row, .hero-trust { justify-content: center; }
  .phone-frame { width: 280px; height: 580px; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
  position: relative;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--terra-d);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 700px;
}
.section-sub {
  font-size: 16px;
  color: var(--ink2);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-head { text-align: center; margin: 0 auto 48px; max-width: 800px; }
.section-head .section-title, .section-head .section-sub { margin-left: auto; margin-right: auto; }

/* ===== HOW IT WORKS ===== */
.how {
  background: white;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s;
}
.how-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(13, 46, 40, 0.08); }
.how-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 64px;
  font-weight: 800;
  color: rgba(25, 197, 168, 0.12);
  line-height: 1;
}
.how-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--terra), var(--terra-l));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(25, 197, 168, 0.3);
}
.how-title { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.how-desc { font-size: 14px; color: var(--ink2); line-height: 1.65; }
@media (max-width: 860px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 24px;
  transition: transform .25s, border-color .25s;
}
.feature:hover { transform: translateY(-3px); border-color: var(--terra); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.fi-1 { background: rgba(25, 197, 168, 0.12); color: var(--terra-d); }
.fi-2 { background: rgba(107, 174, 117, 0.15); color: var(--sage-d); }
.fi-3 { background: rgba(125, 196, 216, 0.18); color: #2a7a92; }
.fi-4 { background: rgba(184, 164, 212, 0.18); color: #7c4dbe; }
.fi-5 { background: rgba(245, 200, 66, 0.2); color: #a07000; }
.fi-6 { background: rgba(232, 138, 160, 0.18); color: #a03a5d; }
.feature-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feature-desc { font-size: 13.5px; color: var(--ink2); line-height: 1.55; }
@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ===== CATEGORIES ===== */
.cats {
  background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-pill {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .2s;
}
.cat-pill:hover { border-color: var(--terra); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(13, 46, 40, 0.06); }
.cat-pill-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.cp-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.cp-sub { font-size: 12.5px; color: var(--muted); }
@media (max-width: 860px) {
  .cats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .cats-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq {
  background: white;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q i {
  transition: transform .25s;
  color: var(--terra);
  font-size: 18px;
}
details[open] .faq-q i { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 24px;
  text-align: center;
}
.final-cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--terra), var(--terra-d));
  border-radius: var(--r-xl);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
  color: white;
  box-shadow: 0 32px 64px rgba(15, 160, 138, 0.32);
}
.final-cta-card::before, .final-cta-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-card::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.final-cta-card::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  bottom: -150px; left: -80px;
}
.final-cta-card > * { position: relative; z-index: 1; color: white; }
.final-cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: white;
}
.final-cta-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin: 0 auto 32px;
}
.final-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-card .store-btn { background: white; color: var(--terra-d); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
.final-cta-card .store-btn:hover { background: var(--cream); color: var(--terra-d); }
.final-cta-card .store-btn * { color: var(--terra-d); }

/* ===== HERO RATING CHIP ===== */
.hero-rating { gap: 8px; }
.hero-stars { display: inline-flex; gap: 1px; font-size: 15px; }
.hero-stars i { color: var(--gold); }
.hero-rating strong { color: var(--ink); font-weight: 700; }

/* ===== REVIEWS ===== */
.reviews { background: linear-gradient(180deg, var(--cream) 0%, white 100%); }
.rating-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 36px;
  max-width: 640px;
  margin: 0 auto 40px;
  box-shadow: 0 16px 40px rgba(13, 46, 40, 0.05);
}
.rating-score {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.rating-detail { flex: 1; min-width: 180px; }
.rating-stars { display: flex; gap: 3px; color: var(--gold); font-size: 22px; margin-bottom: 6px; }
.rating-meta { font-size: 13.5px; color: var(--muted); }
.rating-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(25, 197, 168, 0.28);
  transition: background .2s, transform .2s;
}
.rating-cta:hover { background: var(--terra-d); transform: translateY(-1px); color: white; }
.rating-cta * { color: white; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--terra);
  box-shadow: 0 20px 40px rgba(13, 46, 40, 0.08);
}
.review-stars { display: flex; gap: 2px; color: var(--gold); font-size: 17px; margin-bottom: 14px; }
.review-text {
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm);
  color: var(--terra-d);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.review-source { font-size: 12.5px; color: var(--muted); }
.review-likes {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terra-d);
  flex-shrink: 0;
}
.review-likes i { font-size: 15px; }
@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.blog-card {
  display: block;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--terra);
  box-shadow: 0 20px 40px rgba(13, 46, 40, 0.08);
}
.blog-card.featured {
  background: linear-gradient(180deg, var(--warm) 0%, white 100%);
  border-color: rgba(25, 197, 168, 0.35);
}
.blog-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--terra-d);
  background: rgba(25, 197, 168, 0.12);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.blog-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.blog-card-title a:hover,
.blog-card:hover .blog-card-title a { color: var(--terra-d); }
.blog-card-excerpt {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
.blog-card-meta i { vertical-align: middle; }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--terra-d);
}
.blog-card:hover .blog-card-link i { transform: translateX(3px); }
.blog-card-link i { transition: transform .2s; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0a3a32 0%, #062925 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 12px; }
.footer-brand .nav-logo:hover { color: white; }
.footer-brand .nav-logo span { color: white; }
.footer-brand .nav-logo img {
  filter: brightness(0) invert(1);
  height: 36px;
  opacity: 0.95;
}
.footer-tagline { font-size: 13.5px; line-height: 1.7; max-width: 320px; color: rgba(255, 255, 255, 0.78); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--terra-l);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  transition: color .2s;
}
.footer-col a:hover { color: var(--terra-l); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  color: white;
}
.footer-social a:hover { background: var(--terra); color: white; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-phone { animation: float 6s ease-in-out infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: fadeUp .8s ease-out forwards; }

::selection { background: var(--terra); color: white; }
