:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: #171717;
  --panel-strong: #1e1e1e;
  --text: #f5f2ee;
  --muted: #a8a39d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #ffffff;
  --accent-dark: #d9d9d9;
  --success: #1fa855;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1280px;
  --font-body: "Sora", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #070707;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 10px 14px;
  background: #070707;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand__title {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.brand__tag {
  font-family: var(--font-heading);
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.mobile-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--text);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-tools__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.menu-toggle,
.floating-whatsapp,
.form-submit {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.icon-button,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: var(--text);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.icon-button:hover,
.menu-toggle:hover,
.floating-whatsapp:hover,
.button:hover,
.button--ghost:hover,
.card:hover {
  transform: translateY(-2px);
}

.icon-button:hover,
.menu-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.mobile-nav a {
  padding: 0;
  border-top: 0;
}

.page-main {
  overflow: clip;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 85vh, 820px);
  display: grid;
  align-items: center;
}

.hero--compact {
  min-height: 420px;
}

.hero--visual-only {
  min-height: 260px;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media > img,
.hero__media > video {
  position: absolute;
  inset: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero__media video {
  pointer-events: none;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.42) 0%, rgba(7, 7, 7, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.72) 0%, rgba(7, 7, 7, 0.18) 60%, rgba(7, 7, 7, 0.68) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-title {
  font-family: var(--font-heading);
  margin: 18px 0 18px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.2rem, 2.8vw, 2.1rem);
}

.section-title {
  font-size: clamp(0.95rem, 1.8vw, 1.4rem);
  text-align: center;
}

.hero p,
.section-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-align: center;
}

.section-intro + .category-grid,
.section-intro + .card-grid,
.section-intro + .product-grid,
.section-intro + .value-grid,
.section-intro + .process-grid {
  margin-top: 38px;
}

.section-title + .logo-marquee {
  margin-top: 30px;
}

.button-row,
.section-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button,
.button--ghost,
.form-submit {
  font-family: var(--font-heading);
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
}

.button:hover,
.form-submit:hover {
  background: #121212;
}

.button--ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.section {
  padding: clamp(72px, 9vw, 110px) 0;
}

.section--top-tight {
  padding-top: 44px;
}

.section--bottom-tight {
  padding-bottom: 22px;
}

.section--joined {
  padding-top: 22px;
}

.surface {
  position: relative;
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%);
  pointer-events: none;
}

.category-grid,
.card-grid,
.product-grid,
.contact-grid,
.value-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.logo-marquee {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding-left: 0;
}

.logo-marquee:hover .logo-track,
.logo-marquee:active .logo-track {
  animation-play-state: paused;
}

.logo-chip {
  min-width: 220px;
  width: 220px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
  filter: saturate(0.92);
  opacity: 0.96;
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.logo-chip:hover,
.logo-chip:active {
  transform: translateY(-1px);
  opacity: 1;
  filter: saturate(1);
  border-color: rgba(255, 255, 255, 0.22);
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

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

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

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

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

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.card,
.product-card,
.contact-card,
.process-card,
.feature-panel,
.form-panel,
.map-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card,
.product-card,
.contact-card,
.process-card {
  border-radius: var(--radius-lg);
}

.card,
.process-card,
.feature-panel {
  padding: 28px;
  text-align: center;
}

.card,
.product-card {
  height: 100%;
}

.card:hover,
.product-card:hover,
.contact-card:hover,
.process-card:hover,
.feature-panel:hover,
.form-panel:hover,
.map-panel:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.22);
}

.icon-box {
  width: auto;
  height: auto;
  margin: 0 auto 16px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: #fff;
}

.icon-box .svg-icon {
  width: 34px;
  height: 34px;
  stroke-width: 1.7;
}

.category-item {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 10px 8px;
  cursor: pointer;
  user-select: none;
  transition: transform 200ms ease, opacity 200ms ease;
}

.category-item .icon-box {
  margin-bottom: 0;
}

