:root {
  --ink: #09202d;
  --ink-soft: #153641;
  --navy: #061a29;
  --navy-2: #0a2636;
  --green: #74c533;
  --cyan: #36bdc1;
  --blue: #1495df;
  --paper: #f3f5f2;
  --line: rgba(8, 32, 45, 0.14);
  --muted: #62747c;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(20, 149, 223, 0.5);
  outline-offset: 3px;
}

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

.site-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 60;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar-inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a2acb0;
}

.status.is-open {
  color: #c7f0a6;
}

.status.is-open i {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(116, 197, 51, 0.12);
}

.topbar-address {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.topbar a {
  transition: color 180ms ease;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 246, 0.96);
  border-bottom: 1px solid rgba(8, 32, 45, 0.1);
  backdrop-filter: blur(16px);
  transition:
    background 240ms ease,
    box-shadow 240ms ease;
}

.header-inner {
  height: 106px;
  display: flex;
  align-items: center;
  gap: 42px;
  transition: height 260ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 94px;
  object-fit: contain;
  object-position: left center;
  transition: height 260ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.header.is-scrolled {
  background: rgba(247, 249, 246, 0.98);
  box-shadow: 0 10px 28px rgba(8, 32, 45, 0.08);
}

.header.is-scrolled .header-inner {
  height: 82px;
}

.header.is-scrolled .brand img {
  height: 72px;
}

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

.nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--green);
  transition: right 180ms ease;
}

.nav a:hover::after {
  right: 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta {
  min-height: 45px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero {
  --slide-accent: var(--green);
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay,
.hero-geometry {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 900ms ease,
    transform 7s ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 18, 29, 0.96) 0%, rgba(4, 23, 36, 0.89) 38%, rgba(4, 23, 36, 0.26) 72%, rgba(4, 23, 36, 0.38) 100%),
    linear-gradient(0deg, rgba(3, 17, 27, 0.6), transparent 45%);
}

.hero-geometry {
  z-index: -1;
  pointer-events: none;
}

.hero-geometry span {
  position: absolute;
  right: 6%;
  top: -16%;
  width: 220px;
  height: 130%;
  border-left: 2px solid color-mix(in srgb, var(--slide-accent) 72%, transparent);
  transform: rotate(19deg);
  opacity: 0.55;
}

.hero-geometry span + span {
  right: -2%;
  border-left-color: rgba(255, 255, 255, 0.24);
}

.hero-inner {
  min-height: 630px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-copy {
  width: min(690px, 67%);
  padding: 84px 0 120px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.eyebrow span {
  width: 32px;
  height: 3px;
  background: var(--slide-accent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6.1vw, 87px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-text {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.button-primary {
  background: var(--green);
  color: var(--navy);
}

.button-primary:hover {
  background: #8cdb47;
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 94px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button,
.hero-arrow {
  appearance: none;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
}

.hero-dots button {
  width: 34px;
  padding: 0;
}

.hero-dots button::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 7px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-dots button.is-active {
  color: var(--white);
}

.hero-dots button.is-active::after {
  background: var(--slide-accent);
}

.hero-dots button span {
  font-size: 10px;
  font-weight: 800;
}

.hero-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-arrow:hover {
  border-color: var(--slide-accent);
  color: var(--white);
}

.hero-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 18, 29, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-foot-inner {
  height: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.hero-foot span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding-block: 110px;
}

.section-kicker {
  color: #568d27;
}

.section-kicker-light {
  color: var(--green);
}

.section-heading h2,
.products-heading h2,
.segments-heading h2,
.brands-copy h2,
.about-copy h2,
.contact-heading h2,
.quote-inner h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

h2 em {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.intro {
  background:
    radial-gradient(circle at 85% 10%, rgba(53, 189, 193, 0.1), transparent 27%),
    var(--paper);
}

.intro-heading {
  display: grid;
  grid-template-columns: 1fr 330px;
  column-gap: 80px;
  align-items: end;
}

.intro-heading .section-kicker {
  grid-column: 1 / -1;
}

.intro-heading p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 70px;
}

.differential-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.differential-visual {
  position: relative;
  min-height: 165px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.differential-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(3, 20, 31, 0.43), rgba(4, 28, 39, 0.17)),
    linear-gradient(0deg, rgba(6, 26, 41, 0.31), transparent);
}

.differential-visual img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.32));
  transition: transform 240ms ease;
}

.card-number {
  position: absolute;
  top: 18px;
  left: 19px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.differential-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px 24px 28px;
}

.differential-card h3 {
  max-width: 220px;
  margin: 0 0 13px;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.differential-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.differential-card:hover {
  background: var(--white);
  box-shadow: 0 18px 38px rgba(8, 32, 45, 0.12);
  transform: translateY(-7px);
}

.differential-card:hover .differential-visual img {
  transform: scale(1.08);
}

.products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(53, 189, 193, 0.08), transparent 32%),
    var(--navy);
  color: var(--white);
}

.products::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -360px;
  width: 400px;
  height: 1000px;
  border-left: 1px solid rgba(116, 197, 51, 0.28);
  transform: rotate(24deg);
}

.products-heading {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: end;
  gap: 60px;
  margin-bottom: 62px;
}

.products-aside {
  align-self: end;
}

.products-aside > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.75;
}

