@font-face {
  font-family: 'Figtree';
  src: url('/public/assets/fonts/Figtree-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: fallback;
}

:root {
  --primary: #14336b;   /* real brand navy, from tierrakw.com theme CSS */
  --accent: #56cfc1;    /* real brand teal — used on dark backgrounds / decoration */
  --accent-text: #0f766e; /* darker teal for text-on-light — passes 4.5:1 contrast (brand teal alone is ~1.9:1) */
  --gradient: linear-gradient(135deg, #508bff 0%, #60ead5 100%);
  --ink: #1c2530;
  --muted: #5a6472;
  --bg: #ffffff;
  --wrap: 1120px;
  --radius-sm: 8px;
  --radius-lg: 25px;
  --radius-pill: 100px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: 'Figtree', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: var(--primary);
  padding: .75rem 1rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ── Header / nav ─────────────────────────────────────────── */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.25rem; gap: 1rem; }
.logo { font-weight: 700; font-size: 1.15rem; text-decoration: none; color: #fff; display: flex; align-items: center; gap: .5rem; }
.logo-img { height: 36px; width: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: .25rem;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.site-nav.is-open { transform: translateX(0); }
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: .9rem .5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a[aria-current="page"] { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.site-nav .nav-cta {
  margin-top: .75rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-pill);
  justify-content: center;
  border-bottom: none;
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    background: none;
    padding: 0;
    transform: none;
    gap: 0;
    overflow: visible;
  }
  .site-nav a {
    border-bottom: none;
    margin-left: 1.1rem;
    padding: .5rem;
    min-height: auto;
  }
  .site-nav .nav-cta { margin-top: 0; margin-left: 1.5rem; padding: .55rem 1.4rem; }
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  padding: .95rem 1.6rem;
  border-radius: var(--radius-pill);
  min-height: 44px;
  transition: transform .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-app { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-fill { background: #fff; color: var(--primary); }
.btn-sm { padding: .6rem 1.1rem; min-height: 40px; font-size: .9rem; }

.app-buttons, .hero-secondary-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-bottom: 1rem; }
.hero-secondary-buttons { margin-top: .5rem; margin-bottom: 0; }

.brand-strip { text-align: center; padding: 2.5rem 0; }
.brand-strip img { margin: 0 auto; max-width: 220px; }

/* ── Services / cards ─────────────────────────────────────────── */
.services { padding: 3rem 0; text-align: center; }
.eyebrow-center { color: var(--accent-text); font-weight: 700; margin: 0 0 .4rem; }
.services h2 { color: var(--primary); font-size: 1.8rem; margin: 0 0 1rem; }
.services-intro { max-width: 640px; margin: 0 auto 2rem; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; text-align: left; }
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 2.25rem 1.5rem 2rem;
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(20,51,107,.15); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-icon-badge { transform: scale(1.08); }
.service-icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #eef4fb;
  margin: 0 auto 1.1rem;
  transition: transform .2s ease;
}
.service-icon-badge img { width: 32px; height: 32px; object-fit: contain; }
.service-card h3 { margin: 0 0 .5rem; color: var(--primary); }
.service-card p { color: var(--muted); margin: 0 0 .75rem; font-size: .92rem; }
.service-card-arrow { color: var(--accent-text); font-weight: 700; }

/* ── Hero v2 — split layout, dot-grid backdrop, floating media ────────── */
.hero-v2 {
  position: relative;
  background: var(--primary);
  background-image: var(--gradient);
  background-blend-mode: multiply;
  color: #fff;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }
.hero-copy { text-align: center; }
@media (min-width: 860px) { .hero-copy { text-align: left; } }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}
.hero-copy h1 { font-size: clamp(1.9rem, 5vw, 3rem); margin: 0 0 1rem; line-height: 1.1; letter-spacing: -.01em; }
.hero-copy p { opacity: .95; font-size: 1.1rem; margin: 0 0 1.5rem; max-width: 46ch; }
@media (min-width: 860px) { .hero-copy p { margin-left: 0; margin-right: 0; } }
.hero-copy p, .app-buttons, .hero-secondary-buttons { margin-left: auto; margin-right: auto; }
@media (min-width: 860px) { .hero-copy p, .app-buttons, .hero-secondary-buttons { margin-left: 0; margin-right: 0; justify-content: flex-start; } }
.hero-media { position: relative; }
.hero-media-glow {
  position: absolute;
  inset: -10% -10% -10% 10%;
  background: radial-gradient(circle, rgba(96,234,213,.45) 0%, transparent 65%);
  filter: blur(10px);
  z-index: 0;
}
.hero-image { position: relative; z-index: 1; border-radius: var(--radius-lg); box-shadow: 0 30px 60px rgba(10,20,50,.35); width: 100%; }

/* ── Sagor App section ─────────────────────────────────────────── */
.sagor-section-v2 { padding: 4rem 0; background: #fff; }
.sagor-grid-v2 { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 760px) { .sagor-grid-v2 { grid-template-columns: 1fr 1fr; } }
.sagor-copy h2 { color: var(--primary); font-size: clamp(1.6rem, 3vw, 2.1rem); margin: .2rem 0 1rem; }
.sagor-copy p { color: var(--muted); font-size: 1.05rem; }
.sagor-media { position: relative; display: flex; justify-content: center; padding: 2rem; }
.sagor-dots {
  position: absolute; inset: 10%;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: .12;
  border-radius: var(--radius-lg);
  z-index: 0;
}
.sagor-media img { position: relative; z-index: 1; max-width: 287px; background: #fff; border-radius: var(--radius-sm); box-shadow: 0 16px 40px rgba(20,51,107,.15); padding: 1.5rem; }

/* ── Vision — full-bleed dark banner (the one bold moment) ───────────── */
.vision-banner { position: relative; padding: 5rem 0; overflow: hidden; color: #fff; text-align: center; }
.vision-banner-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.45) saturate(1.1);
}
.vision-banner-content { position: relative; max-width: 640px; margin: 0 auto; }
.vision-banner-content h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 0 1rem; }
.vision-banner-content p { font-size: 1.1rem; opacity: .95; }

/* ── Page hero / grids ─────────────────────────────────────────── */
.page-hero { padding: 2.5rem 0 1.5rem; text-align: center; }
.page-hero h1 { color: var(--primary); font-size: clamp(1.5rem, 4vw, 2.1rem); }

.post-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; padding-bottom: 3rem; }
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card { border: 1px solid #eee; border-radius: var(--radius-sm); overflow: hidden; text-decoration: none; color: var(--ink); transition: transform .18s ease; }
.post-card:hover { transform: translateY(-4px); }
.post-card img { height: 160px; width: 100%; object-fit: cover; }
.post-card h3, .post-card p { padding: 0 1.1rem; }
.post-card h3 { color: var(--primary); margin-top: .9rem; }
.post-card p { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }

/* ── Single post / page ─────────────────────────────────────────── */
.post-single { padding: 2.5rem 0 3.5rem; max-width: 760px; }
.post-single .eyebrow { color: var(--accent-text); font-weight: 700; text-decoration: none; }
.post-single h1 { color: var(--primary); font-size: clamp(1.6rem, 4vw, 2.3rem); }
.post-single .featured { border-radius: var(--radius-lg); margin: 1rem 0 2rem; width: 100%; object-fit: cover; max-height: 420px; }
.prose h2 { color: var(--accent-text); }
.prose img { border-radius: var(--radius-sm); margin: 1rem 0; }
.prose a { color: var(--primary); text-decoration-color: var(--accent-text); }
.prose .eyebrow-tag, .prose .eyebrow-center { color: var(--accent-text); font-weight: 700; text-transform: uppercase; font-size: .85rem; text-align: center; display: block; }
.prose .prose-logo { max-width: 220px; margin: 1.5rem auto; }
.prose .prose-cols { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; margin: 1.5rem 0; }
@media (min-width: 720px) { .prose .prose-cols { grid-template-columns: 1fr 1fr; } }
.prose .prose-cols img { margin: 0; width: 100%; }
.prose .prose-cta { text-align: center; }
.prose .prose-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin: 1.5rem 0 2rem; }
@media (min-width: 640px) { .prose .prose-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .prose .prose-cards { grid-template-columns: repeat(3, 1fr); } }
.prose .prose-cards > div { background: #f8fafc; border-radius: var(--radius-sm); padding: 1.5rem; }
.prose .prose-cards > div h3 { margin-top: 0; color: var(--primary); font-size: 1.05rem; }
.prose .prose-cards.prose-cards-sm { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
@media (min-width: 500px) { .prose .prose-cards.prose-cards-sm { grid-template-columns: 1fr 1fr; max-width: none; } }
.prose .prose-cards-sm > div { text-align: center; }
.prose .prose-hero-video { background: var(--primary); background-image: var(--gradient); background-blend-mode: multiply; color: #fff; text-align: center; padding: 3rem 1.5rem; border-radius: var(--radius-lg); margin-bottom: 2rem; }
.prose .prose-hero-video h1 { color: #fff; }
.prose iframe { width: 100%; border-radius: var(--radius-sm); }

/* ── Footer ─────────────────────────────────────────── */
.site-footer { background: var(--gradient); margin-top: 2rem; padding: 2.5rem 0 1rem; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.footer-brand { margin: 0 0 .4rem; font-size: 1.2rem; }
.footer-contact p { margin: 0 0 .5rem; }
.footer-contact a { color: #fff; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-apps { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.footer-social { display: flex; gap: .75rem; align-items: flex-start; }
.social-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  position: relative; text-decoration: none;
}
.social-icon:hover { background: rgba(255,255,255,.3); }
.social-icon::after {
  content: '';
  width: 18px; height: 18px;
  background-color: #fff;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
/* Inline SVG icon masks — no external icon font/library required */
.social-icon[data-icon="facebook_url"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12a10 10 0 1 0-11.6 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.4h-1.2c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.4v7A10 10 0 0 0 22 12Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12a10 10 0 1 0-11.6 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.4h-1.2c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.4v7A10 10 0 0 0 22 12Z'/%3E%3C/svg%3E"); }
.social-icon[data-icon="instagram_url"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.2c2.7 0 3 0 4.1.06 1.1.05 1.8.22 2.2.37.55.2.95.46 1.37.88.42.42.68.82.88 1.37.15.4.32 1.1.37 2.2.06 1.1.06 1.4.06 4.1s0 3-.06 4.1c-.05 1.1-.22 1.8-.37 2.2a3.7 3.7 0 0 1-.88 1.37 3.7 3.7 0 0 1-1.37.88c-.4.15-1.1.32-2.2.37-1.1.06-1.4.06-4.1.06s-3 0-4.1-.06c-1.1-.05-1.8-.22-2.2-.37a3.7 3.7 0 0 1-1.37-.88 3.7 3.7 0 0 1-.88-1.37c-.15-.4-.32-1.1-.37-2.2C2.2 15 2.2 14.7 2.2 12s0-3 .06-4.1c.05-1.1.22-1.8.37-2.2.2-.55.46-.95.88-1.37.42-.42.82-.68 1.37-.88.4-.15 1.1-.32 2.2-.37C9 2.2 9.3 2.2 12 2.2Zm0 1.8c-2.65 0-2.97 0-4.02.06-.86.04-1.32.18-1.63.3-.41.16-.7.35-1 .65-.3.3-.49.6-.65 1-.12.31-.26.77-.3 1.63C4.35 8.68 4.35 9 4.35 12s0 3.32.06 4.36c.04.86.18 1.32.3 1.63.16.41.35.7.65 1 .3.3.6.49 1 .65.31.12.77.26 1.63.3 1.05.06 1.37.06 4.02.06s2.97 0 4.02-.06c.86-.04 1.32-.18 1.63-.3.41-.16.7-.35 1-.65.3-.3.49-.6.65-1 .12-.31.26-.77.3-1.63.06-1.04.06-1.36.06-4.36s0-3.32-.06-4.36c-.04-.86-.18-1.32-.3-1.63a2.6 2.6 0 0 0-.65-1 2.6 2.6 0 0 0-1-.65c-.31-.12-.77-.26-1.63-.3-1.05-.06-1.37-.06-4.02-.06ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.8a3.2 3.2 0 1 0 0 6.4 3.2 3.2 0 0 0 0-6.4Zm5.2-2a1.17 1.17 0 1 1 0 2.34 1.17 1.17 0 0 1 0-2.34Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.2c2.7 0 3 0 4.1.06 1.1.05 1.8.22 2.2.37.55.2.95.46 1.37.88.42.42.68.82.88 1.37.15.4.32 1.1.37 2.2.06 1.1.06 1.4.06 4.1s0 3-.06 4.1c-.05 1.1-.22 1.8-.37 2.2a3.7 3.7 0 0 1-.88 1.37 3.7 3.7 0 0 1-1.37.88c-.4.15-1.1.32-2.2.37-1.1.06-1.4.06-4.1.06s-3 0-4.1-.06c-1.1-.05-1.8-.22-2.2-.37a3.7 3.7 0 0 1-1.37-.88 3.7 3.7 0 0 1-.88-1.37c-.15-.4-.32-1.1-.37-2.2C2.2 15 2.2 14.7 2.2 12s0-3 .06-4.1c.05-1.1.22-1.8.37-2.2.2-.55.46-.95.88-1.37.42-.42.82-.68 1.37-.88.4-.15 1.1-.32 2.2-.37C9 2.2 9.3 2.2 12 2.2Zm0 1.8c-2.65 0-2.97 0-4.02.06-.86.04-1.32.18-1.63.3-.41.16-.7.35-1 .65-.3.3-.49.6-.65 1-.12.31-.26.77-.3 1.63C4.35 8.68 4.35 9 4.35 12s0 3.32.06 4.36c.04.86.18 1.32.3 1.63.16.41.35.7.65 1 .3.3.6.49 1 .65.31.12.77.26 1.63.3 1.05.06 1.37.06 4.02.06s2.97 0 4.02-.06c.86-.04 1.32-.18 1.63-.3.41-.16.7-.35 1-.65.3-.3.49-.6.65-1 .12-.31.26-.77.3-1.63.06-1.04.06-1.36.06-4.36s0-3.32-.06-4.36c-.04-.86-.18-1.32-.3-1.63a2.6 2.6 0 0 0-.65-1 2.6 2.6 0 0 0-1-.65c-.31-.12-.77-.26-1.63-.3-1.05-.06-1.37-.06-4.02-.06ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.8a3.2 3.2 0 1 0 0 6.4 3.2 3.2 0 0 0 0-6.4Zm5.2-2a1.17 1.17 0 1 1 0 2.34 1.17 1.17 0 0 1 0-2.34Z'/%3E%3C/svg%3E"); }
.social-icon[data-icon="twitter_url"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.9 2H22l-7.2 8.2L23.3 22h-6.6l-5.2-6.8L5.6 22H2.5l7.7-8.8L1 2h6.8l4.7 6.2Zm-1.2 18h1.8L7.4 4H5.5Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.9 2H22l-7.2 8.2L23.3 22h-6.6l-5.2-6.8L5.6 22H2.5l7.7-8.8L1 2h6.8l4.7 6.2Zm-1.2 18h1.8L7.4 4H5.5Z'/%3E%3C/svg%3E"); }
.social-icon[data-icon="linkedin_url"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.98 3.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5ZM3 9h4v12H3ZM9 9h3.8v1.7h.05c.53-1 1.83-2 3.77-2 4 0 4.75 2.6 4.75 6V21H17v-5.3c0-1.3 0-2.9-1.8-2.9-1.8 0-2.1 1.4-2.1 2.8V21H9Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.98 3.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5ZM3 9h4v12H3ZM9 9h3.8v1.7h.05c.53-1 1.83-2 3.77-2 4 0 4.75 2.6 4.75 6V21H17v-5.3c0-1.3 0-2.9-1.8-2.9-1.8 0-2.1 1.4-2.1 2.8V21H9Z'/%3E%3C/svg%3E"); }

.footer-bottom { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.25); font-size: .85rem; opacity: .9; }

/* ── WhatsApp floating button ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  z-index: 90;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.06); }

/* ── Scroll reveal (respects prefers-reduced-motion via main.js) ────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .service-card, .post-card, .btn, .whatsapp-float { transition: none; }
}
