:root {
  --ink: #142029;
  --muted: #5f6b76;
  --line: #dfe4e8;
  --soft: #f3f5f7;
  --paper: #ffffff;
  --steel: #303b44;
  --navy: #102842;
  --red: #c92434;
  --red-bright: #ff4438;
  --orange: #dc5f39;
  --shadow: 0 18px 50px rgba(20, 32, 41, 0.14);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 24px rgba(20, 32, 41, 0.08);
  --shadow-medium: 0 14px 32px rgba(20, 32, 41, 0.11);
  --footer-media-height: 240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #dfe3e7;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

.site-shell {
  position: relative;
  isolation: isolate;
  width: min(100%, 1920px);
  margin: 0 auto;
  overflow: clip;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(20, 32, 41, 0.04);
  border-radius: var(--radius-lg);
}

.shell-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #eef2f5;
}

.shell-bg::before,
.shell-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shell-bg::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(220, 95, 57, 0.16) 0%, transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(16, 40, 66, 0.18) 0%, transparent 36%),
    radial-gradient(circle at 52% 48%, rgba(201, 36, 52, 0.08) 0%, transparent 42%);
  animation: shell-bg-glow 24s ease-in-out infinite alternate;
}

.shell-bg::after {
  inset: -35% -55%;
  background: linear-gradient(
    108deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 38%,
    rgba(255, 255, 255, 0.42) 49%,
    rgba(255, 255, 255, 0.14) 56%,
    transparent 68%
  );
  animation: shell-bg-sweep 11s ease-in-out infinite;
}

.shell-bg-svg {
  width: 100%;
  height: 100%;
}

.shell-bg-shapes .shell-roof-ridge,
.shell-bg-shapes .shell-metal-sheet,
.shell-bg-shapes .shell-brand-accent,
.shell-bg-shimmer {
  transform-box: view-box;
  transform-origin: center;
}

.shell-roof-ridge-a {
  animation: shell-roof-drift-a 36s ease-in-out infinite;
}

.shell-roof-ridge-b {
  animation: shell-roof-drift-b 42s ease-in-out infinite;
}

.shell-metal-sheet-a {
  animation: shell-sheet-drift-a 32s ease-in-out infinite;
}

.shell-metal-sheet-b {
  animation: shell-sheet-drift-b 38s ease-in-out infinite;
}

.shell-metal-sheet-c {
  animation: shell-sheet-drift-c 28s ease-in-out infinite;
}

.shell-brand-accent-a {
  animation: shell-accent-drift-a 44s ease-in-out infinite;
}

.shell-brand-accent-b {
  animation: shell-accent-drift-b 40s ease-in-out infinite;
}

.shell-bg-shimmer {
  animation: shell-metal-sheen 11s ease-in-out infinite;
}

@keyframes shell-bg-glow {
  0% {
    transform: translate3d(-4%, -3%, 0) scale(1);
    opacity: 0.82;
  }

  100% {
    transform: translate3d(4%, 3%, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes shell-bg-sweep {
  0% {
    transform: translate3d(-42%, 0, 0) skewX(-14deg);
    opacity: 0;
  }

  12% {
    opacity: 0.85;
  }

  55% {
    transform: translate3d(42%, 0, 0) skewX(-14deg);
    opacity: 0.65;
  }

  100% {
    transform: translate3d(92%, 0, 0) skewX(-14deg);
    opacity: 0;
  }
}

@keyframes shell-roof-drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-70px, 36px, 0);
  }
}

@keyframes shell-roof-drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(64px, -32px, 0);
  }
}

@keyframes shell-sheet-drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(80px, 48px, 0) rotate(1.2deg);
  }
}

@keyframes shell-sheet-drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-72px, 28px, 0) rotate(-1deg);
  }
}

@keyframes shell-sheet-drift-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(56px, -40px, 0) rotate(0.8deg);
  }
}

@keyframes shell-accent-drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-36px, 28px, 0);
  }
}

@keyframes shell-accent-drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(40px, -24px, 0);
  }
}

@keyframes shell-metal-sheen {
  0% {
    transform: translate3d(-1200px, 0, 0) rotate(-22deg);
    opacity: 0;
  }

  14% {
    opacity: 0.75;
  }

  52% {
    transform: translate3d(1200px, 0, 0) rotate(-22deg);
    opacity: 0.55;
  }

  100% {
    transform: translate3d(2400px, 0, 0) rotate(-22deg);
    opacity: 0;
  }
}

