@font-face {
  font-family: "Dream MMA";
  src: url("assets/fonts/Dream-MMA.ttf") format("truetype");
  font-display: swap;
}

:root {
  --blue-900: #061b3b;
  --blue-800: #0b2f6b;
  --blue-700: #104a9c;
  --red-600: #e35d1b;
  --red-700: #c14c12;
  --cyan-500: #20b7d8;
  --steel-700: #35475e;
  --ink: #172033;
  --muted: #657184;
  --line: #dbe3ef;
  --soft: #f3f6fa;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 24, 51, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Dream MMA", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content-gutter: max(20px, 10vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fc;
  font-family: var(--font-body);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  color: var(--white);
  background: var(--red-600);
}

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

button,
input {
  font: inherit;
}

.fa-solid,
.fa-regular,
.fa-brands {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 var(--content-gutter);
  color: var(--white);
  background: rgba(6, 27, 59, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition: min-height 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(6, 20, 43, 0.97);
  box-shadow: 0 16px 36px rgba(6, 20, 43, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(138px, 16vw, 210px);
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 22px rgba(227, 93, 27, 0.2));
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), #ff8a3d);
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 28px rgba(227, 93, 27, 0.3);
  font-family: var(--font-display);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn,
.quote-link,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.header-cta {
  min-height: 44px;
  padding: 0 22px 0 18px;
  color: var(--white);
  background: var(--red-600);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(227, 93, 27, 0.22);
  transition: transform 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.header-cta:hover {
  background: var(--red-700);
  box-shadow: 0 18px 38px rgba(227, 93, 27, 0.28);
  transform: translateY(-2px);
}

.header-cta i {
  width: 20px;
  font-size: 0.98rem;
}

.btn i {
  width: 20px;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 132px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue-900);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(227, 93, 27, 0.18), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 120px);
  mix-blend-mode: screen;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 27, 59, 0.95) 0%, rgba(6, 27, 59, 0.8) 37%, rgba(6, 27, 59, 0.2) 72%),
    linear-gradient(180deg, rgba(6, 27, 59, 0.15) 0%, rgba(6, 27, 59, 0.74) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.03);
  transition: transform 900ms var(--ease);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
  max-width: calc(630px + var(--content-gutter));
  min-width: 0;
  padding: clamp(54px, 8vw, 96px) var(--content-gutter);
  animation: heroEnter 850ms var(--ease) both;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero .eyebrow {
  color: #ffab5e;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 6.1vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-family: var(--font-heading);
  font-weight: 950;
}

.hero-copy {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 18px 40px rgba(227, 93, 27, 0.32);
}

.btn-primary:hover {
  background: var(--red-700);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-inline: var(--content-gutter);
  background: var(--line);
}

