:root {
  color-scheme: light;
  --ink: #11110f;
  --charcoal: #191816;
  --charcoal-2: #29241e;
  --paper: #f4ead8;
  --paper-soft: #e5d8c3;
  --surface: #fff9ef;
  --muted: #746b5f;
  --teal: #8c7c66;
  --teal-deep: #4d4438;
  --gold: #a87b40;
  --coral: #8e5b49;
  --green: #766f62;
  --line: rgba(17, 17, 15, 0.13);
  --line-light: rgba(244, 234, 216, 0.16);
  --shadow: 0 22px 54px rgba(23, 20, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body::before {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 15, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  align-items: stretch;
  backdrop-filter: blur(24px);
  background:
    linear-gradient(90deg, rgba(244, 234, 216, 0.08), transparent 36%),
    rgba(17, 17, 15, 0.92);
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 48px rgba(17, 17, 15, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  left: 50%;
  max-width: min(1180px, calc(100% - 32px));
  padding: 0;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
  width: 100%;
  z-index: 10;
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(168, 123, 64, 0.9), transparent);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 18px;
  position: absolute;
  right: 18px;
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(244, 234, 216, 0.08), transparent 36%),
    rgba(17, 17, 15, 0.98);
  border-color: rgba(244, 234, 216, 0.24);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.header-top {
  align-items: center;
  border-bottom: 1px solid rgba(244, 234, 216, 0.12);
  color: rgba(244, 234, 216, 0.68);
  display: flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 18px;
  justify-content: space-between;
  padding: 8px 16px;
}

.header-top a {
  color: #dfc99e;
  font-weight: 850;
}

.header-main {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 10px 12px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
}

.site-header .brand {
  background: rgba(244, 234, 216, 0.08);
  border: 1px solid rgba(244, 234, 216, 0.16);
  padding: 6px 10px 6px 8px;
}

.brand-logo {
  display: block;
  height: 76px;
  width: auto;
}

.site-header .brand-logo {
  height: 62px;
}

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  width: 34px;
}

.nav-links {
  align-items: center;
  color: rgba(244, 234, 216, 0.76);
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 8px 0;
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  background: var(--gold);
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.header-call {
  border-left: 1px solid rgba(244, 234, 216, 0.16);
  color: var(--paper);
  display: grid;
  gap: 1px;
  padding-left: 14px;
}

.header-call span {
  color: rgba(244, 234, 216, 0.58);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-call strong {
  color: #dfc99e;
  font-size: 0.94rem;
}

.header-whatsapp {
  background: rgba(244, 234, 216, 0.1);
  border: 1px solid rgba(244, 234, 216, 0.18);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 14px;
}

.nav-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  background: rgba(168, 123, 64, 0.18);
  border-color: rgba(168, 123, 64, 0.48);
  color: #dfc99e;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #15100a;
}

.button-secondary {
  background: var(--ink);
  color: var(--paper);
}

.button-ghost {
  background: rgba(244, 234, 216, 0.09);
  border-color: rgba(244, 234, 216, 0.22);
  color: var(--paper);
}

.button-whatsapp {
  background: var(--teal);
  color: var(--ink);
}

.button-ghost.dark {
  background: rgba(9, 19, 19, 0.08);
  border-color: rgba(9, 19, 19, 0.24);
  color: var(--ink);
}

.hero {
  color: var(--paper);
  min-height: 84svh;
  padding: 124px max(24px, calc((100vw - 1120px) / 2)) 44px;
  position: relative;
}

.hero-media {
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: -2;
}

.hero-media img {
  filter: saturate(0.9) contrast(0.98) brightness(0.98);
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.03);
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.92), rgba(17, 17, 15, 0.66) 46%, rgba(17, 17, 15, 0.18)),
    linear-gradient(180deg, rgba(17, 17, 15, 0.18), rgba(17, 17, 15, 0.9) 94%);
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-content {
  color: var(--paper);
  max-width: 680px;
  padding-top: 5vh;
}

.eyebrow,
.section-kicker {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 20px;
  max-width: 720px;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 3.2rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.45rem);
  font-weight: 730;
  letter-spacing: 0;
  line-height: 1.14;
}

