:root {
  --bg-0: #050810;
  --bg-1: #0a1628;
  --bg-2: #0f2340;
  --panel: rgba(12, 24, 42, 0.78);
  --panel-solid: #0c1b31;
  --text: #e7eefb;
  --muted: #a8b8d1;
  --line: rgba(124, 150, 186, 0.38);
  --accent: #58d2ff;
  --accent-strong: #1ba8ef;
  --accent-warm: #ffd484;
  --good: #2bc077;
  --danger: #ff7a8a;
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.3);
  --shadow-deep: 0 28px 90px rgba(0, 0, 0, 0.55);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --radius-sm: 0.65rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  line-height: 1.62;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 16% 12%, rgba(88, 210, 255, 0.18), transparent 40%),
    radial-gradient(circle at 86% 5%, rgba(255, 212, 132, 0.1), transparent 34%),
    linear-gradient(160deg, var(--bg-0) 4%, var(--bg-1) 48%, var(--bg-2) 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.24;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 100%);
}

.page-services {
  --page-glow-a: rgba(88, 210, 255, 0.28);
  --page-glow-b: rgba(255, 212, 132, 0.18);
}

.page-projects {
  --page-glow-a: rgba(77, 198, 255, 0.22);
  --page-glow-b: rgba(132, 177, 255, 0.16);
}

.page-about {
  --page-glow-a: rgba(255, 212, 132, 0.22);
  --page-glow-b: rgba(88, 210, 255, 0.16);
}

.page-contact {
  --page-glow-a: rgba(43, 192, 119, 0.18);
  --page-glow-b: rgba(88, 210, 255, 0.18);
}

.js body:not(.is-loaded) {
  overflow: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.26s ease;
}

a:hover {
  color: #e4f6ff;
}

main {
  position: relative;
  overflow: clip;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  background:
    radial-gradient(circle at center, rgba(12, 35, 65, 0.86), rgba(5, 9, 16, 0.94)),
    linear-gradient(130deg, rgba(88, 210, 255, 0.12), rgba(255, 212, 132, 0.04));
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.js .site-loader {
  opacity: 1;
  visibility: visible;
}

body.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-core {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
}

.loader-ring {
  position: absolute;
  border: 1px solid rgba(167, 194, 230, 0.33);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: loader-spin 2.8s linear infinite;
}

.loader-ring-outer {
  inset: 0;
}

.loader-ring-middle {
  inset: 18px;
  animation-duration: 2s;
  animation-direction: reverse;
  border-top-color: var(--accent-warm);
}

.loader-ring-inner {
  inset: 38px;
  animation-duration: 1.35s;
  border-top-color: #c5edff;
}

.loader-pulse {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #f4fcff, var(--accent));
  box-shadow: 0 0 30px rgba(88, 210, 255, 0.75);
  animation: loader-pulse 1.2s ease-in-out infinite alternate;
}

.loader-core p {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  width: 270px;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: rgba(227, 239, 255, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 11, 20, 0.68);
  backdrop-filter: blur(13px);
  border-bottom: 1px solid rgba(124, 150, 186, 0.32);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(4, 9, 16, 0.9);
  border-bottom-color: rgba(146, 182, 225, 0.55);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0;
}

.brand {
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  color: #f5faff;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  padding: 0.3rem 0.1rem;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.23rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

nav a.active,
nav a:hover {
  color: #edf8ff;
}

nav a.active::after,
nav a:hover::after {
  transform: scaleX(1);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.12;
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  color: #f4f8ff;
}

h1 {
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9de0ff;
  font-size: 0.72rem;
  font-weight: 700;
}

.lead {
  color: var(--muted);
  max-width: 72ch;
  font-size: 1.03rem;
}

.hero {
  position: relative;
  padding: 7.2rem 0 5.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -4.5rem;
  right: -8rem;
  width: min(58vw, 700px);
  height: min(65vw, 640px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 33% 38%, rgba(88, 210, 255, 0.35), transparent 48%),
    radial-gradient(circle at 71% 70%, rgba(255, 212, 132, 0.2), transparent 40%);
  filter: blur(16px);
  pointer-events: none;
  animation: hero-float 13s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(166, 197, 235, 0.04) 0, rgba(166, 197, 235, 0.04) 1px, transparent 1px, transparent 75px),
    linear-gradient(180deg, transparent, rgba(5, 10, 17, 0.46));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 2.4rem;
  align-items: stretch;
}

.page-hero {
  padding: 6rem 0 4.75rem;
}

.page-hero::before {
  top: -3rem;
  right: -6rem;
  width: min(60vw, 760px);
  height: min(58vw, 600px);
  background:
    radial-gradient(circle at 22% 30%, var(--page-glow-a, rgba(88, 210, 255, 0.24)), transparent 46%),
    radial-gradient(circle at 76% 56%, var(--page-glow-b, rgba(255, 212, 132, 0.16)), transparent 40%);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.2rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.8rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: translateY(0);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(120deg, #67d8ff, #33b6f4 62%, #1d8ed1);
  color: #032038;
  box-shadow: 0 10px 30px rgba(33, 171, 229, 0.32);
}

.btn-primary::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 55%);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  border-color: rgba(146, 172, 204, 0.5);
  color: #e6effb;
  background: rgba(10, 19, 34, 0.68);
}

