/* Kommutr marketing site — design tokens from app (accent #b72226) */
:root {
  --color-bg: #ffffff;
  --color-bg-muted: #f7f7f7;
  --color-text: #000000;
  --color-text-secondary: #444444;
  --color-border: #e8e8e8;
  --color-accent: #b72226;
  --color-accent-hover: #951c20;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.06);
  --radius: 10px;
  --radius-btn: 10px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  transition: box-shadow 0.2s ease;
  border-bottom: 1px solid transparent;
  overflow-x: visible;
  overflow-y: visible;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.nav__brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 0.2rem 0;
}

/* Global img { max-width: 100% } clips SVG logos in flex; reset in header */
.site-header img.nav__logo {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(92vw, 340px);
  max-height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
}

.nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav__links a:hover {
  color: var(--color-accent);
}

.nav__links--center {
  flex: 1;
  justify-content: center;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__link-signin {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

.nav__link-signin--muted {
  color: var(--color-text-secondary);
  cursor: default;
  user-select: none;
}

.nav__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
  .nav__menu-btn {
    display: none;
  }
}

/* Mobile nav open */
body.nav-open .nav__links--center {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-bg);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  gap: 0;
}

body.nav-open .nav__links--center li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 900px) {
  body.nav-open .nav__links--center {
    position: static;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
    gap: 2rem;
  }
  body.nav-open .nav__links--center li {
    border: none;
    padding: 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.06s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-text);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: 5rem 0;
}

.section--muted {
  background: var(--color-bg-muted);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  text-align: center;
}

.section__lead {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-muted) 100%);
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    padding-top: 1rem;
  }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin: 0 0 1.75rem;
  max-width: 42ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: relative;
}

/* ---------- Hero animated scene (avatars + motion) ---------- */
.hero-scene {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-muted);
}

.hero-scene__mesh {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    #f7f7f7 0%,
    #ffe8e8 35%,
    #f0f4ff 65%,
    #f7f7f7 100%
  );
  background-size: 200% 200%;
  animation: hero-mesh 14s ease-in-out infinite;
}

.hero-scene__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: hero-float 8s ease-in-out infinite;
}

.hero-scene__blob--1 {
  width: 55%;
  height: 55%;
  left: -10%;
  top: 10%;
  background: rgba(183, 34, 38, 0.35);
  animation-delay: 0s;
}

.hero-scene__blob--2 {
  width: 45%;
  height: 45%;
  right: -5%;
  bottom: 5%;
  background: rgba(100, 149, 237, 0.3);
  animation-delay: -2.5s;
  animation-duration: 9s;
}

.hero-scene__blob--3 {
  width: 35%;
  height: 35%;
  right: 25%;
  top: -5%;
  background: rgba(255, 200, 120, 0.35);
  animation-delay: -4s;
  animation-duration: 10s;
}

.hero-scene__ring {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 55%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(183, 34, 38, 0.2);
  border-radius: 50%;
  animation: hero-pulse 4s ease-in-out infinite;
}

.hero-scene__avatars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  pointer-events: none;
}

.hero-scene__avatar {
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  animation: hero-float 8s ease-in-out infinite;
}

.hero-scene__avatar--a {
  width: clamp(72px, 18vw, 88px);
  height: clamp(72px, 18vw, 88px);
  animation-delay: 0s;
  z-index: 2;
}

.hero-scene__avatar--b {
  width: clamp(60px, 14vw, 72px);
  height: clamp(60px, 14vw, 72px);
  margin-top: 2rem;
  animation-delay: -1.5s;
  z-index: 2;
}

.hero-scene__avatar--c {
  width: clamp(52px, 12vw, 64px);
  height: clamp(52px, 12vw, 64px);
  margin-bottom: 1.25rem;
  animation-delay: -3s;
  z-index: 2;
}

.hero-scene__mock {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(72%, 260px);
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  animation: hero-mock 5s ease-in-out infinite;
}

.hero-scene__mock-line {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #e5e5e5, #f0f0f0);
  width: 100%;
}

.hero-scene__mock-line--short {
  width: 65%;
}

.hero-scene__mock-pill {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  background: rgba(183, 34, 38, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
}

@keyframes hero-mesh {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes hero-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.85;
  }
}

@keyframes hero-mock {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene__mesh,
  .hero-scene__blob,
  .hero-scene__ring,
  .hero-scene__avatar,
  .hero-scene__mock {
    animation: none;
  }
}

.testimonial__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  background: var(--color-bg-muted);
}

/* Shared “person” avatars (Dicebear, etc.) — not for .nav__logo */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.tile__avatar-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.tile__avatar-row .avatar {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
  margin-right: -12px;
}