.catalog-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid currentColor;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.015em;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.catalog-link span {
  opacity: 0.58;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.catalog-link-light {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.2);
}

.catalog-link-light:hover {
  color: var(--green);
}

.products-heading h2 em,
.about-copy h2 em,
.contact-heading h2 em {
  color: rgba(255, 255, 255, 0.52);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.product-card {
  position: relative;
  background: #0a2232;
  overflow: clip;
}

.product-card summary {
  position: relative;
  min-height: 270px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 32px;
  list-style: none;
  cursor: pointer;
  isolation: isolate;
}

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

.product-image,
.product-shade {
  position: absolute;
  inset: 0;
}

.product-image {
  z-index: -3;
  background-position: center;
  background-size: cover;
  opacity: 0.57;
  filter: saturate(0.75);
  transform: scale(1.02);
  transition:
    transform 500ms ease,
    filter 300ms ease,
    opacity 300ms ease;
}

.product-shade {
  z-index: -2;
  background: linear-gradient(0deg, rgba(4, 20, 31, 0.68), rgba(4, 20, 31, 0.11) 90%);
}

.product-card:hover .product-image,
.product-card[open] .product-image {
  opacity: 0.72;
  filter: saturate(1);
  transform: scale(1.06);
}

.product-id {
  align-self: start;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.product-main h3 {
  margin: 0 0 10px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.product-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.product-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  transition:
    transform 240ms ease,
    background 240ms ease;
}

.product-card[open] .product-toggle {
  transform: rotate(45deg);
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}

.product-details {
  padding: 0 32px 34px 102px;
  background: #0a2232;
  animation: detail-in 250ms ease both;
}

@keyframes detail-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.product-details li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.product-details a {
  display: inline-flex;
  gap: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.quote-strip {
  position: relative;
  overflow: hidden;
  background: var(--green);
}

.quote-stripe {
  position: absolute;
  top: -80%;
  right: 9%;
  width: 90px;
  height: 260%;
  background: var(--cyan);
  transform: rotate(18deg);
  box-shadow: 70px 0 0 var(--blue);
  opacity: 0.86;
}

.quote-inner {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}

.quote-inner > div {
  max-width: 700px;
}

.quote-inner .section-kicker {
  color: rgba(6, 26, 41, 0.6);
  margin-bottom: 17px;
}

.quote-inner h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.quote-inner p:last-child {
  max-width: 630px;
  margin: 16px 0 0;
  color: rgba(6, 26, 41, 0.75);
  font-size: 14px;
  line-height: 1.65;
}

.button-dark {
  flex: 0 0 auto;
  background: var(--navy);
  color: var(--white);
}

.segments {
  background: #e9ede8;
}

.segments-heading {
  margin-bottom: 58px;
}

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

.segment-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.segment-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: background-size 500ms ease;
}

.segment-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(6, 26, 41, 0.15), rgba(6, 26, 41, 0.05)),
    linear-gradient(0deg, rgba(6, 26, 41, 0.72), transparent 70%);
}

.segment-visual > span {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 18px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.segment-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 24px 26px;
}

.segment-card h3 {
  margin: 0 0 13px;
  font-size: 29px;
  letter-spacing: -0.045em;
}

.segment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.segment-card a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
}

.segment-card a i {
  color: #5ca824;
  font-style: normal;
}

.segment-card:hover {
  background: var(--white);
  box-shadow: 0 18px 38px rgba(8, 32, 45, 0.11);
  transform: translateY(-6px);
}

.segment-card:hover .segment-visual {
  background-size: 108%;
}

.brands {
  background: var(--white);
}

.brands-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) 1.5fr;
  gap: 76px;
  align-items: center;
}