.site-shell > :not(.shell-bg) {
  position: relative;
  z-index: 1;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav actions";
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  min-height: 62px;
  padding: 12px clamp(18px, 3vw, 56px);
  border-bottom: 1px solid rgba(223, 228, 232, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(20, 32, 41, 0.06);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 56px;
  max-width: 72px;
  object-fit: contain;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
}

.main-nav {
  grid-area: nav;
  display: flex;
  gap: clamp(18px, 2.8vw, 42px);
  justify-content: center;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-actions {
  grid-area: actions;
}

.header-actions,
.hero-actions,
.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.button,
.link-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 16px;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(20, 32, 41, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(20, 32, 41, 0.14);
}

.button.red,
.link-button.red {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.button.light,
.link-button.light {
  background: #fff;
}

.button.whatsapp,
.link-button.whatsapp {
  border-color: #128c7e;
  color: #fff;
  background: #128c7e;
}

.button.whatsapp:hover,
.link-button.whatsapp:hover {
  border-color: #0d6e58;
  background: #0d6e58;
}

.phone-button {
  min-width: 154px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(520px, 32vw, 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #182129;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  animation: hero-media-enter 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(16, 22, 27, 0.93) 0%, rgba(16, 22, 27, 0.58) 48%, rgba(16, 22, 27, 0.12) 100%),
    linear-gradient(0deg, rgba(16, 22, 27, 0.86) 0%, rgba(16, 22, 27, 0.1) 54%);
  animation: hero-overlay-enter 0.9s ease 0.15s forwards;
}

.hero-media img,
.hero-media picture,
.hero-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-media-zoom 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(56px, 7vw, 96px) clamp(18px, 3vw, 56px) clamp(22px, 2.8vw, 32px);
  will-change: transform;
}

@keyframes hero-media-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-media-zoom {
  from {
    opacity: 0;
    transform: scale(1.12);
  }

  to {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes hero-overlay-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

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

h1 {
  margin-bottom: 18px;
  color: #fff;
}

.hero-brand {
  display: block;
  font-size: clamp(4.8rem, 8.8vw, 10rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
}

.hero-headline {
  display: block;
  margin-top: 14px;
  max-width: 620px;
  color: #fff;
  font-size: clamp(1.05rem, 1.9vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 3.3vw, 4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-content > p:not(.eyebrow) {
  max-width: 640px;
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.24rem);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(600px, 100%);
  margin: 34px 0 0;
  background: rgba(10, 15, 20, 0.92);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(9, 16, 21, 0.24);
}

.hero-stats div {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: #fff;
  font-size: 0.88rem;
}

.hero-partners {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 26px;
  margin-bottom: 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  background: rgba(10, 15, 20, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(9, 16, 21, 0.22);
}

.hero-partners-label {
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-partners-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-partners-list li {
  margin: 0;
}

.hero-partners-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 14px rgba(9, 16, 21, 0.18);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-partners-list a:hover,
.hero-partners-list a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(9, 16, 21, 0.24);
  background: #fff;
  color: var(--navy);
}

.price-badge-request {
  top: 6px;
  right: 6px;
  gap: 2px;
  max-width: 38%;
  padding: 5px 7px 4px;
}

.price-badge-request .price-prefix {
  font-size: 0.5rem;
  line-height: 1.1;
}

.price-badge.price-badge-request strong {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.05;
  white-space: normal;
}

.section {
  padding: clamp(64px, 6.5vw, 118px) clamp(18px, 3vw, 56px);
}

.catalog-section {
  padding-top: clamp(54px, 5.5vw, 92px);
  padding-bottom: clamp(36px, 3.5vw, 62px);
  background: rgba(255, 255, 255, 0.82);
}

.catalog-section .section-heading {
  max-width: none;
}

.catalog-section .section-heading h2 {
  font-size: clamp(1.4rem, 2vw, 2.25rem);
  line-height: 1.2;
  white-space: normal;
}

.catalog-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px auto 0;
  padding: 10px 16px;
  border: 1px solid rgba(201, 36, 52, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 8px 20px rgba(201, 36, 52, 0.08);
}

.catalog-note-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(160deg, #ff4d5e 0%, #c92434 100%);
  box-shadow: 0 0 0 3px rgba(201, 36, 52, 0.14);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  animation: catalog-note-pulse 1.6s ease-in-out infinite;
}

@keyframes catalog-note-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(201, 36, 52, 0.14);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(201, 36, 52, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-note-mark {
    animation: none;
  }
}

.promo-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  padding: 6px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(160deg, #ff9f2e 0%, #e84a2f 52%, #c92434 100%);
  box-shadow: 0 8px 18px rgba(201, 36, 52, 0.35);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: promo-blink 1.4s ease-in-out infinite;
}

@keyframes promo-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-badge {
    animation: none;
  }

  .product-card img {
    transition: none;
  }

  .product-card:hover img,
  .product-card:focus-within img {
    transform: none;
  }
}

.falt-solar-section {
  padding-top: clamp(42px, 4vw, 72px);
  padding-bottom: clamp(42px, 4vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(220, 95, 57, 0.08), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(16, 40, 66, 0.1), transparent 36%),
    rgba(243, 245, 247, 0.92);
}

.falt-solar-shell {
  width: 100%;
  max-width: none;
}

.falt-solar-heading {
  max-width: none;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.falt-solar-intro {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.falt-solar-intro strong {
  color: var(--red);
  font-weight: 900;
}

.falt-solar-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.falt-solar-copy {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(20, 32, 41, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.falt-solar-quote {
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--orange);
  color: var(--ink);
  background: rgba(220, 95, 57, 0.07);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 800;
  line-height: 1.45;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.falt-solar-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.falt-solar-points {
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.falt-solar-points li {
  margin-bottom: 8px;
  line-height: 1.45;
}

.falt-solar-copy .button {
  justify-self: start;
  margin-top: 4px;
}

.falt-solar-figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 48px rgba(15, 27, 38, 0.14);
}

.falt-solar-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.falt-solar-figure-main {
  min-height: 100%;
  aspect-ratio: 3 / 2;
}

.falt-solar-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-template-areas:
    "wide top"
    "wide bottom";
  gap: clamp(14px, 2vw, 20px);
}

.falt-solar-figure-wide {
  grid-area: wide;
  min-height: 100%;
}

.falt-solar-gallery .falt-solar-figure:nth-child(2) {
  grid-area: top;
}

.falt-solar-gallery .falt-solar-figure:nth-child(3) {
  grid-area: bottom;
}

.falt-solar-gallery .falt-solar-figure {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
}

.falt-solar-gallery .falt-solar-figure img {
  min-height: 180px;
  aspect-ratio: 16 / 10;
}

.falt-solar-figure figcaption {
  padding: 10px 14px 12px;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.info-combo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  background: rgba(243, 245, 247, 0.78);
}

.intro-panel,
.benefits-panel {
  min-width: 0;
}

.intro-panel p,
.benefits-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.15rem);
}

.workflow-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.workflow-cards article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(220, 95, 57, 0.18);
  padding: 16px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.workflow-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-size: 1.55rem;
  font-weight: 900;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(220, 95, 57, 0.26);
}

.workflow-cards strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.05rem;
}

.workflow-cards p {
  margin: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.info-combo .benefit-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.benefit-grid article {
  min-height: 0;
  border: 1px solid var(--line);
  padding: clamp(16px, 1.5vw, 22px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 900;
}

.benefit-grid p {
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px) 18px;
  width: 100%;
  min-width: 0;
}

.product-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  padding: 14px 14px 30px;
  border: 1px solid rgba(223, 228, 232, 0.7);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 32, 41, 0.15), 0 6px 16px rgba(20, 32, 41, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(20, 32, 41, 0.2), 0 10px 20px rgba(20, 32, 41, 0.12);
}

.image-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
}

.product-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
  border-radius: 12px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.08);
}

.price-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: auto;
  max-width: calc(100% - 16px);
  min-width: 0;
  padding: 8px 10px 7px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(160deg, #ff9f2e 0%, #e84a2f 52%, #c92434 100%);
  box-shadow: 0 10px 22px rgba(201, 36, 52, 0.28);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.price-badge::after {
  display: none;
}

.price-prefix,
.price-suffix {
  display: block;
  letter-spacing: 0.05em;
}

.price-prefix {
  max-width: 100%;
  font-size: 0.58rem;
  line-height: 1.2;
  opacity: 0.95;
  overflow-wrap: anywhere;
}

.price-badge strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 4vw, 2.35rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.price-suffix {
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.1;
}

.image-badges {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  max-width: calc(100% - 16px);
}

.image-badges .price-badge {
  position: static;
  top: auto;
  right: auto;
  flex: 0 0 auto;
}

.price-validity {
  position: static;
  top: auto;
  left: auto;
  z-index: 2;
  display: block;
  flex: 0 1 auto;
  max-width: 9.5rem;
  margin: 0;
  padding: 7px 9px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #1f5f99 0%, #102842 100%);
  box-shadow: 0 10px 22px rgba(16, 40, 66, 0.32);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  letter-spacing: 0.01em;
}

.product-card h3 {
  min-height: 44px;
  margin: 18px 0 14px;
  color: #041f46;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.product-card button {
  min-height: 36px;
  border: 0;
  padding: 0 22px;
  margin-bottom: 4px;
  color: #fff;
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(16, 40, 66, 0.24);
}

.specs-section {
  background: rgba(255, 255, 255, 0.84);
  padding-top: clamp(24px, 2.2vw, 38px);
  padding-bottom: clamp(38px, 3.6vw, 58px);
}

.specs-section .section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.specs-section h2 {
  font-size: clamp(2rem, 2.8vw, 3.25rem);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.specs-grid article {
  display: grid;
  min-height: 138px;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  padding: 16px 10px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.spec-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 12px;
  color: var(--navy);
  background: rgba(220, 95, 57, 0.08);
  border-radius: 14px;
}

.spec-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.specs-grid h3 {
  max-width: 160px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.22;
}

.spec-featured {
  color: #fff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(145deg, var(--orange), var(--red)) !important;
  box-shadow: 0 16px 36px rgba(220, 95, 57, 0.28);
}

.spec-featured span {
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 0.9;
}

.spec-featured-lead {
  margin: 0 0 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
}

.spec-featured strong,
.spec-featured em {
  display: block;
  font-style: normal;
}

.spec-featured strong {
  margin-top: 4px;
  font-size: 0.92rem;
}

.spec-featured em {
  margin-top: 3px;
  font-size: 0.82rem;
}

.palette-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  grid-template-areas:
    "copy figure"
    "finishes finishes";
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  background: rgba(243, 245, 247, 0.78);
  padding-bottom: clamp(24px, 2.8vw, 40px);
}

.palette-section + .info-combo {
  padding-top: clamp(28px, 3vw, 44px);
}

.palette-copy {
  grid-area: copy;
  max-width: 560px;
}

.palette-figure {
  grid-area: figure;
  margin: 0;
  background: #fff;
  box-shadow: 0 22px 56px rgba(15, 27, 38, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1672 / 941;
}

.ral-finishes {
  grid-area: finishes;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  align-items: start;
}

.ral-finish-group {
  padding: 12px 12px 8px;
  border: 1px solid rgba(20, 32, 41, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.ral-finish-group h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ral-swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 8px;
  justify-items: center;
}

.ral-swatch {
  display: grid;
  gap: 5px;
  justify-items: center;
  min-width: 0;
  width: 100%;
}

.ral-swatch-chip {
  position: relative;
  display: block;
  width: clamp(72px, 6.2vw, 88px);
  height: clamp(72px, 6.2vw, 88px);
  max-width: clamp(72px, 6.2vw, 88px);
  aspect-ratio: 1;
  border: 1px solid rgba(20, 32, 41, 0.14);
  border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.ral-swatch-code {
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.ral-finish-group--gloss .ral-swatch-chip::after {
  content: "";
  position: absolute;
  top: -18%;
  left: -12%;
  width: 78%;
  height: 62%;
  border-radius: 50%;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.28) 42%, transparent 72%);
  pointer-events: none;
}

.ral-finish-group--gloss .ral-swatch-chip::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: 34%;
  height: 12%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(1px);
  pointer-events: none;
}

.ral-finish-group--matte .ral-swatch-chip {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  filter: saturate(0.9) brightness(0.94);
}

.ral-finish-group--matte .ral-swatch-chip::after,
.ral-finish-group--matte .ral-swatch-chip::before {
  display: none;
}

.ral-finish-group--matte-extra .ral-swatch-chip {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  filter: saturate(0.88) brightness(0.92);
}

.ral-finish-group--matte-extra .ral-swatch-chip::before,
.ral-finish-group--matte-extra .ral-swatch-chip::after {
  content: "";
  position: absolute;
  inset: -22%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 185% 185%;
}

.ral-finish-group--matte-extra .ral-swatch-chip::before {
  opacity: 0.42;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='5' seed='17' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  transform: rotate(-11deg) scale(1.18);
}

.ral-finish-group--matte-extra .ral-swatch-chip::after {
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='turbulence' baseFrequency='1.15' numOctaves='3' seed='63' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  transform: rotate(14deg) scale(1.12);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 1) .ral-swatch-chip::before {
  background-position: 8% 22%;
  transform: rotate(-14deg) scale(1.22);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 1) .ral-swatch-chip::after {
  background-position: 71% 36%;
  transform: rotate(9deg) scale(1.08);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 2) .ral-swatch-chip::before {
  background-position: 34% 11%;
  transform: rotate(-6deg) scale(1.16);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 2) .ral-swatch-chip::after {
  background-position: 18% 74%;
  transform: rotate(17deg) scale(1.14);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 3) .ral-swatch-chip::before {
  background-position: 62% 48%;
  transform: rotate(-18deg) scale(1.2);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 3) .ral-swatch-chip::after {
  background-position: 44% 19%;
  transform: rotate(6deg) scale(1.1);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 4) .ral-swatch-chip::before {
  background-position: 21% 67%;
  transform: rotate(-9deg) scale(1.24);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 4) .ral-swatch-chip::after {
  background-position: 83% 58%;
  transform: rotate(12deg) scale(1.06);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 5) .ral-swatch-chip::before {
  background-position: 76% 14%;
  transform: rotate(-16deg) scale(1.15);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 5) .ral-swatch-chip::after {
  background-position: 29% 81%;
  transform: rotate(19deg) scale(1.13);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 6) .ral-swatch-chip::before {
  background-position: 47% 39%;
  transform: rotate(-7deg) scale(1.21);
}

.ral-finish-group--matte-extra .ral-swatch:nth-child(6n + 6) .ral-swatch-chip::after {
  background-position: 56% 63%;
  transform: rotate(11deg) scale(1.11);
}

.palette-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.98;
}

.palette-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.palette-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.quote-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 22px;
  background: rgba(243, 245, 247, 0.78);
}

.quote-panel,
.contact-card {
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 42px);
  background: #fff;
  box-shadow: var(--shadow-medium);
  border-radius: var(--radius-lg);
}

.quote-panel > p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 16px;
}

form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-success {
  color: #0f5132;
  background: rgba(25, 135, 84, 0.12);
  border: 1px solid rgba(25, 135, 84, 0.22);
}

.form-status.is-error {
  color: #842029;
  background: rgba(201, 36, 52, 0.08);
  border: 1px solid rgba(201, 36, 52, 0.18);
}

.button:disabled {
  opacity: 0.72;
  cursor: wait;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 2px rgba(20, 32, 41, 0.04);
}

select {
  cursor: pointer;
  appearance: none;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--steel) 50%),
    linear-gradient(135deg, var(--steel) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 2px),
    calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

