/* =========================================================
   gunoi.md — TaskRabbit-style trust marketplace, LIGHT mode
   ========================================================= */

:root {
  --green: #3ddc84;
  --green-dark: #2bb369;
  --green-darker: #1f9b57;
  --green-tint: #eaf7ef;
  --accent: #ffb454;
  --accent-dark: #e09a3c;

  --bg: #ffffff;
  --bg-soft: #f8faf7;
  --bg-tint: #f2f7f3;
  --border: #e5ebe7;
  --border-strong: #d4ddd7;

  --text: #1a1f1c;
  --text-soft: #4a5550;
  --text-muted: #6a7870;

  --shadow-sm: 0 1px 2px rgba(20, 30, 25, 0.04), 0 1px 3px rgba(20, 30, 25, 0.03);
  --shadow-md: 0 4px 12px rgba(20, 30, 25, 0.06), 0 2px 4px rgba(20, 30, 25, 0.04);
  --shadow-lg: 0 12px 32px rgba(20, 30, 25, 0.08), 0 4px 8px rgba(20, 30, 25, 0.04);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --maxw: 1160px;
  --pad: 24px;

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green-darker); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1em; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* =========== BANNER =========== */
.banner {
  background: linear-gradient(90deg, #2bb369, #3ddc84);
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.banner-emoji { font-size: 16px; }
.banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 22px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: 0.85;
}
.banner-close:hover { background: rgba(255,255,255,0.15); opacity: 1; }

/* =========== NAV =========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-icon { display: inline-flex; }
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 36px;
  flex: 1;
}
.nav-links a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav-links a:hover { color: var(--green-dark); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-toggle {
  display: inline-flex;
  background: var(--bg-tint);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(61, 220, 132, 0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-phone:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(61, 220, 132, 0.4);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-phone-num { display: none; }
  .nav-phone { padding: 10px 14px; }
}

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 2px 10px rgba(61, 220, 132, 0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61, 220, 132, 0.4);
}
.btn-outline {
  background: white;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-1px);
}

/* =========== SECTIONS =========== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--pad);
}
.section-tint {
  background: var(--bg-soft);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section-tint > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section-head h2 { margin-bottom: 10px; }
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =========== HERO =========== */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px var(--pad) 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 18px;
}
.hero-text h1 {
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-art {
  position: relative;
}
.hero-illu {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  background: var(--green-tint);
  animation: gentle-float 6s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-illu { animation: none; }
}

@media (max-width: 860px) {
  .hero { padding: 36px var(--pad) 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-sub { font-size: 1rem; }
  .hero-illu { max-height: 280px; object-fit: contain; }
}

/* =========== TRUST STRIP =========== */
.trust-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--pad);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 500;
}
.trust-item span[aria-hidden] { font-size: 1.1rem; }

/* =========== CATEGORY GRID =========== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.cat-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

@media (max-width: 720px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========== STEPS =========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 0 12px;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(61, 220, 132, 0.35);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); margin: 0; }

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
}

/* =========== PRICING =========== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.price-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card-featured {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.price-card-featured:hover { transform: translateY(-10px); }

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(61, 220, 132, 0.35);
}
.price-card-head h3 { font-size: 1.3rem; margin-bottom: 4px; }
.price-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.price-from {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-value {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
}
.price-unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.price-features li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 8px;
  border-left: 2.2px solid var(--green-dark);
  border-bottom: 2.2px solid var(--green-dark);
  transform: rotate(-45deg);
}

.price-callouts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.callout {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.callout-ico {
  font-size: 1.6rem;
  line-height: 1;
}
.callout strong { display: block; margin-bottom: 4px; color: var(--text); }
.callout p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

@media (max-width: 860px) {
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
  .price-callouts { grid-template-columns: 1fr; }
}

/* =========== ABOUT =========== */
.about-card {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-text {
  font-size: 1.08rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 28px;
}
.about-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-badge {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  line-height: 1.3;
  text-align: center;
}
.about-badge span[aria-hidden] { font-size: 1.5rem; }

@media (max-width: 720px) {
  .about-card { padding: 32px 22px; }
  .about-badges { grid-template-columns: repeat(2, 1fr); }
}

/* =========== BEFORE / AFTER =========== */
.ba-frame {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.ba-slider {
  --ba-pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 8 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  touch-action: none;
  user-select: none;
  cursor: ew-resize;
  background: var(--green-tint);
}
.ba-slider svg { width: 100%; height: 100%; display: block; }
.ba-after { position: absolute; inset: 0; }
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
  transition: clip-path 0.04s linear;
}
.ba-slider.dragging .ba-before { transition: none; }

.ba-label {
  position: absolute;
  top: 16px;
  background: white;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  pointer-events: none;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 3px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  box-shadow: 0 0 0 1px rgba(20,30,25,0.1);
  transform: translateX(-50%);
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 14px rgba(20,30,25,0.2);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: grab;
}
.ba-slider.dragging .ba-handle-knob { cursor: grabbing; }
.ba-handle:focus-visible .ba-handle-knob,
.ba-slider:focus-visible .ba-handle-knob {
  outline: 3px solid rgba(61, 220, 132, 0.4);
  outline-offset: 3px;
}

/* =========== REVIEWS =========== */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.rev-placeholder {
  background: white;
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.rev-stars {
  font-size: 1.4rem;
  color: var(--border-strong);
  letter-spacing: 0.08em;
}
.rev-dash {
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}
.rev-note {
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}
.rev-cta { text-align: center; }

@media (max-width: 720px) {
  .rev-grid { grid-template-columns: 1fr; }
}

/* =========== FAQ =========== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-dark); }
.faq-chev {
  font-size: 1.4rem;
  color: var(--text-muted);
  transform: rotate(90deg);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] .faq-chev { transform: rotate(-90deg); color: var(--green-dark); }
.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

/* =========== CONTACT =========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
}
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.form-card h2 { margin-bottom: 6px; }
.form-sub { color: var(--text-muted); margin-bottom: 24px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61, 220, 132, 0.18);
}
.field textarea { resize: vertical; min-height: 72px; }
.field input:invalid:not(:placeholder-shown) { border-color: #e86060; }

.form-success {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--green-tint);
  border: 1px solid var(--green);
  border-radius: 10px;
  color: var(--green-darker);
  font-weight: 500;
  text-align: center;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-phone-card {
  background: linear-gradient(135deg, #3ddc84, #2bb369);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(61, 220, 132, 0.25);
}
.cpc-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0 0 8px;
}
.cpc-number {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.cpc-number:hover { color: white; }
.cpc-hours {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0 0 18px;
}
.contact-phone-card .btn-primary {
  background: white;
  color: var(--green-darker);
  box-shadow: none;
}
.contact-phone-card .btn-primary:hover {
  background: #f0fff7;
  color: var(--green-darker);
}

.contact-email-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.contact-email-card a {
  color: var(--green-dark);
  font-weight: 600;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
}

/* =========== FOOTER =========== */
.footer {
  background: #fafcfa;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  padding: 48px var(--pad) 24px;
  font-size: 0.92rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.foot-col h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--text);
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-col a { color: var(--text-soft); }
.foot-col a:hover { color: var(--green-dark); }
.foot-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 12px 0 10px;
  max-width: 300px;
}
.foot-phone {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 600;
}
.foot-bottom {
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* =========== REDUCED MOTION =========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