.btn-secondary:hover {
  border-color: rgba(180, 208, 239, 0.78);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.hero-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.hero-tag-list span {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(136, 162, 198, 0.34);
  border-radius: 999px;
  background: rgba(8, 18, 32, 0.58);
  color: #d7e7fb;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

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

.highlights li,
.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: #bfd0e6;
}

.highlights li::before,
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #daf4ff);
  box-shadow: 0 0 0 3px rgba(88, 210, 255, 0.13);
}

.hero-card,
.card,
.contact-form {
  background:
    linear-gradient(160deg, rgba(13, 28, 49, 0.9), rgba(9, 18, 32, 0.85));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.35rem;
}

.hero-panel {
  min-height: 100%;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(88, 210, 255, 0.35), transparent 42%, rgba(255, 212, 132, 0.2));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-card-topline {
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #95daff;
}

.hero-card h2 {
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.hero-card p {
  color: #b8cce6;
}

.hero-card dl {
  margin: 1rem 0 0;
}

.hero-card dl div {
  padding: 0.58rem 0;
  border-bottom: 1px solid rgba(137, 164, 196, 0.24);
}

.hero-card dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #95adc9;
  margin-bottom: 0.16rem;
}

.hero-card dd {
  margin: 0;
  color: #deebfa;
}

.hero-metrics {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.hero-metrics p {
  margin: 0;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(16, 34, 58, 0.7);
  color: #cae0f8;
}

.hero-metrics strong {
  margin-right: 0.28rem;
  color: #7ddfff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.stat-box {
  padding: 0.9rem;
  border: 1px solid rgba(135, 163, 196, 0.28);
  border-radius: var(--radius-md);
  background: rgba(10, 21, 37, 0.72);
}

.stat-box strong {
  display: block;
  margin-bottom: 0.28rem;
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  color: #87e1ff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.stat-box span {
  color: #d6e4f6;
  font-size: 0.92rem;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, 90%);
  height: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: left;
  opacity: 0.8;
  background: linear-gradient(90deg, transparent, rgba(88, 210, 255, 0.75), transparent);
  transition: transform 0.9s ease;
}

.section.section-in-view::before {
  transform: translateX(-50%) scaleX(1);
}

.section-head {
  margin-bottom: 1.6rem;
  max-width: 780px;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(6, 13, 24, 0.66), rgba(8, 18, 31, 0.3));
  border-block: 1px solid rgba(123, 149, 183, 0.24);
}

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

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.card::after {
  content: '';
  position: absolute;
  left: -25%;
  top: 0;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 210, 255, 0.95), transparent);
  transition: transform 0.45s ease;
  transform: translateX(-120%);
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(143, 173, 208, 0.72);
  box-shadow: var(--shadow-deep);
}

.card:hover::after {
  transform: translateX(280%);
}

.card p {
  margin-bottom: 0;
  color: #b9cce5;
}

.card-kicker {
  margin-bottom: 0.5rem;
  color: #8fdfff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
}

