:root {
  --bg: #f3eee4;
  --surface: #fffaf2;
  --surface-strong: #ffffff;
  --ink: #0d1b24;
  --muted: #596872;
  --line: rgba(16, 32, 43, 0.12);
  --primary: #b54520;
  --primary-deep: #7a2c12;
  --accent: #0b4f58;
  --accent-soft: #d5ebe8;
  --steel: #758897;
  --gold: #c79857;
  --shadow: 0 26px 80px rgba(8, 31, 44, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(199, 152, 87, 0.26), transparent 24%),
    radial-gradient(circle at 92% 7%, rgba(181, 69, 32, 0.2), transparent 26%),
    radial-gradient(circle at 48% 0%, rgba(11, 79, 88, 0.16), transparent 30%),
    linear-gradient(180deg, #fbf5eb 0%, #f2ede4 42%, #eee8dc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 27, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 36, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

.site-shell {
  position: relative;
  z-index: 1;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
}

.skip-link:focus {
  left: 12px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 245, 235, 0.82);
  border-bottom: 1px solid rgba(16, 32, 43, 0.1);
  box-shadow: 0 12px 34px rgba(13, 27, 36, 0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  border-radius: 24px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.45);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(221, 232, 239, 0.78)),
    linear-gradient(135deg, var(--gold), var(--accent));
  border: 1px solid rgba(13, 27, 36, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 34px rgba(8, 31, 44, 0.16);
  overflow: hidden;
}

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

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  font-size: 0.95rem;
}

.brand__text strong {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.brand__text span {
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 700;
}

.menu a {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.menu__cta {
  padding: 0.85rem 1.2rem;
  color: #fff !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary) 52%, #e38a4d);
  box-shadow: 0 18px 40px rgba(181, 69, 32, 0.26);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  padding: 0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.top-carousel {
  position: relative;
  min-height: min(680px, calc(100vh - 86px));
  overflow: hidden;
  background: var(--ink);
}

.top-carousel__media,
.top-carousel__media::after,
.top-carousel__overlay {
  position: absolute;
  inset: 0;
}

.top-carousel__media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 31, 44, 0.82), rgba(8, 31, 44, 0.42) 48%, rgba(8, 31, 44, 0.2)),
    linear-gradient(180deg, rgba(8, 31, 44, 0.18), rgba(8, 31, 44, 0.66));
}

.top-carousel .hero__slide {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.top-carousel .hero__slide.is-active {
  transform: scale(1.08);
}

.top-carousel__overlay {
  z-index: 2;
  display: flex;
  align-items: center;
}

.top-carousel__content {
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}

.top-carousel__brand {
  margin: 0 0 1rem;
  color: #f3c879;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.top-carousel__content h1 {
  max-width: 13ch;
  color: #fff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.top-carousel__content p:not(.top-carousel__brand) {
  max-width: 52ch;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.top-carousel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button--light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.top-carousel__controls {
  position: absolute;
  right: max(1rem, calc((100vw - var(--container)) / 2));
  bottom: 4.6rem;
  z-index: 3;
  display: flex;
  gap: 0.65rem;
}

.top-carousel__button,
.top-carousel__dot {
  border: 0;
  padding: 0;
  cursor: pointer;
}

.top-carousel__button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: #fff;
  background: rgba(13, 27, 36, 0.36);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  font-size: 1.7rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.top-carousel__button:hover,
.top-carousel__button:focus-visible {
  transform: translateY(-2px);
  background: rgba(13, 27, 36, 0.54);
}

.top-carousel__dots {
  position: absolute;
  right: max(1rem, calc((100vw - var(--container)) / 2));
  bottom: 2rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(13, 27, 36, 0.3);
  backdrop-filter: blur(12px);
}

.top-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.2s ease, background 0.2s ease;
}

.top-carousel__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  padding: 4rem 0 3.4rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: -90px;
  top: 88px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 152, 87, 0.22), transparent 68%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.8rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5.6rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.35rem;
}

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

.hero__lead {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  font-size: 1.09rem;
  color: #41515b;
}

.hero__title {
  display: grid;
  gap: 0.22rem;
  max-width: 12ch;
  letter-spacing: -0.075em;
}