.tile__avatar-row .avatar:last-child {
  margin-right: 0;
}

.section--muted .tile .tile__avatar-row .avatar {
  border-color: #fff;
}

.steps__figure {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f0f0f0 0%, #e8eaef 50%, #f5f5f5 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 0.75rem;
}

.steps__figure--phone {
  aspect-ratio: 9 / 16;
  max-width: 160px;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 0.75rem;
}

.steps__figure--square {
  aspect-ratio: 1;
  max-width: 200px;
}

.steps__figure--wide {
  aspect-ratio: 16 / 9;
  max-width: 240px;
}

.steps__figure .avatar {
  width: clamp(48px, 12vw, 56px);
  height: clamp(48px, 12vw, 56px);
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}

.steps__figure--phone .avatar {
  width: 52px;
  height: 52px;
}

.feature-figure {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: linear-gradient(
    125deg,
    #f2f2f2 0%,
    #ffeaea 40%,
    #eef2ff 70%,
    #f7f7f7 100%
  );
}

.feature-figure__avatars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}

.feature-figure .avatar {
  width: clamp(56px, 14vw, 72px);
  height: clamp(56px, 14vw, 72px);
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
}

.feature-figure .avatar:nth-child(2) {
  margin-top: 1.25rem;
}

.feature-figure .avatar:nth-child(3) {
  margin-bottom: 0.75rem;
}

.download__visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.download__avatar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.download__avatar-row .avatar {
  width: 64px;
  height: 64px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* ---------- Placeholders ---------- */
.placeholder {
  background: linear-gradient(135deg, #d4d4d4 0%, #e5e5e5 50%, #d4d4d4 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem;
}

.placeholder__label {
  opacity: 0.85;
}

.placeholder--hero {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.placeholder--icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.placeholder--phone {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 9 / 18;
  border-radius: 20px;
  margin: 0 auto 1rem;
}

.placeholder--square {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  margin: 0 auto 1rem;
}

.placeholder--wide {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  margin: 0 auto 1rem;
}

.placeholder--4-3 {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.placeholder--avatar {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  margin: 0 auto 1rem;
}

.placeholder--circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.placeholder--social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  padding: 0;
}

/* ---------- Tiles ---------- */
.tiles {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.section--muted .card {
  background: var(--color-bg);
}

.tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tile__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.tile__text {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.steps__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.steps__body {
  text-align: center;
}

@media (min-width: 600px) {
  .steps__body {
    text-align: left;
  }
  .steps__body .steps__figure {
    margin-left: 0;
    margin-right: auto;
  }
}

.steps__title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.steps__body p {
  margin: 0;
  color: var(--color-text-secondary);
}

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .feature-row--reverse .feature-figure:nth-child(1) {
    order: 2;
  }
  .feature-row--reverse .feature-row__text {
    order: 1;
  }
}

.feature-row__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.feature-row__text p {
  margin: 0;
  color: var(--color-text-secondary);
}

/* ---------- Panels ---------- */
.panels {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .panels {
    grid-template-columns: 1fr 1fr;
  }
}

.panel {
  text-align: center;
}

.panel__title {
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.panel__list {
  text-align: left;
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--color-text-secondary);
}

.panel__list li {
  margin-bottom: 0.35rem;
}

.panel__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  margin: 0;
  padding: 1.75rem;
}

.testimonial__quote {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin: 0 0 1rem;
  font-style: normal;
}

.testimonial__meta {
  font-size: 0.875rem;
  color: var(--color-text);
}

/* ---------- Table ---------- */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.compare-table thead th {
  background: var(--color-bg-muted);
  font-weight: 600;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table th[scope="row"] {
  font-weight: 600;
  color: var(--color-text);
  width: 28%;
}

.pricing-note {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin: 0;
  text-align: center;
}

/* ---------- Download ---------- */
.download {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #f5f5f5;
  padding: 4rem 0;
}

.download__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .download__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.download__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.download__text {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.download__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
}

.store-badge:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.store-badge--placeholder {
  opacity: 0.95;
}

.store-badge--soon {
  cursor: default;
  opacity: 0.85;
  border-style: dashed;
}

.download .placeholder {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-muted);
  padding: 3rem 0 3.5rem;
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  color: var(--color-text-secondary);
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li {
  margin-bottom: 0.5rem;
}

.footer__col a {
  color: var(--color-text);
  font-size: 0.9375rem;
}

.footer__col a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer__tagline {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.cities-list {
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
}

.business-note {
  text-align: center;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
}

.footer__copy,
.footer__legal {
  margin: 0.35rem 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.footer__legal a {
  color: var(--color-text-secondary);
}

.footer__legal a:hover {
  color: var(--color-accent);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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