/* =========================================================
   INDEX.CSS
   4 Season Shield Insulation
   Ajustado para o mesmo padrão do hero Lupa
========================================================== */

/* =========================
   HERO
========================= */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b100c;
}

.hero-media,
.hero__bg,
.hero__bgVideo{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media__video,
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.05);
  transition: opacity .9s ease, transform 1.2s ease;
  filter: saturate(.95) contrast(1.04) brightness(.72);
}

.hero-video.is-active{
  opacity: 1;
  transform: scale(1.02);
}

.hero__overlay,
.hero-media__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 6, 0.26) 0%, rgba(5, 9, 6, 0.46) 34%, rgba(5, 9, 6, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 12, 8, 0.72) 0%, rgba(8, 12, 8, 0.42) 38%, rgba(8, 12, 8, 0.18) 100%);
}

.hero-media__grid{
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.95));
  opacity: .18;
}

.hero-media__glow{
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}

.hero-media__glow--one{
  top: 10%;
  right: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(141,198,63,.18), transparent 65%);
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.hero-media__glow--two{
  bottom: 10%;
  left: 8%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 65%);
  animation: pulseGlow 7.5s ease-in-out infinite alternate;
}

@keyframes pulseGlow{
  0%{ transform: scale(1) translateY(0); }
  100%{ transform: scale(1.08) translateY(8px); }
}

/* =========================
   HERO CONTENT
========================= */
.hero-content,
.hero__content{
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding-top: calc(var(--header-height, 88px) + 6px) !important;
  padding-bottom: 12px !important;
}

.hero-content__inner{
  max-width: 1080px;
  margin: 0 auto;
}

/* =========================
   TRUST BADGES
========================= */
.heroTrust{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 980px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  transform: translateY(-42px);
  margin: 0 auto -24px;
}

.heroTrust__item{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
  box-shadow: none;
  transition: transform .16s ease, opacity .16s ease, border-color .16s ease, background .16s ease;
}

