@font-face {
  font-family: "Sora";
  font-style: normal;
  font-display: swap;
  font-weight: 100 800;
  src: url("../fonts/sora-latin-variable.woff2") format("woff2-variations");
}

:root {
  --ink: #10100f;
  --ink-soft: #1a1917;
  --paper: #f5f1e9;
  --paper-soft: #fbf9f4;
  --white: #fff;
  --gold: #c99a3d;
  --gold-light: #ebc878;
  --line: rgba(16, 16, 15, 0.14);
  --muted: #6d6a64;
  --success: #2d7d5b;
  --danger: #b53a35;
  --shadow: 0 24px 70px rgba(16, 16, 15, 0.12);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: min(1240px, calc(100% - 40px));
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Sora", "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
[id] { scroll-margin-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; line-height: 1.06; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; }
.section-sm { padding: 72px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-paper { background: var(--paper); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 52px;
}
.section-head > p { max-width: 570px; margin: 0; color: var(--muted); font-size: 1.06rem; }
.section-dark .section-head > p { color: rgba(255,255,255,.68); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.display-title {
  max-width: 920px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.3vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.045em;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -.035em;
}
.lead { max-width: 700px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.text-gold { color: var(--gold-light); }

/* Navigation */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(16,16,15,.88);
  border-bottom: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 56px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; color: white; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand span { font-size: .86rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(15px, 1.65vw, 28px); }
.nav-links a {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 17px; border: 1px solid rgba(235,200,120,.55); border-radius: 999px; color: white; font-size: .82rem; font-weight: 750; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light); color: var(--ink); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: white; transition: .25s ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* Heroes */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.9) 0%, rgba(8,8,8,.56) 52%, rgba(8,8,8,.18) 100%), linear-gradient(0deg, rgba(8,8,8,.84) 0%, transparent 55%);
}
.hero .container { position: relative; z-index: 2; padding-top: 170px; padding-bottom: 80px; }
.hero-copy { width: 100%; max-width: 960px; min-width: 0; }
.hero-copy .display-title { text-wrap: balance; }
.hero-copy .lead { margin: 26px 0 0; color: rgba(255,255,255,.76); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { display: flex; align-items: center; gap: 13px; margin-top: 34px; color: rgba(255,255,255,.66); font-size: .88rem; }
.hero-note::before { content: ""; width: 42px; height: 1px; background: var(--gold-light); }
.hero-mini { min-height: 72svh; }
.hero-mini .container { padding-bottom: 68px; }
.hero-mini .hero-copy { max-width: 890px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-light); color: var(--ink); }
.btn-primary:hover { background: #f2d48e; }
.btn-secondary { border-color: rgba(255,255,255,.35); color: white; background: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
.btn-secondary:hover { border-color: white; }
.btn-dark { background: var(--ink); color: white; }
.btn-outline { border-color: var(--line); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }
.arrow { font-size: 1.1em; transition: transform .2s ease; }
.btn:hover .arrow, .text-link:hover .arrow { transform: translateX(4px); }

/* Cards and grids */
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.66);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,154,61,.45); box-shadow: var(--shadow); }
.card-index { margin-bottom: 34px; color: var(--gold); font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.card h3 { margin-bottom: 14px; font-size: 1.28rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--gold);
  font-weight: 800;
}
.service-card { min-height: 300px; display: flex; flex-direction: column; }
.service-card .text-link { margin-top: auto; padding-top: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 800; }

