:root {
  --ink: #101f28;
  --navy: #0f2a3d;
  --forest: #203326;
  --leaf: #74a93a;
  --mint: #dfece2;
  --ivory: #f5efe6;
  --paper: #fffaf2;
  --white: #ffffff;
  --gold: #c8a25a;
  --line: rgba(16, 31, 40, 0.14);
  --soft-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 70px rgba(16, 31, 40, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
}

body.dialog-open {
  overflow: hidden;
}

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

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 0 46px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 17, 24, 0.7), rgba(5, 17, 24, 0));
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.has-shadow {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(16, 31, 40, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  color: var(--leaf);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 32px 0;
  opacity: 0.8;
}

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

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  padding: 0 20px;
  color: var(--white);
  background: var(--leaf);
}

.site-header.has-shadow .header-cta {
  color: var(--white);
}

.header-whatsapp {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #128c4a, #1db769);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(18, 140, 74, 0.28);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  isolation: isolate;
}

.header-whatsapp::before {
  content: "WA";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #128c4a;
  background: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 950;
}

.header-whatsapp span,
.header-whatsapp strong {
  display: block;
}

.header-whatsapp strong {
  font-size: 12px;
  font-weight: 950;
}

.site-header.has-shadow .header-whatsapp {
  color: var(--white);
  border-color: rgba(18, 140, 74, 0.22);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.language-switcher select {
  min-height: 38px;
  max-width: 94px;
  padding: 0 30px 0 12px;
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  outline: none;
}

.site-header.has-shadow .language-switcher select {
  color: var(--ink);
  border-color: rgba(16, 31, 40, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: start;
  padding: 320px 56px 58px;
  overflow: hidden;
  color: var(--white);
  background: #071620;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  background: var(--hero-image) center / cover no-repeat;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  animation: heroZoom 8s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 27, 0.9), rgba(4, 18, 27, 0.55), rgba(4, 18, 27, 0.2)),
    linear-gradient(0deg, rgba(4, 18, 27, 0.72), rgba(4, 18, 27, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-copy-panel {
  display: grid;
}

.hero-copy {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  pointer-events: none;
}

.hero-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 7.2vw, 100px);
  line-height: 0.94;
}

.hero h1,
.hero-heading {
  max-width: 680px;
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

p {
  font-size: 17px;
  line-height: 1.62;
}

.hero-lede {
  max-width: 560px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 17px;
}

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

.button {
  padding: 0 23px;
}

.button-primary {
  color: var(--white);
  background: var(--leaf);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.hero-rail {
  position: absolute;
  right: 42px;
  bottom: 52px;
  z-index: 2;
  display: grid;
  width: min(360px, calc(100% - 84px));
  border: 1px solid var(--soft-line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-rail div {
  padding: 17px 20px;
  border-bottom: 1px solid var(--soft-line);
}

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

.hero-rail strong,
.hero-rail span {
  display: block;
}

.hero-rail strong {
  margin-bottom: 5px;
  font-size: 18px;
}

.hero-rail span {
  color: rgba(255, 255, 255, 0.68);
}

.hero-scroll {
  display: none;
}

.hero-scroll::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 54px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.46);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  animation: revealUp 850ms ease forwards;
}

.reveal-up:nth-child(2) {
  animation-delay: 160ms;
}

.reveal-up:nth-child(3) {
  animation-delay: 300ms;
}

.reveal-up:nth-child(4) {
  animation-delay: 430ms;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.number-card {
  min-height: 158px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.number-card:last-child {
  border-right: 0;
}

.number-card strong {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.number-card span {
  max-width: 190px;
  margin-top: 10px;
  color: rgba(16, 31, 40, 0.64);
}

.full-image-section,
.rd-section,
.values-section,
.capabilities-section,
.explore-section,
.quote-section,
.about-section,
.news-section,
.contact-section {
  padding: 100px 56px;
}

.product-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(116, 169, 58, 0.18), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--ivory));
}

.section-copy,
.section-heading,
.capability-title {
  max-width: 780px;
}

.section-copy p,
.section-heading p,
.capability-title p {
  max-width: 680px;
  color: rgba(16, 31, 40, 0.68);
}

.keyword-marquee {
  width: calc(100% + 112px);
  margin: 72px -56px 44px;
  overflow: hidden;
  color: rgba(16, 31, 40, 0.08);
  white-space: nowrap;
  border-block: 1px solid rgba(16, 31, 40, 0.08);
}

.marquee-track {
  display: inline-flex;
  gap: 58px;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-size: clamp(48px, 9vw, 130px);
  font-weight: 950;
  line-height: 1;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.floating-product {
  min-height: 372px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 31, 40, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-product img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 22px rgba(16, 31, 40, 0.12));
}

.floating-product p {
  color: rgba(16, 31, 40, 0.68);
}

.rd-section {
  color: var(--white);
  background: var(--navy);
}

.rd-section .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.rd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.16);
}

.rd-card {
  min-height: 340px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--navy);
}

.rd-card span {
  display: block;
  margin-bottom: 84px;
  color: var(--gold);
  font-weight: 900;
}

.rd-card p {
  color: rgba(255, 255, 255, 0.7);
}

.factory-section {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 100px 56px;
  overflow: hidden;
  color: var(--white);
  background: #071620;
}

.factory-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 27, 0.86), rgba(4, 18, 27, 0.32)),
    url('/assets/images/factory-real-section-bg.png') center / cover fixed;
}