.hero__title-kicker {
  width: fit-content;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(11, 79, 88, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.58);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.74rem, 1vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__title-main {
  display: inline-block;
  color: var(--ink);
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(13, 27, 36, 0.14);
}

.hero__title-main::after {
  content: "";
  display: block;
  width: min(100%, 420px);
  height: 10px;
  margin-top: 0.24rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-deep), var(--primary), var(--gold), transparent);
  box-shadow: 0 10px 24px rgba(181, 69, 32, 0.2);
}

.hero__title-note {
  display: block;
  max-width: 18ch;
  color: #31414b;
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary) 54%, #e38a4d);
  box-shadow: 0 18px 40px rgba(181, 69, 32, 0.28);
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.whatsapp-link {
  gap: 0.55rem;
}

.wa-icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3.2A12.72 12.72 0 0 0 3.32 15.92c0 2.24.58 4.42 1.7 6.35L3.2 28.8l6.68-1.75a12.66 12.66 0 0 0 6.16 1.57h.01A12.72 12.72 0 0 0 16.04 3.2Zm0 23.27h-.01a10.55 10.55 0 0 1-5.38-1.47l-.39-.23-3.96 1.04 1.06-3.86-.25-.4a10.53 10.53 0 1 1 8.93 4.92Zm5.78-7.88c-.32-.16-1.87-.92-2.16-1.03-.29-.1-.5-.16-.71.16-.21.32-.82 1.03-1 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.47-.55.16-.18.21-.32.32-.53.1-.21.05-.39-.03-.55-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.39-.29.32-1.11 1.08-1.11 2.63s1.13 3.05 1.29 3.26c.16.21 2.22 3.39 5.38 4.75.75.32 1.34.52 1.8.66.76.24 1.45.21 2 .13.61-.09 1.87-.76 2.13-1.5.26-.74.26-1.37.18-1.5-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3.2A12.72 12.72 0 0 0 3.32 15.92c0 2.24.58 4.42 1.7 6.35L3.2 28.8l6.68-1.75a12.66 12.66 0 0 0 6.16 1.57h.01A12.72 12.72 0 0 0 16.04 3.2Zm0 23.27h-.01a10.55 10.55 0 0 1-5.38-1.47l-.39-.23-3.96 1.04 1.06-3.86-.25-.4a10.53 10.53 0 1 1 8.93 4.92Zm5.78-7.88c-.32-.16-1.87-.92-2.16-1.03-.29-.1-.5-.16-.71.16-.21.32-.82 1.03-1 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.47-.55.16-.18.21-.32.32-.53.1-.21.05-.39-.03-.55-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.39-.29.32-1.11 1.08-1.11 2.63s1.13 3.05 1.29 3.26c.16.21 2.22 3.39 5.38 4.75.75.32 1.34.52 1.8.66.76.24 1.45.21 2 .13.61-.09 1.87-.76 2.13-1.5.26-.74.26-1.37.18-1.5-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__highlights li {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 32, 43, 0.09);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(13, 27, 36, 0.05);
}

.hero__panel {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 560px;
  padding: 1.35rem;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(11, 79, 88, 0.24), rgba(181, 69, 32, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 82px rgba(8, 31, 44, 0.18);
  overflow: hidden;
}

.hero__panel::before {
  content: "TDO";
  position: absolute;
  top: 1.1rem;
  right: 1.35rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-shadow: 0 12px 26px rgba(8, 31, 44, 0.34);
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 152, 87, 0.32), transparent 65%);
}

.hero__media {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 31, 44, 0.1), rgba(8, 31, 44, 0.58)),
    linear-gradient(90deg, rgba(247, 242, 234, 0.02), rgba(247, 242, 234, 0.3)),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.26), transparent 28%);
}

.hero__seal {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 220px);
  margin: 2.7rem 0 0;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(13, 27, 36, 0.34), rgba(13, 27, 36, 0.12)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(8, 31, 44, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero__seal::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199, 152, 87, 0.2);
  transform: translateY(-50%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease, transform 4.8s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.07);
}

.hero__carousel-controls {
  position: absolute;
  right: 1rem;
  bottom: 4.4rem;
  z-index: 2;
  display: flex;
  gap: 0.55rem;
}

