 :root {
  --red: #d71920;
  --red-dark: #b70f16;
  --ink: #11161a;
  --muted: #6a7075;
  --white: #fff;
  --header-height: 82px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(17,22,26,.08);
  transition: box-shadow .3s ease, transform .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.08); }

.nav-shell {
  width: min(1440px, calc(100% - 64px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  width: 178px;
  height: 72px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 28px);
  flex: 1;
}
.nav-link {
  position: relative;
  padding: 31px 0 27px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: #2c3034;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--red);
  transition: right .25s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { right: 0; }

.quote-btn,
.mobile-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 14px 19px;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(215,25,32,.16);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  flex: 0 0 auto;
}
.quote-btn:hover,
.mobile-quote:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(215,25,32,.24);
}
.arrow { font-size: 16px; line-height: 1; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 9px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: min(780px, 100vh);
  min-height: 650px;
  margin-top: var(--header-height);
  overflow: hidden;
  background: #0e151a;
}
.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .85s ease, visibility .85s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 7s var(--ease);
}
.hero-slide.is-active > img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,10,14,.88) 0%, rgba(5,10,14,.66) 32%, rgba(5,10,14,.15) 67%, rgba(5,10,14,.08) 100%),
    linear-gradient(0deg, rgba(5,10,14,.46), transparent 35%);
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(32px, calc((100% - 1440px) / 2));
  width: min(620px, 48vw);
  transform: translateY(-45%);
  color: #fff;
}
.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 800;
  color: rgba(255,255,255,.86);
}
.eyebrow span {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 2px;
  border-radius: 50%;
  background: var(--red);
}
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero h1 strong {
  color: #fff;
  font-weight: 800;
}
.hero-copy {
  max-width: 520px;
  margin: 24px 0 31px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.84);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 49px;
  padding: 0 21px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.46);
  color: #fff;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(5px);
}
.btn-ghost:hover { border-color: #fff; }
.play {
  width: 29px;
  height: 29px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}

.hero-bottom {
  position: absolute;
  z-index: 5;
  left: max(32px, calc((100% - 1440px) / 2));
  right: max(32px, calc((100% - 1440px) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.slide-counter {
  min-width: 72px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 700;
}
.slide-counter strong { color: #fff; font-size: 13px; }
.hero-controls {
  margin-left: auto;
  display: flex;
  gap: 7px;
}
.hero-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
  background: rgba(0,0,0,.16);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: background .2s ease, border-color .2s ease;
}
.hero-controls button:hover {
  background: var(--red);
  border-color: var(--red);
}
.hero-side-label {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  letter-spacing: .2em;
  font-weight: 800;
}
.capabilities-section {
  min-height: 320px;
  padding: 100px 8%;
  background: #fff;
}
.section-kicker {
  color: var(--red);
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 800;
}
.capabilities-section h2 {
  max-width: 700px;
  margin: 12px 0;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -.04em;
}
.capabilities-section .section-header > p:last-child {
  color: var(--muted);
  max-width: 600px;
}

@media (max-width: 1180px) {
  .desktop-nav { gap: 15px; }
  .nav-link { font-size: 11px; }
  .brand { width: 160px; }
  .nav-shell { width: min(100% - 40px, 1440px); gap: 18px; }
  .quote-btn { padding: 13px 15px; }
  .hero-content { left: 40px; }
}

@media (max-width: 980px) {
  .desktop-nav,
  .quote-btn { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-shell { width: calc(100% - 34px); }
  .mobile-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    padding: 14px 20px 20px;
    background: rgba(255,255,255,.99);
    border-top: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 20px 30px rgba(0,0,0,.1);
  }
  .mobile-menu.open { display: grid; }
  .mobile-menu a {
    padding: 13px 4px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    font-weight: 700;
  }
  .mobile-menu .mobile-quote {
    margin-top: 12px;
    color: #fff;
    border: 0;
    text-align: center;
  }
  .hero { min-height: 620px; height: calc(100vh - 82px); }
  .hero-content { width: min(690px, calc(100% - 80px)); }
  .hero-side-label { display: none; }
}

@media (max-width: 640px) {
  :root { --header-height: 72px; }
  .brand { width: 142px; height: 64px; }
  .hero { min-height: 650px; }
  .hero-slide > img { object-position: 62% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5,10,14,.88), rgba(5,10,14,.48) 72%, rgba(5,10,14,.2)),
      linear-gradient(0deg, rgba(5,10,14,.65), transparent 45%);
  }
  .hero-content {
    left: 22px;
    width: calc(100% - 44px);
    top: 46%;
    transform: translateY(-40%);
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: .14em;
    margin-bottom: 14px;
  }
  .eyebrow span { margin: 0 5px 2px; }
  .hero h1 {
    font-size: clamp(37px, 12vw, 54px);
    line-height: .98;
  }
  .hero-copy {
    margin: 19px 0 23px;
    font-size: 13px;
    line-height: 1.55;
  }
  .hero-actions { flex-wrap: wrap; }
  .btn { min-height: 45px; padding: 0 16px; font-size: 11px; }
  .hero-bottom {
    left: 22px;
    right: 22px;
    bottom: 21px;
    gap: 12px;
  }
  .slide-counter { min-width: 55px; font-size: 9px; }
  .hero-controls button { width: 36px; height: 36px; }
}
/* **** */


/* =========================================
   VALUE STRIP
========================================= */

.capabilities-wrapper {
  background: #ffffff;
}

.value-strip {
  width: 100%;
  min-height: 90px;
  padding: 0 max(46px, calc((100% - 1440px) / 2 + 46px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  background: #f8f9fa;
  border-bottom: 1px solid #edf0f2;
}

.value-item {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 26px;
}

.value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 36px;
  background: #bdc3c8;
  transform: translateY(-50%);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid #ef1d24;
  border-radius: 50%;
  color: #ef1d24;
  font-size: 0;
  font-weight: 800;
}

.value-icon::before {
  font-size: 26px;
  line-height: 1;
}

.value-item:nth-child(1) .value-icon::before { content: "\2699"; }
.value-item:nth-child(2) .value-icon::before { content: "\2605"; }
.value-item:nth-child(3) .value-icon::before { content: "\23F1"; }
.value-item:nth-child(4) .value-icon::before { content: "\26D1"; }

.value-content {
  min-width: 0;
}

.value-content h4 {
  margin: 0 0 4px;
  color: #101519;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.value-content p {
  margin: 0;
  color: #4f565c;
  font-size: 10px;
  line-height: 1.4;
}


/* =========================================
   CAPABILITIES CONTAINER
========================================= */

.capabilities-container {
  width: min(1440px, calc(100% - 92px));
  margin: 0 auto;
  padding: 26px 0 34px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 44px;
  align-items: start;
}


/* =========================================
   LEFT CONTENT
========================================= */

.capabilities-content {
  padding-top: 8px;
}


.capabilities-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #d71920;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}


.capabilities-content h2 {
  margin: 0;
  color: #101519;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}


.capabilities-content p {
  max-width: 300px;
  margin: 18px 0 24px;
  color: #4f565c;
  font-size: 13px;
  line-height: 1.6;
}


.capabilities-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #d71920;
  color: #d71920;
  font-size: 12px;
  font-weight: 800;
  transition: gap .25s ease;
}


.capabilities-link span {

    font-size: 18px;

    line-height: 1;
}


.capabilities-link:hover {

    gap: 17px;
}


/* =========================================
   CAPABILITY GRID
========================================= */

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


/* =========================================
   CAPABILITY CARD
========================================= */

.capability-card {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7e8;
  border-radius: 3px;
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}


/* =========================================
   CARD IMAGE
========================================= */

.capability-image {
  width: 100%;
  aspect-ratio: 2.08 / 1;
  overflow: hidden;
  background: #e8eaeb;
}


.capability-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}


.capability-card:hover
.capability-image img {

    transform: scale(1.06);
}


/* =========================================
   CARD FOOTER
========================================= */

.capability-card-footer {
  min-height: 58px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #ffffff;
}


.capability-card-footer h3 {
  margin: 0;
  color: #151a1e;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}


.capability-arrow {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d71920;
  font-size: 17px;
  transition: transform .25s ease;
}


.capability-card:hover
.capability-arrow {

    transform:
        translateX(4px);
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
  background: #f8f9fa;
  border-top: 1px solid #edf0f2;
}

.about-container {
  width: min(1440px, calc(100% - 92px));
  margin: 0 auto;
  padding: 0 0 64px;
  display: grid;
  grid-template-columns: 1.05fr .95fr .78fr;
  gap: 34px;
  align-items: center;
}

.about-image-panel {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #dfe4e7;
}

.about-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.about-value-card {
  position: absolute;
  left: 44px;
  bottom: 18px;
  width: min(210px, calc(100% - 88px));
  padding: 18px 24px;
  display: grid;
  gap: 8px;
  background: rgba(215,25,32,.94);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}

.about-content {
  padding: 36px 0;
}

.about-label {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-content h2 {
  margin: 0;
  color: #101519;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.about-content > p:not(.about-label) {
  max-width: 500px;
  margin: 18px 0 24px;
  color: #3f474d;
  font-size: 13px;
  line-height: 1.65;
}

.about-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: background .25s ease, gap .25s ease;
}

.about-link:hover {
  gap: 17px;
  background: var(--red-dark);
}

.about-pillars {
  padding-left: 36px;
  display: grid;
  gap: 24px;
  border-left: 1px solid #d4d9dd;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.about-pillar-icon {
  width: 46px;
  height: 46px;
  position: relative;
  flex: 0 0 46px;
  margin-top: 0;
  color: var(--red);
}

.about-pillar-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-pillar > div:last-child {
  min-width: 0;
}

.about-pillar h3 {
  margin: 0 0 5px;
  color: #101519;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.about-pillar p {
  margin: 0;
  color: #3f474d;
  font-size: 11px;
  line-height: 1.45;
}

/* =========================================
   PROJECTS SECTION
========================================= */

.projects-section {
  background: #ffffff;
  border-top: 1px solid #edf0f2;
}

.projects-container {
  width: min(1440px, calc(100% - 92px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.projects-header {
  margin-bottom: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.projects-label {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.projects-header h2 {
  margin: 0;
  color: #101519;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.projects-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.project-filters {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-filters button {
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid #edf0f2;
  border-radius: 3px;
  background: #f6f7f8;
  color: #20262b;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.project-filters button.active,
.project-filters button:hover {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.projects-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transition: gap .25s ease;
}

.projects-link:hover {
  gap: 15px;
}

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

.project-card {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7e8;
  border-radius: 3px;
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.project-image {
  aspect-ratio: 2.32 / 1;
  overflow: hidden;
  background: #e8eaeb;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.project-card:hover .project-image img {
  transform: scale(1.06);
}

.project-card-content {
  min-height: 72px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-card-content h3 {
  margin: 0 0 4px;
  color: #151a1e;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.project-card-content p,
.project-card-content div > span {
  display: block;
  margin: 0;
  color: #4f565c;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 600;
}

.project-arrow {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  transition: transform .25s ease;
}

.project-card:hover .project-arrow {
  transform: translateX(4px);
}

/* =========================================
   INDUSTRIES SECTION
========================================= */

.industries-section {
  overflow: hidden;
  background: #f8f9fa;
  border-top: 1px solid #edf0f2;
}

.industries-container {
  width: min(1440px, calc(100% - 92px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.industries-header {
  margin-bottom: 18px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
}

.industries-label {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.industries-header h2 {
  margin: 0;
  color: #101519;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.industries-link {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transition: gap .25s ease;
}

.industries-link:hover {
  gap: 15px;
}

.industries-slider {
  position: relative;
}

.industries-viewport {
  overflow: hidden;
}

.industries-track {
  width: max-content;
  display: flex;
  gap: 18px;
  transition: transform .55s ease;
  will-change: transform;
}

.industries-nav {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215,25,32,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--red);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.industries-nav:hover {
  background: var(--red);
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.industries-nav-prev { left: 12px; }
.industries-nav-next { right: 12px; }

.industry-card {
  width: calc((min(1440px, 100vw - 92px) - 54px) / 4);
  min-width: 238px;
  overflow: hidden;
  display: block;
  background: #ffffff;
  border: 1px solid #e5e7e8;
  border-radius: 3px;
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.industry-card img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  display: block;
  object-fit: cover;
}

.industry-card h3 {
  min-height: 48px;
  margin: 0;
  padding: 13px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #151a1e;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
}

/* =========================================
   PROCESS SECTION
========================================= */

.process-section {
  background: #ffffff;
  border-top: 1px solid #edf0f2;
}

.process-container {
  width: min(1440px, calc(100% - 92px));
  margin: 0 auto;
  padding: 28px 0 58px;
}

.process-header {
  margin-bottom: 18px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
}

.process-label {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.process-header h2 {
  margin: 0;
  color: #101519;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.process-link {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transition: gap .25s ease;
}

.process-link:hover {
  gap: 15px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 28px;
}

.process-step {
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  color: #263039;
}

.process-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 0 0 3px;
  color: #101519;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.process-step p {
  max-width: 132px;
  margin: 0;
  color: #4f565c;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}

.process-arrow {
  margin-top: 48px;
  color: var(--red);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

/* =========================================
   QUALITY SECTION
========================================= */

.quality-section {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #101519;
  border-bottom: 1px solid rgba(255,255,255,.32);
}

.quality-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.quality-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,12,16,.9), rgba(6,12,16,.66) 42%, rgba(6,12,16,.12) 100%),
    linear-gradient(0deg, rgba(6,12,16,.1), rgba(6,12,16,.1));
}

.quality-container {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 92px));
  margin: 0 auto;
  padding: 28px 0 30px;
  color: #ffffff;
}

.quality-label {
  margin: 0 0 5px;
  color: #ff2b32;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quality-container h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.quality-copy {
  max-width: 580px;
  margin: 15px 0 24px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.quality-points {
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.quality-point {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.28);
}

.quality-point:first-child {
  padding-left: 0;
}

.quality-point:last-child {
  border-right: 0;
}

.quality-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: #ffffff;
}

.quality-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-point h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.quality-point p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #0d2430;
}

.footer-main {
  position: relative;
  width: min(1440px, calc(100% - 92px));
  margin: 0 auto;
  padding: 34px 0 38px;
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr) 1.7fr;
  gap: 34px;
  color: rgba(255,255,255,.78);
}

.footer-main::after {
  content: "";
  position: absolute;
  left: 56%;
  bottom: 0;
  width: 120px;
  height: 92px;
  opacity: .14;
  background:
    linear-gradient(90deg, transparent 12px, rgba(255,255,255,.55) 12px 16px, transparent 16px 28px) 0 100% / 28px 72px repeat-x;
  pointer-events: none;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-column {
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.footer-brand > img {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 10px;
  mix-blend-mode: screen;
}

.footer-brand p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.footer-follow-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform .2s ease, filter .2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.footer-socials img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  margin: 0;
  mix-blend-mode: normal;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-contact p,
.footer-map-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact span,
.footer-map-link span {
  width: 18px;
  flex: 0 0 18px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.footer-bottom {
  min-height: 54px;
  padding: 0 max(46px, calc((100% - 1440px) / 2 + 46px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ffffff;
  color: #273039;
}

.footer-bottom p,
.footer-bottom strong {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
}

.footer-bottom strong {
  font-weight: 800;
}

/* =========================================
   QUOTE MODAL
========================================= */

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  padding: 24px;
}

.quote-modal.open {
  display: grid;
  place-items: center;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,10,14,.68);
  backdrop-filter: blur(4px);
}

.quote-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.quote-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f4f5f6;
  color: #101519;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.quote-dialog-header {
  padding: 28px 32px 18px;
  border-bottom: 1px solid #edf0f2;
}

.quote-dialog-header p {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quote-dialog-header h2 {
  margin: 0;
  color: #101519;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: #20262b;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
}

.form-field label span {
  color: var(--red);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dfe3e6;
  border-radius: 3px;
  padding: 0 13px;
  background: #ffffff;
  color: #101519;
  font: inherit;
  font-size: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.form-field input[type="file"] {
  padding: 10px 13px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215,25,32,.12);
}

.quote-submit {
  min-height: 48px;
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 3px;
  padding: 0 24px;
  background: var(--red);
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s ease, gap .25s ease, transform .25s ease;
}

.quote-submit:hover {
  gap: 17px;
  background: var(--red-dark);
  transform: translateY(-1px);
}

body.quote-modal-open {
  overflow: hidden;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2200;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
  margin-top: var(--header-height);
  background: #f8f9fa;
}

.contact-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #101519;
}

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

.contact-hero img {
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6,12,16,.86), rgba(6,12,16,.6) 48%, rgba(6,12,16,.26)),
    linear-gradient(0deg, rgba(6,12,16,.18), rgba(6,12,16,.18));
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 92px));
  min-height: 330px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  color: #ffffff;
}

.contact-hero-content p,
.contact-label {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-hero-content h1 {
  max-width: 720px;
  margin: 0 0 14px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-hero-content span {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  font-weight: 600;
}

.contact-section {
  padding: 64px 0;
}

.contact-container {
  width: min(1440px, calc(100% - 92px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 32px;
  align-items: start;
}

.contact-form-panel,
.contact-info-panel {
  background: #ffffff;
  border: 1px solid #edf0f2;
  border-radius: 6px;
}

.contact-form-panel {
  padding: 32px;
}

.contact-form-panel h2,
.contact-info-panel h2 {
  margin: 0;
  color: #101519;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

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

.contact-submit {
  min-height: 48px;
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 3px;
  padding: 0 24px;
  background: var(--red);
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s ease, gap .25s ease, transform .25s ease;
}

.contact-submit:hover {
  gap: 17px;
  background: var(--red-dark);
  transform: translateY(-1px);
}

.contact-info-panel {
  padding: 32px;
}

.contact-info-panel address {
  margin: 18px 0 22px;
  color: #4f565c;
  font-size: 13px;
  line-height: 1.65;
  font-style: normal;
  font-weight: 600;
}

.contact-detail-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-detail-list p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #20262b;
  font-size: 12px;
  font-weight: 800;
}

.contact-detail-list span {
  width: 22px;
  color: var(--red);
  font-size: 16px;
}

.contact-map {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #edf0f2;
  background: #dfe3e6;
}

.contact-map iframe {
  width: 100%;
  height: 330px;
  display: block;
  border: 0;
}

/* =========================================
   THANK YOU PAGE
========================================= */

.thank-you-page {
  background: #f8f9fa;
}

.thank-you-section {
  position: relative;
  min-height: 100vh;
  padding: 96px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #101519;
}

.thank-you-section::before,
.thank-you-section::after {
  content: "";
  position: absolute;
  inset: 0;
}

.thank-you-section::before {
  background:
    linear-gradient(90deg, rgba(6,12,16,.88), rgba(6,12,16,.58) 52%, rgba(6,12,16,.36)),
    url("../images/construction_bg.png") center / cover no-repeat;
}

.thank-you-section::after {
  background: radial-gradient(circle at 72% 32%, rgba(229, 0, 0, .24), transparent 34%);
}

.thank-you-card {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 92px));
  padding: 48px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.thank-you-logo {
  width: 118px;
  margin: 0 auto 24px;
  display: block;
}

.thank-you-logo img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.thank-you-card p {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.thank-you-card h1 {
  margin: 0;
  color: #101519;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.thank-you-card span {
  display: block;
  max-width: 560px;
  margin: 18px auto 0;
  color: #4f565c;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.thank-you-card strong {
  display: block;
  margin-top: 14px;
  color: #101519;
  font-size: 13px;
  font-weight: 800;
}

.thank-you-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  min-height: 44px;
  border: 1px solid #dfe3e6;
  background: #ffffff;
  color: #101519;
}

.btn-ghost-dark:hover {
  border-color: var(--red);
  color: var(--red);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .value-strip {
        width: 100%;
        min-height: auto;
        padding: 18px 25px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }


    .value-item {
        width: auto;
        min-height: 78px;
        padding: 0 18px;
    }


    .value-item:nth-child(2)::after {
        display: none;
    }


    .capabilities-container {

        grid-template-columns: 1fr;

        gap: 28px;

        width:
            calc(100% - 50px);

        padding: 42px 0 34px;
    }


    .capabilities-content p {

        max-width: 550px;
    }


    .about-container {
        width: calc(100% - 50px);
        padding-bottom: 56px;
        grid-template-columns: 1fr;
        gap: 28px;
    }


    .about-content {
        padding: 0;
    }


    .about-pillars {
        padding: 28px 0 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        border-left: 0;
        border-top: 1px solid #d4d9dd;
    }


    .about-pillar {
        gap: 14px;
    }


    .projects-container {
        width: calc(100% - 50px);
        padding: 28px 0 56px;
    }


    .projects-header {
        align-items: start;
        flex-direction: column;
        gap: 18px;
    }


    .projects-actions {
        width: 100%;
        justify-content: space-between;
        gap: 18px;
    }


    .project-filters {
        flex-wrap: wrap;
    }


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


    .industries-container {
        width: calc(100% - 50px);
        padding: 28px 0 56px;
    }


    .industries-header {
        flex-direction: column;
        gap: 14px;
    }


    .industries-link {
        margin-top: 0;
    }


    .industry-card {
        width: calc((100vw - 86px) / 2);
    }


    .process-container {
        width: calc(100% - 50px);
        padding: 28px 0 56px;
    }


    .process-header {
        flex-direction: column;
        gap: 14px;
    }


    .process-link {
        margin-top: 0;
    }


    .process-steps {
        grid-template-columns: repeat(5, minmax(120px, 1fr));
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 8px;
    }


    .process-arrow {
        display: none;
    }


    .quality-container {
        width: calc(100% - 50px);
        padding: 32px 0 36px;
    }


    .quality-points {
        max-width: none;
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .quality-point {
        padding: 0;
        border-right: 0;
    }


    .sustainability-container {
        width: calc(100% - 50px);
        min-height: 210px;
        padding: 32px 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .sustainability-container p {
        max-width: 640px;
    }


    .sustainability-link {
        width: fit-content;
    }


    .build-cta-container {
        width: calc(100% - 50px);
        min-height: 205px;
        padding: 32px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }


    .build-cta-link {
        min-width: 190px;
    }


    .footer-main {
        width: calc(100% - 50px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }


    .footer-column {
        padding-left: 24px;
    }


    .footer-bottom {
        padding: 0 25px;
    }


    .quote-dialog {
        max-height: calc(100vh - 32px);
    }


    .contact-hero-content,
    .contact-container {
        width: calc(100% - 50px);
    }


    .contact-container {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .value-strip {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 14px 18px;
        gap: 12px;
    }


    .value-item {
        min-height: auto;
        padding: 16px;
        background: #ffffff;
        border: 1px solid #edf0f2;
        border-radius: 8px;
    }


    .value-item::after {
        display: none;
    }


    .value-icon {

        width: 36px;
        height: 36px;

        font-size: 16px;
    }


    .value-content h4 {

        font-size: 10px;
    }


    .value-content p {

        font-size: 8px;
    }


    .capabilities-container {

        width:
            calc(100% - 36px);

        padding:
            50px 0 34px;
    }


    .capabilities-content h2 {

        font-size: 34px;
    }


    .capabilities-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 8px;
    }


    .capability-image {

        height: 115px;
    }


    .capability-card-footer {

        min-height: 62px;

        padding:
            9px 9px;
    }


    .capability-card-footer h3 {

        font-size: 9px;
    }


    .capability-arrow {

        width: 23px;
        height: 23px;

        font-size: 14px;
    }


    .about-container {
        width: calc(100% - 36px);
        padding-bottom: 48px;
        gap: 24px;
    }


    .about-image-panel,
    .about-image-panel img {
        min-height: 260px;
    }


    .about-value-card {
        left: 18px;
        bottom: 16px;
        width: min(190px, calc(100% - 36px));
        padding: 16px 20px;
        font-size: 13px;
    }


    .about-content h2 {
        font-size: 31px;
    }


    .about-content > p:not(.about-label) {
        font-size: 12px;
    }


    .about-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .projects-container {
        width: calc(100% - 36px);
        padding: 26px 0 48px;
    }


    .projects-header h2 {
        font-size: 29px;
    }


    .projects-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }


    .project-filters {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .project-filters button {
        padding: 0 10px;
    }


    .projects-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .industries-container {
        width: calc(100% - 36px);
        padding: 26px 0 48px;
    }


    .industries-header h2 {
        font-size: 29px;
    }


    .industries-track {
        gap: 12px;
    }


    .industry-card {
        width: calc(100vw - 72px);
        min-width: 245px;
    }


    .industry-card h3 {
        min-height: 46px;
        font-size: 11px;
    }


    .process-container {
        width: calc(100% - 36px);
        padding: 26px 0 48px;
    }


    .process-header h2 {
        font-size: 29px;
    }


    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow-x: visible;
    }


    .process-step {
        grid-template-columns: 48px 1fr;
        justify-items: start;
        align-items: center;
        column-gap: 16px;
        text-align: left;
    }


    .process-icon {
        margin-bottom: 0;
    }


    .process-step p {
        max-width: none;
    }


    .quality-section {
        min-height: 420px;
    }


    .quality-bg {
        object-position: 66% center;
    }


    .quality-overlay {
        background:
            linear-gradient(90deg, rgba(6,12,16,.92), rgba(6,12,16,.72)),
            linear-gradient(0deg, rgba(6,12,16,.22), rgba(6,12,16,.22));
    }


    .quality-container {
        width: calc(100% - 36px);
        padding: 32px 0 36px;
    }


    .quality-container h2 {
        font-size: 30px;
    }


    .quality-copy {
        font-size: 12px;
    }


    .quality-point {
        gap: 14px;
    }


    .quality-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }


    .sustainability-section {
        min-height: 320px;
    }


    .sustainability-bg {
        object-position: 28% center;
    }


    .sustainability-container {
        width: calc(100% - 36px);
        min-height: 320px;
        padding: 32px 0;
        gap: 18px;
    }


    .sustainability-container h2 {
        font-size: 27px;
    }


    .sustainability-container p {
        font-size: 12px;
    }


    .sustainability-link {
        min-height: 50px;
        padding: 0 24px;
        font-size: 12px;
    }


    .build-cta-section {
        min-height: 300px;
    }


    .build-cta-bg {
        object-position: 58% center;
    }


    .build-cta-container {
        width: calc(100% - 36px);
        min-height: 300px;
        padding: 32px 0;
        gap: 22px;
    }


    .build-cta-container h2 {
        font-size: 31px;
    }


    .build-cta-link {
        min-height: 50px;
        min-width: 176px;
        padding: 0 24px;
        font-size: 12px;
    }


    .footer-main {
        width: calc(100% - 36px);
        padding: 30px 0 34px;
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .footer-column {
        padding: 22px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.16);
    }


    .footer-brand img {
        width: 138px;
    }


    .footer-bottom {
        min-height: 72px;
        padding: 14px 18px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }


    .quote-modal {
        padding: 14px;
    }


    .quote-dialog {
        max-height: calc(100vh - 28px);
    }


    .quote-dialog-header {
        padding: 24px 20px 16px;
    }


    .quote-dialog-header h2 {
        font-size: 27px;
    }


    .quote-form {
        padding: 22px 20px 24px;
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .form-field-wide {
        grid-column: auto;
    }


    .quote-submit {
        width: 100%;
    }


    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }


    .contact-hero {
        min-height: 300px;
    }


    .contact-hero-content {
        width: calc(100% - 36px);
        min-height: 300px;
    }


    .contact-hero-content h1 {
        font-size: 40px;
    }


    .contact-section {
        padding: 42px 0;
    }


    .contact-container {
        width: calc(100% - 36px);
        gap: 22px;
    }


    .contact-form-panel,
    .contact-info-panel {
        padding: 22px;
    }


    .contact-form-panel h2,
    .contact-info-panel h2 {
        font-size: 27px;
    }


    .contact-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .contact-submit {
        width: 100%;
    }


    .contact-map iframe {
        height: 280px;
    }


    .thank-you-section {
        padding: 56px 0;
    }


    .thank-you-card {
        width: calc(100% - 36px);
        padding: 30px 20px;
    }


    .thank-you-card h1 {
        font-size: 34px;
    }


    .thank-you-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
