:root {
  --blue: #2e3192;
  --blue-2: #3536a4;
  --blue-dark: #0f115b;
  --blue-darker: #252770;
  --orange: #f58345;
  --text: #333;
  --muted: #555;
  --gray: #f7f7f7;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: #fff;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.01em;
}

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

.container {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

section[id] { scroll-margin-top: 101px; }

.section-light { background: #fff; }
.section-gray { background: var(--gray); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-row {
  height: 101px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 72px;
  height: 70px;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  color: #444;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 11px 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle span + span { margin-top: 7px; }

.mobile-menu-backdrop {
  position: fixed;
  inset: 101px 0 0;
  background: rgba(9, 11, 44, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.mobile-nav {
  position: fixed;
  top: 101px;
  right: 0;
  width: min(320px, 84vw);
  max-height: calc(100dvh - 101px);
  overflow: auto;
  background: #fff;
  border-left: 1px solid #ececec;
  box-shadow: -8px 0 24px rgba(0, 0, 0, .14);
  padding: 16px;
  display: grid;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .26s ease;
  z-index: 80;
}

.mobile-nav a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 12px 10px;
  border-radius: 8px;
}

.mobile-nav a:hover { background: #f6f7fc; }

body.menu-open { overflow: hidden; }

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

body.menu-open .mobile-nav { transform: translateX(0); }

body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

section { padding: 80px 0; }

.hero {
  padding: 112px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 616px 462px;
  justify-content: space-between;
  align-items: center;
}

.hero-copy h1 {
  color: var(--blue);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.15;
}

.hero-copy .lead {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  font-weight: 400;
}

.hero-copy .sublead {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
}

.hero-badges {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 302px);
  gap: 12px;
}

.hero-badges span {
  height: 32px;
  border-radius: 10px;
  background: #eef0fb;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--blue);
  font-size: 12.8px;
  font-weight: 400;
}

.hero-badges img { width: 16px; height: 16px; }

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.btn {
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: .2s ease;
}

.btn img { width: 20px; height: 20px; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.1);
  padding: 18px 32px;
}

.btn-primary:hover { background: #ea7534; }

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 16px 34px;
}

.btn.large {
  padding: 20px 40px;
  font-size: 18px;
  line-height: 28px;
}

.hero-photo-wrap {
  position: relative;
  width: 462px;
  height: 616px;
}

.hero-photo-wrap .bg-accent,
.hero-photo-wrap .bg-blue {
  position: absolute;
  width: 270px;
  border-radius: 14px;
}

.hero-photo-wrap .bg-accent {
  top: 76px;
  left: 39px;
  height: 348px;
  background: var(--orange);
}

.hero-photo-wrap .bg-blue {
  top: 93px;
  left: 56px;
  height: 378px;
  background: var(--blue-2);
}

.hero-photo {
  width: 462px;
  height: 616px;
  border-radius: 14px;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.trust-strip {
  margin-top: 64px;
  background: #f7f7f7;
  border-radius: 14px;
  min-height: 62.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: #555;
  font-size: 15px;
}

.divider { color: var(--blue); margin-left: 8px; }

.section-title h2 {
  text-align: center;
  color: var(--blue);
  font-size: 36px;
  line-height: 45px;
  font-weight: 400;
}

.centered-text {
  max-width: 1024px;
  margin-top: 40px;
  display: grid;
  gap: 16px;
  text-align: center;
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

.centered-text.single {
  max-width: 672px;
  margin-top: 24px;
  gap: 12px;
}

.problem-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-grid article {
  min-height: 96px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.problem-grid img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #eef0fb;
  padding: 12px;
}

.problem-grid span {
  font-size: 16px;
  line-height: 24px;
  color: #333;
}

.tri-grid {
  margin-top: 37px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solution-card {
  min-height: 353px;
  border-radius: 14px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 6px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.1);
  background: #fff;
  text-align: center;
  padding: 32px;
}

.solution-card.featured {
  background: var(--blue);
  border-color: transparent;
}

.round-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #eef0fb;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.round-icon.warm { background: rgba(245,131,69,.2); }
.round-icon img { width: 32px; height: 32px; }

.solution-card h3 {
  margin-top: 24px;
  color: var(--blue);
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  font-size: 33px;
  line-height: 33px;
}

.solution-card.featured h3 { color: #fff; }

.solution-card p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: #555;
}

.solution-card.featured p { color: rgba(255,255,255,.85); }

.centered { margin-top: 37px; text-align: center; }

.clima-grid {
  display: grid;
  grid-template-columns: 616px 616px;
  justify-content: space-between;
}

.clima-grid h2 {
  color: var(--blue);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 51px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.clima-grid p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.clima-panel {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.1);
  padding: 33px;
}

.clima-panel h3 {
  color: var(--blue);
  font-family: "Funnel Display", sans-serif;
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
}

.clima-panel ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}

.clima-panel li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
}

.clima-panel strong {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 500;
}

.note {
  margin-top: 32px;
  background: #fff4ee;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 20px 24px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.segment-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.segment-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.05);
}

.segment-media {
  position: relative;
  overflow: hidden;
  height: 160px;
}

.segment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.segment-card:hover .segment-media img { transform: scale(1.06); }

.segment-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.62) 100%);
}

.segment-icon {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  z-index: 2;
  display: grid;
  place-items: center;
}

.segment-icon img { width: 20px; height: 20px; }

.segment-card h3 {
  color: var(--blue);
  font-family: "Funnel Display", sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
  padding: 16px;
}

.cases .orange {
  color: var(--orange);
  font-family: "Funnel Display", sans-serif;
  font-size: 18px;
  line-height: 27px;
}

.cases-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.case-card {
  min-height: 168px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.1);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px 16px;
}