.category-item h3 {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.category-item:hover {
  transform: translateY(-4px) scale(1.03);
}

.category-item:hover .icon-box .svg-icon {
  transform: scale(1.08);
}

.card h3,
.product-card h3,
.contact-card h3,
.process-card h3,
.feature-panel h3 {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.card p,
.product-card p,
.contact-card p,
.process-card p,
.feature-panel p,
.meta-list li {
  color: var(--muted);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card__image {
  display: block;
  aspect-ratio: 4 / 3.15;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 18px;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.22);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-meta {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.product-price {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #ffffff;
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.product-link {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.product-link--secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.product-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.92);
}

.product-link--secondary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.product-title-link {
  transition: color 180ms ease, opacity 180ms ease;
  overflow-wrap: break-word;
}

.product-title-link:hover {
  color: #ffffff;
}

.section-actions--compact {
  margin-top: 24px;
  justify-content: center;
}

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

.feature-panel {
  border-radius: 26px;
  padding: clamp(28px, 5vw, 44px);
}

.value-grid .card,
.process-grid .process-card {
  padding: 22px;
}

.feature-panel--accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.split-layout img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.process-card__step {
  display: inline-block;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card {
  padding: 30px;
  text-align: center;
}

.contact-card a {
  color: #fff;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.form-panel,
.map-panel,
.info-panel {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.form-panel {
  padding: 32px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.form-field textarea {
  min-height: 144px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.map-panel {
  overflow: hidden;
}

.map-panel img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  opacity: 0.68;
}

.map-panel__content {
  padding: 28px;
  text-align: center;
}

.info-panel {
  padding: 30px;
  text-align: center;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.breadcrumbs a:hover {
  color: var(--text);
}

.detail-hero {
  padding-top: 54px;
}

.detail-hero .section-title,
.detail-hero .section-intro {
  max-width: 920px;
  margin-inline: auto;
}

.detail-badge-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: stretch;
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-summary,
.detail-panel {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.detail-summary {
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  gap: 24px;
}

.detail-summary__block {
  display: grid;
  gap: 16px;
}

.detail-summary__block h2,
.detail-panel h2,
.detail-panel h3 {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.15;
}

.detail-summary__block h2,
.detail-panel h2 {
  font-size: 1rem;
}

.detail-panel h3 {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.detail-summary__block p,
.detail-panel p {
  margin: 0;
  color: var(--muted);
}

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

.detail-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.detail-stat span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  line-height: 1.35;
}

.detail-panel-grid {
  display: grid;
  gap: 22px;
}

.detail-panel {
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 24px;
}

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

.spec-list {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.spec-list li::marker {
  color: var(--text);
}

.detail-note {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.detail-note strong {
  color: var(--text);
}

.mobile-nav__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin-left: auto;
  padding: 92px 28px 28px;
  background: rgba(8, 8, 8, 0.98);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.mobile-nav__links {
  display: grid;
  gap: 18px;
  width: 100%;
  justify-items: center;
}

.mobile-nav__links a {
  font-size: 1rem;
  text-align: center;
}

.mobile-nav__social {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 0;
  width: 100%;
}

.mobile-nav__social .icon-button {
  width: 42px;
  height: 42px;
  border-radius: 0;
  padding: 0;
  flex: 0 0 42px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  overflow: visible;
}

.footer {
  padding: 52px 0 30px;
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-stack {
  display: grid;
  gap: 0;
}

.footer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-strip--brand {
  padding-top: 0;
  border-top: 0;
}

.footer-brand {
  max-width: 780px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-label {
  display: inline-block;
  margin-bottom: 0;
  font-family: var(--font-heading);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.footer-inline,
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px 28px;
  flex-wrap: wrap;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-pill:hover {
  color: #fff;
}

.footer-social .icon-button {
  width: 46px;
  height: 46px;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.footer-credit-link {
  color: #ff3b3b;
  font-weight: 700;
}

.footer-credit-link:hover {
  color: #ff6a6a;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #27d366, #159947);
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  box-shadow: 0 18px 36px rgba(24, 135, 67, 0.32);
}

.floating-whatsapp:hover {
  background: linear-gradient(180deg, #2bdd6d, #17924a);
}

.svg-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.icon-button .bi,
.floating-whatsapp .bi {
  font-size: 1.08rem;
  line-height: 1;
  display: inline-flex;
}

.floating-whatsapp .svg-icon {
  width: 26px;
  height: 26px;
}

.svg-icon--fill {
  fill: currentColor;
  stroke: none;
}

.accent {
  color: #ffffff;
}

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

@media (max-width: 1100px) {
  .category-grid,
  .card-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .split-layout,
  .product-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-media img {
    min-height: 420px;
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .header-tools__social {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .mobile-nav.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav.is-open .mobile-nav__panel {
    transform: translateX(0);
  }

  .footer-strip,
  .footer-bottom {
    align-items: center;
  }
}

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

  .logo-track {
    animation: none;
  }

  .hero__media video,
  .icon-button,
  .menu-toggle,
  .floating-whatsapp,
  .product-card__image img,
  .product-link {
    transition: none;
  }

  .hero__media video {
    display: none;
  }
}

@media (max-width: 720px) {
  .category-grid,
  .card-grid,
  .product-grid,
  .value-grid,
  .process-grid,
  .form-grid,
  .detail-stat-grid,
  .spec-columns {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 78px;
  }

  .header-tools {
    gap: 8px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .hero__content {
    padding: 64px 0;
  }

  .hero--visual-only {
    min-height: 220px;
  }

  .logo-track {
    gap: 14px;
  }

  .logo-chip {
    min-width: 168px;
    width: 168px;
    height: 102px;
  }

  .card,
  .process-card,
  .contact-card,
  .form-panel,
  .map-panel__content,
  .detail-summary,
  .detail-panel {
    padding: 22px;
  }

  .product-card__body {
    padding: 16px;
  }

  .product-meta {
    letter-spacing: 0.12em;
  }

  .product-card h3,
  .product-price,
  .detail-stat strong,
  .section-title {
    overflow-wrap: break-word;
  }

  .product-card__actions,
  .button-row,
  .section-actions {
    width: 100%;
  }

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

  .detail-badge-row {
    gap: 8px;
  }

  .detail-badge {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
  }

  .detail-media img {
    min-height: 320px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