.hero__carousel-button,
.hero__carousel-dot {
  border: 0;
  padding: 0;
  cursor: pointer;
}

.hero__carousel-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(13, 27, 36, 0.48), rgba(13, 27, 36, 0.18)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px rgba(8, 31, 44, 0.22);
  backdrop-filter: blur(10px);
  font-size: 1.55rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__carousel-button:hover,
.hero__carousel-button:focus-visible {
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(13, 27, 36, 0.62), rgba(13, 27, 36, 0.24)),
    rgba(255, 255, 255, 0.18);
}

.hero__carousel-dots {
  position: absolute;
  right: 1.1rem;
  bottom: 1.55rem;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(13, 27, 36, 0.24);
  backdrop-filter: blur(10px);
}

.hero__carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero__carousel-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #fff;
}

.signal-card,
.metric-card,
.catalog-card,
.sector-card,
.advantage-card,
.contact-form,
.faq-list details {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 12px 30px rgba(16, 32, 43, 0.08);
}

.signal-card {
  max-width: 78%;
  margin-top: auto;
  padding: 1.55rem;
  border-radius: 28px;
  backdrop-filter: blur(16px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 234, 0.9)),
    rgba(255, 253, 248, 0.9);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 48px rgba(8, 31, 44, 0.16);
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(180deg, var(--gold), var(--primary), var(--accent));
}

.signal-card__label,
.metric-card span,
.advantage-card span {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.signal-card strong,
.metric-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.signal-card p {
  margin-top: 0.7rem;
  font-size: 0.96rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.92rem;
  margin-top: 1rem;
}

.metric-card {
  padding: 1.18rem;
  border-radius: 26px;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 241, 235, 0.88)),
    rgba(255, 253, 248, 0.88);
  border-color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: auto -32px -42px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 152, 87, 0.15), transparent 66%);
}

.metric-card:first-child {
  grid-column: span 2;
  padding: 1.35rem 1.45rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 234, 0.88)),
    linear-gradient(90deg, rgba(199, 152, 87, 0.14), rgba(11, 79, 88, 0.1));
}

.metric-card:first-child strong {
  font-size: 1.48rem;
}

.trust-band {
  padding: 0 0 1rem;
}

.trust-band__inner {
  padding: 1.1rem 1.3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #0e5c66, #0a3140);
  color: rgba(255, 255, 255, 0.88);
}

.trust-band p {
  margin: 0;
  color: inherit;
  text-align: center;
}

.section {
  padding: 5.5rem 0;
}

.section--alt,
.section--faq {
  background: rgba(255, 255, 255, 0.45);
}

.section--catalog {
  padding-top: 4rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-items: center;
  text-align: center;
}

.section-heading--left {
  justify-items: start;
  text-align: left;
}

.catalog-grid,
.product-grid,
.sector-grid,
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.section--products {
  padding-top: 1rem;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.filter-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #0a3140);
}

.product-card {
  display: grid;
  grid-template-rows: 36px minmax(58px, auto) auto 1fr auto;
  gap: 0.95rem;
  padding: 1.45rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 12px 30px rgba(16, 32, 43, 0.08);
  transition: transform 0.2s ease, opacity 0.2s ease;
  min-height: 100%;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
}

.product-card.is-hidden {
  display: none;
}

.product-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  min-height: 34px;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card h3 {
  align-self: start;
  min-height: 58px;
}

.product-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.product-card a {
  font-weight: 800;
  color: var(--primary-deep);
}

.catalog-card,
.sector-card,
.advantage-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.catalog-card:hover,
.catalog-card:focus-visible,
.sector-card:hover,
.sector-card:focus-within,
.advantage-card:hover,
.advantage-card:focus-within,
.family-link-card:hover,
.family-link-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(181, 69, 32, 0.18);
  box-shadow: 0 22px 48px rgba(16, 32, 43, 0.13);
}

.sector-card {
  display: grid;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 249, 0.94));
}

.sector-card__media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe6ec, #c1cfd8);
}

.sector-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 31, 44, 0.02), rgba(8, 31, 44, 0.22)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 34%);
}

.sector-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sector-card__body {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem 1.4rem 1.5rem;
}

.advantage-card {
  display: grid;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 250, 0.94));
}

.advantage-card__media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe6ec, #bccdd7);
}

