/* =============================================
   ESSÊNCIA PERDIZES — CSS
   Luxury Real Estate · WDS Construtora
   ============================================= */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A96E;
  --gold-light: #E2C99A;
  --gold-dark: #A07840;
  --cream: #F8F5EF;
  --warm-white: #FDFAF5;
  --dark: #1A1612;
  --dark-mid: #2C2419;
  --mid: #6B5C4A;
  --light-mid: #A89880;
  --stone: #E8E0D4;
  --stone-dark: #D4C9B8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h4 { font-size: 1.15rem; font-weight: 500; }

em { font-style: italic; color: var(--gold); }

.label-gold {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.label-gold-dark {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 12px;
}

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  max-width: 540px;
}

.body-text.dark { color: rgba(255,255,255,0.75); max-width: 540px; }
.body-text.italic { font-style: italic; font-size: 1.05rem; }
.body-text.center-text { margin: 0 auto; text-align: center; }

/* =============================================
   BUTTONS
   ============================================= */

.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s;
  cursor: pointer;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-gold.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  transition: background 0.3s;
}

.btn-whatsapp:hover { background: #1DA851; }

/* =============================================
   NAVBAR
   ============================================= */

.nav-logo-img {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 14px;
}
   ============================================= */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(26, 22, 18, 0.97);
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.2);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-ess {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.logo-ess.small { font-size: 1.2rem; }

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 22, 18, 0.98);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */

#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img { object-position: center 30%; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,22,18,0.82) 0%,
    rgba(26,22,18,0.55) 50%,
    rgba(26,22,18,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  animation: heroFadeIn 1.2s var(--ease) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.title-ess {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.title-perdizes {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-top: 12px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-tags span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 16px;
  border: 1px solid rgba(201,169,110,0.4);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2.5s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SECTIONS COMMON
   ============================================= */

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center h2 { margin: 0 auto; }
.section-header.center .body-text { margin: 16px auto 0; }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.split-image { position: relative; }

.split-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.img-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(26,22,18,0.8);
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
}

/* =============================================
   SECTION: SOBRE
   ============================================= */

.section-sobre {
  padding: 120px 0;
  background: var(--warm-white);
}

.section-sobre .split-text h2 { margin-bottom: 20px; }
.section-sobre .body-text { margin-bottom: 16px; }

.ficha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--stone);
}

.ficha-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
}

.ficha-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.ficha-val {
  font-size: 0.88rem;
  color: var(--dark-mid);
  line-height: 1.4;
}

/* =============================================
   SECTION: NÚMEROS
   ============================================= */

.section-nums {
  padding: 80px 0;
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nums-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.num-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.num-item:last-child { border-right: none; }
.num-item:hover { background: rgba(201,169,110,0.06); }

.num-val {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.num-unit {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 6px 0 8px;
}

.num-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* =============================================
   SECTION: DIFERENCIAIS
   ============================================= */

.section-dif {
  padding: 120px 0;
  background: var(--cream);
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dif-card {
  padding: 40px 32px;
  background: var(--warm-white);
  border: 1px solid var(--stone);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.dif-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.dif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,22,18,0.1);
}

.dif-card:hover::before { transform: scaleX(1); }

.dif-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.dif-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--dark);
}

.dif-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--mid);
}

/* =============================================
   SECTION: LAZER
   ============================================= */

.section-lazer {
  padding: 120px 0 80px;
  background: var(--warm-white);
}

.section-lazer .section-header { padding: 0 40px; max-width: 1280px; margin: 0 auto 56px; }

.lazer-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
  margin-bottom: 48px;
}

.gallery-item { position: relative; overflow: hidden; }

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(26,22,18,0.85));
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  font-weight: 500;
}

.gallery-caption p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.lazer-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-bottom: 40px;
}

.amenity-pill {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-mid);
  padding: 8px 18px;
  border: 1px solid var(--stone-dark);
  background: var(--cream);
  transition: background 0.2s, border-color 0.2s;
}

.amenity-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* =============================================
   SECTION: PLANTA
   ============================================= */

.section-planta {
  padding: 120px 0;
  background: var(--cream);
}

.planta-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.planta-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--dark-mid);
  line-height: 1.5;
}

.planta-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* =============================================
   SECTION: LOCALIZAÇÃO
   ============================================= */

.section-local {
  padding: 120px 0;
  background: var(--warm-white);
}

.map-wrapper {
  border: 1px solid var(--stone-dark);
  overflow: hidden;
  margin-bottom: 48px;
}

.pontos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ponto-card {
  padding: 24px 20px;
  background: var(--cream);
  border: 1px solid var(--stone);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.ponto-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.ponto-icon { font-size: 1.8rem; margin-bottom: 10px; }

.ponto-card h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.ponto-card p {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.5;
}

/* =============================================
   SECTION: WDS
   ============================================= */

.section-wds {
  padding: 120px 0;
  background: var(--dark);
}

.section-wds h2.dark { color: white; }

.wds-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.wds-stat {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 20px;
  padding-left: 4px;
}

.wds-stat:nth-child(even) { border-right: none; padding-left: 24px; }

.stat-n {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-l {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   SECTION: CONTATO
   ============================================= */

.section-contato {
  position: relative;
  padding: 120px 0;
}

.contato-bg {
  position: absolute;
  inset: 0;
}

.contato-bg img { object-position: center 60%; }

.contato-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,22,18,0.93) 0%,
    rgba(26,22,18,0.75) 55%,
    rgba(26,22,18,0.4) 100%
  );
}

.contato-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-text h2 { color: white; margin-bottom: 16px; }
.contato-text .body-text { color: rgba(255,255,255,0.7); max-width: 460px; }

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.45); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group select {
  cursor: pointer;
  color: rgba(255,255,255,0.45);
}

.form-group select option { background: var(--dark); color: white; }

.form-or {
  font-size: 0.72rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 4px 0;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: #0F0D0A;
  padding: 64px 0 40px;
  border-top: 1px solid rgba(201,169,110,0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-legal {
  padding-top: 4px;
}

.footer-legal p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 0.65rem !important;
  color: rgba(255,255,255,0.2) !important;
  font-style: italic;
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .nums-grid { grid-template-columns: repeat(3, 1fr); }
  .num-item:nth-child(3) { border-right: none; }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .pontos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .split-image img { height: 360px; }

  .lazer-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.large { grid-column: span 2; }

  .contato-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }

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

@media (max-width: 640px) {
  :root { --nav-h: 64px; }

  h2 { font-size: 1.9rem; }

  .section-sobre,
  .section-dif,
  .section-lazer,
  .section-planta,
  .section-local,
  .section-wds,
  .section-contato {
    padding: 72px 0;
  }

  .nums-grid { grid-template-columns: repeat(2, 1fr); }
  .num-item:nth-child(2) { border-right: none; }

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

  .lazer-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item.large { grid-column: span 1; height: 240px; }

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

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

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

  .wds-stats { grid-template-columns: 1fr; }
  .wds-stat { border-right: none !important; padding-left: 0 !important; }

  .section-lazer .section-header { padding: 0 24px; }
}
