/* ==========================================================================
   Climatemp — Home
   Design source: "Climatemp Home.dc.html"
   ========================================================================== */

:root {
  --ink:        #0A1F30;
  --ink-900:    #071722;
  --ink-700:    #123A57;
  --brand:      #0F98E4;
  --brand-dark: #0B6FAB;
  --brand-lite: #7CD0FF;
  --brand-wash: #EAF6FF;
  --surface:    #F5F9FC;
  --border:     #E4EBF0;
  --border-hi:  #CFE3F0;
  --rule:       #EDF2F6;
  --body:       #33475A;
  --muted:      #5A6B78;
  --muted-2:    #7A8B99;
  --muted-3:    #93A4B2;
  --on-dark:    #B6CEDD;
  --on-dark-2:  #A9C3D4;
  --on-dark-3:  #C9DCE8;
  --on-dark-4:  #8FAABC;
  --on-dark-5:  #6E8A9E;
  --danger:     #FF8A8A;
  --whatsapp:   #25D366;

  --ph-a: #EEF4F8;
  --ph-b: #E3EDF4;

  --wrap: 1240px;
  --pill: 999px;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* keeps #anchor targets clear of the fixed header */
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #FFFFFF;
  color: var(--ink);
  font-family: Manrope, 'Helvetica Neue', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--pill);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* ---------- shared layout ------------------------------------------------ */

.wrap { max-width: var(--wrap); margin: 0 auto; }

.section { padding: 104px 24px; }
.section--tint { background: var(--surface); }
.section--dark { background: var(--ink); color: #fff; }
.section--narrow .wrap { max-width: 900px; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow--light { color: var(--brand-lite); }

.h2 {
  font-size: clamp(27px, 3.4vw, 40px);
  line-height: 1.14;
  letter-spacing: -.025em;
  font-weight: 800;
  margin-top: 14px;
  text-wrap: pretty;
}

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}
.lede--on-dark { color: var(--on-dark); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head--tight { margin-bottom: 48px; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* ---------- buttons ------------------------------------------------------ */

.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 17px 32px;
  border-radius: var(--pill);
  transition: background .3s ease, color .3s ease, border-color .3s ease,
              transform .3s ease, box-shadow .3s ease;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 34px rgba(15, 152, 228, .4);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--brand-lite);
  color: var(--ink);
  transform: translateY(-3px);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: var(--brand-lite);
}

.btn--outline {
  font-size: 15px;
  border: 1px solid var(--border-hi);
  padding: 14px 26px;
  color: var(--ink);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn--ink {
  font-size: 15px;
  background: var(--ink);
  color: #fff;
  padding: 15px 28px;
}
.btn--ink:hover,
.btn--ink:focus-visible {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg { font-size: 16px; padding: 17px 32px; }

.btn--light {
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  padding: 14px 26px;
}
.btn--light:hover,
.btn--light:focus-visible { background: var(--ink); color: #fff; }

/* ---------- reveal on scroll --------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22, .61, .36, 1);
}
[data-reveal].on { opacity: 1; transform: none; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes pulsering {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- scroll progress + header ------------------------------------- */

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--brand), var(--brand-lite));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
}

.site-header__logo { display: block; flex: none; }
.site-header__logo img { height: 38px; width: auto; display: block; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-left: auto;
  font-size: 14.5px;
  font-weight: 600;
}
.site-nav a { color: var(--ink); }
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--brand); }

.site-header__cta {
  flex: none;
  background: var(--brand);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--pill);
  box-shadow: 0 8px 20px rgba(15, 152, 228, .28);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10, 31, 48, .3);
}

/* ---------- hero --------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--surface) 42%, #EDF4F9 100%);
  color: var(--ink);
  padding: calc(var(--header-h) + 44px) 24px 44px;
}

/* soft disc sitting behind the product */
.hero__decor { position: absolute; inset: 0; pointer-events: none; }
.hero__disc {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(540px, 44vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #DFEBF4;
}

.hero__grid {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .7);
  border: 1px solid #D6E3ED;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--pill);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 800;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.hero h1 em {
  display: block;
  font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.015em;
  color: var(--brand-dark);
}

.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 470px;
  margin-bottom: 30px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero__proof { display: flex; align-items: center; gap: 14px; }
.hero__avatars { display: flex; flex: none; }
.hero__avatars i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: repeating-linear-gradient(135deg, var(--ph-a) 0 6px, var(--ph-b) 6px 12px);
}
.hero__avatars i + i { margin-left: -12px; }
.hero__proof strong { display: block; font-size: 15px; font-weight: 700; }
.hero__proof span  { font-size: 13.5px; font-weight: 600; color: var(--muted); }