.advantage-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 31, 44, 0.04), rgba(8, 31, 44, 0.26)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.34), transparent 32%);
}

.advantage-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.advantage-card__body {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem 1.4rem 1.5rem;
}

.catalog-card {
  display: grid;
  gap: 0.8rem;
  min-height: 188px;
  background:
    radial-gradient(circle at 20% 0%, rgba(199, 152, 87, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 248, 0.94));
}

.catalog-card__media,
.showcase-card__media {
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 52%),
    linear-gradient(180deg, #eef4f7, #dfe8ec);
}

.catalog-card__media {
  height: 180px;
  margin: -0.2rem -0.2rem 0.4rem;
  border: 1px solid rgba(16, 32, 43, 0.05);
}

.catalog-card__media img,
.showcase-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 0.85rem;
  mix-blend-mode: multiply;
  filter: contrast(1.05) saturate(1.04);
}

.catalog-card__link {
  margin-top: auto;
  font-weight: 800;
  color: var(--primary-deep);
}

.catalog-card__link::after {
  content: " ->";
  color: var(--primary);
}

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

.family-link-card {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 250, 0.94));
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 12px 30px rgba(16, 32, 43, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.family-link-card__media {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe6ec, #c1cfd8);
}

.family-link-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 31, 44, 0.03), rgba(8, 31, 44, 0.2)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 34%);
}

.family-link-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 0.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 241, 245, 0.9));
  mix-blend-mode: multiply;
}

.family-link-card__media--combo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem;
}

.family-link-card__media--combo img {
  height: 165px;
  padding: 0.65rem;
  border-radius: 20px;
  box-shadow: 0 14px 26px rgba(16, 32, 43, 0.08);
}

.family-link-card__media--combo img:first-child {
  transform: rotate(-3deg);
}

.family-link-card__media--combo img:last-child {
  transform: rotate(3deg);
}

.family-link-card__body {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem 1.4rem 1.5rem;
}

.family-link-card span {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.family-link-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.page-hero {
  padding-top: 6.5rem;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.catalog-hero {
  gap: 2.4rem;
}

.catalog-hero__copy h1 {
  max-width: 12ch;
}

.catalog-hero__title {
  display: grid;
  gap: 0.25rem;
  max-width: 12ch;
  letter-spacing: -0.07em;
}

.catalog-hero__title-kicker {
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(11, 79, 88, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.62);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.74rem, 1vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalog-hero__title-main {
  display: inline-block;
  color: var(--ink);
  text-shadow: 0 12px 34px rgba(13, 27, 36, 0.14);
}

.catalog-hero__title-main::after {
  content: "";
  display: block;
  width: min(100%, 410px);
  height: 10px;
  margin-top: 0.24rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-deep), var(--primary), var(--gold), transparent);
  box-shadow: 0 10px 24px rgba(181, 69, 32, 0.2);
}

.catalog-hero__title-note {
  display: block;
  max-width: 17ch;
  color: #31414b;
  font-size: clamp(1.45rem, 2.45vw, 2.4rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.catalog-hero__title-accent {
  color: var(--primary);
  text-shadow: 0 10px 26px rgba(181, 69, 32, 0.18);
}

.catalog-hero__lead {
  max-width: 540px;
  margin: 1.25rem 0 0;
  color: #41515b;
  font-size: 1.08rem;
  line-height: 1.7;
}

.breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.page-visual,
.detail-card,
.showcase-card,
.cta-banner {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 12px 30px rgba(16, 32, 43, 0.08);
}

.page-visual {
  position: relative;
  display: grid;
  gap: 0.85rem;
  min-height: 400px;
  padding: 1.8rem;
  border-radius: 30px;
  align-content: end;
  overflow: hidden;
}

.page-visual > * {
  position: relative;
  z-index: 1;
}

.page-visual__media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 1.6rem 8.4rem;
  z-index: 0;
}

.page-visual__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 242, 234, 0.12) 0%, rgba(247, 242, 234, 0.06) 38%, rgba(247, 242, 234, 0.92) 100%),
    linear-gradient(90deg, rgba(247, 242, 234, 0.86) 0%, rgba(247, 242, 234, 0.2) 42%, rgba(247, 242, 234, 0.04) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 42%);
}

