:root {
  --purple: #901b69;
  --purple-dark: #4e0256;
  --gold: #e0991b;
  --cream: #f9f4f2;
  --cream-2: #f4e8e0;
  --paper: #fffaf4;
  --ink: #1f1b20;
  --muted: #706672;
  --line: #eadbc7;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  background: var(--cream);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(249, 244, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-row {
  display: flex;
  min-width: 240px;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.brand img {
  display: block;
  width: 220px;
  max-width: 34vw;
  height: auto;
}

.header-contact {
  display: inline-flex;
  min-width: 152px;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #128c4a;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
}

.header-contact:hover {
  color: #0c6f3a;
  background: transparent;
}

.header-contact svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: currentColor;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 44px);
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--purple);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(144, 27, 105, 0.18);
  border-radius: 999px;
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 34px;
  padding: 0 13px;
  color: var(--purple);
  border: 1px solid transparent;
  border-radius: 999px;
}

.language-link.active,
.language-link:hover {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 12px 24px rgba(144, 27, 105, 0.16);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-dropdown-trigger::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 9px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 40;
  display: grid;
  width: min(260px, 82vw);
  gap: 4px;
  padding: 10px;
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid rgba(224, 153, 27, 0.32);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(58, 18, 54, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  height: 16px;
  content: "";
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown-menu a {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: var(--purple-dark);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.1;
  text-decoration: none;
  text-transform: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--purple);
  background: rgba(144, 27, 105, 0.08);
}

.nav-dropdown-menu span {
  font-weight: 900;
}

.nav-dropdown-menu small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 92px);
  padding: 0;
  overflow: hidden;
  background: var(--paper);
}

.hero::after {
  position: absolute;
  right: -20vw;
  bottom: -24vw;
  width: 48vw;
  height: 48vw;
  min-width: 520px;
  min-height: 520px;
  content: "";
  background: rgba(224, 153, 27, 0.16);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  min-height: calc(100vh - 92px);
  padding: clamp(64px, 7vw, 110px) clamp(24px, 6vw, 86px);
  background: linear-gradient(135deg, rgba(78, 2, 86, 0.98), rgba(82, 16, 72, 0.96));
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: "Lexend", Arial, Helvetica, sans-serif;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--purple-dark);
  font-family: "Lexend", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(224, 153, 27, 0.22);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 92px);
  padding: clamp(48px, 6vw, 80px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 90% 8%, rgba(224, 153, 27, 0.18), transparent 30%),
    linear-gradient(135deg, #fff9ed, #f9f4f2);
}

.hero-slider {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 34px 80px rgba(78, 2, 86, 0.28);
}

.hero-photo {
  display: block;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-slide {
  position: relative;
  opacity: 0;
  animation: heroFade 42s infinite;
}

.hero-slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

.hero-slide:nth-child(5) {
  animation-delay: 24s;
}

.hero-slide:nth-child(6) {
  animation-delay: 30s;
}

.hero-slide:nth-child(7) {
  animation-delay: 36s;
}

.hero-dots {
  position: absolute;
  right: clamp(38px, 6vw, 78px);
  bottom: clamp(66px, 8vw, 106px);
  z-index: 2;
  display: flex;
  gap: 9px;
  padding: 9px 12px;
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-dots span {
  width: 8px;
  height: 8px;
  background: rgba(78, 2, 86, 0.28);
  border-radius: 999px;
  animation: heroDot 42s infinite;
}

.hero-dots span:nth-child(1) {
  animation-delay: 0s;
}

.hero-dots span:nth-child(2) {
  animation-delay: 6s;
}

.hero-dots span:nth-child(3) {
  animation-delay: 12s;
}

.hero-dots span:nth-child(4) {
  animation-delay: 18s;
}

.hero-dots span:nth-child(5) {
  animation-delay: 24s;
}

.hero-dots span:nth-child(6) {
  animation-delay: 30s;
}

.hero-dots span:nth-child(7) {
  animation-delay: 36s;
}

@keyframes heroFade {
  0%,
  12% {
    opacity: 1;
    transform: scale(1);
  }

  15%,
  94% {
    opacity: 0;
    transform: scale(1.035);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroDot {
  0%,
  12% {
    width: 22px;
    background: var(--gold);
  }

  15%,
  100% {
    width: 8px;
    background: rgba(78, 2, 86, 0.28);
  }
}

.hero-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: min(360px, 70%);
  padding: 24px;
  color: var(--white);
  background: rgba(78, 2, 86, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

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

.hero-badge span {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-badge strong {
  font-size: 22px;
  line-height: 1.2;
}

.overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 86px);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  transform: none;
}

.overview-title {
  grid-column: 1 / -1;
  padding: clamp(32px, 5vw, 56px) 30px 34px;
  background:
    linear-gradient(135deg, rgba(144, 27, 105, 0.12), rgba(224, 153, 27, 0.14)),
    var(--paper);
}

.overview-title h2 {
  max-width: 980px;
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(34px, 4.8vw, 70px);
  line-height: 0.98;
}

.overview article {
  min-height: 230px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(224, 153, 27, 0.06), transparent 70%),
    var(--white);
}

.overview small {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.overview strong,
.overview span {
  display: block;
}

.overview strong {
  margin-bottom: 12px;
  color: var(--purple-dark);
  font-size: 26px;
  line-height: 1.1;
}

.overview span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: 118px clamp(18px, 6vw, 86px);
}

.market-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 112px clamp(18px, 6vw, 86px) 92px;
  background:
    radial-gradient(circle at 0% 0%, rgba(228, 157, 23, 0.18), transparent 30%),
    var(--cream);
}

.market-focus h2 {
  margin-bottom: 0;
}

.market-grid {
  display: grid;
  gap: 14px;
}

.market-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(58, 18, 54, 0.06);
}

.market-grid small {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--purple);
  border-radius: 50%;
  font-weight: 900;
}

