:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --paper: #f5f5f7;
  --white: #ffffff;
  --red: #b4232a;
  --blue: #0071e3;
  --teal: #00856f;
  --steel: #2a2a2c;
  --gold: #a06a14;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(5, 5, 7, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(1.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-weight: 800;
}

.brand-mark,
.primary-action,
.whatsapp-action,
.primary-dark,
.secondary-light,
.ghost-button,
.hero-email {
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.primary-action:hover,
.whatsapp-action:hover,
.secondary-light:hover,
.ghost-button:hover,
.hero-email:hover {
  transform: translateY(-1px);
}

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

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
}

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

.nav a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  font-size: 13px;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.language-control select {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.language-control option {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #050507;
}

.hero video,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.64);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

#heroVideo:not([src]),
#heroImage:not([src]) {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.92), rgba(5, 5, 7, 0.72) 44%, rgba(5, 5, 7, 0.12)),
    linear-gradient(180deg, rgba(5, 5, 7, 0.66), rgba(5, 5, 7, 0.2) 42%, rgba(5, 5, 7, 0.84));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 90vw);
  margin-left: clamp(22px, 7vw, 108px);
  padding-top: 72px;
  text-align: left;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 6.2vw, 86px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: flex-start;
}

.primary-action,
.secondary-action,
.primary-dark,
.ghost-button,
.whatsapp-action,
.secondary-light {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.primary-action {
  color: var(--white);
  background: var(--blue);
}

.primary-dark {
  color: var(--white);
  background: #111114;
  border-color: #111114;
}

.secondary-action {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-action {
  color: #06110f;
  background: #e8fff7;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-email {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-email:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

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

.secondary-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.ghost-button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero-metrics {
  display: none;
}

.hero-metrics div {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.34);
}

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

.hero-metrics strong {
  font-size: 28px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.trust-strip {
  padding: 0 clamp(18px, 5vw, 74px) 34px;
  color: var(--white);
  background: #0a0a0c;
}

.trust-inner {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.trust-item {
  min-height: 176px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #111114;
}

.trust-item span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 24px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.trust-item strong,
.trust-item p {
  display: block;
}

.trust-item strong {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.16;
}

.trust-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.54;
}

.section {
  padding: 96px clamp(18px, 5vw, 74px);
}

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

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.7;
}

.section-head.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.buying-section {
  background: #0a0a0c;
  color: var(--white);
}

.buying-section .section-head p {
  color: rgba(255, 255, 255, 0.66);
}

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

.buying-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  background: #151517;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.buying-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  opacity: 0.52;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.buying-card-single::before {
  background:
    radial-gradient(circle at 76% 24%, rgba(0, 113, 227, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%);
}

.buying-card:hover::before {
  opacity: 0.74;
  transform: translate3d(3%, -2%, 0);
}

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

.buying-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.buying-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.buying-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.buying-card .primary-action,
.buying-card .secondary-light {
  margin-top: 18px;
}

.buying-card .secondary-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

input,
select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

#searchInput {
  width: min(340px, 82vw);
}

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

.category-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  cursor: pointer;
}

.category-card img,
.category-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img,
.category-card:hover video {
  transform: scale(1.04);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 17, 27, 0.1), rgba(12, 17, 27, 0.86));
}

.category-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px;
  color: var(--white);
}

.category-card-body small {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.76);
}

.category-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

.product-more-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 245, 247, 0.94));
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
}

.product-more-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.solutions-section {
  background: #ffffff;
  color: var(--ink);
}

.solutions-section .section-head p {
  color: var(--muted);
}

.solutions-section .ghost-button {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.08);
}

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

.solution-card {
  display: flex;
  min-height: 520px;
  grid-column: span 4;
  overflow: hidden;
  flex-direction: column;
  background: #f5f5f7;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:nth-child(1),
.solution-card:nth-child(2) {
  grid-column: span 6;
}

.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
}

.solution-media {
  position: relative;
  height: 260px;
  background: #111111;
  overflow: hidden;
}

.solution-media img,
.solution-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  display: block;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-media img,
.solution-card:hover .solution-media video {
  transform: scale(1.04);
}

.solution-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
}