.hero-copy {
  color: rgba(244, 234, 216, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  bottom: 52px;
  display: grid;
  gap: 12px;
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  width: min(360px, calc(100% - 48px));
}

.signal-card {
  background: rgba(244, 234, 216, 0.12);
  border: 1px solid rgba(244, 234, 216, 0.18);
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  grid-template-columns: 42px 1fr;
  padding: 16px;
  transform: translateX(24px);
}

.signal-card.active {
  background: rgba(255, 249, 239, 0.96);
  color: var(--ink);
  transform: translateX(0);
}

.signal-card span {
  color: var(--coral);
  font-weight: 900;
  grid-row: span 2;
}

.signal-card small {
  color: inherit;
  opacity: 0.72;
}

.ticker-band {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-1deg) scaleX(1.02);
}

.ticker {
  animation: ticker 28s linear infinite;
  display: flex;
  gap: 42px;
  white-space: nowrap;
  width: max-content;
}

.ticker span {
  font-size: clamp(0.95rem, 1.45vw, 1.25rem);
  font-weight: 820;
  text-transform: uppercase;
}

section:not(.hero):not(.ticker-band) {
  padding: 84px max(24px, calc((100vw - 1120px) / 2));
}

.before-after {
  background: linear-gradient(180deg, var(--paper) 0%, #eadbc5 100%);
}

.compare-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.compare-panel {
  min-height: 340px;
  padding: clamp(24px, 3vw, 38px);
  position: relative;
}

.before-panel {
  background: #f7ecdc;
  border: 1px solid rgba(142, 91, 73, 0.32);
  box-shadow: var(--shadow);
}

.after-panel {
  background:
    linear-gradient(135deg, rgba(168, 123, 64, 0.18), rgba(244, 234, 216, 0.06)),
    var(--ink);
  border: 1px solid rgba(168, 123, 64, 0.34);
  box-shadow: var(--shadow);
  color: var(--paper);
}

.after-panel p {
  color: rgba(244, 234, 216, 0.76);
}

.after-panel .status-map span {
  background: rgba(244, 234, 216, 0.09);
  border-color: rgba(244, 234, 216, 0.18);
  color: var(--paper);
}

.compare-panel p,
.process-copy p,
.contact-copy p,
.trust-card p,
.trust figure {
  color: var(--muted);
  font-size: 0.98rem;
}

.process-copy p,
.contact-copy p {
  color: #62584d;
}

.friction-list,
.planner-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.friction-list li,
.planner-card li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.friction-list li::before,
.planner-card li::before {
  background: var(--coral);
  content: "";
  flex: 0 0 auto;
  height: 10px;
  margin-top: 8px;
  width: 10px;
}

.planner-card li::before {
  background: var(--teal);
}

.status-map {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.status-map span {
  background: rgba(17, 17, 15, 0.05);
  border: 1px solid rgba(17, 17, 15, 0.12);
  font-weight: 900;
  padding: 16px 18px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.72fr 1.28fr;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
}

.service-card {
  background: rgba(255, 249, 239, 0.94);
  color: var(--ink);
  min-height: 240px;
  padding: 20px;
  transition: transform 220ms ease, background 220ms ease;
}

.service-card:hover {
  background: #fffaf1;
  transform: translateY(-8px);
}

.service-card:nth-child(2) {
  margin-top: 28px;
}

.service-card:nth-child(3) {
  margin-top: 56px;
}

.service-card:nth-child(4) {
  margin-top: 28px;
}

.service-index {
  color: var(--teal-deep);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 28px;
}

.service-card p {
  color: #5d544a;
}

.process {
  align-items: start;
  background: var(--surface);
  color: var(--ink);
  display: grid;
  gap: 34px;
  grid-template-columns: 0.85fr 1.15fr;
}

.process .eyebrow {
  color: var(--teal-deep);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  background: #f4ead8;
  border: 1px solid rgba(9, 19, 19, 0.12);
  display: grid;
  gap: 8px;
  grid-template-columns: 52px 1fr;
  padding: 18px;
}

.timeline-step span {
  align-items: center;
  aspect-ratio: 1;
  background: var(--ink);
  color: var(--gold);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  width: 38px;
}

.timeline-step h3,
.timeline-step p {
  margin: 0;
}

.timeline-step p {
  color: #62584d;
  grid-column: 2;
}

.planner {
  background: var(--ink);
  color: var(--paper);
}

.planner-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
}

.planner-controls {
  display: grid;
  gap: 10px;
}

.planner-tab {
  background: rgba(244, 234, 216, 0.08);
  border: 1px solid rgba(244, 234, 216, 0.14);
  color: rgba(244, 234, 216, 0.78);
  cursor: pointer;
  font-weight: 800;
  min-height: 50px;
  padding: 0 16px;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.planner-tab.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink);
}