.factory-panel {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 42px;
  border: 1px solid var(--soft-line);
  background: rgba(5, 18, 26, 0.68);
  backdrop-filter: blur(10px);
}

.factory-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.factory-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.factory-points div {
  padding: 18px;
  border: 1px solid var(--soft-line);
  background: rgba(255, 255, 255, 0.08);
}

.factory-points strong,
.factory-points span {
  display: block;
}

.factory-points span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
}

.values-section {
  background: var(--white);
}

.values-orbit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.value-card {
  min-height: 320px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(116, 169, 58, 0.24), transparent 28%),
    #f8fbf7;
}

.value-card span {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 68px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
}

.value-card p {
  color: rgba(16, 31, 40, 0.66);
}

.capabilities-section {
  background: var(--forest);
  color: var(--white);
}

.capability-title p {
  color: rgba(255, 255, 255, 0.68);
}

.capability-list {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--soft-line);
}

.capability-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
  min-height: 156px;
  padding: 30px 0;
  border-bottom: 1px solid var(--soft-line);
}

.capability-item > span {
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
}

.capability-item p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.68);
}

.explore-section {
  background: var(--paper);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
  margin-top: 52px;
}

.explore-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dce5df;
}

.explore-grid figure:nth-child(1),
.explore-grid figure:nth-child(2) {
  grid-column: span 2;
}

.explore-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.explore-grid figure:hover img {
  transform: scale(1.08);
}

.explore-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 520px);
  gap: 58px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 42, 61, 0.94), rgba(15, 42, 61, 0.86)),
    url('/assets/images/quote-bg.png') center / cover no-repeat;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-form {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  margin-bottom: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(16, 31, 40, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 31, 40, 0.18);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfb;
  text-transform: none;
}

.quote-form textarea {
  resize: vertical;
}

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

.form-note {
  margin: 14px 0 0;
  color: rgba(16, 31, 40, 0.62);
  font-size: 13px;
}

.form-note.is-success {
  color: #1f7a4f;
}

.form-note.is-error {
  color: #b34235;
}

.tracking-consent {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(720px, calc(100% - 48px));
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 56px rgba(16, 31, 40, 0.18);
  backdrop-filter: blur(14px);
}

.tracking-consent p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.tracking-consent-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.tracking-consent .button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 430px);
  gap: 42px;
  align-items: center;
  background: var(--white);
}

.about-copy p {
  color: rgba(16, 31, 40, 0.68);
}