.solution-body small {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.solution-body h3 {
  min-height: 0;
  font-size: clamp(24px, 2.2vw, 34px);
}

.solution-body p {
  color: var(--muted);
  line-height: 1.55;
}

.solution-specs {
  display: grid;
  gap: 6px;
  margin: 8px 0 12px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
}

.solution-specs span {
  color: var(--muted);
  font-size: 13px;
}

.solution-specs strong {
  font-size: 16px;
}

.solution-brief {
  min-height: 92px;
  margin-bottom: 14px;
}

.solution-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.solution-steps button {
  min-height: 30px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.solution-steps button:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.product-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 0;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.045);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.price {
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.cost {
  color: var(--muted);
  font-size: 13px;
}

.note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-section {
  background: #ffffff;
}

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

.quote-grid article {
  min-height: 168px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 0;
  border-radius: 8px;
}

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

.quote-grid strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.quote-grid span {
  color: var(--muted);
  line-height: 1.62;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 22px;
  color: var(--white);
  background: #1d1d1f;
  border-radius: 8px;
}

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

.contact-strip strong {
  font-size: 22px;
}

.contact-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.faq-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.faq-section .ghost-button {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.08);
}

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

.faq-card {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.05);
}

.faq-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-card h3 {
  font-size: 24px;
}

.faq-card p {
  color: var(--muted);
  line-height: 1.6;
}

.catalog-section {
  background: #f5f5f7;
}

.catalog-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 38px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 249, 0.92)),
    radial-gradient(circle at 0% 0%, rgba(35, 70, 255, 0.1), transparent 34%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(15, 17, 22, 0.1);
}

.catalog-copy {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
}

.catalog-copy h2 {
  max-width: 620px;
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

.catalog-copy p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.catalog-summary {
  display: grid;
  gap: 12px;
}

.catalog-summary article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 16px;
  align-content: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
}

.catalog-summary span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8f8fb;
  background: #111114;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.catalog-summary strong {
  font-size: 20px;
  line-height: 1.2;
}

.catalog-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.growth-section {
  background: #ffffff;
}

.growth-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.growth-link-grid a {
  min-height: 210px;
  padding: 22px;
  color: var(--ink);
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.growth-link-grid a:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 17, 22, 0.1);
}

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

.growth-link-grid strong {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.18;
}

.growth-link-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.landing-page {
  color: var(--ink);
  background: #f5f5f7;
}

.landing-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 74px);
  background: rgba(10, 10, 12, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.landing-topbar a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.landing-topbar a:hover {
  color: #ffffff;
}

.landing-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 136px clamp(18px, 5vw, 74px) 72px;
  color: #ffffff;
  background: #09090b;
}

.landing-hero img,
.landing-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.22));
}

.landing-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.landing-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 0.96;
}

.landing-hero p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.55;
}

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

.landing-section {
  padding: 86px clamp(18px, 5vw, 74px);
}

.landing-section.dark {
  color: #ffffff;
  background: #0b0b0d;
}

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

.landing-card,
.landing-product,
.landing-faq article,
.social-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
}

.landing-card strong,
.landing-product strong,
.landing-faq strong,
.social-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.landing-card p,
.landing-product p,
.landing-faq p,
.social-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.landing-product {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
}

.landing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.landing-meta span {
  padding: 7px 10px;
  color: #111114;
  background: #f2f3f5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.landing-media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-media-strip img,
.landing-media-strip video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #111827;
  border-radius: 8px;
}

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

.landing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 32px;
  color: #ffffff;
  background: #111114;
  border-radius: 8px;
}

.landing-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.landing-cta .ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

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

.media-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.media-tile {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  background: #111827;
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
}

.media-tile img,
.media-tile video {
  width: 100%;
  height: 245px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  display: block;
}

.media-tile video {
  background: #111827;
}

.media-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 9px 10px;
  color: var(--white);
  background: rgba(10, 14, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.sources {
  background: #ffffff;
}

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

.source-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

.source-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

dialog {
  width: min(960px, 94vw);
  max-height: 88vh;
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(15, 23, 42, 0.72);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.78);
  font-size: 26px;
  cursor: pointer;
}

.detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
  background: var(--white);
}

.detail-media {
  background: #111827;
}

.detail-media img,
.detail-media video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.detail-body {
  padding: 34px;
  overflow: auto;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}

.detail-actions .primary-action {
  color: var(--white);
  font: inherit;
}

.detail-actions .secondary-light,
.detail-actions .whatsapp-action {
  font: inherit;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.detail-list div {
  padding: 12px;
  background: var(--paper);
  border-radius: 6px;
}

.detail-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.detail-notes {
  margin-top: 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.component-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.component-list div {
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.component-list p {
  margin-bottom: 4px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.component-list span,
.component-list strong {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.official-detail {
  margin: 12px 0 18px;
  padding: 14px;
  color: var(--muted);
  background: #f2f6f8;
  border: 1px solid var(--line);
  border-radius: 6px;
  line-height: 1.62;
}

.official-detail p {
  margin-bottom: 10px;
}

.official-detail a {
  color: var(--teal);
  font-weight: 800;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

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

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

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

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

  .catalog-panel {
    grid-template-columns: 1fr;
  }

  .growth-link-grid,
  .landing-grid,
  .landing-media-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .quote-grid,
  .faq-grid,
  .buying-grid,
  .trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
    padding: 10px 12px;
    min-height: 56px;
  }

  .nav,
  .language-control {
    display: none;
  }

  .brand {
    gap: 8px;
    max-width: calc(100vw - 122px);
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .hero {
    min-height: 860px;
    align-items: flex-start;
    padding-top: 86px;
  }

  .hero-content {
    margin: 0;
    padding: 92px 20px 0;
    width: 100%;
  }

  h1 {
    max-width: 348px;
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.05;
  }

  .hero-copy {
    max-width: 348px;
    font-size: 17px;
  }

  h2 {
    font-size: clamp(31px, 8vw, 40px);
    overflow-wrap: anywhere;
  }

  .hero-actions {
    gap: 10px;
    max-width: 348px;
  }

  .primary-action,
  .secondary-action,
  .primary-dark,
  .ghost-button,
  .whatsapp-action,
  .secondary-light,
  .hero-email {
    padding: 11px 16px;
  }

  .mobile-language-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }

  .mobile-language-switch button {
    min-height: 32px;
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-language-switch button.is-active {
    color: #050507;
    background: rgba(255, 255, 255, 0.9);
  }

  .motion-ready .section-head,
  .motion-ready .buying-card,
  .motion-ready .trust-item,
  .motion-ready .category-card,
  .motion-ready .solution-card,
  .motion-ready .product-card,
  .motion-ready .quote-grid article,
  .motion-ready .faq-card,
  .motion-ready .catalog-panel,
  .motion-ready .media-tile,
  .motion-ready .source-grid article,
  .motion-ready .contact-strip {
    opacity: 1;
    transform: none;
  }

  .hero-metrics {
    left: 20px;
    right: 20px;
    grid-template-columns: 1fr;
    width: auto;
    transform: none;
  }

  .section-head.split {
    display: block;
  }

  .contact-strip {
    display: block;
  }

  .contact-actions {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .tools {
    justify-content: flex-start;
  }

    .category-grid,
    .product-grid,
    .media-wall,
    .solution-grid,
    .quote-grid,
    .faq-grid,
    .buying-grid,
    .growth-link-grid,
    .landing-grid,
    .landing-product-grid,
    .landing-media-strip,
    .landing-faq,
    .trust-inner,
    .source-grid,
    .detail,
    .detail-list,
  .component-list {
    grid-template-columns: 1fr;
  }

  .landing-topbar,
  .landing-cta {
    display: block;
  }

  .landing-topbar nav,
  .landing-cta .landing-actions {
    margin-top: 16px;
  }

  .landing-section {
    padding: 64px 18px;
  }

  .landing-hero {
    min-height: 690px;
    padding: 120px 18px 56px;
  }

  .catalog-copy {
    min-height: auto;
  }

  .catalog-actions {
    display: grid;
  }

  .catalog-actions a {
    width: 100%;
  }

  .product-more-panel {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .detail-media img,
  .detail-media video {
    min-height: 310px;
  }
}