.case-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #eef0fb;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.case-icon img { width: 24px; height: 24px; }

.case-card h3 {
  margin-top: 16px;
  color: var(--blue);
  font-family: "Funnel Display", sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
}

.case-tag {
  margin: 8px auto 0;
  border-radius: 999px;
  background: #fff4ee;
  color: var(--orange);
  padding: 4px 8px;
  font-size: 12px;
  line-height: 16px;
}

.case-logo {
  width: 136px;
  margin: 0 auto 10px;
}

.nested-products {
  background: var(--blue);
  padding: 110px 0 72px;
}

.nested-products h2 {
  text-align: center;
  color: #fff;
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  margin-bottom: 40px;
}

.nested-products h2 span { color: var(--orange); font-weight: 700; }

.outer-wrap {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 24px;
}

.mobile-outer-controls {
  display: none;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.mobile-arrow {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 23px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.24);
}

.mobile-arrow:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.arrow {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.outer-viewport { overflow: hidden; }
.outer-track { display: flex; transition: transform .35s ease; }
.outer-slide { min-width: 100%; }

.line-shell {
  min-height: 468px;
  border-radius: 14px;
  border: 1px solid var(--orange);
  background: var(--blue-dark);
  padding: 34px 60px 32px;
  text-align: center;
}

.line-shell h3 {
  color: #fff;
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
}

.line-sub {
  margin-top: 6px;
  color: #fff;
  font-size: 26px;
  line-height: 26px;
  font-weight: 300;
}

.line-description {
  margin-top: 12px;
  color: #d9dcff;
  font-size: 15px;
  line-height: 1.5;
}

.line-tabs-wrapper {
  margin-top: 16px;
}

.line-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.line-tab {
  border: 1px solid rgba(242, 138, 67, 0.45);
  background: transparent;
  color: #f7c9ac;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all .2s ease;
}

.line-tab.active {
  background: #f28a43;
  color: #fff;
  border-color: #f28a43;
}

.line-tabs-panels {
  margin-top: 8px;
}

.line-tab-panel[hidden] {
  display: none;
}

.inner-viewport {
  margin-top: 20px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.inner-viewport.is-dragging { cursor: grabbing; }
.inner-viewport.is-dragging img { pointer-events: none; }

.inner-track { display: flex; transition: transform .3s ease; }

.product-item {
  min-width: 50%;
  padding: 0 10px;
}

.product-frame {
  height: 199px;
  border-radius: 14px;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-frame img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  object-fit: contain;
  object-position: center center;
  --img-shift-x: 0px;
  --img-shift-y: 0px;
  --img-scale: 1.24;
  transform: translate(-50%, -50%) translate(var(--img-shift-x), var(--img-shift-y)) scale(var(--img-scale));
  transform-origin: center center;
  padding: 8px 10px 34px;
  transition: transform .25s ease, opacity .2s ease;
}

.product-name {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 40px;
  border-radius: 14px;
  background: rgba(0,0,0,.71);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  background: #f28a43;
  color: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.inner-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.inner-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #1f2280;
  cursor: pointer;
}

.inner-dots button.active { background: #fff; }
.inner-dots button.active.first { background: var(--orange); }

.line-foot {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.line-foot .btn {
  padding: 13px 24px;
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

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

.check-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 410px));
  justify-content: center;
  gap: 16px;
}

.check-grid span {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 24px;
}

.check-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background: center/contain no-repeat url("./assets/icones/figma-about-check.svg");
}

.highlight-bar {
  margin-top: 32px;
  max-width: 913px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 32px;
  line-height: 1.45;
  text-align: center;
  padding: 24px;
  font-family: "Outfit", sans-serif;
}

.simple-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.simple-grid article {
  min-height: 213px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.1);
  padding: 24px;
}

.simple-grid .line-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #eef0fb;
  display: grid;
  place-items: center;
}

.simple-grid .line-icon img { width: 24px; height: 24px; }

.simple-grid h3 {
  margin-top: 16px;
  color: var(--blue);
  font-family: "Funnel Display", sans-serif;
  font-size: 27px;
  line-height: 27px;
  font-weight: 500;
}

.simple-grid p {
  margin-top: 8px;
  color: #666;
  font-size: 14.4px;
  line-height: 1.55;
}

.region-box {
  margin-top: 32px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.1);
  padding: 32px;
}

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