.trust-strip div {
  display: grid;
  gap: 4px;
  min-height: 94px;
  align-content: center;
  padding: 20px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.trust-strip strong {
  color: var(--blue-800);
  font-size: 1.45rem;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 650;
}

.marquee-strip {
  overflow: hidden;
  padding-inline: var(--content-gutter);
  color: var(--white);
  background: linear-gradient(90deg, var(--red-700), var(--red-600), var(--blue-800));
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 30s linear infinite;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-width: max-content;
  padding: 15px clamp(28px, 5vw, 72px) 15px 0;
}

.marquee-group span {
  position: relative;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.marquee-group span::after {
  position: absolute;
  top: 50%;
  right: calc(clamp(28px, 5vw, 72px) * -0.55);
  width: 6px;
  height: 6px;
  content: "";
  background: rgba(255, 255, 255, 0.58);
  transform: translateY(-50%) rotate(45deg);
}

.section {
  position: relative;
  padding: clamp(64px, 9vw, 112px) var(--content-gutter);
  overflow: hidden;
}

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

.watermark-section::before {
  position: absolute;
  z-index: 0;
  right: clamp(-70px, -5vw, -28px);
  top: clamp(18px, 6vw, 72px);
  width: clamp(220px, 28vw, 460px);
  aspect-ratio: 2.25 / 1;
  content: "";
  pointer-events: none;
  background: url("assets/ats-logo.webp") center / contain no-repeat;
  filter: grayscale(1);
  opacity: 0.035;
}

.watermark-section::after {
  position: absolute;
  z-index: 0;
  left: clamp(-110px, -7vw, -48px);
  bottom: clamp(18px, 5vw, 70px);
  width: clamp(180px, 18vw, 300px);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 28px solid rgba(11, 47, 107, 0.035);
  border-radius: 50%;
}

.section-heading {
  display: block;
  width: 100%;
  margin: 0 0 clamp(28px, 4vw, 42px);
}

.section-heading > *,
.model-layout > * {
  min-width: 0;
}

.section-heading.compact {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.section-heading h2,
.carousel-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-family: var(--font-heading);
  font-weight: 930;
}

.section-heading p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.showcase {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.carousel-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  width: 100%;
  margin: 0 0 clamp(24px, 3vw, 34px);
}

.carousel-heading > div:first-child {
  min-width: 0;
}

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

.carousel-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: transform 200ms var(--ease), color 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}

.carousel-btn:hover {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  color: #9aa6b8;
  background: #eef2f7;
  border-color: var(--line);
  cursor: not-allowed;
}

.carousel-btn i {
  font-size: 0.98rem;
}

.carousel-viewport {
  width: 100%;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.carousel-track {
  display: flex;
  gap: 18px;
  align-items: stretch;
  min-width: 100%;
}

.product-slide {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  flex: 0 0 min(820px, 86vw);
  min-width: 0;
  min-height: 360px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(20, 37, 65, 0.08);
  scroll-snap-align: start;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.product-slide:hover {
  border-color: rgba(16, 74, 156, 0.34);
  box-shadow: 0 26px 70px rgba(20, 37, 65, 0.16);
  transform: translateY(-6px);
}

.product-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  min-height: 100%;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.product-visual::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: inset 260ms var(--ease), border-color 260ms var(--ease);
}

.product-slide:hover .product-visual::before {
  inset: 12px;
  border-color: rgba(255, 255, 255, 0.48);
}

.product-photo {
  background:
    linear-gradient(135deg, rgba(2, 18, 42, 0.96), rgba(15, 54, 108, 0.92)),
    var(--blue-900);
}

.product-photo::before {
  z-index: 1;
  inset: 14px;
  border-color: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.product-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 360ms var(--ease), filter 360ms var(--ease);
}

.product-slide:hover .product-photo img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.visual-lighting {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.visual-red {
  background: linear-gradient(135deg, #7a3510, var(--red-600));
}

.visual-cabin {
  background: linear-gradient(135deg, #26313f, #596879);
}

.visual-electric {
  background: linear-gradient(135deg, #102b52, #1f9fda);
}

.product-meta {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
}

.product-meta p {
  margin: 0 0 10px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-meta h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  font-family: var(--font-heading);
  font-weight: 920;
}

.product-meta span {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.product-meta .quote-link {
  margin-top: 28px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: 0 0 24px;
}

.tab {
  min-height: 40px;
  padding: 0 17px;
  color: var(--blue-800);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms var(--ease), color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.tab.active,
.tab:hover {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  margin: 0;
}

.product-card {
  display: grid;
  min-height: 340px;
  align-content: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(20, 37, 65, 0.06);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.product-card:hover {
  border-color: rgba(227, 93, 27, 0.28);
  box-shadow: 0 24px 60px rgba(20, 37, 65, 0.12);
  transform: translateY(-6px);
}

.product-card[hidden] {
  display: none;
}

.product-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--blue-800);
  background: #e9f1ff;
  border-radius: 8px;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.product-card:hover .product-icon {
  color: var(--white);
  background: var(--red-600);
  transform: rotate(-2deg) scale(1.04);
}

.product-icon i {
  font-size: 1.25rem;
}

.product-card p {
  margin: 22px 0 8px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 64px;
  margin: 0;
  color: var(--blue-900);
  font-size: 1.35rem;
  line-height: 1.22;
  font-family: var(--font-heading);
  font-weight: 900;
}

.product-card span {
  min-height: 52px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.quote-link {
  justify-self: start;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 17px 0 15px;
  color: var(--blue-800);
  background: transparent;
  border: 1px solid var(--blue-800);
  border-radius: 6px;
  transition: transform 200ms var(--ease), color 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.quote-link i {
  width: 18px;
  font-size: 0.9rem;
}

.quote-link:hover {
  color: var(--white);
  background: var(--blue-800);
  box-shadow: 0 14px 30px rgba(11, 47, 107, 0.18);
  transform: translateY(-2px);
}

.models {
  background: var(--soft);
}

.model-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 60px);
  width: 100%;
  margin: 0;
  align-items: center;
}

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

.model-list span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 10px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.model-list span:hover {
  color: var(--white);
  background: var(--blue-800);
  box-shadow: 0 18px 38px rgba(11, 47, 107, 0.16);
  transform: translateY(-4px);
}

.model-copy {
  padding-left: clamp(0px, 3vw, 34px);
  border-left: 4px solid var(--red-600);
}

.model-copy h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.12;
  font-family: var(--font-heading);
  font-weight: 920;
}

.model-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  margin: 0;
}

.steps article {
  min-height: 250px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32, 183, 216, 0.16), transparent 42%),
    var(--blue-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.steps article:hover {
  box-shadow: 0 24px 70px rgba(6, 27, 59, 0.2);
  transform: translateY(-6px);
}

.steps span {
  color: #ffab5e;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.steps h3 {
  margin: 54px 0 12px;
  font-size: 1.5rem;
  line-height: 1.16;
  font-family: var(--font-heading);
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(6, 27, 59, 0.05), transparent 42%),
    #ffffff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  width: 100%;
  margin: 0;
}

.about-media {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(20, 37, 65, 0.12);
}

.about-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  min-width: 0;
}

.about-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--blue-900);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 920;
  line-height: 0.98;
}

.about-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 30px;
}

.about-points div {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 118px;
  padding: 18px;
  color: var(--blue-900);
  background: var(--soft);
  border: 1px solid var(--line);
}

.about-points i {
  width: 42px;
  height: 42px;
  color: var(--red-600);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 1rem;
}

.about-points span {
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(6, 27, 59, 0.96), rgba(11, 47, 107, 0.92)),
    var(--blue-900);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
  width: 100%;
  margin: 0;
}

