:root {
  --navy: #052844;
  --navy-2: #083b64;
  --navy-3: #0d4c7e;
  --green: #18b979;
  --green-2: #43d88d;
  --green-dark: #07965d;
  --gold: #f6b93b;
  --mint: #e7fbf1;
  --sky: #edf7ff;
  --gray: #f3f7fb;
  --text: #183044;
  --muted: #657789;
  --border: #d8e5ef;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(5, 40, 68, 0.14);
  --shadow-strong: 0 26px 70px rgba(5, 40, 68, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 86px 0;
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 229, 239, 0.9);
  box-shadow: 0 10px 30px rgba(5, 40, 68, 0.06);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 132px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(5, 40, 68, 0.12));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-menu a:not(.btn) {
  position: relative;
  padding: 8px 0;
}

.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu a:not(.btn):hover,
.nav-menu a:not(.btn):focus-visible {
  color: var(--green-dark);
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(7, 150, 93, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(7, 150, 93, 0.34);
  filter: saturate(1.08);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  min-height: 44px;
  padding: 10px 17px;
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(5, 40, 68, 0.14);
  box-shadow: 0 12px 24px rgba(5, 40, 68, 0.08);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--mint);
  box-shadow: 0 16px 34px rgba(5, 40, 68, 0.12);
}

.btn-full {
  width: 100%;
  margin-top: 16px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 247, 255, 0.96) 48%, rgba(231, 251, 241, 0.98) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 40, 68, 0.06), transparent 46%),
    linear-gradient(0deg, rgba(24, 185, 121, 0.1), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  grid-template-areas:
    "copy image"
    "support image";
  align-items: center;
  gap: 54px;
}

.hero-copy {
  grid-area: copy;
  padding: 28px 0;
}