/* product on a pedestal */
.hero__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__product {
  width: min(300px, 76%);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  border: 1px solid rgba(10, 31, 48, .06);
  animation: bob 7s ease-in-out infinite;
}
.hero__pedestal {
  width: min(360px, 92%);
  height: 74px;
  margin-top: -26px;
  border-radius: 50% / 30%;
  background: linear-gradient(180deg, #D3E4F0, #BFD6E7);
}

/* floating stat cards */
.hero__cards { display: flex; flex-direction: column; gap: 16px; }
.hcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(10, 31, 48, .09);
}
.hcard__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand-wash);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.hcard__value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.hcard__label { font-size: 12.5px; line-height: 1.5; font-weight: 600; color: var(--muted); }
.hcard h3 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.hcard p  { font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.hcard .stars { font-size: 13px; margin-bottom: 8px; }

/* bottom trust bar */
.hero__trustbar {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 52px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(10, 31, 48, .07);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  overflow: hidden;
}
.hero__trustbar li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-top: 1px solid var(--rule);
}
.hero__trustbar li:first-child { border-top: 0; }
.trust__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F1F7FB;
  color: var(--brand);
  display: grid;
  place-items: center;
}
.hero__trustbar strong { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 3px; }
.hero__trustbar span  { font-size: 12.5px; line-height: 1.5; color: var(--muted); }

@media (min-width: 720px) {
  .hero__trustbar li { border-top: 0; border-left: 1px solid var(--rule); }
  .hero__trustbar li:first-child { border-left: 0; }
}

/* on phones the cards ride in a swipeable strip instead of stacking */
@media (max-width: 719px) {
  .hero__cards {
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: -24px;
    padding: 6px 24px 10px;
    scrollbar-width: none;
  }
  .hero__cards::-webkit-scrollbar { display: none; }
  .hcard { flex: 0 0 76%; scroll-snap-align: start; }
}

@media (min-width: 1040px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .92fr) minmax(0, .56fr);
    gap: 24px;
  }
  /* disc centres on the middle (product) column, not on the section */
  .hero__disc { left: 59%; }
  .hero__cards { margin-left: -64px; }
  /* middle card juts toward the product, as in the reference */
  .hcard--wide { margin-left: -46px; }
}

/* ---------- photo placeholders ------------------------------------------- */

.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: repeating-linear-gradient(135deg, var(--ph-a) 0 12px, var(--ph-b) 12px 24px);
}
.ph__label {
  font: 600 12px/1.6 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.ph__note {
  font: 500 13px/1.6 var(--mono);
  color: var(--muted-3);
  max-width: 72%;
}

.ph--dark {
  border: 1px solid rgba(255, 255, 255, .14);
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 12px, rgba(255, 255, 255, .02) 12px 24px);
}
.ph--dark .ph__label { color: var(--brand-lite); letter-spacing: .14em; }
.ph--dark .ph__note  { color: rgba(255, 255, 255, .5); }

.ph--problem { aspect-ratio: 4 / 3; border-radius: 22px; }
.ph--wide    { aspect-ratio: 16 / 9; border-radius: 0; }
.ph--case    { aspect-ratio: 3 / 2; }
.ph--map     { aspect-ratio: 1 / 1; border-radius: 16px; gap: 8px; margin-bottom: 20px; }
.ph--about   { aspect-ratio: 4 / 5; border-radius: 24px; gap: 8px; }

/* ---------- benefits ----------------------------------------------------- */

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 31, 48, .09);
  border-color: var(--border-hi);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--brand-wash);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 8px; }
.card p  { font-size: 14.5px; line-height: 1.62; color: var(--muted); }

/* ---------- problem ------------------------------------------------------ */

.split {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 64px;
  align-items: center;
}