textarea {
  resize: vertical;
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
}

.check-row input {
  width: auto;
  margin-top: 5px;
}

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

.contact-logo {
  display: block;
  width: auto;
  height: 96px;
  max-width: 120px;
  margin-bottom: 22px;
  object-fit: contain;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-areas:
    "intro side"
    "contact contact"
    "media media";
  gap: clamp(22px, 3vw, 30px) clamp(32px, 5vw, 56px);
  align-items: start;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 82px);
  color: #aeb6c0;
  background: #151d2a;
}

.footer-intro {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.footer-side {
  grid-area: side;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 22px);
  min-width: 0;
}

.footer-side-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.footer-nav {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-contact-card {
  grid-area: contact;
}

.footer-media {
  grid-area: media;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 24px);
}

.footer-legal {
  margin: 0;
  padding: 0;
  border-top: 0;
  color: #8f99a6;
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: left;
}

.site-footer h2 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.footer-brand {
  display: inline-flex;
  margin: 0;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 104px;
  max-width: 112px;
  object-fit: contain;
}

.footer-promo {
  position: relative;
  width: 100%;
  height: var(--footer-media-height);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: #0d1218;
  box-shadow: 0 14px 30px rgba(9, 14, 22, 0.4);
  overflow: hidden;
}

.footer-promo-blur {
  position: absolute;
  display: block;
  border-radius: calc(var(--radius-md) - 2px);
  object-fit: cover;
  object-position: 36% 58%;
}

