/* SCUBE AgriTech — site styles
   Light theme by default. Dark via [data-theme="dark"] on <html>.
   Sections: tokens → base → layout → components → pages → motion → responsive
*/

/* ========== Tokens ========== */
:root {
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: "Sora", "Segoe UI", sans-serif;

  --bg: #fafcfb;
  --bg-elevated: #ffffff;
  --bg-muted: #eef5ef;
  --text: #132018;
  --text-muted: #4d6356;
  --border: rgba(19, 32, 24, 0.12);
  --accent: #1b6b45;
  --accent-soft: rgba(27, 107, 69, 0.12);
  --accent-2: #1f7f8f;
  --accent-2-soft: rgba(31, 127, 143, 0.12);
  --shadow: 0 18px 40px rgba(19, 32, 24, 0.08);
  --header-bg: rgba(250, 252, 251, 0.86);
  --hero-glow-a: rgba(27, 107, 69, 0.1);
  --hero-glow-b: rgba(31, 127, 143, 0.08);
  --wa: #1f9c55;

  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --focus: 0 0 0 3px rgba(27, 107, 69, 0.28);
}

html[data-theme="dark"] {
  --bg: #0d1410;
  --bg-elevated: #152019;
  --bg-muted: #1b2820;
  --text: #e8f1ea;
  --text-muted: #9bb4a4;
  --border: rgba(232, 241, 234, 0.12);
  --accent: #5dbe8a;
  --accent-soft: rgba(93, 190, 138, 0.16);
  --accent-2: #6ec4d0;
  --accent-2-soft: rgba(110, 196, 208, 0.14);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --header-bg: rgba(13, 20, 16, 0.82);
  --hero-glow-a: rgba(93, 190, 138, 0.16);
  --hero-glow-b: rgba(110, 196, 208, 0.12);
  --wa: #3ecf7a;
  --focus: 0 0 0 3px rgba(93, 190, 138, 0.35);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(900px 480px at 12% -8%, var(--hero-glow-a), transparent 55%),
    radial-gradient(800px 420px at 88% -12%, var(--hero-glow-b), transparent 50%),
    var(--bg);
  background-attachment: fixed;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
}
p { margin: 0 0 1em; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
b, strong { color: var(--text); font-weight: 600; }

:focus-visible { outline: none; box-shadow: var(--focus); }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

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

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: contain;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.brand-text b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  color: var(--text-muted);
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: color-mix(in srgb, var(--accent-soft) 42%, var(--bg-elevated));
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  font-weight: 560;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.theme-toggle:hover { transform: translateY(-1px); }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.theme-toggle-fab {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
}

.theme-toggle-fab.is-hidden-at-end {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.05rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-weight: 560;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

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

html[data-theme="dark"] .btn-primary {
  color: #0d1410;
}

.btn-ghost {
  background: transparent;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ========== Layout blocks ========== */
.section {
  padding: 4.5rem 0;
}

.section-tight { padding: 3rem 0 4.5rem; }

/* Tighter gap between home hero and the highlight split below it */
.hero + .section {
  padding-top: 3.5rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin-bottom: 0.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1.1rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-gap-lg { gap: 1.35rem; }
.mt-md { margin-top: 1.1rem; }

.panel {
  position: relative;
  z-index: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 8px 22px rgba(19, 32, 24, 0.05);
  transform: translateY(0) scale(1);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
  will-change: transform;
}

.panel:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.02);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow:
    0 18px 36px rgba(19, 32, 24, 0.12),
    0 6px 14px rgba(19, 32, 24, 0.06);
}

html[data-theme="dark"] .panel {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .panel:hover {
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.45),
    0 10px 20px rgba(0, 0, 0, 0.28);
}

.panel h3 {
  font-size: 1.18rem;
  margin-bottom: 0.45rem;
}

.note {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.95rem;
}

.tag {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 8px;
  background: var(--bg-muted);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

.flow {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.step {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--bg-muted);
  border: 1px solid var(--border);
}

.step b {
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.step span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.checklist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.tick {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.tick svg { width: 0.85rem; height: 0.85rem; }

.checklist .note { margin: 0.15rem 0 0; font-size: 0.86rem; }

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 72%, transparent) 48%, transparent 70%),
    radial-gradient(ellipse 70% 60% at 78% 42%, var(--hero-glow-a), transparent 70%),
    radial-gradient(ellipse 50% 45% at 92% 70%, var(--hero-glow-b), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: stretch;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  color: var(--text);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 500;
  color: var(--text);
  max-width: 34rem;
  margin-bottom: 0.9rem;
}

.hero .lead {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-deliver {
  align-self: stretch;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(
      165deg,
      var(--bg-elevated) 0%,
      color-mix(in srgb, var(--accent-2) 8%, var(--bg-elevated)) 42%,
      color-mix(in srgb, var(--accent) 7%, var(--bg-elevated)) 100%
    );
  border-color: color-mix(in srgb, var(--accent) 22%, var(--border));
}

.hero-deliver-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.hero-deliver-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-deliver-body {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.4rem;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--bg-elevated) 28%, transparent) 0%,
      color-mix(in srgb, var(--bg-elevated) 88%, transparent) 38%,
      color-mix(in srgb, var(--bg-elevated) 96%, transparent) 100%
    );
}

.hero-deliver h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  margin-bottom: 0.35rem;
}