.planner-card {
  background:
    linear-gradient(135deg, rgba(168, 123, 64, 0.16), transparent 40%),
    #1c1915;
  border: 1px solid rgba(244, 234, 216, 0.15);
  box-shadow: var(--shadow);
  min-height: 360px;
  padding: clamp(24px, 3vw, 38px);
}

.planner-card p {
  color: rgba(244, 234, 216, 0.74);
  font-size: 0.98rem;
}

.metric-strip {
  align-items: center;
  background: rgba(168, 123, 64, 0.13);
  border: 1px solid rgba(168, 123, 64, 0.32);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin: 26px 0;
  padding: 14px 16px;
}

.metric-strip span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof {
  background:
    linear-gradient(90deg, rgba(168, 123, 64, 0.14), rgba(244, 234, 216, 0.06)),
    var(--ink);
  color: var(--paper);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-stat {
  background: rgba(244, 234, 216, 0.08);
  border: 1px solid rgba(244, 234, 216, 0.15);
  padding: 28px;
}

.proof-stat strong {
  color: var(--gold);
  display: block;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.proof-stat span {
  color: rgba(244, 234, 216, 0.72);
  display: block;
  font-size: 0.96rem;
  max-width: 260px;
}

.trust {
  background: var(--paper);
  color: var(--ink);
}

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

.trust-card,
.trust figure {
  background: #fff9ef;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 0;
  padding: 24px;
}

.trust-card span {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.trust-card h3 {
  margin-bottom: 14px;
}

.review-heading {
  align-items: start;
}

.review-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  background: #fff9ef;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  min-height: 360px;
  padding: 26px;
}

.review-head {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 56px 1fr;
}

.review-avatar {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(168, 123, 64, 0.28), rgba(17, 17, 15, 0.08)),
    #f4ead8;
  border: 1px solid rgba(168, 123, 64, 0.34);
  color: var(--ink);
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  width: 56px;
}

.review-head h3 {
  margin: 0 0 4px;
}

.review-card p {
  color: #5d544a;
  font-style: italic;
  line-height: 1.72;
  margin: 0;
}

.trust blockquote {
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 740;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 18px;
}

.trust figcaption {
  color: var(--teal-deep);
  font-weight: 800;
}

.location-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.location-strip span {
  background: rgba(17, 17, 15, 0.05);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  padding: 10px 12px;
}

.contact {
  align-items: start;
  background: #f7efdf;
  color: var(--ink);
  display: grid;
  gap: 34px;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact .eyebrow {
  color: var(--teal-deep);
}

.contact-cta-panel {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 26px 0;
}

.contact-cta-panel .button:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: min(260px, 100%);
}

.contact-phone {
  align-items: center;
  background: rgba(17, 17, 15, 0.05);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  margin: 8px 0 0;
  padding: 10px 14px;
}

.contact-phone a,
.footer-phone a {
  color: inherit;
  font-weight: 820;
}

.privacy-note,
.legal-note,
.form-privacy {
  background: rgba(168, 123, 64, 0.1);
  border: 1px solid rgba(168, 123, 64, 0.24);
  color: #5d544a;
  padding: 14px 16px;
}

.form-privacy {
  font-size: 0.88rem;
  margin: 0;
}

.lead-form {
  background: #fff9ef;
  border: 1px solid rgba(9, 19, 19, 0.12);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  padding: clamp(20px, 3vw, 30px);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form .form-center-field {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(380px, 100%);
}

.lead-form span {
  color: #62584d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: #f4ead8;
  border: 1px solid rgba(9, 19, 19, 0.16);
  color: var(--ink);
  min-height: 44px;
  outline: none;
  padding: 12px 14px;
  width: 100%;
}

.lead-form textarea {
  min-height: 96px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(168, 123, 64, 0.2);
}

.span-two {
  grid-column: span 2;
}

.form-status {
  color: var(--teal-deep);
  font-weight: 800;
  margin: 0;
  min-height: 22px;
}

.form-status.is-error {
  color: #a13f2b;
}

.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line-light);
  color: var(--paper);
  display: block;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
}