.brands-copy > p:last-child {
  max-width: 490px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.brands-carousel {
  min-width: 0;
}

.brands-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.brands-toolbar p,
.brands-hint {
  margin: 0;
  color: #6a7a81;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brands-controls {
  display: flex;
  gap: 7px;
}

.brands-controls button {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 32, 45, 0.2);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.brands-controls button:hover,
.brands-controls button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.brands-controls button.is-paused {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
}

.brands-viewport {
  display: grid;
  grid-template-rows: repeat(3, 96px);
  grid-auto-flow: column;
  grid-auto-columns: calc(100% / 5);
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  outline: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(116, 197, 51, 0.045), transparent 42%),
    var(--white);
}

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

.brands-viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(20, 149, 223, 0.22);
}

.brand-card {
  min-width: 0;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  scroll-snap-align: start;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.brand-card img {
  width: min(100%, 164px);
  height: 64px;
  object-fit: contain;
  opacity: 0.94;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.brand-card:hover {
  background: #f4f9ef;
}

.brand-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.brands-hint {
  margin-top: 13px;
  letter-spacing: 0.06em;
}

.about {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--navy);
  color: var(--white);
}

.about-image {
  position: relative;
  min-height: 720px;
  background-position: center;
  background-size: cover;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 26, 41, 0.08), rgba(6, 26, 41, 0.4));
}

.about-badge {
  position: absolute;
  z-index: 2;
  right: -58px;
  bottom: 56px;
  width: 240px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--green);
  color: var(--navy);
}

.about-badge strong {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-badge span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(55px, 7vw, 120px);
}

.about-copy h2 {
  max-width: 720px;
}

.about-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.8;
}

.about-copy > p + p {
  margin-top: 14px;
}

.text-link {
  align-self: flex-start;
  display: inline-flex;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
  font-size: 12px;
  font-weight: 900;
}

.contact {
  background:
    linear-gradient(120deg, rgba(53, 189, 193, 0.08), transparent 30%),
    #081e2c;
  color: var(--white);
}

.contact-heading {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: end;
  gap: 70px;
  margin-bottom: 65px;
}

.contact-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.contact-info {
  display: grid;
  align-content: start;
}