.contact-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.contact-copy h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 930;
  line-height: 1.05;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-media {
  display: grid;
  gap: 16px;
  align-content: center;
  min-width: 0;
}

.facade-gallery {
  display: grid;
  grid-template-columns: 1fr;
}

.facade-gallery figure {
  position: relative;
  min-width: 0;
  height: clamp(260px, 24vw, 340px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.facade-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease);
}

.facade-main img {
  object-position: center center;
}

.facade-gallery figure:hover img {
  transform: scale(1.045);
}

.contact-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.contact-item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-3px);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--red-600);
  border-radius: 8px;
}

.contact-icon i {
  font-size: 1.08rem;
}

.map-card {
  height: clamp(260px, 24vw, 340px);
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(150px, 0.5fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(30px, 4vw, 44px) var(--content-gutter);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(227, 93, 27, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--blue-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer strong {
  display: block;
  color: #ffab5e;
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: block;
  width: min(190px, 64vw);
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 16px 28px rgba(227, 93, 27, 0.2));
}

.site-footer p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
  min-width: 0;
}

.footer-nav a,
.footer-link,
.footer-address {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
  line-height: 1.35;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.footer-nav a {
  position: relative;
  width: fit-content;
  padding: 2px 0;
}

.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.footer-nav a:hover,
.footer-link:hover,
.footer-address:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-nav a:hover::after {
  transform: scaleX(1);
}

.footer-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  min-height: 28px;
}

.footer-link i {
  color: #ffab5e;
}

.footer-address {
  display: block;
  max-width: 310px;
  margin-top: 2px;
  padding-left: 14px;
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.footer-social {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.footer-social:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  transform: translateY(-2px);
}

.footer-link i {
  width: 18px;
  font-size: 0.95rem;
}

.footer-social i {
  font-size: 1rem;
}

.developer-credit {
  display: grid;
  gap: 6px;
  padding: 16px var(--content-gutter);
  color: rgba(255, 255, 255, 0.46);
  background: #04142d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  pointer-events: none;
  background: rgba(6, 27, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(6, 27, 59, 0.24);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
  backdrop-filter: blur(14px);
}

.back-to-top.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-600);
  box-shadow: 0 20px 46px rgba(227, 93, 27, 0.28);
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #18a957;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(24, 169, 87, 0.35);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp:hover {
  box-shadow: 0 20px 48px rgba(24, 169, 87, 0.44);
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp i {
  font-size: 1.55rem;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.site-nav a.is-active {
  color: var(--white);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 16px 38px rgba(24, 169, 87, 0.35);
  }

  50% {
    box-shadow: 0 18px 46px rgba(24, 169, 87, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: var(--blue-900);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(6, 27, 59, 0.72), rgba(6, 27, 59, 0.5)),
      linear-gradient(90deg, rgba(6, 27, 59, 0.56), rgba(6, 27, 59, 0.12));
  }

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

  .hero-content {
    padding-top: 82px;
    padding-bottom: 34px;
  }

  .section-heading,
  .carousel-heading,
  .model-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .carousel-heading {
    display: grid;
    align-items: start;
  }

  .product-slide {
    flex-basis: min(680px, 86vw);
    grid-template-columns: 1fr;
  }

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

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

  .steps {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

  .map-card,
  .map-card iframe {
    min-height: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --content-gutter: 16px;
  }

  .site-header {
    min-height: 70px;
    padding-inline: var(--content-gutter);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand {
    width: 136px;
  }

  .brand-logo {
    max-height: 50px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 0;
    align-content: start;
    padding: 14px 8px;
    text-align: center;
  }

  .trust-strip strong {
    font-size: 1.05rem;
  }

  .trust-strip span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero-actions {
    display: grid;
  }

  .hero-content {
    max-width: 390px;
    padding-bottom: 22px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-inline: var(--content-gutter);
  }

  .section-heading,
  .carousel-heading,
  .carousel-viewport,
  .category-tabs,
  .product-grid,
  .model-layout,
  .steps,
  .about-layout,
  .contact-layout {
    width: 100%;
  }

  .carousel-actions {
    justify-content: flex-start;
  }

  .product-slide {
    grid-template-columns: 1fr;
    flex-basis: 100%;
    min-height: auto;
  }

  .product-meta {
    padding: 22px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card h3,
  .product-card span {
    min-height: 0;
  }

  .model-copy {
    padding-left: 18px;
  }

  .about-media img {
    aspect-ratio: 1 / 1;
  }

  .about-points {
    gap: 8px;
  }

  .about-points div {
    gap: 8px;
    align-content: start;
    min-height: 0;
    padding: 12px 8px;
    text-align: center;
    justify-items: center;
  }

  .about-points i {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .about-points span {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .contact-item {
    grid-template-columns: 44px 1fr;
    padding: 14px;
  }

  .facade-gallery {
    grid-template-columns: 1fr;
  }

  .facade-gallery figure {
    height: 260px;
    min-height: 0;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .map-card,
  .map-card iframe {
    height: 260px;
    min-height: 0;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 96px;
  }

  .footer-actions {
    justify-content: flex-start;
  }

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

  .footer-nav strong {
    grid-column: 1 / -1;
  }

  .footer-link,
  .footer-address {
    width: 100%;
  }
}
