:root {
  --bg: #f8fbf6;
  --surface: #ffffff;
  --surface-soft: #f6fbff;
  --ink: #184c6d;
  --ink-soft: #5f7789;
  --teal: #17bcc6;
  --green: #8bc53f;
  --green-soft: #bde96d;
  --orange: #f4a31b;
  --orange-deep: #f5841f;
  --blue: #1f5f97;
  --whatsapp: #27c767;
  --whatsapp-deep: #16994d;
  --line: #dfe9ef;
  --shadow: 0 24px 60px rgba(29, 76, 102, 0.12);
  --shadow-strong: 0 30px 70px rgba(29, 76, 102, 0.18);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --sidebar-width: 290px;
  --media-shell-padding: clamp(0.45rem, 0.9vw, 0.8rem);
  --media-inner-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 6rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 163, 27, 0.18), transparent 20%),
    radial-gradient(circle at bottom left, rgba(139, 197, 63, 0.18), transparent 25%),
    linear-gradient(180deg, #fefefe 0%, #f8fbf6 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -14rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(244, 163, 27, 0.22), transparent 65%);
  animation: driftGlow 12s ease-in-out infinite alternate;
}

body::after {
  bottom: -16rem;
  left: -12rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(139, 197, 63, 0.22), transparent 62%);
  animation: driftGlow 14s ease-in-out infinite alternate-reverse;
}

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

figure {
  margin: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 80;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--orange-deep));
}

.site-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    linear-gradient(180deg, #ffffff, #f7fcff),
    linear-gradient(180deg, rgba(139, 197, 63, 0.06), rgba(23, 188, 198, 0.06));
  border-right: 1px solid var(--line);
  box-shadow: 18px 0 40px rgba(26, 82, 111, 0.06);
  z-index: 30;
}

.sidebar.offcanvas,
.sidebar.offcanvas-lg {
  --bs-offcanvas-bg: #f8fbff;
  --bs-offcanvas-border-color: rgba(223, 233, 239, 1);
  --bs-offcanvas-box-shadow: 24px 0 48px rgba(20, 59, 87, 0.18);
  z-index: 1080;
  background-color: #f8fbff;
  isolation: isolate;
}

.sidebar.show,
.sidebar.showing,
.sidebar.hiding {
  opacity: 1;
}

.sidebar .offcanvas-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.4rem 1.15rem;
}

.sidebar .offcanvas-header {
  padding: 1rem 1rem 0;
  background: inherit;
}

.sidebar .offcanvas-body,
.sidebar .offcanvas-header,
.sidebar.offcanvas.show,
.sidebar.offcanvas.showing,
.sidebar.offcanvas.hiding,
.sidebar.offcanvas-lg.show,
.sidebar.offcanvas-lg.showing,
.sidebar.offcanvas-lg.hiding {
  background:
    linear-gradient(180deg, #ffffff, #f7fcff),
    linear-gradient(180deg, rgba(139, 197, 63, 0.06), rgba(23, 188, 198, 0.06));
}

.offcanvas-title__logo {
  width: 92px;
  height: auto;
  object-fit: contain;
}

.brand,
.sidebar__card,
.mission-card,
.overview-card,
.contact-card,
.contact-visual,
.card,
.product-section__copy,
.product-section__media,
.hero__stats article {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand {
  display: grid;
  place-items: center;
  padding: 1.05rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 243, 0.94));
}

.brand__lockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__logo {
  width: min(100%, 176px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__wording {
  display: grid;
  gap: 0.2rem;
}

.brand__name,
.mobile-brand__name {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--blue);
}

.brand__name {
  font-size: 1.38rem;
}

.brand__eyebrow,
.brand__sub,
.sidebar__label,
.eyebrow,
.floating-contact__label,
.floating-contact__meta {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.brand__eyebrow,
.brand__sub,
.sidebar__card p,
.sidebar__nav a,
.feature-list li,
.contact-list li {
  color: var(--ink-soft);
}

.brand__sub {
  letter-spacing: 0.09em;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.language-switch__button {
  min-height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-switch__button.is-active {
  background: linear-gradient(135deg, rgba(23, 188, 198, 0.14), rgba(139, 197, 63, 0.18));
  color: var(--ink);
}

.language-switch__button:hover {
  transform: translateY(-1px);
}

.sidebar__nav {
  display: grid;
  gap: 0.45rem;
}

.sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.sidebar__nav a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(23, 188, 198, 0.28);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.sidebar__nav a:hover,
.sidebar__nav a:focus-visible,
.sidebar__nav a.is-active {
  color: var(--ink);
  background: linear-gradient(90deg, rgba(23, 188, 198, 0.12), rgba(139, 197, 63, 0.1));
  transform: translateX(4px);
}

.sidebar__nav a:hover::before,
.sidebar__nav a:focus-visible::before,
.sidebar__nav a.is-active::before {
  background: var(--orange-deep);
  transform: scale(1.25);
}

.main {
  min-width: 0;
  overflow-x: clip;
  padding: 1.2rem;
}

.mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  z-index: 35;
}

.mobile-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-brand__logo {
  display: block;
  width: 96px;
  height: auto;
}

.mobile-brand__name {
  display: none;
}

.menu-toggle {
  display: none;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.hero,
.intro,
.detail-gallery,
.product-overview,
.product-section,
.contact {
  position: relative;
  margin-bottom: 1.2rem;
}

.hero {
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 255, 248, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 28rem;
  height: 28rem;
  right: -11rem;
  top: -10rem;
  background: radial-gradient(circle, rgba(244, 163, 27, 0.24), transparent 66%);
  animation: driftGlow 11s ease-in-out infinite alternate;
}

.hero::after {
  width: 24rem;
  height: 24rem;
  left: -9rem;
  bottom: -11rem;
  background: radial-gradient(circle, rgba(139, 197, 63, 0.26), transparent 64%);
  animation: driftGlow 10s ease-in-out infinite alternate-reverse;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 1.4rem;
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 1rem;
}

.eyebrow {
  color: var(--teal);
}

.hero h1,
.section-head h2,
.product-section__copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  color: var(--teal);
}

.hero__copy p,
.card--copy p,
.mission-card p,
.overview-card p,
.product-section__copy p,
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.02rem;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.88rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(245, 132, 31, 0.22);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.38) 50%, transparent 75%);
  transform: translateX(-140%) skewX(-18deg);
  transition: transform 0.7s ease;
}

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