.about-proof {
  min-height: 280px;
  display: grid;
  align-content: end;
  padding: 32px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(5, 18, 26, 0.72), rgba(5, 18, 26, 0.18)),
    url('/assets/images/about-proof-bg.png') center / cover;
}

.about-proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.about-proof span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.news-section {
  background: var(--ivory);
}

.news-list {
  display: grid;
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 132px;
  padding: 28px;
  background: var(--paper);
}

.news-list time {
  color: var(--leaf);
  font-weight: 900;
}

.news-list a {
  font-weight: 900;
}

.dynamic-news-list article {
  grid-template-columns: 160px 1fr auto;
}

.dynamic-news-list p {
  margin: 8px 0 0;
  max-width: 760px;
  color: rgba(16, 31, 40, 0.68);
  line-height: 1.65;
}

.article-shell {
  max-width: 920px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--leaf);
  font-weight: 900;
}

.article-body {
  display: grid;
  gap: 18px;
  color: rgba(16, 31, 40, 0.76);
  font-size: 17px;
  line-height: 1.82;
}

.article-body h2,
.article-body h3 {
  color: var(--ink);
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-cta p {
  flex: 1 1 260px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.review-admin {
  min-height: calc(100vh - 92px);
  background: var(--ivory);
}

.review-panel {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.review-admin-page .review-panel h1,
.admin-dashboard-head h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.16;
}

.review-admin-page .eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.review-intro {
  max-width: 760px;
  color: rgba(16, 31, 40, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.review-article {
  margin-top: 28px;
}

.review-article h2 {
  margin: 8px 0 14px;
  font-size: 24px;
  line-height: 1.22;
}

.review-details {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.review-details summary {
  cursor: pointer;
  font-weight: 900;
}

.review-details dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px 18px;
  margin: 18px 0 0;
}

.review-details dt {
  color: var(--leaf);
  font-weight: 900;
}

.review-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.inquiry-admin-panel {
  width: min(1180px, 100%);
}

.admin-dashboard-panel {
  display: grid;
  gap: 24px;
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.admin-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.admin-heading .form-note,
.admin-dashboard-head .form-note {
  width: min(340px, 100%);
  margin-top: 0;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.admin-kpi {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.admin-kpi span {
  display: block;
  color: rgba(16, 31, 40, 0.58);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-kpi strong {
  display: block;
  margin-top: 12px;
  color: var(--forest);
  font-size: 28px;
  line-height: 1;
}

.admin-tabs {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f2e9;
  overflow-x: auto;
}

.admin-tab {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  color: rgba(16, 31, 40, 0.7);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.admin-tab.is-active {
  color: var(--forest);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(16, 31, 40, 0.08);
}

.admin-pane {
  display: grid;
  gap: 0;
}

.admin-pane[hidden] {
  display: none;
}

.admin-filter-grid {
  margin-top: 0;
}

.admin-section-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.admin-section-title h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.admin-section-title p {
  max-width: 620px;
  margin: 0;
  color: rgba(16, 31, 40, 0.64);
  line-height: 1.6;
}

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

.admin-workflow a {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcfb;
  text-decoration: none;
}

.admin-workflow strong,
.admin-workflow span {
  display: block;
}

.admin-workflow span {
  margin-top: 10px;
  color: rgba(16, 31, 40, 0.62);
  line-height: 1.55;
}

.admin-login-panel {
  width: min(520px, 100%);
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.admin-login-form label {
  display: grid;
  gap: 7px;
  color: rgba(16, 31, 40, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: none;
}

.admin-login-form input {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

.inquiry-admin-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.inquiry-admin-filters label {
  display: grid;
  gap: 7px;
  color: rgba(16, 31, 40, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: none;
}

.inquiry-admin-filters input,
.inquiry-admin-filters select,
.inquiry-admin-filters textarea {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

.inquiry-admin-filters textarea {
  min-height: 86px;
  padding: 10px 12px;
  resize: vertical;
  line-height: 1.5;
}

.admin-product-form {
  align-items: start;
}

.admin-product-form .admin-wide-field {
  grid-column: span 2;
}

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

.inquiry-admin-filters select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(16, 31, 40, 0.58) 50%), linear-gradient(135deg, rgba(16, 31, 40, 0.58) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 12px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.inquiry-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  grid-column: span 2;
}

.admin-toolbar {
  flex-wrap: wrap;
}

.admin-news-actions {
  grid-column: span 4;
}

.inquiry-admin-summary {
  margin-top: 24px;
  padding: 12px 14px;
  color: var(--forest);
  background: rgba(116, 169, 58, 0.12);
  border: 1px solid rgba(116, 169, 58, 0.22);
  border-radius: 8px;
  font-weight: 850;
}

.inquiry-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.inquiry-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-data-table {
  min-width: 1080px;
}

.admin-subscriber-table {
  min-width: 1180px;
}

.admin-visitor-table {
  min-width: 1120px;
}

.admin-product-table {
  min-width: 1260px;
}

.admin-news-table {
  min-width: 1120px;
}

.inquiry-table th,
.inquiry-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.inquiry-table th {
  color: rgba(16, 31, 40, 0.62);
  background: #f7f2e9;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-table td {
  max-width: 280px;
  overflow-wrap: anywhere;
}

.inquiry-table td strong,
.inquiry-table td span {
  display: block;
}

.inquiry-table td span {
  margin-top: 5px;
  color: rgba(16, 31, 40, 0.58);
  font-size: 12px;
  line-height: 1.35;
}

.admin-status-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--forest);
  background: rgba(116, 169, 58, 0.13);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-status-published {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.13);
}

.admin-status-rejected {
  color: #a43a2f;
  background: rgba(164, 58, 47, 0.12);
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 220px;
}

.button-mini {
  min-height: 34px;
  padding: 0 11px;
  font-size: 11px;
}

.button-danger {
  color: #a43a2f;
  border-color: rgba(164, 58, 47, 0.3);
}

.button-danger:hover {
  color: var(--white);
  background: #a43a2f;
  border-color: #a43a2f;
}

.admin-news-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.admin-news-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-news-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.admin-news-card p {
  margin: 0;
  color: rgba(16, 31, 40, 0.68);
  line-height: 1.6;
}

.admin-news-details {
  margin-top: 10px !important;
  overflow-wrap: anywhere;
  color: rgba(16, 31, 40, 0.5) !important;
  font-size: 12px;
}

.admin-news-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 480px) 1fr;
  gap: 56px;
  color: var(--white);
  background: #081720;
}

.contact-brand p {
  color: rgba(255, 255, 255, 0.68);
}

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

.contact-grid a,
.contact-grid div {
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-grid span,
.contact-grid strong {
  display: block;
}

.contact-grid span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid strong {
  font-size: 18px;
  line-height: 1.38;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 38px 56px;
  color: var(--white);
  background: #050f14;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.76);
}

.copyright {
  grid-column: 1 / -1;
  order: 5;
  font-size: 13px;
}

.footer-upgrade {
  grid-column: 1 / -1;
  order: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links-expanded,
.footer-social,
.subscribe-form,
.footer-whatsapp {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-links-expanded {
  align-content: start;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.footer-social span,
.subscribe-form label,
.footer-whatsapp span {
  width: 100%;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 850;
}

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

.subscribe-form label {
  display: grid;
  gap: 9px;
}

.subscribe-form input[type="email"] {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  color: var(--ink);
  border: 0;
  border-radius: 4px;
  background: var(--white);
  font-size: 14px;
}

.subscribe-form .button {
  width: 100%;
  align-self: stretch;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer-whatsapp {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-whatsapp-links {
  display: grid;
  gap: 0;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-whatsapp a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.footer-whatsapp a:hover {
  color: var(--mist);
  border-color: rgba(116, 169, 58, 0.38);
}

.footer-whatsapp a:last-child {
  border-bottom: 0;
}

.footer-whatsapp strong,
.footer-whatsapp small {
  display: block;
}

.footer-whatsapp strong {
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1.25;
}

.footer-whatsapp small {
  text-align: right;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.25;
}

.footer-whatsapp p {
  font-size: 13px;
  line-height: 1.48;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 150px 56px 72px;
  overflow: hidden;
  color: var(--white);
  background: #071620;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-hero::before {
  background: var(--page-image) center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(4, 18, 27, 0.88), rgba(4, 18, 27, 0.48), rgba(4, 18, 27, 0.18));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-width: 820px;
  min-width: 0;
}

.page-hero h1 {
  font-size: clamp(48px, 6.8vw, 96px);
  line-height: 0.98;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.page-section {
  padding: 96px 56px;
  background: var(--white);
}

.page-section.alt {
  background: var(--ivory);
}

.page-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.page-copy p,
.page-card p,
.category-card p,
.timeline-card p {
  color: rgba(16, 31, 40, 0.68);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.category-card {
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

a.category-card {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

a.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 169, 58, 0.42);
  box-shadow: 0 20px 40px rgba(16, 31, 40, 0.12);
}

.category-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 6px;
}

.card-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(255, 255, 255, 0.96)),
    url('/assets/images/smart-warehouse.jpg') center / cover no-repeat;
}

.proof-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.proof-grid > *,
.legal-grid > * {
  min-width: 0;
}

.proof-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
}

.proof-card strong,
.proof-card span {
  display: block;
}

.proof-card strong {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.08;
}

.proof-card span {
  color: rgba(16, 31, 40, 0.68);
  line-height: 1.58;
}

.product-detail-hero::before {
  background-color: #f3eee5;
  background-size: min(620px, 58vw);
  background-position: 74% center;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 48px;
  align-items: center;
}

.product-visual-card {
  display: grid;
  place-items: center;
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-visual-card img {
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(16, 31, 40, 0.13));
}

.product-visual-card h3 {
  margin-top: 22px;
}

.managed-product-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.managed-product-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(16, 31, 40, 0.72);
  line-height: 1.55;
}

.managed-product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
}

.legal-content {
  max-width: 860px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.legal-content h2,
.legal-content h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-content p {
  color: rgba(16, 31, 40, 0.7);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.page-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.page-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--leaf);
  font-weight: 900;
}

.timeline-grid {
  display: grid;
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
}

.timeline-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 30px;
  background: var(--white);
}

.timeline-card strong {
  color: var(--leaf);
}

.image-panel {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate-panel {
  background: #f7f8f5;
}

.certificate-panel img {
  padding: 24px;
  object-fit: contain;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.mini-product {
  padding: 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.rd-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.rd-visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(16, 31, 40, 0.08);
}

.rd-visual-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.rd-visual-card figcaption {
  display: grid;
  gap: 9px;
  padding: 20px;
}

.rd-visual-card strong {
  font-size: 18px;
}

.rd-visual-card span {
  color: rgba(16, 31, 40, 0.68);
  line-height: 1.5;
}

.mini-product img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 10px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-page-card {
  min-height: 160px;
  padding: 26px;
  color: var(--white);
  border-radius: 8px;
  background: var(--navy);
}

.contact-page-card span,
.contact-page-card strong {
  display: block;
}

.contact-page-card span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page-card strong {
  font-size: 22px;
  line-height: 1.35;
}

.phone-stack {
  display: grid;
  gap: 6px;
}

.contact-qr-card {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.contact-qr-card img {
  width: 98px;
  height: 98px;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
}

.contact-qr-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.floating-consult {
  position: fixed;
  right: 0;
  top: 50%;
  bottom: auto;
  z-index: 25;
  display: none;
  width: 48px;
  min-width: 48px;
  height: 154px;
  padding: 14px 0;
  color: var(--white);
  background: var(--leaf);
  border: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
  line-height: 1.1;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.floating-whatsapp {
  position: fixed;
  top: 108px;
  right: 0;
  bottom: auto;
  z-index: 28;
  display: grid;
  width: 62px;
  gap: 8px;
  padding: 10px 6px;
  color: var(--white);
  background: rgba(16, 31, 40, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 24px 62px rgba(5, 17, 24, 0.3);
  backdrop-filter: blur(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.is-over-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateX(82px);
}

.floating-whatsapp-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  justify-self: center;
}

.floating-whatsapp-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: 48px;
  min-height: 48px;
  padding: 0;
  color: var(--white);
  background: linear-gradient(135deg, #128c4a, #1db769);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(18, 140, 74, 0.22);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.floating-whatsapp-link[type="button"] {
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.floating-whatsapp-link::before {
  content: "WA";
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #128c4a;
  background: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 950;
}

.floating-inquiry-link {
  background: linear-gradient(135deg, var(--gold), #c4914d);
  box-shadow: 0 10px 24px rgba(190, 143, 77, 0.24);
}

.floating-inquiry-link::before {
  content: "FORM";
  width: 34px;
  color: #8d6227;
  border-radius: 999px;
  font-size: 9px;
}

.floating-back-top {
  background: linear-gradient(135deg, #475569, #0f172a);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
}

.floating-back-top::before {
  content: "TOP";
  color: #0f172a;
}

.floating-back-top:not(.is-visible) {
  opacity: 0.42;
}

.floating-whatsapp-link span,
.floating-whatsapp-link strong {
  position: absolute;
  right: 58px;
  min-width: 150px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(16, 31, 40, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.floating-whatsapp-link span {
  bottom: 26px;
  border-radius: 7px 7px 0 0;
}

.floating-whatsapp-link strong {
  top: 25px;
  border-radius: 0 0 7px 7px;
  font-size: 13px;
  font-weight: 950;
}

.floating-whatsapp-link:hover span,
.floating-whatsapp-link:hover strong,
.floating-whatsapp-link:focus-visible span,
.floating-whatsapp-link:focus-visible strong {
  opacity: 1;
  transform: translateX(0);
}

.consult-dialog {
  width: min(920px, calc(100% - 36px));
  border: 0;
  border-radius: 10px;
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.consult-dialog::backdrop {
  background: rgba(5, 15, 20, 0.72);
  backdrop-filter: blur(8px);
}

.consult-dialog[open] {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
}

.dialog-form {
  box-shadow: none;
}

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

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

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.45);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
  }
}

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

@media (max-width: 1120px) {
  .site-header {
    padding: 0 26px;
    gap: 12px;
  }

  .site-nav {
    gap: 10px;
    font-size: 11px;
  }

  .header-whatsapp {
    min-height: 42px;
    padding: 0 14px;
  }

  .header-whatsapp strong {
    display: none;
  }

  .hero-rail {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    margin-top: 42px;
  }

  .product-showcase,
  .rd-grid,
  .rd-visual-grid,
  .values-orbit,
  .footer-upgrade,
  .proof-grid,
  .legal-grid,
  .product-detail-grid,
  .quote-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

  .admin-heading,
  .admin-dashboard-head {
    display: grid;
  }

  .admin-heading .form-note,
  .admin-dashboard-head .form-note {
    width: 100%;
  }

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

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    grid-template-columns: auto auto auto auto;
    justify-content: space-between;
    gap: 8px;
    padding: 0 18px;
  }

  .brand {
    font-size: 20px;
  }

  .header-cta {
    display: none;
  }

  .header-whatsapp {
    min-height: 38px;
    padding: 6px 10px;
    gap: 0;
    font-size: 11px;
  }

  .header-whatsapp::before,
  .header-whatsapp strong {
    display: none;
  }

  .language-switcher select {
    min-height: 36px;
    max-width: 82px;
    padding-left: 10px;
    padding-right: 24px;
    font-size: 11px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 13px 0;
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .hero {
    min-height: auto;
    padding: 88px 20px 44px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-rail {
    margin-top: 28px;
  }

  .numbers,
  .product-showcase,
  .rd-grid,
  .rd-visual-grid,
  .values-orbit,
  .explore-grid,
  .news-list article,
  .contact-grid,
  .category-grid,
  .feature-grid,
  .footer-upgrade,
  .proof-grid,
  .legal-grid,
  .product-detail-grid,
  .page-split,
  .timeline-card,
  .product-strip,
  .contact-page-grid,
  .form-row,
  .consult-dialog[open] {
    grid-template-columns: 1fr;
  }

  .number-card {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .full-image-section,
  .rd-section,
  .values-section,
  .capabilities-section,
  .explore-section,
  .quote-section,
  .about-section,
  .news-section,
  .contact-section,
  .page-section {
    padding: 66px 20px;
  }

  .page-hero {
    min-height: 430px;
    padding: 118px 20px 54px;
  }

  .page-hero-content {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .page-hero h1 {
    max-width: min(100%, 330px);
    font-size: clamp(28px, 7.2vw, 34px);
    line-height: 1.05;
    word-break: break-word;
  }

  .keyword-marquee {
    width: calc(100% + 40px);
    margin: 48px -20px 30px;
  }

  .floating-product,
  .rd-card,
  .value-card {
    min-height: auto;
  }

  .rd-card span,
  .value-card span {
    margin-bottom: 32px;
  }

  .factory-section {
    min-height: auto;
    padding: 72px 20px;
  }

  .factory-media {
    background-attachment: scroll;
  }

  .factory-panel {
    padding: 24px;
  }

  .capability-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .explore-grid figure:nth-child(1),
  .explore-grid figure:nth-child(2) {
    grid-column: span 1;
  }

  .explore-grid {
    grid-auto-rows: 220px;
  }

  .quote-form {
    padding: 20px;
  }

  .review-panel {
    padding: 24px;
  }

  .admin-kpi-grid,
  .inquiry-admin-filters,
  .admin-workflow {
    grid-template-columns: 1fr;
  }

  .inquiry-admin-actions,
  .admin-news-actions,
  .admin-product-form .admin-wide-field,
  .admin-product-form .admin-full-field {
    grid-column: span 1;
  }

  .admin-section-title {
    display: grid;
  }

  .admin-toolbar .button {
    flex: 1 1 160px;
  }

  .admin-tabs {
    width: 100%;
  }

  .admin-tab {
    flex: 1 0 auto;
  }

  .tracking-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .tracking-consent-actions {
    justify-content: stretch;
  }

  .tracking-consent .button {
    flex: 1;
  }

  .site-footer {
    padding: 34px 20px;
  }

  .subscribe-form,
  .footer-whatsapp {
    grid-template-columns: 1fr;
  }

  .product-detail-hero::before {
    background-size: min(320px, 78vw);
    background-position: center 36%;
  }

  .product-visual-card {
    min-height: 310px;
  }

  .floating-consult {
    display: none;
  }

  .floating-whatsapp {
    top: 365px;
    left: auto;
    right: 0;
    bottom: auto;
    width: 70px;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 7px 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    border-radius: 8px 0 0 8px;
  }

  .floating-whatsapp-label {
    display: none;
  }

  .floating-whatsapp-link {
    min-height: 46px;
    width: 60px;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 5px 3px;
  }

  .floating-whatsapp-link::before {
    display: inline-grid;
    width: 28px;
    height: 28px;
  }

  .floating-whatsapp-link span,
  .floating-whatsapp-link strong {
    position: static;
    right: auto;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    opacity: 1;
    transform: none;
  }

  .floating-whatsapp-link span {
    font-size: 0;
  }

  .floating-whatsapp-link span::after {
    font-size: 10px;
    line-height: 1;
  }

  .floating-whatsapp-penn span::after {
    content: "Penn";
  }

  .floating-whatsapp-mia span::after {
    content: "Mia";
  }

  .floating-inquiry-link span::after {
    content: "Form";
  }

  .floating-whatsapp-link strong {
    display: none;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 0 12px;
    gap: 6px;
  }

  .brand {
    font-size: 17px;
  }

  .language-switcher select {
    max-width: 70px;
  }

  .header-whatsapp {
    padding: 6px 8px;
    font-size: 10px;
  }

  .nav-toggle {
    width: 38px;
  }
}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}
