:root {
  --yellow: #f4b728;
  --yellow-strong: #dd9f09;
  --yellow-soft: #fff3cf;
  --blue: #2f6491;
  --blue-deep: #17324a;
  --blue-ink: #274a68;
  --ink: #0f1215;
  --ink-2: #1a1f24;
  --charcoal: #23272c;
  --graphite: #4a5159;
  --white: #ffffff;
  --smoke: #f5f5f2;
  --smoke-2: #ecefea;
  --line: rgba(15, 18, 21, 0.1);
  --line-light: rgba(255, 255, 255, 0.16);
  --container: 1240px;
  --title-font: "Barlow Condensed", sans-serif;
  --body-font: "Manrope", sans-serif;
  --shadow-lg: 0 30px 65px rgba(10, 14, 18, 0.16);
  --shadow-md: 0 18px 38px rgba(10, 14, 18, 0.1);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--body-font);
  background: var(--white);
}

a {
  color: inherit;
}

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

img,
video {
  max-width: 100%;
}

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

.section {
  padding: 110px 0;
}

.top-strip {
  background: linear-gradient(180deg, #f5c545 0%, var(--yellow) 100%);
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
}

.top-phone {
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-socials a,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.top-socials a {
  border: 1.5px solid rgba(255, 255, 255, 0.58);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 12, 14, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  background: rgba(10, 12, 14, 0.98);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark-image {
  display: block;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 2.48rem;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.brand-accent {
  color: var(--yellow);
}

.brand-tag {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--white);
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu > li {
  position: relative;
}

.menu > li > a,
.menu > li > button {
  border: 0;
  background: transparent;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--title-font);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.menu > li > a:hover,
.menu > li > button:hover {
  color: var(--yellow);
}

.menu > li > button::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.8em;
}

.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: rgba(17, 20, 23, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.dropdown li a:hover {
  color: var(--yellow);
}

.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 14px;
  padding: 0 24px;
  font-family: var(--title-font);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  min-height: 48px;
  padding: 0 18px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(244, 183, 40, 0.22);
}

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

.hero {
  position: relative;
  min-height: min(88vh, 860px);
  overflow: hidden;
  background: #1a1d20;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.35) brightness(0.58) contrast(1.04);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.92) 0%, rgba(7, 9, 11, 0.82) 35%, rgba(7, 9, 11, 0.28) 68%, rgba(7, 9, 11, 0.45) 100%),
    linear-gradient(180deg, rgba(18, 31, 31, 0.1), rgba(18, 31, 31, 0.5));
}

.hero__shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: min(88vh, 860px);
  padding: 96px 0 42px;
}

.hero__content {
  max-width: 720px;
}

.hero-kicker,
.section-eyebrow {
  margin: 0 0 18px;
  font-family: var(--title-font);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--yellow);
}

.hero-kicker::after {
  content: "";
  width: 88px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.services-overview h2,
.projects h2,
.trust h2,
.quote-flow h2,
.types h2 {
  margin: 0;
  font-family: var(--title-font);
  font-weight: 800;
  line-height: 0.92;
}

.hero h1 {
  max-width: 8.6ch;
  font-size: clamp(4.8rem, 10vw, 8rem);
}

.hero-title {
  display: block;
}

.hero-title--light {
  color: var(--white);
}

.hero-title--accent {
  color: var(--yellow);
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.button {
  min-width: 180px;
  border: 0;
  cursor: pointer;
}

.button--primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(244, 183, 40, 0.2);
}

.button--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  color: var(--white);
}

.button--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-benefit__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 183, 40, 0.36);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 800;
}

.hero-benefit strong {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-eyebrow {
  color: var(--yellow-strong);
}

.section-eyebrow--gold {
  color: var(--yellow);
}

.section-eyebrow--dark {
  color: rgba(15, 18, 21, 0.58);
}

.section-head {
  margin-bottom: 34px;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 1.22rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link::after,
.service-card a::after,
.project-card a::after,
.type-card__body a::after {
  content: " →";
}

.services-overview {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f5 100%);
}

.services-overview__grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.services-overview__intro {
  padding-right: 12px;
}

.services-overview h2,
.projects h2,
.trust h2,
.quote-flow h2,
.types h2 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.7rem);
}

.services-overview__intro p,
.project-card__body p,
.type-card__body p,
.quote-flow__intro p {
  max-width: 62ch;
  color: var(--graphite);
  line-height: 1.85;
}

.service-card,
.project-card,
.type-card,
.trust__panel--light {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 28px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 16px;
  border: 2px solid rgba(15, 18, 21, 0.08);
}

.service-card__icon::before,
.service-card__icon::after {
  content: "";
  position: absolute;
}

.service-card__icon--drop::before {
  left: 18px;
  top: 8px;
  width: 18px;
  height: 30px;
  background: linear-gradient(180deg, #ffe08a 0%, var(--yellow) 100%);
  clip-path: polygon(50% 0%, 100% 56%, 76% 100%, 24% 100%, 0% 56%);
}

.service-card__icon--spray::before {
  left: 16px;
  top: 14px;
  width: 7px;
  height: 28px;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(28deg);
}

.service-card__icon--spray::after {
  right: 11px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid var(--yellow);
  transform: rotate(-18deg);
}

.service-card__icon--shield::before {
  inset: 10px 14px 12px;
  border: 3px solid var(--ink);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service-card__icon--shield::after {
  left: 23px;
  top: 18px;
  width: 8px;
  height: 18px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 100% 48%, 70% 100%, 30% 100%, 0% 48%);
}

.service-card h3,
.project-card h3,
.type-card__body h3,
.footer-column h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 0.98;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--graphite);
  line-height: 1.8;
}