.button:hover::after {
  transform: translateX(140%) skewX(-18deg);
}

.button--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button--whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  box-shadow: 0 16px 32px rgba(39, 199, 103, 0.22);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero__stats article {
  padding: 1rem;
}

.hero__stats strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--orange-deep);
  font-size: 1.55rem;
}

.hero__stats span {
  color: var(--ink-soft);
}

.hero__visuals {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.hero__poster {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: var(--media-shell-padding);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 253, 0.98));
}

.hero__poster img {
  width: 100%;
  height: auto;
  border-radius: var(--media-inner-radius);
  transition: transform 0.8s ease;
}

.hero__poster:hover img {
  transform: scale(1.02);
}

.hero__poster--primary img {
  animation: posterFloatA 8s ease-in-out infinite;
}

.hero__poster--secondary {
  margin-top: 2.5rem;
}

.hero__poster--secondary img {
  animation: posterFloatB 9.5s ease-in-out infinite;
}

.section-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.section-head::after {
  content: "";
  width: 88px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}

.section-head h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--teal);
}

.section-head--wide h2 {
  max-width: 28ch;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.card {
  overflow: hidden;
}

.card--copy {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 1rem;
  padding: 1.5rem;
}

.card--image {
  width: 100%;
  min-width: 0;
  min-height: 100%;
  padding: var(--media-shell-padding);
}

.card--image img,
.contact-visual img,
.overview-card img {
  width: 100%;
  height: auto;
  border-radius: var(--media-inner-radius);
  transition: transform 0.8s ease;
}

.card--image:hover img,
.contact-visual:hover img,
.overview-card:hover img,
.product-section__media:hover img {
  transform: scale(1.035);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 0.35rem;
}

.mission-card {
  padding: 1.4rem;
}

.mission-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: rgba(23, 188, 198, 0.12);
  color: var(--teal);
  font-weight: 800;
}

.mission-card h3,
.overview-card h3,
.contact-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

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

.overview-card {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  min-height: 100%;
  padding: var(--media-shell-padding);
}

.overview-card div {
  padding: 1rem 0.35rem 0.25rem;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.product-section--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.product-section--reverse .product-section__copy {
  order: 2;
}

.product-section--reverse .product-section__media {
  order: 1;
}

.product-section__copy {
  position: sticky;
  top: 1.2rem;
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.product-section__copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--teal);
}

.feature-list,
.contact-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.contact-list li {
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.65;
}

.feature-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--orange));
}

.product-section__media {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  align-self: start;
  padding: var(--media-shell-padding);
}

.product-section__media img {
  width: 100%;
  height: auto;
  border-radius: var(--media-inner-radius);
  transition: transform 0.8s ease;
}

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