.market-grid strong {
  color: var(--purple-dark);
  font-size: 22px;
  line-height: 1.15;
}

.market-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.section-title {
  max-width: 850px;
  margin-bottom: 44px;
}

.category-heading {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin: -12px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(78, 2, 86, 0.18);
}

.category-heading strong,
.category-heading span {
  display: block;
}

.category-heading strong {
  color: var(--purple-dark);
  font-family: "Lexend", sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
}

.category-heading span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

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

.product-tabs > a {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--purple-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.product-tabs .active {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(144, 27, 105, 0.98), rgba(78, 2, 86, 0.98)),
    var(--purple);
  border-color: var(--purple);
}

.product-tabs > a span {
  display: inline-flex;
  width: fit-content;
  min-height: 0;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(224, 153, 27, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.product-tabs > a:not(.active) span {
  color: var(--muted);
  background: var(--white);
}

.product-subtitle {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin: 0 0 18px;
}

.product-subtitle h3 {
  max-width: 760px;
  margin: 0;
  color: var(--purple-dark);
  font-family: "Lexend", Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

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

.product-grid article {
  position: relative;
  display: grid;
  grid-template-rows: 260px auto;
  min-width: 0;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(58, 18, 54, 0.07);
}

.product-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  z-index: 2;
  content: "";
  background: var(--purple);
}

.product-grid article:nth-child(3n + 2)::before {
  background: var(--gold);
}

.product-grid article:nth-child(3n + 3)::before {
  background: linear-gradient(90deg, var(--purple), var(--gold));
}

.product-grid img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 78%, rgba(144, 27, 105, 0.08), transparent 32%),
    var(--white);
}

.product-grid img[src*="buffalo-super-large"],
.product-grid img[src*="winner-large"] {
  padding: 0;
  transform: scale(1.12);
}

.product-grid div {
  position: relative;
  z-index: 1;
  min-height: 174px;
  padding: 20px 22px 22px;
  background: #fffdf8;
  border-top: 1px solid var(--line);
}

.product-grid small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.product-grid strong {
  margin-bottom: 9px;
  color: var(--purple-dark);
  font-size: 23px;
}

.product-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.product-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.product-downloads a,
.product-downloads em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(219, 151, 18, 0.32);
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.product-downloads a {
  color: var(--purple-dark);
  background: rgba(219, 151, 18, 0.12);
}