.footer-promo-open {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.footer-promo-open:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.footer-promo-hint {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 15, 20, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer-promo-open:hover .footer-promo-hint,
.footer-promo-open:focus-visible .footer-promo-hint {
  opacity: 1;
}

.footer-promo-blur {
  inset: -8%;
  width: 116%;
  height: 116%;
  filter: blur(12px) brightness(0.42) saturate(1.05);
  z-index: 0;
}

.footer-promo-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-md) - 2px);
  object-fit: cover;
  object-position: 36% 58%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.footer-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 26px;
  color: #fff;
  background: var(--orange);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(220, 95, 57, 0.28);
}

.footer-mark svg,
.footer-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-mark svg {
  fill: rgba(255, 255, 255, 0.12);
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  color: #aeb6c0;
  font-size: clamp(1rem, 1.12vw, 1.2rem);
}

.image-lightbox {
  width: min(96vw, 1100px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.image-lightbox::backdrop {
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(6px);
}

.image-lightbox img {
  display: block;
  width: 100%;
  max-height: 86vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  animation: lightbox-zoom-in 0.28s ease;
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 15, 20, 0.82);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: var(--red);
}

@keyframes lightbox-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.footer-program {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 0;
}

.footer-program p {
  margin: 0;
}

.footer-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: rgba(220, 95, 57, 0.18);
  border: 1px solid rgba(220, 95, 57, 0.45);
  border-radius: 12px;
}