.hero-support {
  grid-area: support;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6.2vw, 5.1rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.hero-copy p {
  max-width: 680px;
  color: #40586e;
  font-size: 1.18rem;
  font-weight: 600;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.benefit-list span {
  padding: 10px 13px;
  border: 1px solid rgba(24, 185, 121, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(5, 40, 68, 0.06);
}

.benefit-list span::before,
.field-note::before,
.notice::before,
.trust-grid div::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  grid-area: image;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f2fbf7 100%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(24, 185, 121, 0.2);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: auto;
  transform: scale(1.03);
  transform-origin: center bottom;
}

.section-head {
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.services,
.quote-section,
.faq {
  background:
    linear-gradient(180deg, #f6fbff 0%, var(--gray) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 20px;
}

.service-card,
.steps-grid article,
.form-panel,
.quote-summary,
.faq details,
.testimonial-card {
  border: 1px solid rgba(216, 229, 239, 0.95);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(5, 40, 68, 0.08);
}

.service-card {
  position: relative;
  padding: 14px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  cursor: default;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green), var(--navy-3));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-touched {
  transform: translateY(-7px);
  border-color: rgba(24, 185, 121, 0.55);
  background: linear-gradient(180deg, #ffffff 0%, #f5fff9 100%);
  box-shadow: var(--shadow);
}

.service-card:hover::after,
.service-card:focus-visible::after,
.service-card.is-touched::after {
  opacity: 1;
}

.service-card:hover .icon-circle,
.service-card:focus-visible .icon-circle,
.service-card.is-touched .icon-circle {
  background: var(--green);
  color: var(--white);
  transform: scale(1.06);
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.service-image-residential {
  background: linear-gradient(135deg, #f5fcf8 0%, #edf7ff 100%);
  object-fit: contain;
  padding: 0;
}

.service-image-post {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.icon-circle,
.whatsapp-icon,
.steps-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p,
.steps-grid p,
.about p,
.quote-summary p,
.faq p,
.testimonial-card p {
  color: var(--muted);
}

.subscription-plans {
  background:
    linear-gradient(135deg, #ffffff 0%, #f5fbff 44%, #eafbf3 100%);
}

.plans-intro {
  max-width: 900px;
  margin: -18px auto 34px;
  color: #40586e;
  font-size: 1.06rem;
  font-weight: 650;
  text-align: center;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-card,
.plan-info-card {
  border: 1px solid rgba(216, 229, 239, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(5, 40, 68, 0.1);
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--navy-3));
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(24, 185, 121, 0.5);
  box-shadow: var(--shadow);
}

.plan-card-featured {
  border-color: rgba(24, 185, 121, 0.52);
  background: linear-gradient(180deg, #ffffff 0%, #f2fff8 100%);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  min-height: 52px;
  margin-bottom: 18px;
}

.plan-price-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.plan-price-list li {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid rgba(216, 229, 239, 0.9);
  border-radius: 8px;
  background: #fbfdff;
}

.plan-price-list span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.plan-price-list strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.plan-card .btn {
  margin-top: auto;
}

.plan-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 20px;
  margin-top: 24px;
}

.plan-info-card {
  padding: 26px;
}

.plan-info-card h3 {
  position: relative;
  padding-bottom: 12px;
}

.plan-info-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.included-list,
.condition-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.included-list li,
.condition-list li {
  color: var(--text);
  font-weight: 700;
}

.included-list li::before,
.condition-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.plan-side-stack {
  display: grid;
  gap: 20px;
}

.paid-extra {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.paid-extra strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.plan-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.plan-seals span {
  padding: 8px 10px;
  border: 1px solid rgba(24, 185, 121, 0.26);
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.whatsapp-band {
  padding: 42px 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 62%, #075a4b 100%);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.whatsapp-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.whatsapp-band h2,
.whatsapp-band p {
  margin: 0;
  color: var(--white);
}

.whatsapp-icon {
  width: 62px;
  height: 62px;
  margin: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

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

.steps-grid article {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.steps-grid span {
  background: var(--navy);
  color: var(--white);
}

.notice,
.field-note {
  padding: 15px 17px;
  border: 1px solid rgba(24, 185, 121, 0.18);
  border-radius: 8px;
  background: var(--mint);
  color: var(--navy);
  font-weight: 800;
}

.notice {
  margin: 24px 0 0;
  text-align: center;
}

.quote-section {
  position: relative;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 26px;
}

.quote-form {
  display: grid;
  gap: 20px;
}

.form-panel,
.quote-summary {
  padding: 26px;
}

.form-panel {
  background: rgba(255, 255, 255, 0.96);
}

.form-panel h3,
.quote-summary h3 {
  position: relative;
  padding-bottom: 12px;
}

.form-panel h3::after,
.quote-summary h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input[readonly] {
  background: #f4f8fb;
  color: var(--navy);
  cursor: default;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(24, 185, 121, 0.14);
}

.dynamic-options {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.option-card,
.checkbox-card {
  position: relative;
  display: block;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdff;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.option-card:hover,
.checkbox-card:hover,
.option-card:focus-within,
.checkbox-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(24, 185, 121, 0.42);
  box-shadow: 0 12px 24px rgba(5, 40, 68, 0.08);
}

.option-card input,
.checkbox-card input {
  position: absolute;
  inset: 16px auto auto 16px;
  width: 18px;
  height: 18px;
  min-height: auto;
  accent-color: var(--green);
}

.option-card .option-content,
.checkbox-card .option-content {
  padding-left: 30px;
}

.option-card strong,
.checkbox-card strong {
  display: block;
  color: var(--navy);
}

.option-card small,
.checkbox-card small {
  display: block;
  color: var(--muted);
}

.option-card:has(input:checked),
.checkbox-card:has(input:checked) {
  border-color: var(--green);
  background: var(--mint);
  box-shadow: 0 14px 30px rgba(24, 185, 121, 0.12);
}

.option-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 500;
}

.addon-grid {
  display: grid;
  gap: 10px;
}

.section-label {
  margin: 8px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.custom-warning {
  margin: 10px 0 0;
  padding: 14px;
  border: 1px solid rgba(246, 185, 59, 0.24);
  border-radius: 8px;
  background: #fff8e8;
  color: #745000;
  font-weight: 800;
}

.quote-summary {
  position: sticky;
  top: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-color: rgba(24, 185, 121, 0.26);
}

.quote-summary dl {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
}

.quote-summary dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-summary dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.total-card {
  margin: 20px 0 14px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 60%, var(--green-dark) 100%);
  color: var(--white);
  font-size: 1.04rem;
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(5, 40, 68, 0.2);
}

.total-card strong {
  display: block;
  margin-top: 4px;
  font-size: 2.25rem;
  line-height: 1;
}

.form-error {
  min-height: 22px;
  margin: 12px 0 0;
  color: #b42318;
  font-weight: 900;
}

.cep-status {
  min-height: 22px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--muted);
  font-weight: 850;
}

.cep-status.is-info,
.cep-status.is-success,
.cep-status.is-error {
  padding: 12px 14px;
  border-radius: 8px;
}

.cep-status.is-info {
  border: 1px solid rgba(5, 40, 68, 0.12);
  background: #f4f8fb;
  color: var(--navy);
}

.cep-status.is-success {
  border: 1px solid rgba(24, 185, 121, 0.22);
  background: var(--mint);
  color: var(--navy);
}

.cep-status.is-error {
  border: 1px solid rgba(180, 35, 24, 0.2);
  background: #fff1f0;
  color: #b42318;
}

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  filter: grayscale(0.25);
  opacity: 0.62;
  transform: none;
}

.aracruz-notice {
  margin: 12px 0;
  padding: 13px 14px;
  border: 1px solid rgba(24, 185, 121, 0.22);
  border-radius: 8px;
  background: var(--mint);
  color: var(--navy);
  font-weight: 800;
}

.about {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

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

.trust-grid div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(5, 40, 68, 0.08);
}

.testimonials {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 54%, #075c50 100%);
  color: var(--white);
}

.testimonials .eyebrow,
.testimonials h2,
.testimonials .section-head p {
  color: var(--white);
}

.testimonials .eyebrow::before {
  background: var(--green-2);
}

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

.testimonial-card {
  padding: 26px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover,
.testimonial-card:focus-visible,
.testimonial-card.is-touched {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.18);
}

.testimonial-photo {
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  border: 4px solid var(--mint);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 26px rgba(5, 40, 68, 0.18);
}

.stars {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.testimonial-card p {
  margin-bottom: 18px;
  font-weight: 600;
}

.testimonial-card h3 {
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--green-dark);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin: 12px 0 0;
}

.footer {
  padding: 54px 0;
  background:
    linear-gradient(135deg, #031d32 0%, var(--navy) 64%, #06463d 100%);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer h3 {
  color: var(--white);
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-logo-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.footer-logo {
  width: 158px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-menu a:not(.btn)::after {
    display: none;
  }

  .nav-menu .btn {
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .quote-layout,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "image"
      "support";
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p,
  .hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .eyebrow,
  .benefit-list,
  .hero-actions {
    justify-content: center;
  }

  .hero-support {
    text-align: center;
  }

  .hero-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .quote-summary {
    position: static;
  }

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

  .plan-grid,
  .plan-details-grid {
    grid-template-columns: 1fr;
  }

  .plan-card h3 {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .section-pad {
    padding: 58px 0;
  }

  .brand img {
    width: 112px;
  }

  .nav {
    min-height: 70px;
  }

  .nav-menu {
    top: 70px;
  }

  .hero.section-pad {
    padding: 18px 0 42px;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  .hero-copy .eyebrow::before {
    width: 20px;
  }

  .hero-copy h1 {
    margin-bottom: 10px;
    font-size: clamp(2.05rem, 9vw, 2.65rem);
  }

  .hero-copy p {
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    width: min(78vw, 300px);
    margin-top: 2px;
  }

  .hero-media img {
    transform: none;
  }

  .hero-media::before {
    inset: 9px;
  }

  .benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 14px 0;
    gap: 8px;
  }

  .benefit-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .service-grid,
  .included-list,
  .steps-grid,
  .form-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .plans-intro {
    margin-top: -12px;
    font-size: 0.98rem;
  }

  .plan-card,
  .plan-info-card {
    padding: 20px;
  }

  .plan-card .btn {
    width: 100%;
  }

  .whatsapp-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whatsapp-icon {
    margin: 0 auto;
  }

  .whatsapp-grid .btn {
    width: 100%;
  }

  .form-panel,
  .quote-summary,
  .service-card,
  .steps-grid article,
  .testimonial-card {
    padding: 20px;
  }

  .service-card {
    padding: 14px;
  }

  .total-card strong {
    font-size: 1.85rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 20px);
  }

  .btn {
    min-height: 52px;
    padding: 13px 16px;
  }

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

  .benefit-list span {
    width: 100%;
  }

  .hero-media {
    width: min(80vw, 278px);
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.35rem);
  }

  .hero-copy p {
    font-size: 0.9rem;
  }

  .service-image {
    aspect-ratio: 16 / 11;
  }

  .service-image-residential {
    aspect-ratio: 4 / 3;
  }

  .service-image-post {
    aspect-ratio: 4 / 3;
  }
}