.product-downloads em {
  color: var(--muted);
  background: rgba(255, 253, 248, 0.78);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.future-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.future-products article {
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(224, 153, 27, 0.08), rgba(144, 27, 105, 0.06)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.future-products small {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.future-products strong {
  display: block;
  margin-bottom: 12px;
  color: var(--purple-dark);
  font-size: 28px;
  line-height: 1.1;
}

.future-products p {
  margin-bottom: 0;
  font-size: 16px;
}

.detail-list article {
  min-height: 210px;
  padding: 26px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.detail-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--purple-dark);
  font-size: 22px;
}

.detail-list p {
  margin-bottom: 0;
  font-size: 16px;
}

.distribution {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  background: var(--purple-dark);
}

.distribution h2,
.distribution .eyebrow {
  color: var(--gold);
}

.distribution p {
  color: rgba(255, 255, 255, 0.76);
}

.channel-board {
  display: grid;
  gap: 16px;
}

.channel-board article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
}

.channel-board span,
.channel-board strong {
  display: block;
}

.channel-board span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.channel-board strong {
  color: var(--white);
  font-size: 27px;
  line-height: 1.15;
}

.registration {
  background: var(--cream-2);
}

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

.registration-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

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

.registration-grid strong {
  margin-bottom: 72px;
  color: var(--purple);
  font-size: 24px;
}

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

.services {
  background: var(--cream-2);
}

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

.service-grid article {
  min-height: 330px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.service-grid small {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 900;
}

.service-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--purple);
  font-size: 24px;
  line-height: 1.15;
}

.service-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(147, 0, 111, 0.24);
  border-radius: 20px;
}

.process-line div {
  min-height: 160px;
  padding: 26px;
  background: var(--purple-dark);
}

.process-line span,
.process-line strong {
  display: block;
}

.process-line span {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-line strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.consulting {
  background: var(--cream);
}

.consulting-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.64fr);
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(30px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(147, 0, 111, 0.92), rgba(58, 18, 54, 0.96)),
    var(--purple-dark);
  border-radius: 30px;
}

.consulting-card h2 {
  color: var(--white);
}

.consulting-card p {
  color: rgba(255, 255, 255, 0.76);
}

.consulting-card ul {
  display: grid;
  gap: 12px;
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consulting-card li {
  padding: 18px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 1.08fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: stretch;
  padding: 84px clamp(20px, 5.4vw, 78px);
  background:
    radial-gradient(circle at 12% 18%, rgba(224, 153, 27, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf7, var(--cream));
}

.contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: clamp(34px, 4vw, 54px);
  background:
    linear-gradient(140deg, rgba(78, 2, 86, 0.97), rgba(93, 24, 80, 0.96) 58%, rgba(124, 76, 24, 0.88)),
    var(--purple-dark);
  border-radius: 26px;
  box-shadow: 0 26px 64px rgba(58, 18, 54, 0.14);
}

.contact-intro .eyebrow {
  color: var(--gold);
}

.contact-intro h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.02;
}

.contact-intro p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.contact-tags span {
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-self: stretch;
}

.contact-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 164px;
  padding: 26px 28px 26px 34px;
  color: var(--purple-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.9)),
    var(--white);
  border: 1px solid rgba(224, 153, 27, 0.28);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(58, 18, 54, 0.06);
}

.contact-card::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 6px;
  content: "";
  background: var(--gold);
  border-radius: 0 999px 999px 0;
}

.contact-card.primary-contact {
  color: var(--purple-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 241, 0.95)),
    var(--white);
  border-color: rgba(224, 153, 27, 0.26);
}

.contact-card.primary-contact::before {
  background: linear-gradient(180deg, var(--purple), var(--gold));
}

.contact-card.address-card::before {
  background: #7a8d22;
}

.contact-card small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--purple-dark);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1;
}

.contact-card a,
.contact-card span {
  display: block;
  color: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--gold);
}

.address-card {
  grid-column: 1 / -1;
  min-height: 0;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.address-card small,
.address-card strong,
.address-card span {
  grid-column: 1;
}

.address-card a {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  padding: 12px 16px;
  color: var(--white);
  background: var(--purple);
  border-radius: 999px;
}

.map-frame {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 300px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(58, 18, 54, 0.05);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 86px);
  color: var(--white);
  background: var(--purple-dark);
}