.region-grid span {
  min-height: 56px;
  border-radius: 10px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.region-grid img { width: 20px; height: 20px; }

.region-note {
  margin-top: 20px;
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  background: #eef0fb;
  color: #444;
  font-size: 15.2px;
  line-height: 1.65;
  padding: 20px 24px;
}

.faq .narrow {
  max-width: 896px;
  text-align: center;
  margin: 0 auto;
}

.faq .narrow p {
  margin-top: 12px;
  color: #555;
  font-size: 18px;
}

.faq-list {
  margin-top: 32px;
  max-width: 896px;
}

.faq-list details {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.05);
  margin-bottom: 12px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 24px;
  color: var(--blue);
  font-family: "Funnel Display", sans-serif;
  font-size: 17px;
  line-height: 25.5px;
  position: relative;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: center/contain no-repeat url("./assets/icones/figma-faq-chevron.svg");
}

.faq-list details[open] summary::after { transform: translateY(-50%) rotate(180deg); }

.faq-list p {
  padding: 0 24px 20px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.cta {
  background: var(--blue);
  padding: 96px 0;
}

.cta-inner {
  max-width: 896px;
  text-align: center;
  color: #fff;
}

.cta-inner h2 {
  font-size: 52px;
  line-height: 1.18;
  font-weight: 400;
  margin-bottom: 32px;
}

.cta-inner p {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.cta-inner .btn { margin-top: 12px; }

.cta-inner small {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
}

.footer-strip {
  height: 46px;
  background: var(--blue-darker);
  color: rgba(255,255,255,.9);
  display: grid;
  place-items: center;
  font-size: 13px;
  letter-spacing: .01em;
}

@media (max-width: 1300px) {
  .hero-grid { grid-template-columns: 1fr 420px; gap: 24px; }
  .hero-photo-wrap { width: 420px; height: 575px; }
  .hero-photo { width: 420px; height: 575px; }
  .hero-badges { grid-template-columns: 1fr 1fr; }
  .segment-grid, .cases-grid, .simple-grid { grid-template-columns: repeat(2, 1fr); }
  .tri-grid { grid-template-columns: 1fr; }
  .clima-grid { grid-template-columns: 1fr; gap: 24px; }
  .line-shell { padding: 30px 28px 24px; }
  .product-frame { height: 186px; }
}

@media (max-width: 980px) {
  section { padding: 56px 0; }
  .header-row { height: 86px; }
  section[id] { scroll-margin-top: 86px; }
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu-backdrop { inset: 86px 0 0; }
  .mobile-nav {
    top: 86px;
    max-height: calc(100dvh - 86px);
  }
  .hero { padding-top: 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { font-size: 36px; line-height: 1.18; }
  .hero-copy .lead,
  .hero-copy .sublead { margin-left: auto; margin-right: auto; }
  .hero-photo-wrap { width: 336px; height: 455px; margin: 0 auto; }
  .hero-photo { width: 336px; height: 455px; }
  .hero-photo-wrap .bg-accent { width: 206px; height: 278px; top: 44px; left: 18px; }
  .hero-photo-wrap .bg-blue { width: 206px; height: 303px; top: 58px; left: 30px; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; justify-content: center; }
  .hero-actions .btn { width: min(420px, 100%); }
  .trust-strip { flex-wrap: wrap; min-height: auto; padding: 12px; gap: 12px; }
  .problem-grid, .segment-grid, .cases-grid, .simple-grid { grid-template-columns: 1fr; }
  .section-title h2,
  .clima-grid h2,
  .nested-products h2,
  .cta-inner h2 {
    font-size: 32px;
    line-height: 1.28;
  }
  .check-grid { grid-template-columns: 1fr; }
  .highlight-bar { font-size: 24px; }
  .region-grid { grid-template-columns: 1fr; }
  .outer-wrap { grid-template-columns: 1fr; gap: 8px; }
  .arrow { display: none; }
  .mobile-outer-controls { display: flex; }
  .line-shell { padding: 28px 14px 20px; min-height: 420px; }
  .line-shell h3 { font-size: 36px; line-height: 1.1; }
  .line-sub { font-size: 22px; }
  .product-item { min-width: 50%; padding: 0 6px; }
  .product-name {
    font-size: 18px;
    height: 38px;
    padding: 0 12px;
  }
  .product-frame img {
    --img-scale: 1.16;
    padding: 10px 10px 36px;
  }
  .line-foot { justify-content: center; }
  .about .section-title h2,
  .about .centered-text {
    text-align: left;
  }
  .about .centered-text { margin-top: 18px; }
  .about .check-grid {
    justify-content: flex-start;
    gap: 12px;
  }
  .about .highlight-bar {
    text-align: left;
    font-size: 22px;
    line-height: 1.35;
  }
  .cta-inner p { font-size: 16px; }
}

@media (max-width: 760px) {
  .hero-copy h1 { font-size: 32px; }
  .section-title h2,
  .clima-grid h2,
  .nested-products h2,
  .cta-inner h2 { font-size: 29px; }
  .nested-products h2 { margin-bottom: 28px; }
  .product-name {
    font-size: 16px;
    height: 36px;
    padding: 0 10px;
  }
  .mobile-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  .product-item { min-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