.heroTrust__item span{
  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.heroTrust__item:hover{
  transform: translateY(-1px);
  border-color: rgba(141,198,63,.28);
  background: rgba(141,198,63,.08);
}

/* =========================
   PILL
========================= */
.pill,
.hero-eyebrow{
  display: inline-block;
  border: 1px solid rgba(141,198,63,.9);
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 14px;
  background: rgba(141,198,63,.06);
}

/* =========================
   HERO TITLE
========================= */
.hero-title,
.hero__title{
  margin: 12px 0 18px;
  font-size: clamp(36px, 5.2vw, 78px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
  overflow: visible !important;
}

.hero__title--insulation{
  line-height: 1.02;
  overflow: visible !important;
}

#heroTitle{
  overflow: visible !important;
  padding-top: .10em;
  padding-bottom: .16em;
}

.paint-line{
  display: block;
  overflow: visible !important;
  padding-top: .06em;
  padding-bottom: .18em;
  margin-top: -.02em;
  margin-bottom: -.08em;
}

.paint-reveal{
  display: inline-block;
  position: relative;
  padding: .06em .06em .14em;
  line-height: 1.08;
  transform: translateY(14px);
  opacity: 0;
  filter: blur(6px);
  will-change: transform, opacity, clip-path;
  overflow: visible !important;
}

.paint-reveal.is-accent{
  color: var(--color-primary);
}

.paint-reveal::before{
  content: "";
  position: absolute;
  left: -18%;
  top: 55%;
  width: 160%;
  height: 1.15em;
  transform: translateY(-50%) skewX(-10deg);
  background:
    linear-gradient(
      90deg,
      rgba(141,198,63,0) 0%,
      rgba(141,198,63,.18) 18%,
      rgba(141,198,63,.42) 42%,
      rgba(141,198,63,.28) 62%,
      rgba(141,198,63,0) 100%
    );
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0;
}

body.is-loaded .paint-reveal{
  animation: paintTextIn .95s cubic-bezier(.2,.9,.2,1) forwards;
}

body.is-loaded .paint-reveal::before{
  animation: brushSweep .88s cubic-bezier(.2,.9,.2,1) forwards;
}

#heroTitle .paint-line:nth-child(1) .paint-reveal{ animation-delay: .06s; }
#heroTitle .paint-line:nth-child(2) .paint-reveal{ animation-delay: .20s; }

#heroTitle .paint-line:nth-child(1) .paint-reveal::before{ animation-delay: .06s; }
#heroTitle .paint-line:nth-child(2) .paint-reveal::before{ animation-delay: .20s; }

@keyframes paintTextIn{
  0%{
    opacity: 0;
    transform: translateY(14px);
    filter: blur(8px);
    clip-path: inset(-0.28em 100% -0.42em 0);
  }
  45%{
    opacity: 1;
    filter: blur(2px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    clip-path: inset(-0.28em 0 -0.42em 0);
  }
}

@keyframes brushSweep{
  0%{ opacity:0; transform: translateY(-50%) translateX(-28%) skewX(-10deg); }
  15%{ opacity:1; }
  100%{ opacity:0; transform: translateY(-50%) translateX(28%) skewX(-10deg); }
}

/* =========================
   HERO SUBTITLE
========================= */
.hero-description,
.hero__subtitle{
  color: rgba(255,255,255,.78);
  font-size: clamp(14px, 1.7vw, 18px);
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.6;
  text-align: center;
}

/* =========================
   HERO ACTIONS
========================= */
.hero-actions,
.hero__actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0;
}

.hero-actions .btn,
.hero__actions .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 26px;
  border-radius: 0 !important;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hero-actions .btn--cta,
.hero__actions .btn--cta{
  background: var(--gradient-primary);
  color: #0b0f0c;
  border: 1px solid transparent;
}

.hero-actions .btn--cta:hover,
.hero__actions .btn--cta:hover{
  background: #fff;
  color: #0b0f0c;
  transform: translateY(-2px);
}

.hero-actions .btn--ghost,
.hero__actions .btn--ghost{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.hero-actions .btn--ghost:hover,
.hero__actions .btn--ghost:hover{
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* =========================
   HERO STATS
========================= */
.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 26px auto 0;
}

.hero-stat{
  padding: 16px 14px;
  border-radius: 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.035) 100%);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.hero-stat strong{
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: var(--color-white);
}

.hero-stat span{
  display: block;
  margin-top: 5px;
  font-size: .78rem;
  line-height: 1.45;
  color: rgba(255,255,255,.68);
}

/* =========================================================
   HERO POSITION PATCH
   sobe um pouco o conteúdo sem aumentar a seção
========================================================== */
@media (max-width: 992px){
  .hero-content,
  .hero__content{
    padding-top: calc(var(--header-height, 88px) + 50px) !important;
    padding-bottom: 10px !important;
  }
}

/* =========================================================
   MOBILE HERO CLEANUP PATCH
========================================================== */
@media (max-width: 768px){

  .hero-content,
  .hero__content{
    padding-top: calc(var(--header-height, 88px) + 18px) !important;
    padding-bottom: 18px !important;
  }

  .heroTrust{
    display: none !important;
  }

  .pill,
  .hero-eyebrow{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px !important;
    min-height: 40px;
    padding: 0 16px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.12em !important;
    text-align: center;
    max-width: 92%;
  }

  #heroTitle.hero__title,
  #heroTitle.hero-title{
    margin-top: 0 !important;
    margin-bottom: 18px !important;
  }

  .hero-description,
  .hero__subtitle{
    max-width: 92% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-actions,
  .hero__actions{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100%;
  }

  .hero-actions .btn,
  .hero__actions .btn{
    width: min(100%, 320px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-stats{
    margin-top: 18px !important;
    max-width: 92% !important;
  }
}

@media (max-width: 576px){

  .hero-content,
  .hero__content{
    padding-top: calc(var(--header-height, 88px) + 10px) !important;
    padding-bottom: 14px !important;
  }

  .pill,
  .hero-eyebrow{
    margin-bottom: 16px !important;
    min-height: 38px;
    padding: 0 14px !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.10em !important;
    max-width: 94%;
  }

  .hero-description,
  .hero__subtitle{
    max-width: 94% !important;
    font-size: 0.96rem !important;
    line-height: 1.65 !important;
  }

  .hero-actions .btn,
  .hero__actions .btn{
    width: min(100%, 300px) !important;
  }

  .hero-stats{
    margin-top: 16px !important;
    max-width: 94% !important;
  }
}

/* =========================
   SCROLL ICON
========================= */
.hero__scroll{
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  opacity: .95;
}

.chev{
  width: 18px;
  height: 18px;
  border-right: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  transform: rotate(45deg);
  animation: bob 2s infinite ease-in-out;
}

@keyframes bob{
  0%,100%{ transform: rotate(45deg) translateY(0); }
  50%{ transform: rotate(45deg) translateY(6px); }
}

/* =========================
   PATCHES
========================= */
.hero__title--insulation,
.hero__title--insulation .paint-line,
.hero__title--insulation .paint-reveal,
.reveal{
  overflow: visible !important;
}

.hero__title--insulation .paint-line{
  display: block;
}

.hero-copy-left{
  position: static;
  left: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 920px){
  .hero__content{
    padding-top: 72px;
  }

  .hero-title,
  .hero__title{
    font-size: clamp(34px, 9vw, 58px);
    line-height: .96;
  }

  .heroTrust{
    gap: 12px;
    transform: translateY(0);
    margin: 0 auto 12px;
  }

  .heroTrust__item{
    min-height: 40px;
    padding: 0 10px;
  }

  .heroTrust__item span{
    font-size: 10px;
    letter-spacing: .1em;
  }

  .hero-stats{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 560px){
  .hero{
    min-height: 100svh;
  }

  .hero-content,
  .hero__content{
    padding-top: 84px;
    padding-bottom: 34px;
  }

  .heroTrust{
    gap: 10px;
    margin-bottom: 14px;
  }

  .heroTrust__item{
    min-height: 38px;
    padding: 0 10px;
  }

  .heroTrust__item span{
    font-size: 9px;
    letter-spacing: .08em;
  }

  .pill,
  .hero-eyebrow{
    font-size: 10px;
    padding: 6px 10px;
  }

  .hero-title,
  .hero__title{
    line-height: .96;
  }

  .hero-description,
  .hero__subtitle{
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-actions .btn,
  .hero__actions .btn{
    width: 100%;
    max-width: 320px;
  }

  .hero__scroll{
    bottom: 12px;
  }
}

/* =========================================================
   GREEN TEXT SELECTION
========================================================== */
::selection {
  background: var(--color-primary);
  color: #0b0f0c;
}

::-moz-selection {
  background: var(--color-primary);
  color: #0b0f0c;
}

/* =========================================================
   RESPONSIVE HERO TUNING
========================================================== */
@media (max-width: 1200px) {
  .hero-content__inner {
    max-width: 700px;
  }

  .hero-title,
  .hero__title {
    max-width: 700px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: .95;
  }
}

@media (max-width: 992px) {
  .hero-content,
  .hero__content {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 48px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .hero-title,
  .hero__title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    line-height: .98;
  }

  .hero-description,
  .hero__subtitle {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero-actions,
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero__actions .btn {
    width: 100%;
  }

  .heroCta--desktop {
    display: none;
  }

  .heroCta--mobile {
    display: inline-flex;
  }

  .heroTrust {
    gap: 8px;
  }

  .heroTrust__item {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 576px) {
  .hero-content,
  .hero__content {
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 52px;
  }

  .pill,
  .hero-eyebrow {
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 16px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .hero-title,
  .hero__title {
    font-size: clamp(1.65rem, 9vw, 2.5rem);
    line-height: 1;
  }

  .hero-description,
  .hero__subtitle {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .hero-stat {
    padding: 16px 14px;
  }

  .hero-stat strong {
    font-size: 0.92rem;
  }

  .hero-stat span {
    font-size: 0.78rem;
  }
}

/* =========================================================
   GREEN DIVIDER
========================================================== */
.section-divider-green {
  width: 100%;
  height: 4px;
  background: #2f6b45;
}

/* =========================================================
   LEAD FORM / INTRO REPLACEMENT
========================================================== */
.lead-form {
  padding: 56px 0;
}

.lead-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lead-info {
  background: #2f6b45;
  padding: 34px 30px;
  color: #ffffff;
}

.lead-info .section-label {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.lead-info .section-title {
  max-width: 500px;
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.2;
  color: #ffffff;
}

.lead-info-text {
  margin: 0 0 22px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.lead-points {
  display: grid;
  gap: 10px;
}

.lead-point {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.lead-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.lead-point span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.lead-form-wrap {
  background: #111111;
  padding: 34px 30px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #7dc48f;
  background: #151515;
}

.quote-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* =========================================================
   FILE INPUT STYLED
========================================================== */
.quote-form input[type="file"] {
  padding: 10px 12px;
  border: 1px solid #2f6b45;
  background: #000000;
  color: #7dc48f;
  font-size: 0.92rem;
  cursor: pointer;
}

.quote-form input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 16px;
  border: 1px solid #2f6b45;
  background: #000000;
  color: #7dc48f;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.quote-form input[type="file"]::file-selector-button:hover {
  background: #2f6b45;
  color: #ffffff;
  border-color: #2f6b45;
}

/* suporte para navegadores WebKit */
.quote-form input[type="file"]::-webkit-file-upload-button {
  margin-right: 14px;
  padding: 10px 16px;
  border: 1px solid #2f6b45;
  background: #000000;
  color: #7dc48f;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.quote-form input[type="file"]::-webkit-file-upload-button:hover {
  background: #2f6b45;
  color: #ffffff;
  border-color: #2f6b45;
}

/* =========================================================
   SUBMIT BUTTON
========================================================== */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 0;
  background: #2f6b45;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.form-submit-btn:hover {
  background: #3a8255;
  transform: translateY(-1px);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 980px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .lead-info,
  .lead-form-wrap {
    padding: 28px 22px;
  }
}

/* =========================================================
   SERVICES
========================================================== */
.services-preview {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(17, 22, 17, 0.06);
  box-shadow: 0 25px 60px rgba(16, 26, 16, 0.08);
  transition:
    transform var(--transition-medium),
    box-shadow var(--transition-medium),
    border-color var(--transition-medium);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -42% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.16), transparent 70%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(16, 26, 16, 0.14);
  border-color: rgba(141, 198, 63, 0.18);
}

.service-card__index {
  margin-bottom: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--color-primary-dark);
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
  line-height: 1.05;
  font-weight: 800;
  color: var(--text-dark);
}

.service-card p {
  margin-bottom: 24px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-soft-dark);
}

/* =========================================================
   WHY US
========================================================== */
.why-us {
  padding: 130px 0;
}

.why-us-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.media-stack {
  position: relative;
  min-height: 620px;
}

.media-stack__main,
.media-stack__floating {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.media-stack__main {
  width: 100%;
  height: 520px;
}

.media-stack__main img,
.media-stack__floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-stack__floating {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 260px;
  height: 260px;
  border: 6px solid rgba(12, 17, 13, 0.95);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
}

.feature-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item__number {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
}

.feature-item p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   PROCESS
========================================================== */
.process {
  padding: 120px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 32px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 22, 17, 0.06);
  box-shadow: 0 18px 50px rgba(16, 26, 16, 0.08);
}

.process-step::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary-soft), var(--color-primary-dark));
}

.process-step__number {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-primary-dark);
}

.process-step h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-soft-dark);
}

/* =========================================================
   METRICS
========================================================== */
.metrics {
  padding: 110px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.metric-card {
  position: relative;
  overflow: hidden;
  padding: 34px 26px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.metric-card::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.18), transparent 70%);
  pointer-events: none;
}