.problem__lede { margin-bottom: 34px; max-width: 520px; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.pain {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
}
.pain::before {
  content: "✕";
  flex: none;
  color: var(--danger);
  font-size: 17px;
}

.problem__aside { display: flex; flex-direction: column; gap: 20px; }

.solution-card {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 22px;
  padding: 28px;
}
.solution-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.solution-card p {
  font-size: 15px;
  line-height: 1.62;
  color: #E4F3FF;
  margin-bottom: 20px;
}

/* ---------- product lines ------------------------------------------------ */

.line-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.line-card {
  display: block;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.line-card:hover {
  color: inherit;
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 31, 48, .12);
  border-color: var(--border-hi);
}
.line-card__body { padding: 30px; }
.line-card h3 {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.line-card p {
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
  margin-bottom: 18px;
}
.line-card__more { font-size: 14.5px; font-weight: 700; color: var(--brand); }

/* ---------- where we work ------------------------------------------------ */

.two-col-start {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 11px 20px;
  font-size: 14.5px;
  font-weight: 600;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.chip:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
}
.map-card p { font-size: 14.5px; line-height: 1.62; color: var(--muted); }

/* ---------- cases -------------------------------------------------------- */

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.case {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.case:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 31, 48, .11);
  border-color: var(--border-hi);
}
.case__body { padding: 28px; }
.case__place {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
}
.case h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 10px 0;
}
.case p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
  margin-bottom: 16px;
}
.case__result {
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- steps -------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px 16px;
}
.step {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid rgba(124, 208, 255, .28);
}
.step::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 152, 228, .2);
}
.step__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-lite);
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step p  { font-size: 14px; line-height: 1.6; color: var(--on-dark-2); }

/* ---------- about -------------------------------------------------------- */

.about p {
  font-size: 17px;
  line-height: 1.68;
  color: var(--muted);
  margin-bottom: 16px;
}
.about__values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.value { border-left: 2px solid var(--brand); padding-left: 18px; }
.value h3 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.value p  { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- testimonials ------------------------------------------------- */

.rating-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 26px;
}
.rating-badge__score {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}
.rating-badge__label { font-size: 13.5px; font-weight: 600; color: var(--muted); }

.stars { color: var(--brand); font-size: 15px; letter-spacing: .14em; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 31, 48, .09);
}
.quote .stars { display: block; margin-bottom: 16px; }
.quote blockquote {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--body);
  margin: 0 0 22px;
}
.quote figcaption { display: flex; align-items: center; gap: 14px; }
.quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: none;
  background: repeating-linear-gradient(135deg, var(--ph-a) 0 6px, var(--ph-b) 6px 12px);
}
.quote__name { font-size: 14.5px; font-weight: 700; }
.quote__city { font-size: 13px; color: var(--muted-2); font-weight: 600; }

/* ---------- support ------------------------------------------------------ */

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  background: #fff;
}
.panel h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }

.bullets { display: flex; flex-direction: column; gap: 16px; }
.bullets li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}
.bullets li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 8px;
}

.panel__note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted-2);
  font-style: italic;
}

.panel--dark {
  background: linear-gradient(150deg, var(--ink), var(--ink-700));
  color: #fff;
  border: 0;
}
.panel--dark h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
  text-wrap: pretty;
}
.panel--dark p {
  font-size: 15.5px;
  line-height: 1.66;
  color: var(--on-dark);
  margin-bottom: 26px;
}
.panel__actions { display: flex; flex-direction: column; gap: 12px; }
.panel__actions .btn { font-size: 15px; padding: 15px 24px; text-align: center; }
.panel__actions .btn--primary { box-shadow: none; }
.panel__actions .btn--primary:hover { transform: none; }
.panel__actions .btn--ghost { border-color: rgba(255, 255, 255, .3); }

/* ---------- FAQ ---------------------------------------------------------- */

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 26px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--brand);
  font-size: 22px;
  font-weight: 400;
  flex: none;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
}

/* ---------- contact ------------------------------------------------------ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px;
  align-items: stretch;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-list dt,
.contact-list__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.contact-list__value {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.contact-list__value a:hover { color: var(--ink); }

.map-frame {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ---------- closing CTA -------------------------------------------------- */

.cta {
  background: radial-gradient(120% 100% at 20% 10%, var(--ink-700), var(--ink) 60%);
  color: #fff;
  padding: 88px 24px;
}
.cta__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cta p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--on-dark);
  margin-bottom: 32px;
}
.cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn { padding: 17px 34px; }
.cta .btn--ghost { border-color: rgba(255, 255, 255, .3); }

/* ---------- footer ------------------------------------------------------- */

.site-footer {
  background: var(--ink-900);
  color: #fff;
  padding: 64px 24px 32px;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-footer__logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.site-footer__about {
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--on-dark-4);
  max-width: 300px;
}
.site-footer h3 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-lite);
  margin-bottom: 16px;
}
.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--on-dark-3);
}
.site-footer a { color: var(--on-dark-3); }
.site-footer a:hover,
.site-footer a:focus-visible { color: #fff; }
.site-footer__addr {
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--on-dark-3);
  margin-bottom: 12px;
}
.site-footer__hours {
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--on-dark-4);
  margin-bottom: 14px;
}
.site-footer__maps { font-size: 14.5px; font-weight: 700; color: var(--brand-lite); }
.site-footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--on-dark-5);
}
.site-footer__bottom a { color: var(--on-dark-5); }
.site-footer__bottom span:last-child { display: flex; gap: 20px; }

