:root {
  --ink: #101317;
  --ink-soft: #222833;
  --paper: #f7f4ef;
  --muted: #6d737c;
  --line: #d9d2c8;
  --red: #c7372f;
  --red-dark: #99231d;
  --amber: #d7973d;
  --steel: #7f8d9b;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 19, 23, 0.18);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(16, 19, 23, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 19, 23, 0.96) 0%, rgba(16, 19, 23, 0.78) 39%, rgba(16, 19, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(16, 19, 23, 0.65) 0%, rgba(16, 19, 23, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(199, 55, 47, 0.28);
}

.button.primary:hover,
.button.primary:focus {
  background: var(--red-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.whatsapp {
  background: #1f8f4d;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(31, 143, 77, 0.22);
}

.button.whatsapp:hover,
.button.whatsapp:focus {
  background: #176f3b;
}

.contact .button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 3.5rem 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-strip div {
  padding: 1rem;
  background: rgba(16, 19, 23, 0.55);
}

.trust-strip dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.trust-strip dd {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.section {
  padding: 88px 0;
}

.band {
  padding: 52px 0;
  background: var(--ink);
  color: var(--white);
}

.intro-grid,
.split-grid,
.contact-grid,
.process-grid,
.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro h2,
.section-heading h2,
.split h2,
.contact h2,
.service-area h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p:last-child,
.section-heading p,
.split p,
.contact p,
.service-area p {
  color: var(--muted);
  font-size: 1.05rem;
}

.band .intro p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  min-height: 270px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 19, 23, 0.06);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.card h3,
.benefits h3,
.steps h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.card p,
.benefits p,
.steps p,
.faq p {
  margin: 0;
  color: var(--muted);
}


.urgency-section {
  background: var(--ink);
  color: var(--white);
}

.urgency-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.urgency-grid h2 {
  color: var(--white);
}

.urgency-copy {
  display: grid;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.84);
}

.urgency-copy p {
  margin: 0;
}

.urgency-copy .button {
  width: fit-content;
  margin-top: 0.35rem;
}

.process {
  background: #e9e4dc;
}

.service-area {
  background: #fffaf2;
}

.service-area .button {
  margin-top: 1.25rem;
}

.area-panel {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.area-label {
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.province-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.province-list li {
  min-height: 42px;
  display: grid;
  align-items: center;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  font-weight: 800;
  color: var(--ink-soft);
}

.province-list a {
  text-decoration: none;
}

.area-note {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.seo-hub {
  background: #f7f4ef;
}

.link-grid,
.city-link-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.link-grid a,
.city-link-cloud a,
.article-sidebar a {
  display: grid;
  min-height: 46px;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
}

.link-grid a:hover,
.link-grid a:focus,
.city-link-cloud a:hover,
.city-link-cloud a:focus,
.article-sidebar a:hover,
.article-sidebar a:focus {
  border-color: var(--red);
  color: var(--red-dark);
}


.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 92px auto -56px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  text-decoration: underline;
}

.page-hero {
  padding: 132px 0 76px;
  background: linear-gradient(135deg, #101317 0%, #261414 100%);
  color: var(--white);
}

.page-hero-grid,
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 19, 23, 0.72);
  box-shadow: var(--shadow);
}

.page-hero-card img {
  width: min(240px, 70%);
  aspect-ratio: 1;
  height: auto;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: contain;
}

.page-hero-card img.page-cover-image {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.page-hero-card ul,
.article-steps {
  margin: 0;
  padding-left: 1.2rem;
}

.page-hero-card li {
  margin: 0.3rem 0;
  color: rgba(255, 255, 255, 0.82);
}

.article-section {
  background: var(--paper);
}

.article-body {
  max-width: 780px;
}

.article-body h2 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.local-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.local-highlights div {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.local-highlights strong {
  color: var(--red-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.local-highlights span {
  color: var(--ink-soft);
}

.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: 0 10px 28px rgba(16, 19, 23, 0.06);
}

.article-sidebar h2 {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  text-transform: uppercase;
}

.city-link-cloud {
  grid-template-columns: 1fr;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #1f8f4d;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(16, 19, 23, 0.28);
  font-weight: 900;
  text-decoration: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  background: #176f3b;
}

.sticky-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.benefits {
  display: grid;
  gap: 1.25rem;
  border-left: 4px solid var(--red);
  padding-left: 1.5rem;
}

.faq {
  background: var(--ink);
  color: var(--white);
}

.faq .section-heading p {
  color: var(--amber);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

summary {
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  background: #f1eee8;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: #fbfaf7;
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

input:focus,
textarea:focus,
.button:focus,
.nav-toggle:focus {
  outline: 3px solid rgba(215, 151, 61, 0.45);
  outline-offset: 2px;
}

.form-button {
  width: 100%;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 800;
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: #176f3b;
}

.form-status[data-state="error"] {
  color: var(--red-dark);
}

.site-footer {
  padding: 30px 0;
  background: #0b0d10;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.45rem;
}

.privacy-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  max-width: 760px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner p {
  margin: 0;
  color: var(--ink-soft);
}

.privacy-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.85rem;
}

.privacy-banner a {
  color: var(--red-dark);
  font-weight: 800;
}

.legal-page {
  padding: 132px 0 76px;
}

.legal-page .article-body {
  max-width: 860px;
}

.legal-page ul {
  color: var(--ink-soft);
}


.problem-entry {
  background: #fbfaf7;
}

.problem-case-grid,
.problem-overview,
.practical-blocks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.problem-case-card,
.problem-overview-card,
.practical-blocks section,
.inline-cta {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 19, 23, 0.06);
}

.problem-case-card h3,
.problem-overview-card h2,
.practical-blocks h2 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  line-height: 1.18;
}

.problem-case-card p,
.problem-overview-card p,
.problem-overview-card dd,
.practical-blocks p,
.inline-cta p {
  color: var(--muted);
}

.problem-case-card a,
.problem-overview-card a {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: none;
}

.problem-case-card a:hover,
.problem-case-card a:focus,
.problem-overview-card a:hover,
.problem-overview-card a:focus {
  text-decoration: underline;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.inline-cta p {
  margin: 0;
}

.problem-overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.problem-overview-card dl {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
}

.problem-overview-card dt {
  color: var(--red-dark);
  font-weight: 900;
}

.problem-overview-card dd {
  margin: 0.2rem 0 0;
}

.practical-blocks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0;
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    background: rgba(16, 19, 23, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
  }

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

  .nav-links a {
    padding: 0.8rem;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(16, 19, 23, 0.96) 0%, rgba(16, 19, 23, 0.78) 62%, rgba(16, 19, 23, 0.18) 100%),
      linear-gradient(90deg, rgba(16, 19, 23, 0.65) 0%, rgba(16, 19, 23, 0.12) 100%);
  }

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

  .hero-content {
    align-self: end;
  }

  .intro-grid,
  .split-grid,
  .contact-grid,
  .process-grid,
  .service-area-grid,
  .page-hero-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .link-grid,
  .local-highlights,
  .problem-case-grid,
  .problem-overview,
  .practical-blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sticky-heading {
    position: static;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand span:last-child {
    max-width: 160px;
  }

  .hero {
    min-height: 800px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .inline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-strip,
  .cards,
  .province-list,
  .link-grid,
  .local-highlights,
  .problem-case-grid,
  .problem-overview,
  .practical-blocks {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 112px;
  }

  .section {
    padding: 64px 0;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

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

  .privacy-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 760px) {
  .urgency-grid {
    grid-template-columns: 1fr;
  }

  .urgency-copy .button {
    width: 100%;
  }
}


.nav-phone {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(199, 55, 47, 0.82);
}

.nav-phone:hover,
.nav-phone:focus {
  background: var(--red);
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 760px;
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-left: 6px solid var(--amber);
  border-radius: var(--radius);
  background: rgba(16, 19, 23, 0.82);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(16, 19, 23, 0.22);
}

.hero-note::before {
  content: "!";
  display: inline-grid;
  flex: 0 0 1.55rem;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.lead-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  max-width: 720px;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.lead-trust li::before {
  content: "✓";
  margin-right: 0.4rem;
  color: var(--amber);
  font-weight: 800;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.84);
}

.footer-contact a {
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-phone {
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .nav-phone {
    min-height: 40px;
    padding: 0.5rem 0.6rem;
    font-size: 0.88rem;
  }

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


.contact-exclusion,
.form-note {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(199, 55, 47, 0.34);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: #fff7f2;
  color: var(--ink);
  font-weight: 800;
}

.form-note {
  margin-top: 0;
  font-size: 0.95rem;
}

.footer-exclusion {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hero-note strong,
.contact-exclusion strong {
  font-weight: 900;
}