.contact-item {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 21px 46px 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item span,
.store-card > div > span,
.hours > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item strong {
  font-size: 20px;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.contact-item i {
  position: absolute;
  right: 6px;
  top: 50%;
  color: var(--green);
  font-style: normal;
  transform: translateY(-50%);
}

.contact-item:hover strong {
  color: var(--green);
}

.contact-featured {
  margin-bottom: 12px;
  padding: 24px;
  background: var(--green);
  color: var(--navy);
  border-bottom: 0;
}

.contact-featured span {
  color: rgba(6, 26, 41, 0.62);
}

.contact-featured i {
  right: 24px;
  color: var(--navy);
}

.contact-featured:hover strong {
  color: var(--navy);
}

.store-card {
  margin-top: 36px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.store-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.store-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.store-card a {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.hours {
  padding: 28px 0;
}

.hours dl {
  margin: 17px 0 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.hours dt,
.hours dd {
  margin: 0;
}

.contact-form {
  padding: 40px;
  background: #f4f6f3;
  color: var(--ink);
}

.form-intro {
  margin-bottom: 32px;
}

.form-intro > span {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.form-intro p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-form > label,
.form-row label {
  display: grid;
  gap: 8px;
  margin-bottom: 19px;
}

.contact-form label > span {
  color: #53676f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bac4c2;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  padding: 11px 2px;
  transition: border-color 160ms ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #4ea822;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 5px 0 24px;
}

.privacy input {
  width: 15px;
  margin-top: 1px;
}

.privacy span {
  max-width: 500px;
  font-size: 9px !important;
  font-weight: 600 !important;
  line-height: 1.5;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.form-submit {
  width: 100%;
}

.form-feedback {
  margin: 14px 0 0;
  color: #41891f;
  font-size: 12px;
  text-align: center;
}

.footer {
  padding-top: 75px;
  background: #04131f;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 65px;
}

.footer-brand img {
  width: 96px;
  height: auto;
}

.footer-brand p {
  max-width: 260px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.footer-column strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1080px) {
  .site-shell {
    width: min(1240px, calc(100% - 44px));
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero-copy {
    width: 76%;
  }

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

  .brands-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .brands-copy {
    max-width: 720px;
  }

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

  .about-badge {
    right: -35px;
  }

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .topbar-address,
  .topbar-links a:first-child,
  .header-cta {
    display: none;
  }

  .topbar-links {
    margin-left: auto;
  }

  .header-inner {
    height: 90px;
  }

  .brand {
    width: auto;
  }

  .brand img {
    height: 78px;
  }

  .header.is-scrolled .header-inner {
    height: 72px;
  }

  .header.is-scrolled .brand img {
    height: 64px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 20px 22px 28px;
    background: rgba(247, 249, 246, 0.99);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 200ms ease,
      visibility 200ms ease,
      transform 200ms ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

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

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    margin-left: auto;
    border: 0;
    background: var(--ink);
  }

  .menu-button span {
    width: 19px;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-button.is-open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    min-height: 620px;
  }

  .hero-copy {
    width: 85%;
  }

  .hero-index {
    right: auto;
    left: 0;
  }

  .intro-heading,
  .products-heading,
  .contact-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .quote-stripe {
    right: 0;
    opacity: 0.35;
  }

  .quote-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding-block: 52px;
  }

  .brand-card {
    min-height: 92px;
  }

  .brands-viewport {
    grid-template-rows: repeat(3, 92px);
    grid-auto-columns: calc(100% / 3);
  }

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

  .about-image {
    min-height: 500px;
  }

  .about-badge {
    right: 22px;
    bottom: -55px;
  }

  .about-copy {
    padding: 120px 32px 80px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: calc(100% - 36px);
  }

  .topbar-inner {
    min-height: 32px;
  }

  .topbar {
    font-size: 9px;
  }

  .topbar-links {
    display: none;
  }

  .header-inner {
    height: 84px;
  }

  .brand img {
    height: 73px;
  }

  .header.is-scrolled .header-inner {
    height: 68px;
  }

  .header.is-scrolled .brand img {
    height: 56px;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 18, 29, 0.95), rgba(3, 18, 29, 0.64)),
      linear-gradient(0deg, rgba(3, 17, 27, 0.72), transparent 60%);
  }

  .hero-copy {
    width: 100%;
    padding: 75px 0 150px;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(43px, 13.2vw, 66px);
  }

  .hero-text {
    max-width: 92%;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 290px;
  }

  .button {
    width: 100%;
  }

  .hero-index {
    bottom: 84px;
    width: 100%;
    justify-content: space-between;
  }

  .hero-dots {
    flex: 1;
    justify-content: center;
  }

  .hero-dots button {
    width: 25px;
  }

  .hero-foot-inner {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
  }

  .hero-foot span {
    min-width: 120px;
  }

  .hero-foot span:nth-child(n + 4) {
    display: none;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading h2,
  .products-heading h2,
  .segments-heading h2,
  .brands-copy h2,
  .about-copy h2,
  .contact-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .differentials-grid,
  .segments-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .differential-card,
  .segment-card {
    min-height: 0;
  }

  .product-card summary {
    min-height: 245px;
    grid-template-columns: 34px 1fr auto;
    gap: 14px;
    padding: 24px 20px;
  }

  .product-main h3 {
    font-size: 28px;
  }

  .product-toggle {
    width: 34px;
    height: 34px;
  }

  .product-details {
    padding: 0 20px 28px 68px;
  }

  .quote-inner {
    width: calc(100% - 36px);
    min-height: 360px;
  }

  .quote-inner h2 {
    font-size: 42px;
  }

  .brands-carousel {
    margin-inline: -2px;
  }

  .brands-toolbar {
    align-items: flex-end;
  }

  .brand-card {
    min-height: 82px;
    padding: 13px;
  }

  .brand-card img {
    width: min(100%, 142px);
    height: 54px;
  }

  .brands-viewport {
    grid-template-rows: repeat(3, 82px);
    grid-auto-columns: calc(100% / 2);
  }

  .about-image {
    min-height: 400px;
  }

  .about-badge {
    width: 205px;
    min-height: 190px;
  }

  .about-copy {
    padding-inline: 18px;
  }

  .contact-form {
    margin-inline: -6px;
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer {
    padding-bottom: 64px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

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

  .footer-main .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 95px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    line-height: 1.45;
  }

  .mobile-actions {
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 58px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.16);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .mobile-actions a:first-child {
    background: var(--green);
    color: var(--navy);
  }
}

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

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


/* Recursos exclusivos da versão KingHost */
.form-security {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form[aria-busy="true"] {
  opacity: 0.82;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-feedback[hidden] {
  display: none;
}

.form-feedback.is-error {
  color: #ffb4aa;
}

.form-feedback.is-success {
  color: #c7f0a6;
}