@media (max-width: 1080px) {
  .hero,
  .market-focus,
  .distribution,
  .consulting-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    background: var(--paper);
  }

  .contact-intro {
    position: static;
    min-height: 0;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-photo {
    min-height: 0;
    height: 540px;
    border-radius: 34px;
  }

  .hero-slider {
    min-height: 0;
    height: 540px;
  }

  .overview,
  .detail-list,
  .product-grid,
  .product-tabs,
  .future-products,
  .registration-grid,
  .service-grid,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
  }

  .brand-row {
    min-height: 78px;
    width: 100%;
    justify-content: space-between;
  }

  .brand img {
    width: 194px;
    max-width: 62vw;
  }

  .header-contact {
    min-width: 46px;
    min-height: 40px;
  }

  nav {
    justify-content: flex-start;
    gap: 10px 16px;
    overflow-x: auto;
    padding: 12px 0 14px;
    border-top: 1px solid rgba(78, 2, 86, 0.1);
    font-size: 12px;
    white-space: nowrap;
  }

  .nav-dropdown {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-dropdown-trigger {
    min-height: 0;
  }

  .nav-dropdown-trigger::after {
    width: 6px;
    height: 6px;
    margin-left: 7px;
  }

  .nav-dropdown-menu {
    position: static;
    display: flex;
    width: auto;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu a {
    gap: 8px;
    min-height: 28px;
    padding: 6px 9px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(224, 153, 27, 0.24);
    border-radius: 999px;
    font-size: 11px;
  }

  .nav-dropdown-menu small {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero-copy {
    min-height: 0;
    padding: 46px 16px 54px;
  }

  h1 {
    font-size: 45px;
  }

  .overview,
  .detail-list,
  .product-grid,
  .product-tabs,
  .future-products,
  .registration-grid,
  .service-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 0;
    padding: 18px 16px 44px;
  }

  .hero-photo {
    min-height: 0;
    height: 420px;
    border-radius: 26px;
  }

  .hero-slider {
    min-height: 0;
    height: 420px;
    border-radius: 26px;
  }

  .hero-badge {
    top: 18px;
    right: 18px;
    left: 18px;
    width: auto;
    padding: 18px;
  }

  .hero-dots {
    right: 30px;
    bottom: 58px;
  }

  .overview {
    margin: 0 16px;
    transform: none;
  }

  .section,
  .contact {
    padding: 72px 16px;
  }

  .contact-intro {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .contact-intro h2 {
    font-size: 42px;
  }

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

  .address-card {
    grid-template-columns: 1fr;
  }

  .address-card a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .product-grid article {
    grid-template-rows: 300px auto;
  }

  .market-grid article {
    grid-template-columns: 1fr;
  }

  .registration-grid strong {
    margin-bottom: 34px;
  }

  footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}

.registration-service-link{display:inline-block;margin-top:16px;font-weight:900;color:var(--purple-dark);text-underline-offset:4px}.registration-service-link:focus-visible{outline:3px solid var(--gold);outline-offset:4px}

/* Click-to-open service navigation, shared across the site. */
.services-nav{position:relative;white-space:normal}
.services-nav summary{display:flex;align-items:center;gap:10px;min-height:44px;cursor:pointer;list-style:none;font:inherit;color:inherit}
.services-nav summary::-webkit-details-marker{display:none}
.services-nav summary::after{content:"";width:7px;height:7px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:translateY(-2px) rotate(45deg)}
.services-nav[open] summary{color:var(--purple-dark)}
.services-nav[open] summary::after{transform:translateY(2px) rotate(225deg)}
.services-nav-panel{position:absolute;top:calc(100% + 8px);left:0;z-index:45;width:285px;max-width:calc(100vw - 48px);padding:10px;background:var(--paper);border:1px solid var(--line);border-radius:16px;box-shadow:0 18px 42px #4e025621}
.services-nav-panel a{display:block;padding:12px 14px;border-radius:8px;font-size:15px;font-weight:800;line-height:1.4;text-transform:none;white-space:normal}
.services-nav-panel a:hover,.services-nav-panel a:focus-visible{background:var(--cream-2);color:var(--purple-dark)}
.services-nav-panel a:last-child{border-top:1px solid var(--line);margin-top:5px;border-radius:0}
.services-nav summary:focus-visible{outline:3px solid var(--gold);outline-offset:3px}
.service-grid article[id]{scroll-margin-top:180px}
.service-grid article[id]:target{outline:2px solid var(--purple);outline-offset:4px}
@media(max-width:680px){.site-header nav{overflow:visible;white-space:normal}.services-nav-panel{width:260px}.services-nav-panel a{font-size:15px}.service-grid article[id]{scroll-margin-top:220px}}