/* ---------- WhatsApp floating button ------------------------------------- */

.wa-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .42);
  transition: transform .3s ease;
}
.wa-fab:hover,
.wa-fab:focus-visible { transform: scale(1.08); }
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulsering 2.4s ease-out infinite;
}

/* ---------- responsive --------------------------------------------------- */

/* ==========================================================================
   Catálogo + Página de produto
   ========================================================================== */

/* -- sticky sub-header used on inner pages (not the home hero header) ---- */
.subheader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.subheader .site-header__inner { padding: 14px 24px; }

/* -- breadcrumb ------------------------------------------------------------ */
.crumb {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted-2);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.crumb a { color: var(--muted-2); }
.crumb a:hover { color: var(--brand); }
.crumb span[aria-hidden] { opacity: .5; }
.crumb .crumb__current { color: var(--ink); }
.crumb--on-dark, .crumb--on-dark a { color: #8FB6CF; }
.crumb--on-dark .crumb__current { color: #fff; }
.crumb--on-dark a:hover { color: #fff; }

/* -- page hero (catalog) --------------------------------------------------- */
.page-hero {
  background: linear-gradient(160deg, var(--ink), var(--ink-700));
  color: #fff;
  padding: 24px 24px 64px;
}
.page-hero h1 {
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
  max-width: 760px;
  margin-top: 22px;
  text-wrap: pretty;
}
.page-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--on-dark);
  max-width: 640px;
  margin-top: 16px;
}

/* -- toolbar (search / filters / sort) ------------------------------------- */
.toolbar {
  position: sticky;
  top: 68px;
  z-index: 30;
  background: #fff;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.toolbar__row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.search-field { position: relative; flex: 1 1 280px; min-width: 240px; }
.search-field svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  pointer-events: none;
}
.search-field input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  font-size: 15px;
  background: #F8FBFD;
  outline: none;
  color: var(--ink);
}
.search-field input:focus-visible { border-color: var(--brand); }

.field-select {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 600;
  background: #F8FBFD;
  color: var(--ink);
  outline: none;
}
.field-select:focus-visible { border-color: var(--brand); }
.field-select--sort { margin-left: auto; }

.toolbar__count {
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted-2);
}

/* -- product grid + card ---------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(10, 31, 48, .12);
  border-color: var(--border-hi);
}
.product-card__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
}
.product-card__media .ph__label { padding: 0 16px; font-size: 11px; }
.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 31, 48, .86);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--pill);
}
.product-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-card__brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.product-card h3 { font-size: 17px; font-weight: 800; line-height: 1.28; letter-spacing: -.01em; margin-bottom: 6px; }
.product-card h3 a { color: var(--ink); }
.product-card h3 a:hover { color: var(--brand); }
.product-card__spec { font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.product-card__summary { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin-bottom: 16px; }

.product-card__facts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  margin-bottom: 16px;
}
.product-card__facts div { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.product-card__facts span:first-child { color: var(--muted-2); font-weight: 600; }
.product-card__facts span:last-child { font-weight: 700; text-align: right; max-width: 60%; }

.product-card__footer { margin-top: auto; }
.price-cash { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.price-cash small { font-size: 12px; font-weight: 700; color: var(--muted-2); margin-left: 6px; }
.price-install { font-size: 12.5px; font-weight: 600; color: var(--muted); margin-top: 2px; }
.price-quote { font-size: 15px; font-weight: 800; color: var(--brand); }
.product-card__price { margin-bottom: 14px; }
.btn--block { display: block; width: 100%; text-align: center; font-size: 14.5px; padding: 13px 18px; }

/* -- empty state ------------------------------------------------------------ */
.empty-state {
  padding: 80px 24px;
  text-align: center;
  border: 1px dashed var(--border-hi);
  border-radius: 22px;
  background: #F8FBFD;
}
.empty-state h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.empty-state p { font-size: 15px; color: var(--muted); margin-bottom: 22px; }

.fine-print { margin-top: 32px; font-size: 13px; line-height: 1.6; color: var(--muted-2); }