.card-list {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.card-list li {
  position: relative;
  padding-left: 1.3rem;
  color: #cad8eb;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
}

.media-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  margin-bottom: 0.92rem;
  border: 1px solid rgba(130, 159, 196, 0.4);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(30, 64, 98, 0.65), rgba(12, 23, 41, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 0.82rem;
}

.media-placeholder::before {
  content: '';
  position: absolute;
  inset: -45% -35%;
  background: conic-gradient(from 180deg, rgba(88, 210, 255, 0.06), rgba(255, 212, 132, 0.08), rgba(88, 210, 255, 0.05));
  animation: panel-spin 16s linear infinite;
}

.media-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(208, 240, 255, 0.16), transparent 44%, rgba(88, 210, 255, 0.25));
}

.media-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #d9f3ff;
}

.media-placeholder-tall {
  min-height: 255px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.process-grid {
  align-items: center;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process-step;
  display: grid;
  gap: 0.82rem;
}

.process-steps li {
  position: relative;
  padding: 0.92rem 1rem 0.92rem 3.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(126, 154, 191, 0.36);
  background: rgba(11, 23, 39, 0.72);
  color: #cee0f7;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-steps li::before {
  counter-increment: process-step;
  content: counter(process-step, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: #8ddfff;
}

.process-steps li:hover {
  transform: translateX(5px);
  border-color: rgba(163, 199, 238, 0.65);
}

.showcase-grid {
  align-items: center;
}

.showcase-media {
  display: grid;
  gap: 1rem;
}

.split-media,
.panel-stack {
  display: grid;
  gap: 1rem;
}

.info-card,
.form-shell,
.cta-band {
  background:
    linear-gradient(160deg, rgba(13, 28, 49, 0.9), rgba(9, 18, 32, 0.85));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.info-card,
.form-shell {
  padding: 1.2rem;
}

.info-card h2,
.info-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.22rem;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  align-items: stretch;
}

.form-shell .section-head {
  margin-bottom: 1.1rem;
}

.form-shell .contact-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.45rem;
}

.cta-band h2,
.cta-band p {
  max-width: 54ch;
}

.cta-band-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-top {
  padding-top: 4.5rem;
  padding-bottom: 0.3rem;
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(127, 155, 189, 0.3);
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.54), rgba(5, 9, 16, 0.86));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.2rem;
  padding: 2.2rem 0;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 0.6rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #aebfda;
}

.site-footer ul {
  margin: 0;
  padding-left: 1rem;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: linear-gradient(130deg, #2bce72, #15a95a);
  color: white;
  padding: 0.82rem 1.06rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.46);
  color: #ffffff;
}

.contact-form {
  display: grid;
  gap: 0.88rem;
  padding: 1.2rem;
}

.contact-form label {
  color: #d8e8fb;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.66rem 0.72rem;
  border-radius: 0.52rem;
  border: 1px solid rgba(130, 159, 194, 0.38);
  background: rgba(8, 17, 30, 0.84);
  color: #f0f6ff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #78dbff;
  box-shadow: 0 0 0 3px rgba(88, 210, 255, 0.18);
}

.small-note {
  color: #9fb2ce;
  font-size: 0.9rem;
}

[data-animate] {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition:
    opacity 0.76s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-animate='fade-left'] {
  transform: translate3d(42px, 0, 0);
}

[data-animate='fade-right'] {
  transform: translate3d(-42px, 0, 0);
}

[data-animate='slide-right'] {
  transform: translate3d(-36px, 0, 0);
}

[data-animate='fade-up'] {
  transform: translate3d(0, 36px, 0);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-pulse {
  from {
    transform: scale(0.75);
    opacity: 0.8;
  }

  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes hero-float {
  from {
    transform: translateY(-5px);
  }

  to {
    transform: translateY(16px);
  }
}

@keyframes panel-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 6.2rem;
  }

  .page-hero-grid,
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 760px;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.4rem;
  }

  .cards-3,
  .cards-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.9rem 0;
  }

  .media-placeholder {
    min-height: 155px;
  }

  .media-placeholder-tall {
    min-height: 210px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15.5px;
  }

  .hero {
    padding-top: 5.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .whatsapp-fab {
    right: 0.8rem;
    bottom: 0.8rem;
    font-size: 0.88rem;
  }

  .loader-core {
    transform: scale(0.9);
  }

  .hero-tag-list {
    gap: 0.5rem;
  }

  .hero-tag-list span,
  .stat-box {
    width: 100%;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .js body:not(.is-loaded) {
    overflow: auto;
  }
}