.page-visual__media img {
  width: min(100%, 320px);
  height: 220px;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 248, 0.94));
  box-shadow: 0 18px 34px rgba(16, 32, 43, 0.12);
  mix-blend-mode: multiply;
  filter: contrast(1.05) saturate(1.03) brightness(0.98);
  transform: none;
}

.page-visual__media--duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.page-visual__media--duo img {
  width: min(100%, 230px);
  height: 190px;
}

.page-visual__media--duo img:first-child {
  transform: rotate(-4deg) translateY(-4px);
}

.page-visual__media--duo img:last-child {
  transform: rotate(4deg) translateY(12px);
}

.page-visual--steel { background: linear-gradient(135deg, #edf3f7, #cfdce6); }
.page-visual--rings { background: linear-gradient(135deg, #f2f7f8, #d7e5e7); }
.page-visual--industrial { background: linear-gradient(135deg, #e9eef4, #bccddb); }
.page-visual--anchor { background: linear-gradient(135deg, #f3ede5, #e0d0bb); }
.page-visual--support { background: linear-gradient(135deg, #eef5f4, #c7dcdb); }
.page-visual--tools { background: linear-gradient(135deg, #f4eee8, #ded1c4); }

.catalog-hero__visual {
  min-height: 430px;
  padding: 2.1rem;
  align-content: stretch;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.76), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(14, 92, 102, 0.14), transparent 22%),
    linear-gradient(145deg, #edf3f8 0%, #cddbea 100%);
}

.catalog-hero__sheet {
  position: absolute;
  top: 2rem;
  right: 2.3rem;
  width: min(100%, 290px);
  min-height: 250px;
  padding: 1.15rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 251, 0.94)),
    linear-gradient(135deg, rgba(14, 92, 102, 0.08), rgba(198, 79, 40, 0.08));
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 28px 60px rgba(16, 32, 43, 0.14);
  transform: rotate(-7deg);
}

.catalog-hero__sheet::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(16, 32, 43, 0.06);
}

.catalog-hero__sheet-top,
.catalog-hero__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.catalog-hero__pill,
.catalog-hero__mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-hero__pill {
  padding: 0.45rem 0.78rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #e07e44);
}

.catalog-hero__mini {
  padding: 0.4rem 0.7rem;
  color: var(--accent);
  background: rgba(14, 92, 102, 0.1);
}

.catalog-hero__sheet-body {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.catalog-hero__line {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 32, 43, 0.12), rgba(16, 32, 43, 0.04));
}

.catalog-hero__line--short {
  width: 58%;
}

.catalog-hero__line--soft {
  width: 74%;
  opacity: 0.72;
}

.catalog-hero__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.catalog-hero__orbit--one {
  top: 1.6rem;
  left: 1.4rem;
  width: 116px;
  height: 116px;
}

.catalog-hero__orbit--two {
  top: 4.6rem;
  left: 5.4rem;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.catalog-hero__stats {
  position: absolute;
  left: 1.7rem;
  right: 1.7rem;
  bottom: 6.6rem;
}

.catalog-hero__stat {
  min-width: 108px;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 30px rgba(16, 32, 43, 0.08);
}

.catalog-hero__stat span,
.catalog-hero__caption-note {
  color: var(--muted);
}

.catalog-hero__stat span {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-hero__stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.catalog-hero__caption {
  margin-top: auto;
  display: grid;
  gap: 0.5rem;
  width: min(100%, 280px);
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  background: rgba(250, 252, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(16, 32, 43, 0.1);
}

.catalog-hero__caption strong {
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
}

.catalog-hero__caption-note {
  font-size: 0.95rem;
  line-height: 1.5;
}

.catalog-hero__visual {
  min-height: 520px;
  padding: 1.35rem;
  align-content: end;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(11, 79, 88, 0.92), rgba(13, 27, 36, 0.82)),
    linear-gradient(145deg, #edf3f8 0%, #cddbea 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 34px 90px rgba(8, 31, 44, 0.24);
}

.catalog-hero__visual::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border-radius: 29px;
  background:
    linear-gradient(180deg, rgba(13, 27, 36, 0.04) 0%, rgba(13, 27, 36, 0.12) 48%, rgba(13, 27, 36, 0.76) 100%),
    linear-gradient(90deg, rgba(13, 27, 36, 0.18), transparent 54%);
}

.catalog-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.catalog-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}

.catalog-hero__sheet {
  top: 1.25rem;
  right: 1.25rem;
  width: 205px;
  min-height: auto;
  display: grid;
  gap: 0.5rem;
  padding: 0.95rem;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 48px rgba(8, 31, 44, 0.24);
  transform: none;
}

.catalog-hero__sheet::before {
  content: none;
}

.catalog-hero__sheet strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.catalog-hero__sheet > span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.catalog-hero__product {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 0.85rem;
  width: min(100% - 2.7rem, 280px);
  padding: 0.78rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 42px rgba(8, 31, 44, 0.24);
  backdrop-filter: blur(10px);
}

.catalog-hero__product img {
  width: 72px;
  height: 64px;
  object-fit: contain;
  padding: 0.45rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #edf3f6);
}

.catalog-hero__product span,
.catalog-hero__stat span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-hero__product strong {
  display: block;
  margin-top: 0.2rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.catalog-hero__product--one {
  left: 1.35rem;
  top: 8.8rem;
}

.catalog-hero__rail {
  position: absolute;
  left: 1.35rem;
  bottom: 1.45rem;
  z-index: 2;
  display: flex;
  gap: 0.65rem;
}

.catalog-hero__rail img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  padding: 0.65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(8, 31, 44, 0.22);
}

.catalog-hero__stats {
  left: auto;
  right: 1.35rem;
  bottom: 1.45rem;
  z-index: 2;
}

.catalog-hero__stat {
  min-width: 112px;
  padding: 0.78rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.92);
}

.catalog-hero__caption {
  z-index: 2;
  width: min(100%, 340px);
  margin: 0 0 5.85rem 1.1rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 48px rgba(8, 31, 44, 0.22);
}

.catalog-hero__caption strong {
  font-size: 1.16rem;
}

.page-visual__badge {
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-visual__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  width: min(100%, 340px);
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(16, 32, 43, 0.08);
  justify-self: center;
}

.page-visual__copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.page-visual__copy p {
  margin: 0;
}

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

.showcase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.detail-card,
.showcase-card {
  padding: 1.4rem;
  border-radius: 24px;
}

.detail-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.9;
}

.showcase-card {
  display: grid;
  gap: 0.85rem;
}

.showcase-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  padding: 0.85rem;
}

.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.showcase-card__media--combo {
  gap: 0.5rem;
}

.showcase-card__media--combo img {
  width: 50%;
  height: 150px;
  padding: 0.45rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 24px rgba(16, 32, 43, 0.08);
}

.visual-thumb--hex { background: linear-gradient(135deg, #dfe8ef, #8da1b0); }
.visual-thumb--machine { background: linear-gradient(135deg, #ebeff3, #aab9c7); }
.visual-thumb--flat { background: linear-gradient(135deg, #dbe0e6, #8b98a6); }
.visual-thumb--security { background: linear-gradient(135deg, #edf4f6, #9faebc); }
.visual-thumb--nut { background: linear-gradient(135deg, #edf2f6, #a4b4c4); }
.visual-thumb--lock { background: linear-gradient(135deg, #eef3f0, #a8bbb2); }
.visual-thumb--washer { background: linear-gradient(135deg, #f0f3f5, #b0bbc4); }
.visual-thumb--spring { background: linear-gradient(135deg, #f6f3ef, #c8beb3); }
.visual-thumb--allen { background: linear-gradient(135deg, #dce7ef, #7f97ab); }
.visual-thumb--struct { background: linear-gradient(135deg, #eceff3, #95a9bb); }
.visual-thumb--flange { background: linear-gradient(135deg, #eef5f7, #aec0cb); }
.visual-thumb--auto { background: linear-gradient(135deg, #f3efe8, #cabcae); }
.visual-thumb--drill { background: linear-gradient(135deg, #ece4da, #c2a98f); }
.visual-thumb--anchor { background: linear-gradient(135deg, #efe6d9, #baa17e); }
.visual-thumb--chem { background: linear-gradient(135deg, #f2eadf, #d1b894); }
.visual-thumb--plug { background: linear-gradient(135deg, #f2f0eb, #c8c2b8); }
.visual-thumb--rod { background: linear-gradient(135deg, #edf3f5, #9aaeb8); }
.visual-thumb--clamp { background: linear-gradient(135deg, #eef2ef, #a8b5ae); }
.visual-thumb--channel { background: linear-gradient(135deg, #f0f4f4, #a6bab8); }
.visual-thumb--hanger { background: linear-gradient(135deg, #edf4f2, #b3c7c4); }
.visual-thumb--bit { background: linear-gradient(135deg, #f0f3f8, #9fb3ca); }
.visual-thumb--torx { background: linear-gradient(135deg, #eef1f6, #a4b0c5); }
.visual-thumb--disc { background: linear-gradient(135deg, #f5eee8, #c8b4a4); }
.visual-thumb--spray { background: linear-gradient(135deg, #f2f5ef, #bccab2); }

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 28px;
}

.catalog-card p,
.sector-card p,
.advantage-card p,
.metric-card p,
.signal-card p {
  margin-bottom: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 1.5rem;
  align-items: start;
}

.solutions-layout {
  display: grid;
  gap: 2rem;
}

.solutions-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(16, 32, 43, 0.1);
}

.solutions-intro h2 {
  max-width: 17ch;
}

.solutions-lead {
  margin: 0 0 0.2rem;
  max-width: 46ch;
  font-size: 1.05rem;
}

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

.solution-list article {
  position: relative;
  min-height: 240px;
  padding: 1.45rem;
  border: 1px solid rgba(16, 32, 43, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 0%, rgba(199, 152, 87, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 249, 0.88));
  box-shadow: 0 16px 38px rgba(16, 32, 43, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.solution-list article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 79, 88, 0.12), transparent 66%);
}

.solution-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(181, 69, 32, 0.18);
  box-shadow: 0 24px 48px rgba(16, 32, 43, 0.12);
}

.solution-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #123341);
  box-shadow: 0 14px 28px rgba(11, 79, 88, 0.18);
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.solution-list h3,
.solution-list p,
.solution-list span {
  position: relative;
  z-index: 1;
}

.solution-list p {
  margin-bottom: 0;
}

.solutions-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(16, 32, 43, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.solutions-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #33454f;
  font-weight: 800;
}

.solutions-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(181, 69, 32, 0.09);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 0.85rem 0 0;
}

.section--contact {
  padding-bottom: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-points {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.contact-points li {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-link {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(11, 79, 88, 0.28);
  text-underline-offset: 0.18em;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--primary);
  text-decoration-color: currentColor;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 28px;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 32, 43, 0.14);
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(14, 92, 102, 0.2);
  border-color: var(--accent);
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
}

.form-note.is-success {
  color: var(--accent);
  font-weight: 800;
}

.form-note.is-error {
  color: var(--primary-deep);
  font-weight: 800;
}

.privacy-page h1 {
  max-width: none;
}

.privacy-card {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 12px 30px rgba(16, 32, 43, 0.08);
}

.privacy-card p {
  margin: 0;
}

.footer {
  padding: 2rem 0 2.8rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 1.25rem 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(16, 32, 43, 0.1);
}

.footer__brand p {
  margin: 0.35rem 0 0;
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__links a,
.footer__meta a {
  font-weight: 800;
}

.footer__links a:hover,
.footer__links a:focus-visible,
.footer__meta a:hover,
.footer__meta a:focus-visible {
  color: var(--primary);
}

.footer__meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #148b87);
  box-shadow: 0 18px 45px rgba(14, 92, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(14, 92, 102, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 980px) {
  .hero__grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .top-carousel {
    min-height: 620px;
  }

  .top-carousel__content h1 {
    max-width: 11ch;
  }

  .solutions-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .solutions-intro h2,
  .solutions-lead {
    max-width: none;
  }

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

  .catalog-grid,
  .product-grid,
  .family-link-grid,
  .family-detail-grid,
  .sector-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero__grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero__copy h1 {
    max-width: none;
  }

  .page-visual {
    min-height: 350px;
  }

  .page-visual__media {
    justify-content: center;
    padding: 1.2rem 1.2rem 7rem;
  }

  .page-visual__media img {
    width: min(100%, 280px);
    height: 200px;
  }

  .page-visual__media--duo img {
    width: min(100%, 210px);
    height: 175px;
  }

  .catalog-hero__visual {
    min-height: 430px;
  }

  .catalog-hero__sheet {
    top: 1.3rem;
    right: 1.3rem;
    width: 205px;
    min-height: auto;
  }

  .catalog-hero__caption {
    margin-bottom: 5.7rem;
  }

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

  .metric-card:first-child {
    grid-column: auto;
  }

  .hero__panel {
    min-height: 460px;
  }

  .hero__seal {
    justify-self: start;
    margin-top: 2.4rem;
  }

  .hero__title {
    max-width: 14ch;
  }

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

  .menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 253, 250, 0.98);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  h1,
  h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .top-carousel {
    min-height: 590px;
  }

  .top-carousel__content {
    padding-top: 3.5rem;
    padding-bottom: 7rem;
  }

  .top-carousel__content h1 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 14vw, 4rem);
    letter-spacing: -0.06em;
  }

  .top-carousel__content p:not(.top-carousel__brand) {
    font-size: 1rem;
  }

  .top-carousel__controls {
    right: auto;
    left: 1rem;
    bottom: 4.35rem;
  }

  .top-carousel__dots {
    right: auto;
    left: 1rem;
    bottom: 1.85rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero__grid {
    gap: 1.6rem;
  }

  .hero__title {
    max-width: none;
    letter-spacing: -0.06em;
  }

  .hero__title-main::after {
    height: 7px;
  }

  .hero__title-note {
    max-width: none;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__panel {
    min-height: 430px;
    padding: 1rem;
    border-radius: 28px;
  }

  .hero__seal {
    width: 100%;
    margin-top: 2.2rem;
    padding-left: 1.7rem;
    text-align: left;
  }

  .signal-card {
    max-width: 100%;
  }

  .page-hero {
    padding-top: 4.5rem;
  }

  .topbar__inner {
    min-height: 74px;
  }

  .section {
    padding: 4rem 0;
  }

  .brand__text span {
    font-size: 0.82rem;
  }

  .brand__mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .hero__actions,
  .hero__highlights {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer__links,
  .footer__meta {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-grid,
  .product-grid,
  .solution-list,
  .family-link-grid,
  .family-detail-grid,
  .showcase-grid,
  .sector-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .solutions-proof {
    align-items: stretch;
    border-radius: 24px;
    flex-direction: column;
  }

  .catalog-hero {
    gap: 1.4rem;
  }

  .page-visual {
    min-height: 300px;
    padding: 1.2rem;
  }

  .page-visual__media {
    padding: 1rem 1rem 6.4rem;
  }

  .page-visual__media img {
    width: min(100%, 235px);
    height: 170px;
  }

  .page-visual__media--duo {
    gap: 0.55rem;
    padding: 1rem 1rem 6.6rem;
  }

  .page-visual__media--duo img {
    width: 100%;
    height: 135px;
    padding: 0.7rem;
    border-radius: 18px;
  }

  .family-link-card__media--combo {
    gap: 0.5rem;
  }

  .family-link-card__media--combo img {
    height: 140px;
  }

  .page-visual__copy {
    width: 100%;
  }

  .catalog-hero__visual {
    min-height: 470px;
    padding: 1.2rem;
  }

  .catalog-hero__sheet {
    top: 1.2rem;
    right: 1.2rem;
    width: 178px;
    min-height: auto;
    padding: 0.9rem;
  }

  .catalog-hero__caption {
    width: calc(100% - 2.4rem);
    margin: 0 auto 6.2rem;
  }

  .catalog-hero__rail {
    left: 1.2rem;
    bottom: 1.2rem;
    gap: 0.45rem;
  }

  .catalog-hero__rail img {
    width: 54px;
    height: 54px;
    padding: 0.45rem;
    border-radius: 14px;
  }

  .catalog-hero__stats {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    justify-content: flex-end;
  }

  .catalog-hero__stat {
    min-width: 94px;
    flex: 0 0 auto;
    padding: 0.8rem 0.85rem;
  }

  .button,
  .menu__cta,
  .floating-cta {
    width: 100%;
  }
}