/* -- product detail page ---------------------------------------------------- */
.pdp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 56px;
  align-items: start;
}
.pdp-gallery__main {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  gap: 10px;
}
.pdp-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pdp-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: repeating-linear-gradient(135deg, #F2F7FA 0 10px, #E8F0F6 10px 20px);
  cursor: pointer;
  font: 600 10px/1.4 var(--mono);
  letter-spacing: .08em;
  color: var(--muted-2);
  text-transform: uppercase;
  padding: 6px;
  transition: border-color .3s ease, color .3s ease;
}
.pdp-thumb:hover, .pdp-thumb:focus-visible { border-color: var(--brand); color: var(--brand); }
.pdp-thumb.is-active { border-color: var(--brand); color: var(--brand); }

.pdp-tags { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pdp-tag {
  background: var(--brand-wash);
  color: var(--brand);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--pill);
}
.pdp-brand { font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted-2); }

.pdp h1 { font-size: clamp(28px, 3.6vw, 38px); line-height: 1.12; letter-spacing: -.03em; font-weight: 800; margin-bottom: 12px; text-wrap: pretty; }
.pdp-code { font-size: 14px; font-weight: 600; color: var(--muted-2); margin-bottom: 22px; }
.pdp-summary { font-size: 16.5px; line-height: 1.68; color: var(--muted); margin-bottom: 28px; }

.pdp-buybox {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  background: #F8FBFD;
  margin-bottom: 26px;
}
.pdp-buybox__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.pdp-buybox__price strong { font-size: 34px; font-weight: 800; letter-spacing: -.03em; }
.pdp-buybox__price span { font-size: 13.5px; font-weight: 700; color: var(--muted-2); }
.pdp-buybox__install { font-size: 14.5px; font-weight: 600; color: var(--muted); margin-bottom: 20px; }
.pdp-buybox__quote { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.pdp-buybox__quote-note { font-size: 14.5px; font-weight: 600; color: var(--muted); margin-bottom: 20px; }
.pdp-buybox__actions { display: flex; flex-direction: column; gap: 10px; }
.pdp-buybox__actions .btn { text-align: center; }
.pdp-buybox__actions .btn--primary { font-size: 16px; padding: 16px 24px; }
.pdp-buybox__fine { margin-top: 16px; font-size: 12.5px; line-height: 1.6; color: var(--muted-2); }

.pdp-checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.pdp-checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--body); }
.pdp-checks li::before {
  content: "✓";
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-wash);
  color: var(--brand);
  font-size: 12px;
  display: grid;
  place-items: center;
}

/* -- specs / perks / benefits ------------------------------------------------ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}
.spec-panel { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 34px; }
.spec-panel h2 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 22px; }
.spec-table { display: flex; flex-direction: column; }
.spec-table div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.spec-table span:first-child { color: var(--muted-2); font-weight: 600; }
.spec-table span:last-child { font-weight: 700; text-align: right; }
.spec-panel__note { margin-top: 18px; font-size: 12.5px; line-height: 1.6; color: var(--muted-2); }

.aside-stack { display: flex; flex-direction: column; gap: 20px; }
.perks-panel { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 30px; }
.perks-panel h2 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 18px; }
.perks-list { display: flex; flex-direction: column; gap: 12px; }
.perks-list li { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.6; color: var(--body); }
.perks-list li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); margin-top: 8px; }

.benefits-panel { background: var(--ink); color: #fff; border-radius: 24px; padding: 30px; }
.benefits-panel h2 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.benefits-panel ul { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; line-height: 1.6; color: var(--on-dark-3); }

/* -- related products -------------------------------------------------------- */
.related-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.related-card:hover {
  color: inherit;
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(10, 31, 48, .12);
  border-color: var(--border-hi);
}
.related-card__media { aspect-ratio: 4 / 3; }
.related-card__media .ph__label { padding: 0 14px; font-size: 11px; }
.related-card__body { padding: 20px; display: block; }
.related-card__brand { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 7px; }
.related-card__model { display: block; font-size: 16px; font-weight: 800; line-height: 1.28; margin-bottom: 6px; }
.related-card__spec { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.related-card__price { display: block; font-size: 14.5px; font-weight: 800; color: var(--ink); }

@media (max-width: 720px) {
  .toolbar { top: 0; }
  .field-select--sort { margin-left: 0; }
}

@media (max-width: 860px) {
  .site-nav {
    order: 3;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: 0;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { white-space: nowrap; }
  .site-header__cta { margin-left: auto; }
}

@media (max-width: 640px) {
  .section { padding: 72px 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero__disc { width: 76vw; top: 30%; }
  .split { gap: 40px; }
  .panel { padding: 26px; }
  .wa-fab { right: 18px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
