:root {
  --blue: #32438b;
  --blue-dark: #202e68;
  --blue-soft: #edf0fb;
  --yellow: #fec32b;
  --yellow-dark: #dba000;
  --ink: #111827;
  --text: #3d4658;
  --muted: #697386;
  --line: #dfe3eb;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --success: #16834b;
  --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.07);
  --shadow-md: 0 18px 48px rgba(17, 24, 39, 0.1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --header-height: 80px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(50, 67, 139, 0.35);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

p {
  margin-bottom: 20px;
  color: var(--text);
}

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(46px, 5.5vw, 76px);
}

.section--soft {
  background: var(--surface-soft);
}

.section--blue {
  color: #fff;
  background: var(--blue);
}

.section--blue h2,
.section--blue h3,
.section--blue p {
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head > * {
  margin-bottom: 0;
}

.section-head p {
  max-width: 510px;
  justify-self: end;
}

.eyebrow,
.kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 22px;
  height: 4px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
}

.lead {
  max-width: 700px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  background: rgba(50, 67, 139, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  gap: 28px;
  align-items: center;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.logo-img {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.navlinks {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}

.navlinks a {
  position: relative;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.navlinks a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 3px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.navlinks a:hover,
.navlinks a[aria-current="page"] {
  color: #fff;
}

.navlinks a:hover::after,
.navlinks a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn.mobile-menu {
  display: none;
}

.mobile-nav {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 20px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(50, 67, 139, 0.2);
  transform: translateY(-2px);
}

.btn--yellow,
.btn.whats {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.btn--yellow:hover,
.btn.whats:hover {
  color: var(--ink);
  background: #ffcf52;
  border-color: #ffcf52;
  box-shadow: 0 10px 24px rgba(254, 195, 43, 0.28);
}

.btn--outline,
.btn.ghost {
  color: var(--blue);
  background: transparent;
  border-color: rgba(50, 67, 139, 0.3);
}

.btn--outline:hover,
.btn.ghost:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 100px);
  background: var(--surface);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  content: "";
  border: 80px solid var(--blue-soft);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

.hero-copy h1 {
  width: 23ch;
  max-width: 100%;
  font-size: clamp(2.5rem, 3.7vw, 3.4rem);
}

.hero .hero-media,
.hero .hero-media img {
  min-height: 500px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--blue-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  padding: 18px 20px;
  gap: 14px;
  align-items: center;
  color: #fff;
  background: rgba(32, 46, 104, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.hero-badge strong {
  display: block;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.hero-badge__icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  place-items: center;
}

.trust-bar {
  padding-block: 20px;
  color: #fff;
  background: var(--blue);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.trust-list li {
  display: flex;
  min-height: 54px;
  padding-inline: 22px;
  gap: 11px;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-list li:last-child {
  border-right: 0;
}

.trust-list svg {
  flex: 0 0 20px;
  color: var(--yellow);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

a.card:hover {
  border-color: rgba(50, 67, 139, 0.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.card > :last-child {
  margin-bottom: 0;
}

.card__icon,
.icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--blue);
  background: var(--yellow);
  border-radius: 14px;
  font-weight: 800;
  place-items: center;
}

.card__link {
  display: inline-flex;
  margin-top: 14px;
  gap: 8px;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
}

.equip-card {
  display: flex;
  min-width: min(350px, 86vw);
  min-height: 500px;
  padding: 0;
  flex: 0 0 calc((100% - 48px) / 3);
  flex-direction: column;
}

.equip-card__media,
.photo-slot {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
}

.equip-card__media img,
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 320ms ease;
}

.equip-card:hover .equip-card__media img,
.equip-card:hover .photo-slot img {
  transform: scale(1.04);
}

.equip-card__body {
  display: flex;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.equip-card__body .card__link {
  margin-top: auto;
}

.featured-carousel-wrap {
  position: relative;
}

.featured-carousel {
  display: flex;
  overflow-x: auto;
  padding: 4px 4px 24px;
  gap: 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.featured-carousel::-webkit-scrollbar {
  display: none;
}

.featured-carousel > * {
  scroll-snap-align: start;
}

.carousel-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

.carousel-btn {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.55rem;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  place-items: center;
}

.carousel-btn:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.band {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 70px);
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius-lg);
}

.band::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  content: "";
  border: 54px solid rgba(254, 195, 43, 0.13);
  border-radius: 50%;
}

.band > * {
  position: relative;
  z-index: 1;
}

.band h2,
.band h3,
.band p {
  color: #fff;
}

.band .kicker {
  color: var(--yellow);
}

.band .kicker::before {
  background: #fff;
}

.step {
  position: relative;
}

.step-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.step-number::after {
  width: 9px;
  height: 9px;
  margin: 8px 0 0 4px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.brand-carousel {
  overflow-x: auto;
  cursor: grab;
  scroll-behavior: auto;
  scrollbar-width: none;
}

.brand-carousel-shell {
  position: relative;
  padding-inline: 64px;
}

.brand-carousel::-webkit-scrollbar {
  display: none;
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 0;
}

.brand-set {
  display: flex;
  padding-right: 20px;
  gap: 20px;
}

.brand-carousel .brand-item {
  width: min(360px, 72vw);
  flex: 0 0 min(360px, 72vw);
}

.brand-carousel .brand-item img {
  width: 210px;
  height: 92px;
  object-fit: contain;
}

.brand-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: color var(--transition), background var(--transition), transform var(--transition);
  place-items: center;
}

.brand-arrow:hover {
  color: #fff;
  background: var(--blue);
  transform: translateY(-50%) scale(1.05);
}

.brand-arrow--prev {
  left: 4px;
}

.brand-arrow--next {
  right: 4px;
}

.catalog-callout,
.regional-callout {
  padding-block: clamp(52px, 6vw, 76px);
}

.catalog-callout__inner {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.catalog-callout__inner > div {
  max-width: 760px;
}

.catalog-callout h2,
.regional-callout h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

.catalog-callout p,
.regional-callout p {
  margin-bottom: 0;
}

.catalog-callout .btn {
  flex: 0 0 auto;
}

.regional-callout__inner {
  max-width: 900px;
  text-align: center;
}

.regional-callout .kicker {
  justify-content: center;
}

.regional-callout p {
  max-width: 720px;
  margin-inline: auto;
}

.regional-callout .btn {
  margin-top: 24px;
}

.home-differentials,
.home-steps,
.brands-section {
  padding-block: clamp(58px, 6vw, 84px);
}

.home-differentials .band {
  padding: clamp(32px, 4vw, 48px);
}

.home-differentials .band h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.home-differentials .band p {
  margin-bottom: 12px;
}

.home-differentials .band .grid {
  gap: 18px;
}

.home-differentials .band h3 {
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.home-steps .section-head {
  margin-bottom: 28px;
}

.home-steps .section-head h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.home-steps .card {
  min-height: 0;
  padding: 22px;
}

.home-steps .step-number {
  margin-bottom: 14px;
  font-size: 2.15rem;
}

.home-steps .card h3 {
  font-size: 1.05rem;
}

.home-steps .card p {
  margin-bottom: 0;
  font-size: 0.91rem;
}

.brand-item {
  display: grid;
  min-height: 150px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  place-items: center;
}

.brand-item img {
  width: auto;
  max-width: 170px;
  max-height: 64px;
  object-fit: contain;
}

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

.area-list a,
.area-item {
  display: flex;
  min-height: 84px;
  padding: 18px 22px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  background: var(--surface-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.area-list a::after {
  content: "→";
}

.area-list a:hover {
  background: #fff;
  border-color: rgba(50, 67, 139, 0.25);
  transform: translateY(-3px);
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 24px 54px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 34px;
  height: 34px;
  content: "+";
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  transform: translateY(-50%);
  place-items: center;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 820px;
  padding: 0 54px 22px 0;
}

.page-hero {
  padding-block: clamp(60px, 8vw, 105px);
  background: var(--surface-soft);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 60px;
  align-items: center;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.page-hero__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  padding-block: 18px;
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.breadcrumb ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #a0a7b3;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.catalog-toolbar {
  display: flex;
  margin-bottom: 36px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.catalog-filters {
  display: flex;
  overflow-x: auto;
  padding-bottom: 6px;
  gap: 8px;
  scrollbar-width: none;
}

.catalog-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
}

.filter-btn:hover,
.filter-btn.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.product-image {
  display: grid;
  overflow: hidden;
  min-height: 560px;
  padding: 40px;
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  place-items: center;
}

.product-image img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.product-summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.product-summary h1 {
  font-size: clamp(2.35rem, 4vw, 4.1rem);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn {
  color: var(--blue);
  background: #fff;
  border-color: rgba(50, 67, 139, 0.28);
}

.share-btn:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

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

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  background: var(--yellow);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--yellow-dark);
}

.content-block {
  max-width: 820px;
}

.content-block + .content-block {
  margin-top: 48px;
}

.safety-box {
  padding: 28px;
  background: #fff9e8;
  border: 1px solid #f2d47c;
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius-sm);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 40px;
}

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

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  padding: 20px;
  gap: 14px;
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
}

.contact-item__icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: var(--yellow);
  border-radius: 12px;
  place-items: center;
}

.contact-item strong,
.contact-item span {
  display: block;
}

.contact-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.map-frame {
  overflow: hidden;
  min-height: 540px;
  background: var(--surface-soft);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 540px;
  border: 0;
}

.float-wa {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  min-width: 196px;
  min-height: 58px;
  padding: 10px 20px 10px 12px;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(8, 78, 37, 0.28);
  color: #fff !important;
  background: #25d366 !important;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.float-wa svg {
  width: 38px;
  height: 38px;
  padding: 7px;
  flex: 0 0 38px;
  color: #25d366;
  background: #fff;
  border-radius: 50%;
}

.float-wa:hover {
  color: #fff !important;
  background: #1fbd5a !important;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.3);
}

.footer {
  padding-block: 72px 28px;
  color: rgba(255, 255, 255, 0.74);
  background: #17214c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 48px;
}

.footer .logo-img {
  height: 52px;
}

.footer h2,
.footer h3,
.footer strong {
  color: #fff;
}

.footer h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.footer-bottom {
  display: flex;
  margin-top: 56px;
  padding-top: 22px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.83rem;
}

.footer-bottom p {
  margin: 0;
}

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

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

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  :root {
    --header-height: 72px;
  }

  .nav {
    min-height: var(--header-height);
  }

  .logo-img {
    height: 40px;
  }

  .nav > .btn.whats {
    display: none;
  }

  .hero-grid,
  .page-hero__grid,
  .product-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-media img {
    min-height: 480px;
  }

  .product-summary {
    position: static;
  }

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

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

@media (max-width: 760px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav {
    gap: 12px;
  }

  .nav .logo {
    min-width: 0;
  }

  .nav .logo-img {
    width: min(210px, 62vw);
    height: auto;
  }

  .section {
    padding-block: 44px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 32px;
  }

  .section-head p {
    justify-self: start;
  }

  .btn.mobile-menu {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .mobile-nav summary {
    display: flex;
    min-height: 44px;
    padding: 9px 13px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary::before {
    content: "☰";
    font-size: 1.15rem;
    line-height: 1;
  }

  .mobile-nav[open] summary::before {
    content: "×";
  }

  .mobile-nav summary:hover {
    color: var(--blue);
    background: #fff;
    border-color: #fff;
  }

  .mobile-nav__close {
    display: none;
  }

  .mobile-nav[open] .mobile-nav__open {
    display: none;
  }

  .mobile-nav[open] .mobile-nav__close {
    display: inline;
  }

  .mobile-nav__links {
    position: fixed;
    z-index: 1200;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    padding: 18px 20px 28px;
    flex-direction: column;
    background: var(--blue);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.2);
  }

  .mobile-nav__links a {
    padding: 15px 4px;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-nav__links a:last-child {
    border-bottom: 0;
  }

  .navlinks {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--blue);
    border-top: 1px solid var(--line);
    z-index: 1100;
  }

  .navlinks.is-open {
    display: flex;
  }

  .navlinks a {
    padding: 18px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .navlinks a::after {
    display: none;
  }

  .hero {
    padding-block: 40px 46px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    width: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.35rem, 9vw, 3.15rem);
  }

  .hero-copy .lead {
    max-width: 100%;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    white-space: normal;
  }

  .catalog-callout__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .catalog-callout .btn {
    width: 100%;
  }

  .brand-carousel-shell {
    padding-inline: 46px;
  }

  .brand-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.45rem;
  }

  .hero-grid {
    gap: 40px;
    min-width: 0;
  }

  .hero-media,
  .hero-media img {
    width: 100%;
    min-width: 0;
    min-height: 360px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-list li {
    min-height: 70px;
    padding-inline: 12px;
  }

  .trust-list li:nth-child(2) {
    border-right: 0;
  }

  .trust-list li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .cols-2,
  .cols-3,
  .cols-4,
  .brand-list,
  .area-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid > *,
  .section-head > *,
  .product-layout > *,
  .contact-grid > * {
    min-width: 0;
  }

  .equip-card {
    flex-basis: 86vw;
    min-height: 470px;
  }

  .band {
    margin-inline: -2px;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .product-image {
    min-height: 400px;
    padding: 24px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 420px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .float-wa {
    right: 14px;
    bottom: 14px;
    min-width: 172px;
    min-height: 50px;
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav .logo-img {
    width: min(190px, 58vw);
  }

  .product-actions .btn {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 300px;
  }

  .hero-badge {
    padding: 14px;
  }

  .hero-badge__icon {
    display: none;
  }

  .card {
    padding: 24px;
  }

  .equip-card {
    padding: 0;
  }

  .float-wa {
    width: auto;
    border-radius: 999px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar,
  .float-wa,
  .carousel-actions,
  .footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 32px;
  }
}