.service-card a,
.project-card a,
.type-card__body a {
  margin-top: auto;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 1.16rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.stats-strip {
  background: #0e1013;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 34px 0;
}

.stat-item {
  display: grid;
  gap: 8px;
  align-content: center;
}

.stat-item strong {
  color: var(--yellow);
  font-family: var(--title-font);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--title-font);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.projects {
  background: var(--white);
}

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

.project-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card__media {
  position: relative;
}

.project-card__media img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-tag {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 7px 12px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px 26px;
}

.project-card__body p {
  margin: 0;
}

.trust {
  background:
    linear-gradient(90deg, #0e1013 0%, #0e1013 52%, #f5f5f2 52%, #f5f5f2 100%);
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.trust__panel {
  padding: 54px 48px;
}

.trust__panel--dark {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 44%),
    #0e1013;
}

.trust__panel--light {
  background: var(--white);
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.85;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--yellow);
  font-family: var(--title-font);
  font-size: 1.45rem;
  font-weight: 800;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.cert-badge {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--smoke);
  color: var(--blue-ink);
  font-family: var(--title-font);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.trust__media {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.trust__media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111418;
}

.quote-flow {
  background:
    linear-gradient(90deg, var(--yellow) 0%, var(--yellow) 32%, #0d0f12 32%, #0d0f12 100%);
}

.quote-flow__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.quote-flow__intro {
  padding: 56px 44px;
  background: linear-gradient(180deg, #f8c53f 0%, var(--yellow) 100%);
}

.quote-flow__intro h2 {
  max-width: 9ch;
}

.quote-flow__intro p {
  margin-top: 16px;
}

.quote-points {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.quote-points li {
  position: relative;
  padding-left: 34px;
  color: rgba(15, 18, 21, 0.88);
  line-height: 1.8;
  font-weight: 600;
}

.quote-points li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--ink);
  font-size: 1.4rem;
}

.quote-flow__form {
  padding: 42px 42px 38px;
  background: #0d0f12;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.step {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 12px;
  padding-bottom: 16px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.step span {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 800;
}

.step strong {
  font-family: var(--title-font);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.step.is-active {
  color: var(--yellow);
}

.step.is-active span {
  background: var(--yellow);
  color: var(--ink);
}

.step.is-active::after {
  height: 2px;
  background: var(--yellow);
}

.multi-step-form {
  min-height: 420px;
}

.form-panel {
  display: none;
}

.form-panel.is-active {
  display: block;
}

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

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid label,
.measure-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid label span,
.measure-grid label span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid textarea,
.form-grid select,
.measure-grid input,
.measure-grid select {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 16px 18px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus,
.measure-grid input:focus,
.measure-grid select:focus {
  border-color: rgba(244, 183, 40, 0.92);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder,
.measure-grid input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.upload-area {
  margin-bottom: 20px;
}

.upload-area input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-area__label {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 220px;
  padding: 32px 24px;
  border: 1.5px dashed rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  cursor: pointer;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 2.2rem;
  font-weight: 800;
}

.upload-area__label strong {
  font-family: var(--title-font);
  font-size: 1.9rem;
  text-transform: uppercase;
}

.upload-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
}

.upload-list li {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
}

.button.is-hidden {
  display: none;
}

.types {
  background: linear-gradient(180deg, #f5f5f2 0%, #edf0eb 100%);
}

.types-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 320ms ease;
}

.type-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
}

.type-card__media {
  min-height: 100%;
  background: #101317;
}

.type-card__media img,
.type-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.type-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.carousel-nav {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(244, 183, 40, 0.2);
}

.carousel-status {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer {
  background: #0c0d0f;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 0.9fr;
  gap: 34px;
  padding: 60px 0 48px;
}

.brand-mark-image--footer {
  width: 72px;
  height: 72px;
}

.footer-brand p,
.footer-column ul,
.footer-column li,
.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  text-decoration: none;
}

.footer-column h3 {
  color: var(--white);
  font-size: 2.2rem;
}

.certifications {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.certifications span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--yellow);
  font-family: var(--title-font);
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  width: 60px;
  height: 60px;
  background: #24d366;
  box-shadow: 0 18px 30px rgba(36, 211, 102, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 540ms ease, transform 540ms ease;
}

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

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

  .services-overview__intro {
    grid-column: 1 / -1;
    max-width: 700px;
  }

  .trust {
    background: #f5f5f2;
  }

  .trust__grid,
  .quote-flow__grid {
    grid-template-columns: 1fr;
  }

  .quote-flow {
    background: #0d0f12;
  }

  .quote-flow__intro {
    background: linear-gradient(180deg, #f8c53f 0%, var(--yellow) 100%);
  }

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

  .header-cta {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 84px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    background: rgba(10, 12, 14, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
  }

  .primary-nav.is-open {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 16px 22px;
  }

  .menu > li > a,
  .menu > li > button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
  }

  .dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .hero-benefits,
  .services-overview__grid,
  .project-grid,
  .footer-grid,
  .form-grid,
  .measure-grid {
    grid-template-columns: 1fr;
  }

  .section-head--split,
  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .type-card {
    grid-template-columns: 1fr;
  }

  .type-card__media img,
  .type-card__media video {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .top-strip__inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .brand-mark-image {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 2.1rem;
  }

  .brand-tag {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__shell {
    min-height: 760px;
    padding-top: 68px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }

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

  .section {
    padding: 78px 0;
  }

  .stats-strip__grid,
  .badge-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding-bottom: 12px;
  }

  .quote-flow__intro,
  .quote-flow__form,
  .trust__panel,
  .type-card__body {
    padding: 32px 24px;
  }

  .project-card__media img {
    height: 220px;
  }

  .types-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-nav {
    order: 2;
    justify-self: center;
  }

  .form-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-bottom__inner {
    min-height: auto;
    padding: 18px 0;
  }
}