.metric-card strong {
  position: relative;
  display: block;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--color-white);
}

.metric-card span {
  position: relative;
  display: block;
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   PROJECTS
========================================================== */
.projects {
  padding: 120px 0;
}

.projects-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(16, 26, 16, 0.12);
}

.project-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.project-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 10, 0.08) 0%, rgba(9, 13, 10, 0.28) 45%, rgba(9, 13, 10, 0.9) 100%);
}

.project-panel:hover img {
  transform: scale(1.08);
}

.project-panel__content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.project-panel__content span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
}

.project-panel__content h3 {
  margin-bottom: 16px;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
  color: var(--color-white);
}

/* =========================================================
   TESTIMONIAL
========================================================== */
.testimonial-highlight {
  padding: 120px 0;
}

.testimonial-highlight__wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 54px 48px;
  text-align: center;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.testimonial-highlight blockquote {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--color-white);
}

.testimonial-highlight__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.testimonial-highlight__meta span {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.62);
}

/* =========================================================
   CTA BANNER
========================================================== */
.cta-banner {
  padding: 120px 0;
}

.cta-banner__content {
  position: relative;
  overflow: hidden;
  padding: 60px 56px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #81bc34 0%, #96ce48 45%, #5c9022 100%);
  box-shadow:
    0 28px 70px rgba(96, 145, 34, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #0e130e;
}

.cta-banner__content .section-label,
.cta-banner__content .section-title,
.cta-banner__content .section-subtitle {
  color: #0e130e;
}

.cta-banner__content .section-subtitle {
  opacity: 0.8;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-banner__actions .btn--primary {
  background: #0f160f;
  color: var(--color-white);
  box-shadow: 0 18px 35px rgba(15, 22, 15, 0.18);
}

.cta-banner__actions .btn--secondary {
  background: rgba(15, 22, 15, 0.08);
  color: #0e130e;
  border: 1px solid rgba(15, 22, 15, 0.14);
}

/* =========================================================
   ANIMATIONS
========================================================== */
@keyframes scrollMouse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.15) translate3d(0, -10px, 0);
    opacity: 1;
  }
}

