/* ==========================================================================
   1. Variáveis e reset
   ========================================================================== */
:root {
  --bg: #14171b;
  --bg-alt: #1c2127;
  --card: #20262d;
  --text: #e8ecf1;
  --muted: #aeb6c2;
  --accent: #c8922e;
  --accent-strong: #e3ab3d;
  --border: #2b3138;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  --radius: 16px;
  --section-pad: 84px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #111418 0%, #171b20 45%, #12161a 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   2. Layout e tipografia base
   ========================================================================== */
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section-header {
  margin-bottom: 32px;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 16px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-intro {
  color: var(--muted);
  max-width: 70ch;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-image {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-image img {
  aspect-ratio: 4 / 3;
  filter: grayscale(15%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.section-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.section-cta {
  margin-top: 36px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1f252c 0%, #1a1f25 100%);
  text-align: center;
}

.section-cta p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* ==========================================================================
   3. Botões
   ========================================================================== */
.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 70%
  );
  transform: translateX(-140%);
  transition: transform 0.45s ease;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(140%);
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0d0d0d;
  box-shadow: 0 10px 20px rgba(200, 146, 46, 0.28);
}

.btn-cta:hover {
  box-shadow: 0 14px 26px rgba(200, 146, 46, 0.34);
  color: #0d0d0d;
}

.nav .btn-cta,
.nav .btn-cta:hover,
.nav .btn-cta.active {
  color: #0d0d0d;
  font-weight: 700;
  text-shadow: none;
}

.btn-outline {
  border-color: #5f6772;
  color: #d8deea;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.02rem;
}

.btn-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* ==========================================================================
   4. Header e navegação
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(17, 20, 24, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: visible;
}

.header.scrolled {
  background: rgba(13, 16, 20, 0.96);
  border-bottom-color: #3a424d;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a.active {
  color: var(--accent-strong);
}

.nav a.active:not(.btn) {
  text-shadow: 0 0 14px rgba(227, 171, 61, 0.35);
}

.menu-toggle {
  display: none;
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  z-index: 60;
  flex-shrink: 0;
}

.menu-toggle-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.menu-toggle-bar:nth-child(1) {
  top: 14px;
}

.menu-toggle-bar:nth-child(2) {
  top: 21px;
}

.menu-toggle-bar:nth-child(3) {
  top: 28px;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* ==========================================================================
   5. Hero
   ========================================================================== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text > p {
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  left: -12px;
  bottom: 24px;
  max-width: 240px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(28, 33, 39, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.hero-badge h3 {
  font-size: 1rem;
  color: var(--accent-strong);
  margin-bottom: 6px;
}

.hero-badge p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ==========================================================================
   6. Barra de confiança
   ========================================================================== */
.trust-bar {
  padding: 28px 0;
  background: linear-gradient(90deg, #1a1f25 0%, #232a32 50%, #1a1f25 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  text-align: center;
  padding: 12px;
}

.trust-item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--accent-strong);
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   7. Sobre
   ========================================================================== */
.about {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about .section-image {
  background: #15191e;
}

.about .section-image img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.about .section-image:hover img {
  transform: none;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ==========================================================================
   8. Diferenciais
   ========================================================================== */
.benefits {
  border-bottom: 1px solid var(--border);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
  margin-top: 8px;
}

.benefits-showcase img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: #8a6f2f;
}

.benefit-card i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.benefit-card h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   9. Serviços
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #8a6f2f;
}

.card-image {
  overflow: hidden;
  background: linear-gradient(135deg, #2a3139 0%, #1a1f25 100%);
  min-height: 180px;
}

.card-image img {
  aspect-ratio: 16 / 10;
  filter: grayscale(20%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.card-body {
  padding: 20px 22px 22px;
}

.card-body i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ==========================================================================
   10. Processo
   ========================================================================== */
.process {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.process-image {
  background: #f5f5f5;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process-image img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.process-image:hover img {
  transform: none;
  filter: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.step-number {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-strong);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   10b. Espaço do Arquiteto / Técnico
   ========================================================================== */
.architect {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.architect-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 8px 0 28px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid #6b5422;
  background: linear-gradient(135deg, #2a2318 0%, #1c2127 100%);
}

.architect-highlight i {
  color: var(--accent-strong);
  font-size: 1.4rem;
  margin-top: 2px;
}

.architect-highlight p {
  color: #e8ecf1;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 600;
  line-height: 1.45;
}

.architect-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.architect-pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.architect-pillar i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.architect-pillar h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.architect-pillar p {
  color: var(--muted);
  font-size: 0.9rem;
}

.architect-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.architect-tab {
  border: 1px solid var(--border);
  background: #171b21;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.architect-tab:hover {
  color: var(--text);
  border-color: #5f6772;
}

.architect-tab.active {
  color: #18140c;
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.architect-panel[hidden] {
  display: none;
}

.architect-cad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.architect-drawing {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1014;
  box-shadow: var(--shadow);
}

.architect-drawing img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #0d1014;
}

.architect-drawing figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  background: #15191e;
}

/* Oculta área do carimbo no canto inferior direito do CAD */
.architect-drawing--cad {
  position: relative;
}

.architect-drawing--cad::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(30%, 220px);
  height: min(24%, 140px);
  background: #000;
  pointer-events: none;
}

.architect-pieces {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.architect-pieces .architect-drawing img {
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (min-width: 761px) {
  .architect-cad-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .architect-cad-grid .architect-drawing:first-child {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   11. Galeria
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  border: 1px solid var(--border);
  filter: grayscale(25%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.gallery-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.015);
}

/* ==========================================================================
   12. Depoimentos
   ========================================================================== */
.testimonials {
  border-bottom: 1px solid var(--border);
}

.testimonial-featured {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow);
}

.testimonial-featured-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.testimonial-featured-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.testimonial-featured-content .stars {
  color: var(--accent-strong);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.testimonial-featured-content blockquote {
  color: #e8ecf1;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 18px;
}

.testimonial-featured-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-featured-meta strong {
  color: var(--accent-strong);
  font-size: 1.05rem;
}

.testimonial-featured-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-featured-project {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-featured-project img {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  border: 1px solid var(--border);
  object-fit: cover;
}

.testimonial-featured-project p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   13. CTA final
   ========================================================================== */
.cta-final {
  padding: 72px 0 96px;
}

.cta-final-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(40px, 6vw, 64px);
  border-radius: 20px;
  border: 1px solid #6b5422;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.35);
}

.cta-final-content {
  position: relative;
  z-index: 1;
}

.cta-final-content h2 {
  max-width: 22ch;
  margin: 0 auto 14px;
}

.cta-final-content > p {
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto 24px;
}

.cta-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-note {
  color: #9aa3b1;
  font-size: 0.88rem;
}

/* ==========================================================================
   14. Footer e WhatsApp
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: #101317;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p {
  color: #8f98a6;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #c2c9d5;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  z-index: 80;
  transition: transform 0.25s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

/* ==========================================================================
   15. Animações (scroll reveal)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.cards .reveal:nth-child(2) { transition-delay: 0.08s; }
.cards .reveal:nth-child(3) { transition-delay: 0.14s; }
.cards .reveal:nth-child(4) { transition-delay: 0.2s; }
.cards .reveal:nth-child(5) { transition-delay: 0.26s; }

.benefits-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.benefits-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.benefits-grid .reveal:nth-child(4) { transition-delay: 0.2s; }

.steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.steps .reveal:nth-child(3) { transition-delay: 0.14s; }
.steps .reveal:nth-child(4) { transition-delay: 0.2s; }

.architect-pillars .reveal:nth-child(2) { transition-delay: 0.08s; }
.architect-pillars .reveal:nth-child(3) { transition-delay: 0.14s; }

.gallery-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.3s; }
.gallery-grid .reveal:nth-child(7) { transition-delay: 0.36s; }
.gallery-grid .reveal:nth-child(8) { transition-delay: 0.4s; }
.gallery-grid .reveal:nth-child(9) { transition-delay: 0.44s; }
.gallery-grid .reveal:nth-child(10) { transition-delay: 0.48s; }

.cards .reveal:nth-child(6) { transition-delay: 0.3s; }
.cards .reveal:nth-child(7) { transition-delay: 0.34s; }

/* ==========================================================================
   16. Responsivo
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .benefits-layout,
  .process-layout,
  .testimonial-featured,
  .architect-pillars,
  .architect-pieces {
    grid-template-columns: 1fr;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-badge {
    left: 12px;
    bottom: 12px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    background: #171b21;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: var(--shadow);
    z-index: 55;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .nav a:hover,
  .nav a.active {
    background: rgba(200, 146, 46, 0.12);
  }

  .nav .desktop-cta {
    margin-top: 6px;
    text-align: center;
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --section-pad: 68px;
  }
}

@media (max-width: 560px) {
  .trust-grid,
  .cards,
  .gallery-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .testimonial-featured-project {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .section-cta .btn,
  .cta-final-actions .btn {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