.site-footer p {
  color: rgba(244, 234, 216, 0.72);
  margin: 12px 0 0;
}

.footer-cta {
  align-items: center;
  border-bottom: 1px solid rgba(244, 234, 216, 0.12);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 36px 0;
}

.footer-cta h2 {
  color: var(--paper);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  margin: 0;
  max-width: 760px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 1.45fr) minmax(150px, 0.75fr) minmax(140px, 0.7fr) minmax(220px, 0.95fr);
  padding: 42px 0;
}

.footer-brand {
  max-width: 460px;
}

.footer-address {
  color: rgba(244, 234, 216, 0.76);
  font-style: normal;
  line-height: 1.55;
  margin-top: 14px;
  max-width: 360px;
}

.footer-address strong {
  color: var(--paper);
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h3 {
  color: var(--paper);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column > span {
  color: rgba(244, 234, 216, 0.7);
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-phone {
  background: rgba(244, 234, 216, 0.08);
  border: 1px solid rgba(244, 234, 216, 0.16);
  color: rgba(244, 234, 216, 0.9);
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 14px 16px;
  text-align: right;
}

.footer-phone span {
  color: rgba(244, 234, 216, 0.62);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-phone strong {
  color: var(--paper);
  font-size: 1.2rem;
}

.footer-whatsapp {
  background: rgba(168, 123, 64, 0.14);
  border: 1px solid rgba(168, 123, 64, 0.3);
  color: var(--paper) !important;
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  padding: 12px 14px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(244, 234, 216, 0.12);
  color: rgba(244, 234, 216, 0.58);
  display: flex;
  font-size: 0.88rem;
  justify-content: space-between;
  padding: 20px 0 24px;
}

.footer-bottom a {
  color: rgba(244, 234, 216, 0.78);
}

.section-observe {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .nav-links {
    border-top: 1px solid rgba(244, 234, 216, 0.12);
    display: flex;
    flex: 1 0 100%;
    font-size: 0.84rem;
    gap: 20px;
    justify-content: center;
    order: 3;
    padding: 8px 8px 2px;
  }

  .header-main {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-top {
    font-size: 0.72rem;
    flex-wrap: wrap;
    gap: 8px 14px;
    justify-content: center;
  }

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

  .hero {
    min-height: auto;
    padding-bottom: 300px;
    padding-top: 216px;
  }

  .hero-panel {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .compare-grid,
  .section-heading,
  .process,
  .planner-layout,
  .proof,
  .trust-grid,
  .review-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    margin-top: 0;
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .site-header {
    max-width: calc(100% - 20px);
    top: 10px;
  }

  .header-top,
  .header-call,
  .nav-links,
  .nav-cta {
    display: none;
  }

  .header-main {
    gap: 10px;
    padding: 9px;
  }

  .header-whatsapp {
    padding: 9px 10px;
  }

  .brand-mark {
    width: 32px;
  }

  .site-header .brand-logo {
    height: 58px;
  }

  .hero {
    min-height: 92svh;
    padding: 108px 20px 150px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 3.4rem);
    line-height: 0.9;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-content {
    padding-top: 0;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(17, 17, 15, 0.88), rgba(17, 17, 15, 0.58) 52%, rgba(17, 17, 15, 0.94)),
      linear-gradient(90deg, rgba(17, 17, 15, 0.9), rgba(17, 17, 15, 0.25));
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

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

  .hero-panel {
    bottom: 22px;
  }

  .hero-panel .signal-card:not(.active) {
    display: none;
  }

  .signal-card,
  .signal-card.active {
    transform: none;
  }

  .ticker-band {
    padding: 14px 0;
  }

  section:not(.hero):not(.ticker-band) {
    padding: 76px 20px;
  }

  .compare-panel {
    min-height: auto;
  }

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

  .lead-form {
    grid-template-columns: 1fr;
  }

  .span-two {
    grid-column: span 1;
  }

  .lead-form .form-center-field {
    grid-column: span 1;
    justify-self: stretch;
    width: 100%;
  }

  .site-footer {
    padding: 0 20px;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