.hero-deliver > .hero-deliver-body > p {
  margin-bottom: 0.85rem;
}

.hero-deliver .inset {
  margin-top: 1.1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--accent-soft) 35%, var(--bg-elevated));
  border: 1px solid color-mix(in srgb, var(--accent) 12%, var(--border));
  backdrop-filter: blur(8px);
}

.hero-deliver .inset h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.hero-deliver .checklist {
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--bg-elevated) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  backdrop-filter: blur(10px);
}

.stats {
  display: grid;
  gap: 0.85rem;
}

.stats-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: auto;
  min-height: 0;
}

.stat {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 8px 22px rgba(19, 32, 24, 0.05);
  transform: translateY(0) scale(1);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
  will-change: transform;
}

.stats-row .stat {
  height: auto;
}

.stat:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.02);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow:
    0 18px 36px rgba(19, 32, 24, 0.12),
    0 6px 14px rgba(19, 32, 24, 0.06);
}

html[data-theme="dark"] .stat {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .stat:hover {
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.45),
    0 10px 20px rgba(0, 0, 0, 0.28);
}

.stat b {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

/* ========== Page title ========== */
.page-hero {
  padding: 3rem 0 1.5rem;
}

.breadcrumb {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.55rem;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.form-stack {
  display: grid;
  gap: 0.85rem;
}

.form-stack label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 560;
  color: var(--text);
}

.form-stack input,
.form-stack select,
.form-stack textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.form-stack input:focus,
.form-stack select:focus,
.form-stack textarea:focus {
  border-color: var(--accent);
}

.form-stack textarea {
  min-height: 130px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.form-note {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.form-note.is-success { color: var(--accent); font-weight: 560; }

/* ========== Footer / WhatsApp ========== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2.25rem;
  margin-top: 2rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.foot-brand b {
  font-family: var(--font-display);
  display: block;
  margin-bottom: 0.25rem;
}

.foot-brand .foot-tagline {
  display: block;
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}

.foot-brand span,
.foot-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

.whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.95rem;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease);
}

.whatsapp:hover { transform: translateY(-2px); }

.whatsapp-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--wa) 18%, transparent);
}

.whatsapp-icon svg {
  display: block;
}

.whatsapp b { display: block; font-size: 0.9rem; }
.whatsapp span:not(.whatsapp-icon) { color: var(--text-muted); font-size: 0.78rem; }

/* ========== Motion ========== */
/* Content stays visible by default. Fade-in only after JS enables js-reveal. */
html.js-reveal .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px) scale(1);
}

html.js-reveal .reveal {
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

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

/* Keep hover grow working even on revealed cards */
.panel:hover,
.panel.reveal.is-visible:hover,
.stat:hover,
.stats.reveal.is-visible .stat:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.02);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow:
    0 18px 36px rgba(19, 32, 24, 0.12),
    0 6px 14px rgba(19, 32, 24, 0.06);
}

html[data-theme="dark"] .panel:hover,
html[data-theme="dark"] .panel.reveal.is-visible:hover,
html[data-theme="dark"] .stat:hover,
html[data-theme="dark"] .stats.reveal.is-visible .stat:hover {
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.45),
    0 10px 20px rgba(0, 0, 0, 0.28);
}

.hero-copy > * {
  animation: rise 0.8s var(--ease) both;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.22s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.3s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.38s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js-reveal .reveal,
  .hero-copy > *,
  .panel,
  .stat {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .panel:hover,
  .stat:hover {
    transform: none !important;
  }
}

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.75rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-toggle { display: grid; }

  .nav-links,
  .nav-actions .btn-hide-sm {
    display: none;
  }

  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.75rem 1.25rem 1.1rem;
    background: var(--bg-elevated);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 28px rgba(19, 32, 24, 0.12);
  }

  html[data-theme="dark"] .site-header.is-open .nav-links {
    background: var(--bg-elevated);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
  }

  .site-header.is-open .nav-links a {
    border-radius: 12px;
  }
}

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

  .stats-row { grid-template-columns: 1fr 1fr; }

  .whatsapp { padding: 0.55rem; border-radius: 50%; }
  .whatsapp > div { display: none; }
}
