:root {
  --yellow: #f2a900;
  --yellow-soft: #ffd45a;
  --yellow-dark: #b77a00;
  --graphite: #25292b;
  --graphite-2: #171a1c;
  --graphite-3: #30363a;
  --ink: #111315;
  --muted: #697174;
  --line: #dfe3e5;
  --paper: #f4f5f2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 19, 21, 0.18);
}

* {
  box-sizing: border-box;
}

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

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

body::selection {
  color: var(--graphite-2);
  background: var(--yellow);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(23, 26, 28, 0.94);
  border-bottom: 3px solid var(--yellow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  width: fit-content;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.main-nav {
  display: flex;
  gap: clamp(14px, 1.7vw, 24px);
  align-items: center;
  font-size: 0.93rem;
  font-weight: 800;
}

.main-nav a,
.header-action {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--yellow);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-action {
  min-width: 82px;
  padding: 10px 16px;
  color: var(--graphite-2);
  font-weight: 900;
  text-align: center;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 4px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(58px, 8vw, 108px) clamp(18px, 6vw, 88px) clamp(42px, 6vw, 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--graphite-2);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 78% 20%, rgba(242, 169, 0, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(23, 26, 28, 0.94) 0%, rgba(23, 26, 28, 0.78) 46%, rgba(23, 26, 28, 0.38) 100%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(242, 169, 0, 0.13) 22px 23px);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(45vw, 620px);
  height: 24px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: heroFade 18s infinite;
}

.slide-one {
  background-image: url("assets/schneider-quadro.jpg");
}

.slide-two {
  background-image: url("assets/hager-equipamento.jpg");
  animation-delay: 6s;
}

.slide-three {
  background-image: url("assets/efapel-smart.jpg");
  animation-delay: 12s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }

  8%,
  33% {
    opacity: 1;
  }

  42%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.1rem, 7.5vw, 7.2rem);
  line-height: 0.95;
}

h1::after {
  display: block;
  width: min(160px, 42vw);
  height: 8px;
  margin-top: 26px;
  content: "";
  background: var(--yellow);
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--graphite-2);
  background: var(--yellow);
  border-color: var(--yellow);
}

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

.button-dark {
  color: var(--white);
  background: var(--graphite-2);
  border-color: var(--graphite-2);
}

.icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.icon.phone {
  transform: rotate(-25deg);
}

.icon.phone::before {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 12px;
  height: 12px;
  content: "";
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-radius: 0 0 12px;
}

.icon.phone::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 7px;
  height: 4px;
  content: "";
  background: currentColor;
  border-radius: 4px;
}

.icon.mail {
  border: 2px solid currentColor;
}

.icon.mail::before {
  position: absolute;
  inset: 2px 2px auto;
  height: 10px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  padding: 0;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--yellow);
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 800;
}

.portfolio-card span {
  display: block;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--graphite-2);
  border-top: 5px solid var(--yellow);
}

.trust-bar span {
  min-height: 76px;
  padding: 24px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.section,
.certifications-section,
.portfolio-section,
.split-section,
.process-section,
.faq-section,
.social-section,
.contact-band {
  padding: clamp(78px, 10vw, 142px) clamp(18px, 6vw, 88px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-heading.wide {
  max-width: 960px;
}

h2 {
  margin: 0;
  color: var(--graphite-2);
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow),
.intro-copy p,
.split-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--white);
}

.intro-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.intro-copy p {
  margin: 0;
}

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

.certifications-section {
  color: var(--white);
  background: var(--graphite-2);
}

.certifications-section h2,
.certifications-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.certifications-section .section-heading p:not(.eyebrow) {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.74);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.certification-card {
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: clamp(26px, 3vw, 38px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 7px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.certification-card.featured {
  background: #fffaf0;
}

.certification-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.3);
}

.certification-topline {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
}

.cert-logo {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 13px;
  font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  border-left: 6px solid currentColor;
}

.cert-logo.dgeg {
  color: #b1262c;
  background: #f7eded;
}

.cert-logo.anacom {
  color: #006b87;
  background: #e9f5f7;
}

.cert-logo.impic {
  color: #234c77;
  background: #edf2f8;
}

.cert-number {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.cert-type {
  margin: 30px 0 7px;
  color: var(--yellow-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certification-card h3 {
  margin: 0 0 14px;
  color: var(--graphite-2);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.certification-card > p:not(.cert-type),
.certification-card li {
  color: var(--muted);
}

.certification-card > p:not(.cert-type) {
  margin: 0;
}

.certification-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.certification-card li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.certification-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(14% 54%, 36% 76%, 86% 21%, 100% 35%, 37% 100%, 0 64%);
}

.certification-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--graphite-2);
  font-weight: 900;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.certification-note {
  max-width: 860px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.service-card {
  min-height: 292px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 6px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(29, 32, 34, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--graphite-2), var(--graphite-3));
  border-color: var(--graphite-3);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(29, 32, 34, 0.14);
}

.service-card h3,
.process-list h3,
.portfolio-card h3 {
  margin: 22px 0 10px;
  color: var(--graphite-2);
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.service-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--graphite-2);
  background: var(--yellow);
  border-radius: 50%;
}

.service-icon.bolt::before {
  width: 14px;
  height: 28px;
  content: "";
  background: currentColor;
  clip-path: polygon(54% 0, 13% 52%, 46% 52%, 35% 100%, 86% 38%, 55% 38%);
}

.service-icon.signal::before {
  width: 25px;
  height: 25px;
  content: "";
  border: 4px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.service-icon.building::before,
.service-icon.store::before,
.service-icon.industry::before {
  width: 22px;
  height: 27px;
  content: "";
  background:
    linear-gradient(currentColor 0 0) 5px 6px / 4px 4px no-repeat,
    linear-gradient(currentColor 0 0) 13px 6px / 4px 4px no-repeat,
    linear-gradient(currentColor 0 0) 5px 14px / 4px 4px no-repeat,
    linear-gradient(currentColor 0 0) 13px 14px / 4px 4px no-repeat,
    currentColor;
}

.service-icon.store::after {
  position: absolute;
  top: 11px;
  width: 28px;
  height: 7px;
  content: "";
  background: var(--yellow);
  border: 3px solid currentColor;
}

.service-icon.industry::after {
  position: absolute;
  right: 8px;
  top: 12px;
  width: 8px;
  height: 18px;
  content: "";
  background: currentColor;
}

.service-icon.tools::before {
  width: 24px;
  height: 6px;
  content: "";
  background: currentColor;
  border-radius: 8px;
  transform: rotate(-38deg);
}

.service-icon.tools::after {
  position: absolute;
  width: 6px;
  height: 25px;
  content: "";
  background: currentColor;
  border-radius: 8px;
  transform: rotate(-38deg);
}

.portfolio-section {
  color: var(--white);
  background: var(--graphite-2);
}

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

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(3, minmax(260px, 320px));
  gap: clamp(18px, 2vw, 26px);
}

.portfolio-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--graphite);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.portfolio-card.large {
  grid-row: 1 / 4;
  min-height: 0;
}

.portfolio-card.large img {
  object-position: center top;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 450ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.28);
}