.footer-label {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.footer-contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-contact-item .footer-icon {
  flex-shrink: 0;
  margin: 0;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.footer-contact-label {
  color: #8a93a0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-text a {
  overflow: hidden;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-map {
  width: 100%;
  height: var(--footer-media-height);
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(9, 14, 22, 0.4);
}

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

.site-footer a {
  color: #fff;
  font-weight: 900;
}

.footer-nav a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-size: clamp(1.25rem, 1.45vw, 1.55rem);
  font-weight: 500;
  text-decoration: none;
}

.footer-nav a span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.18s ease;
  border-radius: 9px;
}

.footer-legal a {
  color: #aeb6c0;
  font-weight: 500;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

.footer-nav a:hover span,
.footer-nav a:focus-visible span {
  transform: translateX(4px);
}

.legal-page {
  width: min(100% - 36px, 980px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) 0;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal-page p {
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.legal-page section {
  margin-top: 40px;
}

.legal-page ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-page li {
  margin-bottom: 14px;
}

.legal-page a:not(.legal-back) {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: reduce) {
  .shell-bg::before,
  .shell-bg::after,
  .shell-roof-ridge-a,
  .shell-roof-ridge-b,
  .shell-metal-sheet-a,
  .shell-metal-sheet-b,
  .shell-metal-sheet-c,
  .shell-brand-accent-a,
  .shell-brand-accent-b,
  .shell-bg-shimmer {
    animation: none;
  }

  .hero-media,
  .hero-media::after,
  .hero-media img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1921px) {
  .site-shell {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "brand actions menu";
    align-items: center;
    gap: 8px;
  }

  .brand {
    grid-area: brand;
    align-self: center;
  }

  .menu-button {
    display: block;
    grid-area: menu;
    justify-self: end;
    align-self: center;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    display: flex;
    grid-area: actions;
    justify-self: end;
    align-self: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: 0;
  }

  .header-actions .link-button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.78rem;
    box-shadow: 0 3px 8px rgba(20, 32, 41, 0.08);
  }

  .phone-button {
    min-width: 0;
  }

  .site-header.is-open {
    grid-template-areas:
      "brand actions menu"
      "nav nav nav";
  }

  .site-header.is-open .main-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-area: nav;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .info-combo,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 155px), 1fr));
    gap: 14px 10px;
  }

  .product-card {
    padding: 10px 10px 22px;
  }

  .product-card h3 {
    min-height: 0;
    margin: 12px 0 10px;
    font-size: 0.95rem;
  }

  .product-card button {
    min-height: 34px;
    padding: 0 16px;
    font-size: 0.72rem;
  }

  .price-badge {
    top: 6px;
    right: 6px;
    padding: 6px 8px 5px;
    gap: 2px;
  }

  .price-prefix {
    font-size: 0.48rem;
  }

  .price-badge strong {
    font-size: clamp(1rem, 5vw, 1.45rem);
  }

  .price-badge.price-badge-request {
    max-width: 42%;
  }

  .price-badge.price-badge-request strong {
    font-size: 0.54rem;
  }

  .price-suffix {
    font-size: 0.58rem;
  }

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

  .palette-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "figure"
      "finishes";
    gap: clamp(18px, 3vw, 28px);
  }

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

  .falt-solar-hero {
    grid-template-columns: 1fr;
  }

  .falt-solar-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "wide"
      "top"
      "bottom";
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: 100%;
    border-radius: 0;
  }

  .ral-swatch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 6px;
  }

  .ral-swatch-chip {
    width: 60px;
    height: 60px;
    max-width: 60px;
    border-radius: 10px;
  }

  .ral-swatch-code {
    font-size: 0.62rem;
  }

  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand img {
    height: 50px;
    max-width: 64px;
  }

  .image-badges {
    top: 6px;
    right: 6px;
    max-width: calc(100% - 12px);
    gap: 5px;
  }

  .price-validity {
    max-width: min(100%, 8.2rem);
    padding: 5px 7px;
    font-size: 0.52rem;
  }

  .promo-badge {
    left: 6px;
    bottom: 6px;
    min-width: 44px;
    min-height: 44px;
    font-size: 0.52rem;
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .link-button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .header-actions .whatsapp {
    padding: 0 9px;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-content {
    width: 100%;
    padding: 72px 24px 20px;
    overflow: hidden;
  }

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

  .hero-brand {
    max-width: 100%;
    font-size: clamp(2.5rem, 14vw, 3.5rem);
    line-height: 1;
    white-space: nowrap;
  }

  .hero-headline {
    font-size: 1.02rem;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1.03rem;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .catalog-section .section-heading h2 {
    white-space: normal;
    font-size: clamp(1.15rem, 4.8vw, 1.55rem);
  }

  .catalog-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .link-button {
    width: 100%;
  }

  .hero-stats,
  .specs-grid,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "side"
      "contact"
      "media";
  }

  .footer-side-row {
    grid-template-columns: 1fr;
  }

  .footer-media {
    grid-template-columns: 1fr;
  }

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

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
  }

  .hero-stats {
    width: 100%;
    margin-top: 44px;
  }

  .hero-stats div {
    padding: 20px 26px;
  }

  .hero-stats dt {
    font-size: 1.9rem;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .hero-partners {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 28px;
    margin-bottom: 0;
    padding: 14px 16px;
  }

  .hero-partners-list {
    gap: 7px;
  }

  .hero-partners-list a {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .section {
    padding: 56px 18px;
  }

  .palette-copy h2 {
    font-size: 2rem;
  }

  .palette-figure {
    margin-right: -18px;
    margin-left: -18px;
    box-shadow: none;
  }
}

@media (min-width: 1201px) {
  .catalog-section .section-heading h2 {
    white-space: nowrap;
  }
}

@media (max-width: 960px) and (orientation: landscape) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 130px), 1fr));
    gap: 10px 8px;
  }

  .catalog-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-card {
    padding: 8px 8px 18px;
  }

  .product-card h3 {
    margin: 10px 0 8px;
    font-size: 0.88rem;
  }

  .image-badges {
    top: 5px;
    right: 5px;
    max-width: calc(100% - 10px);
    gap: 4px;
  }

  .price-badge {
    padding: 5px 7px 4px;
  }

  .price-validity {
    max-width: min(100%, 7.4rem);
    padding: 4px 6px;
    font-size: 0.48rem;
  }

  .price-prefix {
    font-size: 0.45rem;
  }

  .price-badge strong {
    font-size: 1rem;
  }

  .price-badge.price-badge-request {
    max-width: 44%;
  }

  .price-badge.price-badge-request strong {
    font-size: 0.5rem;
  }

  .price-suffix {
    font-size: 0.52rem;
  }
}

.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  padding: 16px clamp(14px, 3vw, 28px);
  transform: translateY(140%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-inner {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: #e7ebef;
  background: rgba(21, 29, 42, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(9, 14, 22, 0.5);
}

.cookie-consent-text {
  flex: 1 1 320px;
  min-width: 0;
}

.cookie-consent-text strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.05rem;
}

.cookie-consent-text p {
  margin: 0;
  color: #aeb6c0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-consent-text a {
  color: #ff8b8b;
  font-weight: 800;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent-actions .button {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.85rem;
}

@media (max-width: 560px) {
  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-actions .button {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent {
    transition: none;
  }
}