@keyframes bob {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* =========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 1200px) {
  .services-grid,
  .process-timeline,
  .metrics-grid,
  .projects-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-us-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .media-stack {
    min-height: auto;
  }

  .media-stack__main {
    height: 480px;
  }

  .hero-title,
  .hero__title {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    line-height: .95;
  }
}

@media (max-width: 992px) {
  .hero-content,
  .hero__content {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 70px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .testimonial-highlight__wrapper,
  .cta-banner__content {
    padding: 42px 28px;
  }

  .heroTrust {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .hero-title,
  .hero__title {
    font-size: clamp(2.4rem, 11vw, 4rem);
    line-height: .98;
  }

  .hero-description,
  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions,
  .hero__actions,
  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero__actions .btn {
    width: 100%;
  }

  .heroCta--desktop {
    display: none;
  }

  .heroCta--mobile {
    display: inline-flex;
  }

  .intro,
  .services-preview,
  .why-us,
  .process,
  .metrics,
  .projects,
  .testimonial-highlight,
  .cta-banner {
    padding: 90px 0;
  }

  .services-grid,
  .process-timeline,
  .metrics-grid,
  .projects-showcase {
    grid-template-columns: 1fr;
  }

  .project-panel {
    min-height: 400px;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .media-stack__main {
    height: 380px;
  }

  .media-stack__floating {
    right: 0;
    width: 180px;
    height: 180px;
  }

  .testimonial-highlight blockquote {
    line-height: 1.2;
  }

  .heroTrust {
    gap: 10px;
  }

  .heroTrust__item {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 576px) {
  .hero-content,
  .hero__content {
    padding-top: calc(var(--header-height) + 26px);
    padding-bottom: 60px;
  }

  .pill,
  .hero-eyebrow {
    min-height: 38px;
    padding: 0 12px;
    margin-bottom: 18px;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .hero-stat,
  .service-card,
  .process-step,
  .metric-card,
  .testimonial-highlight__wrapper,
  .cta-banner__content {
    border-radius: 22px;
  }

  .project-panel {
    border-radius: 24px;
  }

  .project-panel__content,
  .service-card,
  .process-step {
    padding-left: 22px;
    padding-right: 22px;
  }

  .heroTrust {
    margin-bottom: 18px;
  }

  .hero-scroll-indicator,
  .hero__scroll {
    bottom: 18px;
  }
}
#heroTitle .paint-reveal{
  clip-path: none !important;
  -webkit-clip-path: none !important;
  filter: none !important;
  padding-bottom: .12em !important;
}
