:root {
  --ink: #0d1519;
  --ink-soft: #182126;
  --ink-light: #263137;
  --orange: #e87900;
  --orange-bright: #f28a00;
  --orange-dark: #b75a00;
  --paper: #f4f2ed;
  --white: #ffffff;
  --line: #d6d8d8;
  --muted: #667177;
  --light-muted: #aeb6ba;
  --title-font: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body-font: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  --container: 1200px;
  --shadow: 0 10px 28px rgba(13, 21, 25, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.5rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h3 {
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 4px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0 76px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--orange);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--orange-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-bright), #d96900);
  box-shadow: 0 8px 20px rgba(232, 121, 0, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ff9500, var(--orange));
  box-shadow: 0 10px 25px rgba(232, 121, 0, 0.3);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(13, 21, 25, 0.28);
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(13, 21, 25, 0.2);
}

.button-dark:hover {
  background: #263137;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: auto;
  height: 56px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.main-nav a {
  position: relative;
  padding: 28px 0;
  color: #e8ebec;
  font-size: 0.84rem;
  font-weight: 650;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -7px;
  left: 0;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 7px;
  left: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  display: flex;
  min-height: 570px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 10, 12, 0.95) 0%, rgba(8, 14, 17, 0.82) 42%, rgba(8, 14, 17, 0.24) 74%, rgba(8, 14, 17, 0.18) 100%),
    url("assets/hero-welder.webp") center right / cover no-repeat;
}

.hero-content {
  padding-top: 84px;
  padding-bottom: 92px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero .eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: #e6eaec;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.55;
}

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

.quick-features {
  color: var(--white);
  background: linear-gradient(120deg, #1d292e, #10191d);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-item {
  display: flex;
  min-height: 122px;
  align-items: center;
  gap: 20px;
  padding: 24px 34px;
}

.quick-item + .quick-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.line-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-item .line-icon {
  color: var(--white);
}

.quick-item h2 {
  margin: 0 0 2px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.25;
  text-transform: none;
}

.quick-item p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.82rem;
}

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

.section-heading {
  max-width: 690px;
  margin-bottom: 34px;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  content: "";
  background: var(--orange);
}

.section-heading > p:last-child {
  color: var(--muted);
}

.section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered h2::after {
  margin-right: auto;
  margin-left: auto;
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dedfdc;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(13, 21, 25, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-body {
  padding: 22px 20px 24px;
}

.card-number {
  display: block;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card h3 {
  min-height: 2.5em;
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.service-card h3::after {
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 11px;
  content: "";
  background: var(--orange);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.audiences-section {
  overflow: hidden;
  background: var(--white);
}

.audiences-grid {
  display: grid;
  grid-template-columns: minmax(420px, 5fr) minmax(0, 7fr);
  min-height: 640px;
}

.audiences-content {
  width: min(100%, 600px);
  margin-left: auto;
  padding: 68px 56px 68px 24px;
}

.audience-list {
  display: grid;
  gap: 25px;
  margin-top: 32px;
}

.audience-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.audience-item .line-icon {
  width: 45px;
  height: 45px;
  flex-basis: 45px;
  color: var(--ink);
}

.audience-item h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.audience-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.audiences-media {
  margin: 0;
  min-height: 520px;
}

.audiences-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-section {
  color: var(--white);
  background: linear-gradient(125deg, #10191d, #1b282e);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p:last-child {
  color: var(--light-muted);
}

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

.why-item {
  min-height: 220px;
  padding: 12px 34px 8px;
  text-align: center;
}

.why-item + .why-item {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.technical-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--orange-bright);
  border: 1px solid rgba(242, 138, 0, 0.55);
  font-size: 1.8rem;
}

.why-item h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
}

.why-item p {
  margin: 0;
  color: #bcc4c7;
  font-size: 0.86rem;
}

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

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 4.2fr) minmax(420px, 7.8fr);
  align-items: center;
  gap: 60px;
}

.local-content h2 {
  margin-bottom: 18px;
}

.local-content > p:not(.section-kicker) {
  color: #4e5a60;
}

.local-content .local-highlight {
  padding-left: 15px;
  color: var(--orange-dark);
  border-left: 3px solid var(--orange);
  font-weight: 750;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.text-link span {
  color: var(--orange);
  font-size: 1.2rem;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 240px;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  border-radius: 4px;
  background-color: #273238;
  background-image:
    linear-gradient(25deg, transparent 47%, rgba(174, 187, 193, 0.22) 48%, rgba(174, 187, 193, 0.22) 49%, transparent 50%),
    linear-gradient(115deg, transparent 44%, rgba(174, 187, 193, 0.18) 45%, rgba(174, 187, 193, 0.18) 46%, transparent 47%),
    linear-gradient(165deg, transparent 46%, rgba(174, 187, 193, 0.15) 47%, rgba(174, 187, 193, 0.15) 48%, transparent 49%);
  background-size: 130px 100px, 170px 130px, 210px 150px;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.28);
}

.map-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 75px;
  content: "";
  background: linear-gradient(transparent, rgba(13, 21, 25, 0.65));
}

.map-card p {
  position: relative;
  z-index: 2;
  align-self: end;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-marker {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(242, 138, 0, 0.52);
  border-radius: 50%;
  background: rgba(242, 138, 0, 0.13);
  transform: translate(-50%, -65%);
}

.map-marker::before,
.map-marker::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border: 1px solid rgba(242, 138, 0, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-marker::before {
  width: 82px;
  height: 82px;
}

.map-marker::after {
  width: 110px;
  height: 110px;
}

.map-marker span {
  position: absolute;
  z-index: 3;
  top: 7px;
  left: 17px;
  width: 22px;
  height: 29px;
  border-radius: 50% 50% 50% 0;
  background: var(--orange-bright);
  transform: rotate(-45deg);
}

.map-marker span::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--ink);
}

.trust-section {
  color: var(--white);
  background: #111a1e;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(340px, 5fr) minmax(0, 7fr);
}

.trust-media {
  min-height: 650px;
  margin: 0;
}

.trust-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-content {
  max-width: 720px;
  padding: 72px 58px;
  align-self: center;
}

.trust-content h2 {
  max-width: 580px;
  color: var(--white);
}

.trust-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--light-muted);
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-list article {
  display: flex;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-list article > span {
  color: var(--orange);
  font-family: var(--title-font);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.trust-list h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 1rem;
}

.trust-list p {
  margin: 0;
  color: #aeb8bc;
  font-size: 0.88rem;
}

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

.social-grid {
  display: grid;
  grid-template-columns: minmax(300px, 4fr) minmax(0, 8fr);
  align-items: center;
  gap: 46px;
}

.social-callout {
  padding: 36px;
  background: var(--white);
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
}

.social-callout h2 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
}