.stats-strip { position: relative; z-index: 4; margin-top: -1px; color: white; background: var(--ink); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 44px 30px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.stat strong { display: block; color: var(--gold-light); font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 400; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: rgba(255,255,255,.64); font-size: .86rem; }

.media-split { display: grid; grid-template-columns: 1.04fr .96fr; align-items: stretch; gap: 70px; }
.media-frame { min-height: 560px; overflow: hidden; border-radius: var(--radius-lg); background: #ddd; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-copy { align-self: center; }
.media-copy .section-title { margin-bottom: 24px; }
.media-copy .lead { margin-bottom: 30px; }
.check-list { display: grid; gap: 16px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; color: var(--muted); }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(201,154,61,.16); color: #8f6419; font-size: .78rem; font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.15); }
.steps.steps-four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.step { padding: 38px 32px 20px 0; border-right: 1px solid rgba(255,255,255,.15); }
.step + .step { padding-left: 32px; }
.step:last-child { border-right: 0; }
.step-number { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 48px; color: var(--gold-light); font-size: .74rem; font-weight: 800; letter-spacing: .15em; }
.step h3 { margin-bottom: 16px; font-size: 1.35rem; }
.step p { margin: 0; color: rgba(255,255,255,.64); font-size: .94rem; }

.project-grid { display: grid; grid-template-columns: 1.1fr .7fr .7fr; grid-template-rows: 330px 330px; gap: 20px; }
.project-card { position: relative; overflow: hidden; border-radius: var(--radius); color: white; isolation: isolate; }
.project-card:first-child { grid-row: 1 / 3; }
.project-card:nth-child(4) { grid-column: 2 / 4; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project-card::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 58%); }
.project-card:hover img { transform: scale(1.045); }
.project-info { position: absolute; z-index: 2; right: 28px; bottom: 27px; left: 28px; }
.project-info span { color: var(--gold-light); font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-info h3 { margin: 8px 0 7px; font-size: 1.5rem; }
.project-info p { max-width: 520px; margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; }

.comparison { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); overflow: hidden; }
.compare-column { padding: 42px; }
.compare-column + .compare-column { border-left: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.035); }
.compare-column h3 { margin-bottom: 26px; font-size: 1.65rem; }
.compare-column ul { display: grid; gap: 15px; padding: 0; margin: 0; list-style: none; }
.compare-column li { position: relative; padding-left: 27px; color: rgba(255,255,255,.7); }
.compare-column li::before { position: absolute; left: 0; color: var(--gold-light); font-weight: 900; }
.compare-good li::before { content: "✓"; }
.compare-bad li::before { content: "×"; color: #b4ada1; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.quote-card { display: flex; flex-direction: column; min-height: 340px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.quote-mark { color: var(--gold); font-family: var(--font-display); font-size: 4rem; line-height: .7; }
.quote-card blockquote { margin: 24px 0 30px; font-size: 1rem; line-height: 1.75; }
.quote-author { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.quote-author strong, .quote-author span { display: block; }
.quote-author span { color: var(--muted); font-size: .82rem; }

.feature-band { padding: 38px; border-radius: var(--radius-lg); color: white; background: linear-gradient(135deg, #171613, #2a2419); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature-item { padding: 14px 8px; }
.feature-item span { color: var(--gold-light); font-size: .74rem; font-weight: 800; letter-spacing: .14em; }
.feature-item h3 { margin: 12px 0; font-size: 1.12rem; }
.feature-item p { margin: 0; color: rgba(255,255,255,.6); font-size: .9rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger { display: grid; grid-template-columns: 1fr 28px; align-items: center; gap: 20px; width: 100%; padding: 24px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 750; }
.accordion-trigger span:last-child { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; transition: transform .25s ease; }
.accordion-trigger[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-panel p { padding: 0 44px 24px 0; margin: 0; color: var(--muted); }
.accordion-trigger[aria-expanded="true"] + .accordion-panel { grid-template-rows: 1fr; }

/* Forms */
.contact-shell { display: grid; grid-template-columns: .72fr 1.28fr; border-radius: var(--radius-lg); overflow: hidden; background: white; box-shadow: var(--shadow); }
.contact-aside { padding: 48px; color: white; background: var(--ink); }
.contact-aside .section-title { margin-bottom: 24px; font-size: clamp(2.2rem,3.5vw,3.6rem); }
.contact-aside > p { color: rgba(255,255,255,.65); }
.contact-list { display: grid; gap: 18px; margin-top: 42px; }
.contact-list a, .contact-list div { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-list small { display: block; margin-bottom: 5px; color: var(--gold-light); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-form { padding: 48px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 800; letter-spacing: .03em; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid #d6d1c8;
  border-radius: 11px;
  outline: 0;
  background: #fcfbf8;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 126px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,154,61,.14); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 18px; color: var(--danger); font-size: .76rem; }
.form-note { margin: 18px 0; color: var(--muted); font-size: .78rem; }
.form-status { min-height: 22px; margin-top: 14px; font-size: .86rem; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.cta-panel { position: relative; padding: clamp(42px, 7vw, 88px); border-radius: var(--radius-lg); overflow: hidden; color: white; background: var(--ink); isolation: isolate; }
.cta-panel::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(201,154,61,.33), transparent 34%); }
.cta-panel .section-title { max-width: 780px; }
.cta-panel p { max-width: 620px; margin: 24px 0 30px; color: rgba(255,255,255,.67); }

/* Footer */
.site-footer { padding: 74px 0 28px; color: white; background: #0b0b0a; }
.footer-top { display: grid; grid-template-columns: 1.4fr .7fr .7fr .9fr; gap: 50px; padding-bottom: 58px; }
.footer-brand img { width: 78px; height: 78px; object-fit: contain; }
.footer-brand p { max-width: 350px; margin: 20px 0 0; color: rgba(255,255,255,.56); }
.footer-col h3 { margin-bottom: 18px; color: var(--gold-light); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: 10px 0; color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: .76rem; }
.social-row { display: flex; gap: 14px; }
.social-row a { margin: 0; }
.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 999px;
  color: white;
  background: #1f9d61;
  box-shadow: 0 12px 35px rgba(0,0,0,.24);
  font-size: .82rem;
  font-weight: 800;
}
.whatsapp-float:hover { transform: translateY(-2px); }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .78rem; }
  .brand span { display: none; }
  .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps.steps-four { grid-template-columns: repeat(2,1fr); }
  .steps.steps-four .step:nth-child(2) { border-right: 0; }
  .steps.steps-four .step:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.15); }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-shell { grid-template-columns: .85fr 1.15fr; }
}

@media (max-width: 860px) {
  :root { --container: min(calc(100% - 32px), 680px); }
  .section { padding: 82px 0; }
  .site-header { padding: 10px 0; background: rgba(16,16,15,.72); backdrop-filter: blur(16px); }
  .brand img { width: 50px; height: 50px; }
  .brand span { display: inline; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 420px);
    height: 100svh;
    padding: 110px 36px 38px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: #11110f;
    box-shadow: -20px 0 60px rgba(0,0,0,.35);
    transform: translateX(105%);
    transition: transform .32s ease;
  }
  .menu-open .nav-links { transform: translateX(0); }
  .nav-links a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .hero { min-height: 84svh; }
  .hero .container { padding-top: 140px; padding-bottom: 62px; }
  .hero-mini { min-height: 68svh; }
  .section-head, .media-split, .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .media-frame { min-height: 460px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(3) { border-left: 1px solid rgba(255,255,255,.1); }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .step:last-child { border-bottom: 0; }
  .step-number { margin-bottom: 24px; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 420px); }
  .project-card:first-child { grid-row: auto; }
  .project-card:nth-child(4) { grid-column: auto; }
  .comparison { grid-template-columns: 1fr; }
  .compare-column + .compare-column { border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
  .contact-shell { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 28px); --radius: 19px; --radius-lg: 26px; }
  .section { padding: 68px 0; }
  .section-sm { padding: 52px 0; }
  .brand span { font-size: .74rem; }
  .display-title { max-width: 100%; font-size: clamp(2.45rem, 11.7vw, 4.2rem); overflow-wrap: break-word; }
  .hero-copy .lead { max-width: 100%; overflow-wrap: break-word; }
  .hero::after { background: linear-gradient(0deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.5) 68%, rgba(8,8,8,.35) 100%); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .card-grid, .testimonial-grid, .feature-grid { grid-template-columns: 1fr; }
  .card { padding: 25px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 18px; }
  .stat strong { font-size: 2.6rem; }
  .media-frame { min-height: 360px; }
  .project-grid { grid-template-rows: repeat(4, 360px); }
  .project-info { right: 20px; bottom: 20px; left: 20px; }
  .compare-column { padding: 29px 24px; }
  .steps.steps-four { grid-template-columns: 1fr; }
  .steps.steps-four .step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .steps.steps-four .step:nth-child(n+3) { border-top: 0; }
  .quote-card { min-height: 0; }
  .contact-aside, .contact-form { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand, .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 52px; height: 52px; justify-content: center; padding: 0; font-size: 1.2rem; }
}