.detail-gallery__card {
  overflow: hidden;
  padding: var(--media-shell-padding);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-gallery__card img {
  width: 100%;
  height: auto;
  border-radius: var(--media-inner-radius);
  transition: transform 0.8s ease;
}

.detail-gallery__card:hover img {
  transform: scale(1.015);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 1rem;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-visual {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: var(--media-shell-padding);
}

.contact-actions--secondary .button:first-child {
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.floating-contact {
  position: fixed;
  left: auto;
  right: -3.15rem;
  top: 66%;
  bottom: auto;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: auto;
  max-width: none;
  padding: 0.72rem 0.92rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff;
  box-shadow: 0 22px 40px rgba(22, 153, 77, 0.28);
  overflow: hidden;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}

.floating-contact__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-contact__icon svg {
  width: 1.18rem;
  height: 1.18rem;
  display: block;
}

.floating-contact__label {
  position: relative;
  z-index: 1;
  font-size: 0.74rem;
  white-space: nowrap;
}

body.sidebar-open .menu-toggle,
body.sidebar-open .mobile-bar,
body.sidebar-open .floating-contact {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.offcanvas-backdrop {
  z-index: 1070 !important;
}

.offcanvas-backdrop.show {
  background: rgba(24, 76, 109, 0.42);
  backdrop-filter: blur(6px);
}

.pulse-contact::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: pulseRing 2.4s ease-out infinite;
}

.tilt-card {
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0px));
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  will-change: transform;
}

.tilt-card:hover {
  --tilt-lift: -6px;
  box-shadow: var(--shadow-strong);
  border-color: rgba(23, 188, 198, 0.22);
}

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

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.sidebar__nav a:focus-visible,
.floating-contact:focus-visible,
.language-switch__button:focus-visible {
  outline: 3px solid rgba(23, 188, 198, 0.35);
  outline-offset: 2px;
}

@keyframes driftGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

@keyframes posterFloatA {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes posterFloatB {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(10px) scale(1.018);
  }
}

@keyframes pulseRing {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

@media (max-width: 1360px) {
  .hero__content,
  .intro__grid,
  .detail-gallery__grid,
  .product-section,
  .product-section--reverse,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .product-section--reverse .product-section__copy,
  .product-section--reverse .product-section__media {
    order: initial;
  }

  .product-section__copy {
    position: static;
  }
}

@media (max-width: 1100px) {
  .mission-grid,
  .product-overview__grid,
  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .site-shell {
    grid-template-columns: 1fr;
  }

  body.sidebar-open {
    overflow: hidden;
    touch-action: none;
  }

  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    min-height: 100dvh;
    width: min(88vw, 340px);
    max-width: 340px;
    border-right: 1px solid var(--line);
    border-radius: 0 30px 30px 0;
    box-shadow: 24px 0 48px rgba(20, 59, 87, 0.18);
  }

  .sidebar .offcanvas-body {
    padding: 0.75rem 1rem 1.35rem;
  }

  .sidebar .offcanvas-header {
    justify-content: flex-end;
    padding: 1rem 1rem 0.2rem;
  }

  .sidebar .brand {
    display: none !important;
  }

  .mobile-bar {
    display: flex;
    position: static;
    align-items: center;
    padding-right: 0;
  }

  .language-switch--compact {
    display: none;
  }

  .main {
    padding: 1rem;
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
    overflow-x: visible;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: fixed;
    top: max(0.85rem, calc(env(safe-area-inset-top, 0px) + 0.45rem));
    right: max(1rem, calc(env(safe-area-inset-right, 0px) + 0.45rem));
    margin: 0;
    min-height: 3rem;
    padding: 0.78rem 0.95rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    z-index: 45;
  }

  .hero {
    padding: 1.3rem;
  }

  .hero,
  .intro,
  .product-overview,
  .product-section,
  .contact {
    margin-bottom: 1.6rem;
  }

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

  .hero__poster--secondary {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .sidebar {
    position: relative;
    inset: auto;
    visibility: visible !important;
    transform: none !important;
  }

  .sidebar .offcanvas-body {
    overflow: visible;
  }
}

@media (max-width: 720px) {
  .hero h1,
  .section-head h2,
  .product-section__copy h2 {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.4vw, 2.95rem);
  }

  .section-head h2,
  .product-section__copy h2 {
    font-size: clamp(1.7rem, 8.5vw, 2.2rem);
  }

  .hero,
  .product-section__copy,
  .contact-card,
  .card--copy,
  .mission-card {
    padding: 1.2rem;
  }

  .hero__copy p,
  .card--copy p,
  .mission-card p,
  .overview-card p,
  .product-section__copy p,
  .contact-card p,
  .feature-list li,
  .contact-list li {
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .mission-grid,
  .product-overview__grid,
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .mobile-brand__logo {
    width: 82px;
  }

  .mobile-bar {
    margin-bottom: 1.2rem;
  }

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

  .contact-actions .button {
    width: 100%;
  }

  .overview-card {
    border-radius: 30px;
  }

  .overview-card div {
    padding: 0.9rem 0.2rem 0.15rem;
  }

  .contact-visual {
    display: none;
  }

  .floating-contact {
    left: auto;
    right: max(0.85rem, calc(env(safe-area-inset-right, 0px) + 0.35rem));
    top: auto;
    bottom: max(0.85rem, calc(env(safe-area-inset-bottom, 0px) + 0.35rem));
    transform: none;
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    max-width: 3.5rem;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
  }

  .floating-contact__icon {
    width: 2.35rem;
    height: 2.35rem;
    background: rgba(255, 255, 255, 0.14);
  }

  .floating-contact__icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .floating-contact__label {
    display: none;
  }

  .pulse-contact::after {
    inset: 4px;
  }
}

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

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

  .tilt-card {
    transform: none !important;
  }
}