.social-callout > p:not(.section-kicker) {
  color: var(--muted);
}

.social-callout strong {
  display: block;
  margin: 23px 0;
  overflow-wrap: anywhere;
  color: var(--ink);
}

.instagram-mark {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 23px;
  border: 3px solid var(--orange);
  border-radius: 13px;
}

.instagram-mark::before {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 24px;
  height: 24px;
  content: "";
  border: 3px solid var(--orange);
  border-radius: 50%;
}

.instagram-mark::after {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  margin: 0;
  border-radius: 3px;
  background: var(--ink);
}

.gallery-featured {
  grid-row: span 2;
  min-height: 434px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 16px 12px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(13, 21, 25, 0.88));
  font-size: 0.78rem;
  font-weight: 750;
}

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

.faq-container {
  max-width: 960px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 16px 58px 16px 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  content: "+";
  place-items: center;
  color: var(--orange-dark);
  border: 1px solid #e2c29d;
  transform: translateY(-50%);
}

.faq-list details[open] summary {
  color: var(--orange-dark);
  background: #fbf8f3;
}

.faq-list details[open] summary::after {
  content: "−";
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.faq-answer {
  padding: 0 58px 20px 18px;
  background: #fbf8f3;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  color: var(--white);
  background: linear-gradient(120deg, var(--orange-bright), #d96800);
}

.final-cta-inner {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.final-cta-inner > div:first-child p {
  margin: 0 0 5px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.final-cta-actions {
  display: flex;
  min-width: 280px;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.email-link {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  color: #d7dcde;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 38px;
}

.footer-brand p,
.footer-column p {
  max-width: 290px;
  margin: 16px 0 0;
  color: #919ca1;
  font-size: 0.84rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.footer-column a {
  color: #c8ced1;
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

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

.footer-bottom {
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #8f999e;
  font-size: 0.78rem;
}

@media (max-width: 1024px) {
  .header-inner {
    gap: 16px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .header-cta {
    padding-inline: 16px;
  }

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

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

  .audiences-grid {
    grid-template-columns: minmax(350px, 1fr) 1.15fr;
  }

  .why-item {
    padding-inline: 22px;
  }

  .local-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
  }

  .social-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 46px 0;
  }

  h1 {
    max-width: 550px;
    font-size: clamp(2.45rem, 11vw, 3.55rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img,
  .footer-brand img {
    height: 46px;
    max-width: 148px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    order: 2;
    min-height: 44px;
    margin-left: auto;
    padding: 10px 13px;
    font-size: 0.75rem;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .main-nav a {
    min-height: 48px;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    background:
      linear-gradient(90deg, rgba(5, 10, 12, 0.97) 0%, rgba(5, 10, 12, 0.9) 54%, rgba(5, 10, 12, 0.58) 100%),
      url("assets/hero-welder.webp") 66% center / cover no-repeat;
  }

  .hero-content {
    padding-top: 68px;
    padding-bottom: 60px;
  }

  .hero-text {
    max-width: 500px;
    font-size: 1rem;
  }

  .hero-actions {
    max-width: 440px;
    flex-direction: column;
  }

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

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

  .quick-item {
    min-height: 0;
    padding: 22px 4px;
  }

  .quick-item + .quick-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: minmax(125px, 39%) 1fr;
  }

  .service-card > img {
    height: 100%;
    min-height: 190px;
    aspect-ratio: auto;
  }

  .service-card-body {
    align-self: center;
  }

  .audiences-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .audiences-content {
    width: 100%;
    max-width: none;
    padding: 48px 20px;
  }

  .audiences-media {
    min-height: 360px;
  }

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

  .why-item {
    display: grid;
    min-height: 0;
    grid-template-columns: 58px 1fr;
    gap: 3px 20px;
    padding: 22px 0;
    text-align: left;
  }

  .why-item + .why-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .technical-icon {
    grid-row: span 2;
    margin: 0;
  }

  .why-item h3 {
    margin: 4px 0 5px;
  }

  .local-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-card {
    min-height: 230px;
  }

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

  .trust-media {
    min-height: 390px;
    max-height: 500px;
  }

  .trust-media img {
    object-position: center 45%;
  }

  .trust-content {
    max-width: none;
    padding: 44px 20px;
  }

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

  .social-callout {
    padding: 30px 25px;
    text-align: center;
  }

  .instagram-mark {
    margin-inline: auto;
  }

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

  .gallery-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 330px;
  }

  .gallery-item:not(.gallery-featured) {
    min-height: 190px;
  }

  .final-cta-inner {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding-top: 38px;
    padding-bottom: 38px;
    text-align: center;
  }

  .final-cta-actions {
    min-width: 0;
  }

  .final-cta-actions .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .header-cta {
    display: none;
  }

  .service-card {
    display: block;
  }

  .service-card > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .audience-item {
    gap: 15px;
  }

  .audiences-media {
    min-height: 290px;
  }

  .trust-media {
    min-height: 330px;
  }

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

  .gallery-featured {
    grid-column: auto;
    min-height: 280px;
  }

  .gallery-item:not(.gallery-featured) {
    min-height: 250px;
  }

  .faq-list summary {
    padding-right: 54px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Site Fácil IA V5.7.7 — WhatsApp e ícones fiéis */
.sf-whatsapp-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:44px!important;
  padding:11px 18px!important;
  border-radius:8px!important;
  background:#25D366!important;
  color:#fff!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  line-height:1.1!important;
  box-shadow:none!important;
}
.sf-whatsapp-button:hover{filter:brightness(.96)}
.sf-whatsapp-floating{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  min-height:46px!important;
  padding:0!important;
  border-radius:999px!important;
}
.sf-faithful-icon,.sf-wa-icon{
  display:inline-grid!important;
  place-items:center!important;
  flex:0 0 auto!important;
  width:20px!important;
  height:20px!important;
}
.sf-whatsapp-floating .sf-wa-icon{width:22px!important;height:22px!important}
.sf-faithful-icon svg,.sf-wa-icon svg,.sf-faithful-icon-host svg{
  width:100%!important;
  height:100%!important;
  display:block!important;
}
.sf-faithful-icon-host{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  border-radius:999px!important;
  background:#0057c8!important;
  color:#fff!important;
}
.sf-faithful-icon-host svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.9!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.sf-wa-icon svg{color:#fff!important}
@media(max-width:768px){
  .sf-whatsapp-button{min-height:42px!important;padding:10px 14px!important;font-size:13px!important}
  .sf-whatsapp-floating{width:44px!important;height:44px!important;padding:0!important}
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}



/* Site Fácil IA V5.7.8 — transições suaves entre seções */
html{scroll-behavior:smooth}
.sf-motion-ready main>section,
.sf-motion-ready body>section,
.sf-motion-ready .sf-animate-section{
    opacity:0;
    transform:translate3d(0,28px,0);
    transition:opacity .72s cubic-bezier(.22,.61,.36,1),transform .72s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
}
.sf-motion-ready main>section.sf-in-view,
.sf-motion-ready body>section.sf-in-view,
.sf-motion-ready .sf-animate-section.sf-in-view{
    opacity:1;
    transform:translate3d(0,0,0);
}
img{max-width:100%;height:auto}
@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .sf-motion-ready main>section,
    .sf-motion-ready body>section,
    .sf-motion-ready .sf-animate-section{
        opacity:1!important;
        transform:none!important;
        transition:none!important;
    }
}