.portfolio-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(11, 13, 14, 0.88));
}

.portfolio-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
}

.portfolio-card h3 {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.brand-card img {
  object-position: 48% 46%;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.split-media {
  padding: 12px;
  background: var(--graphite);
  border-top: 14px solid var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.split-media:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 78px rgba(17, 19, 21, 0.22);
}

.split-media img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--graphite);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 15px;
  height: 15px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(14% 54%, 36% 76%, 86% 21%, 100% 35%, 37% 100%, 0 64%);
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
}

.process-list article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(29, 32, 34, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.process-list article:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(29, 32, 34, 0.12);
}

.process-list span {
  color: var(--yellow-dark);
  font-weight: 900;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  background: var(--white);
  border-color: rgba(242, 169, 0, 0.55);
}

.faq-list details:hover {
  transform: translateY(-2px);
}

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

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.social-section {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.social-header {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  justify-content: space-between;
}

.social-header .section-heading {
  margin-bottom: 0;
}

.social-header .section-heading p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
}

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

.social-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-height: 56px;
  height: 56px;
  padding: 0;
  color: var(--white);
  font-size: 1.62rem;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  border-radius: 50%;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.social-actions a:hover {
  color: var(--white);
  transform: translateY(-4px) scale(1.05);
  filter: saturate(1.12);
}

.social-actions .social-instagram {
  background: linear-gradient(135deg, #515bd4 0%, #8134af 32%, #dd2a7b 65%, #f58529 100%);
  box-shadow: 0 10px 24px rgba(193, 53, 132, 0.3);
}

.social-actions .social-instagram:hover {
  box-shadow: 0 15px 30px rgba(193, 53, 132, 0.42);
}

.social-actions .social-whatsapp {
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

.social-actions .social-whatsapp:hover {
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.42);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 26, 28, 0.97), rgba(38, 43, 46, 0.92)),
    url("assets/efapel-smart.jpg") center / cover;
  border-top: 8px solid var(--yellow);
}

.contact-band h2,
.contact-band p {
  color: var(--white);
}

.contact-band p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding: 24px clamp(18px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--graphite-2);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.services-grid .reveal:nth-child(2),
.certifications-grid .reveal:nth-child(2),
.portfolio-grid .reveal:nth-child(2),
.process-list .reveal:nth-child(2),
.faq-list .reveal:nth-child(2) {
  --reveal-delay: 90ms;
}

.services-grid .reveal:nth-child(3),
.certifications-grid .reveal:nth-child(3),
.portfolio-grid .reveal:nth-child(3),
.process-list .reveal:nth-child(3),
.faq-list .reveal:nth-child(3) {
  --reveal-delay: 180ms;
}

.services-grid .reveal:nth-child(4),
.portfolio-grid .reveal:nth-child(4),
.process-list .reveal:nth-child(4) {
  --reveal-delay: 270ms;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .services-grid,
  .process-list,
  .certifications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .portfolio-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 460px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .intro-section,
  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-logo {
    width: 48px;
    height: 42px;
  }

  .header-action {
    min-width: 72px;
    padding: 9px 12px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

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

  .button {
    width: 100%;
  }

  .hero-stats,
  .trust-bar,
  .services-grid,
  .certifications-grid,
  .portfolio-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .social-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-actions {
    width: 100%;
  }

  .social-actions a {
    flex: 0 0 56px;
  }

  .portfolio-card,
  .portfolio-card.large {
    min-height: 360px;
  }

  .service-card {
    min-height: 0;
  }

  .portfolio-card div {
    padding: 22px;
  }
}
