:root {
  --gold: #bea892;
  --gold-dark: #8f7863;
  --gold-soft: rgba(190, 168, 146, 0.72);
  --gold-glass: rgba(190, 168, 146, 0.2);
  --black: #030303;
  --ink: #0a0a0a;
  --graphite: #151515;
  --steel: #8f99a1;
  --paper: #f6f0e9;
  --white: #ffffff;
  --line: rgba(190, 168, 146, 0.28);
  --shadow: rgba(0, 0, 0, 0.45);
  color-scheme: dark;
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  min-width: 320px;
}

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

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

.site-header {
  align-items: center;
  background: rgba(3, 3, 3, 0.78);
  border-bottom: 1px solid rgba(190, 168, 146, 0.16);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand,
.header-actions,
.main-nav,
.lang-switch {
  align-items: center;
  display: flex;
  
}

.lang-switch {

}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
}

.main-nav {
  gap: clamp(14px, 2.4vw, 28px);
  justify-content: center;
}

.main-nav a,
.admin-link {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-current,
.admin-link:hover {
  color: var(--gold);
}

.header-actions {
  gap: 14px;
  justify-content: flex-end;
}

.lang-switch {
  border: 1px solid rgba(190, 168, 146, 0.26);
}

.lang-btn {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  height: 32px;
  width: 38px;
}

.lang-btn.is-active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(190, 168, 146, 0.96), rgba(143, 120, 99, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 28px rgba(190, 168, 146, 0.2);
  color: var(--black);
}

.admin-link {
  border: 1px solid rgba(190, 168, 146, 0.36);
  padding: 8px 12px;
}

.hero {
  align-items: center;
  display: flex;
  min-height: min(94vh, 900px);
  overflow: hidden;
  padding: 138px clamp(20px, 6vw, 84px) 86px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, transparent, rgba(190, 168, 146, 0.34), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  object-fit: contain;
  object-position: center;
  width: 100%;
  filter: saturate(1.04) contrast(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 42%, rgba(190, 168, 146, 0.16), rgba(3, 3, 3, 0) 34%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.9) 35%, rgba(3, 3, 3, 0.26) 68%, rgba(3, 3, 3, 0.64) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08) 0%, rgba(3, 3, 3, 0.9) 100%);
}

.hero-content {
  max-width: 730px;
  min-width: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.026)),
    rgba(10, 10, 10, 0.74);
  border: 1px solid rgba(190, 168, 146, 0.26);
  bottom: 42px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 90px rgba(0, 0, 0, 0.48),
    0 0 54px rgba(190, 168, 146, 0.08);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  overflow: hidden;
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  width: min(48vw, 690px);
  z-index: 2;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.hero-panel div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(190, 168, 146, 0.035);
  min-height: 104px;
  padding: 22px;
  position: relative;
}

.hero-panel div::before {
  background: radial-gradient(ellipse at center, rgba(190, 168, 146, 0.9) 0%, rgba(190, 168, 146, 0.44) 34%, rgba(190, 168, 146, 0) 72%);
  content: "";
  height: 3px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.hero-panel span,
.policy-grid span {
  color: rgba(190, 168, 146, 0.86);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-panel strong,
.policy-grid strong {
  color: var(--white);
  display: block;
  font-size: 1.04rem;
  line-height: 1.35;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.25rem, 9vw, 8.6rem);
  line-height: 0.86;
  margin-bottom: 28px;
  max-width: 9ch;
  text-transform: uppercase;
}

.hero h1 {
  background:
    linear-gradient(105deg, #fff7ed 0%, #bea892 34%, #f5e5d2 52%, #8f7863 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.46));
  letter-spacing: 0;
  position: relative;
  text-shadow: 0 0 42px rgba(190, 168, 146, 0.22);
}

.hero h1::after {
  background: linear-gradient(90deg, rgba(190, 168, 146, 0), rgba(245, 229, 210, 0.9), rgba(190, 168, 146, 0));
  bottom: -16px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: min(100%, 520px);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.96;
  margin-bottom: 0;
  max-width: 12ch;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.9vw, 1.28rem);
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 650px;
}

.hero-actions,
.contact-layout,
.split-layout {
  display: grid;
  gap: 18px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.btn {
  align-items: center;
  border: 1px solid rgba(190, 168, 146, 0.22);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  min-width: 154px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.btn::before {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 46%);
  content: "";
  inset: 1px auto 1px 1px;
  opacity: 0.44;
  pointer-events: none;
  position: absolute;
  width: 42%;
}

.btn::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  content: "";
  height: 160%;
  left: -70%;
  pointer-events: none;
  position: absolute;
  top: -30%;
  transform: rotate(18deg);
  transition: left 480ms ease;
  width: 36%;
}

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

.btn:hover::after {
  left: 128%;
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(190, 168, 146, 0.95), rgba(190, 168, 146, 0.62) 48%, rgba(143, 120, 99, 0.86));
  border-color: rgba(190, 168, 146, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -14px 24px rgba(3, 3, 3, 0.08),
    0 16px 42px rgba(190, 168, 146, 0.24);
  color: var(--black);
}

.btn-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(190, 168, 146, 0.08);
  border-color: rgba(190, 168, 146, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(190, 168, 146, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.25);
  color: var(--white);
}

.btn-primary:hover,
.btn-secondary:hover {
  border-color: rgba(190, 168, 146, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -14px 26px rgba(3, 3, 3, 0.12),
    0 18px 48px rgba(190, 168, 146, 0.3);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 84px);
}

.metrics-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(10, 10, 10, 0.82);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(20px, 6vw, 84px);
}

.metric-item {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 10, 0.82);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 146px;
  padding: 34px 28px 30px;
  position: relative;
  text-align: center;
}

.metric-item::before {
  background: radial-gradient(ellipse at center, rgba(190, 168, 146, 0.96) 0%, rgba(190, 168, 146, 0.58) 34%, rgba(190, 168, 146, 0) 72%);
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.metric-item strong {
  background: linear-gradient(135deg, #ffffff, #bea892);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
  margin-bottom: 12px;
}

.metric-item span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.page-hero {
  padding: 150px clamp(20px, 6vw, 84px) clamp(72px, 9vw, 118px);
}

.page-hero h1 {
  font-size: clamp(2.85rem, 7vw, 6.8rem);
  max-width: 780px;
}

.page-lead {
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.04rem, 1.9vw, 1.3rem);
  line-height: 1.7;
  margin-bottom: 0;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.corporate-overview {
  background:
    radial-gradient(circle at 14% 18%, rgba(190, 168, 146, 0.12), transparent 34%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  padding-top: clamp(88px, 11vw, 150px);
}

.overview-layout {
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.overview-statement {
  align-self: start;
  position: sticky;
  top: 110px;
}

.overview-statement p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-top: 26px;
}

.profile-points {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.profile-points span {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(190, 168, 146, 0.045);
  border: 1px solid rgba(190, 168, 146, 0.16);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 46px;
  padding: 0 16px;
  text-transform: uppercase;
}

.profile-points span::before {
  background: var(--gold);
  content: "";
  height: 6px;
  margin-right: 12px;
  width: 6px;
}

.governance-list {
  display: grid;
  gap: 14px;
}

.governance-row {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(7, 7, 7, 0.74);
  border: 1px solid rgba(190, 168, 146, 0.16);
  display: grid;
  gap: 26px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 164px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.governance-row::before {
  background: linear-gradient(180deg, rgba(190, 168, 146, 0.92), rgba(190, 168, 146, 0));
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 2px;
}

.governance-row::after {
  color: rgba(190, 168, 146, 0.66);
  content: ">";
  font-size: 1.2rem;
  font-weight: 800;
  position: absolute;
  right: 24px;
  top: 28px;
}

.governance-row .product-code {
  margin-bottom: 0;
}

.governance-row h3 {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  margin-bottom: 12px;
}

.governance-row p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.72;
  max-width: 620px;
}

.governance-row:hover h3 {
  color: var(--gold);
}

.governance-row:hover {
  border-color: rgba(190, 168, 146, 0.34);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.intro-band {
  background: var(--paper);
  color: var(--black);
}

.intro-band .section-kicker {
  color: var(--gold-dark);
}

.split-layout,
.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
}

.intro-copy {
  align-self: end;
  color: rgba(10, 10, 10, 0.72);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

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

.section-head h2 {
  max-width: 780px;
}

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

.product-card {
  background: var(--graphite);
  border: 1px solid rgba(190, 168, 146, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 60px var(--shadow);
  min-height: 270px;
  padding: 28px;
}

.product-code {
  color: var(--gold);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 74px;
}

.product-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 0;
}

.editorial-band {
  background:
    linear-gradient(135deg, rgba(190, 168, 146, 0.14), rgba(255, 255, 255, 0.025) 44%, rgba(0, 0, 0, 0) 100%),
    #101010;
  border-bottom: 1px solid rgba(190, 168, 146, 0.12);
  border-top: 1px solid rgba(190, 168, 146, 0.12);
  overflow: hidden;
  position: relative;
}

.editorial-band::before {
  background: url("data:image/svg+xml,%3Csvg width='360' height='720' viewBox='0 0 360 720' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23bea892' stroke-opacity='.34' stroke-width='2'%3E%3Cpath d='M105 20C255 90 255 170 105 240C-45 310 -45 390 105 460C255 530 255 610 105 700'/%3E%3Cpath d='M255 20C105 90 105 170 255 240C405 310 405 390 255 460C105 530 105 610 255 700'/%3E%3C/g%3E%3Cg stroke='%23bea892' stroke-opacity='.18' stroke-width='2'%3E%3Cpath d='M118 78H242M134 142H226M103 224H257M82 326H278M103 428H257M134 520H226M118 624H242'/%3E%3C/g%3E%3Cg fill='%23bea892' fill-opacity='.42'%3E%3Ccircle cx='105' cy='20' r='5'/%3E%3Ccircle cx='255' cy='20' r='5'/%3E%3Ccircle cx='118' cy='78' r='4'/%3E%3Ccircle cx='242' cy='78' r='4'/%3E%3Ccircle cx='105' cy='240' r='5'/%3E%3Ccircle cx='255' cy='240' r='5'/%3E%3Ccircle cx='105' cy='460' r='5'/%3E%3Ccircle cx='255' cy='460' r='5'/%3E%3Ccircle cx='105' cy='700' r='5'/%3E%3Ccircle cx='255' cy='700' r='5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
  inset: 24px -40px 24px auto;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  width: min(34vw, 360px);
}

.editorial-band .section-inner {
  position: relative;
  z-index: 1;
}

.institutional-layout {
  display: grid;
  gap: clamp(32px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.institutional-copy {
  align-self: end;
}

.institutional-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.78;
}

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

.policy-grid div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(190, 168, 146, 0.18);
  min-height: 132px;
  padding: 22px;
}

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

.product-showcase-card {
  background:
    linear-gradient(180deg, rgba(190, 168, 146, 0.12), rgba(255, 255, 255, 0.018)),
    #0b0b0b;
  border: 1px solid rgba(190, 168, 146, 0.2);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-showcase-card::before {
  background: radial-gradient(ellipse at center, rgba(190, 168, 146, 0.9), rgba(190, 168, 146, 0) 72%);
  content: "";
  height: 3px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 0;
}

.product-showcase-card:hover {
  border-color: rgba(190, 168, 146, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), 0 0 42px rgba(190, 168, 146, 0.12);
  transform: translateY(-6px);
}

.product-showcase-card:hover h3 {
  color: var(--gold);
}

.product-showcase-card:hover .product-card-media img {
  opacity: 1;
  transform: scale(1.06);
}

.product-showcase span {
  color: rgba(190, 168, 146, 0.82);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.product-showcase h3 {
  margin-bottom: 12px;
}

.product-showcase p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.62;
  margin: 0;
}

.product-card-media {
  background: #050505;
  border: 1px solid rgba(190, 168, 146, 0.14);
  height: 172px;
  margin-top: auto;
  overflow: hidden;
}

.product-card-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 420ms ease;
  width: 100%;
}

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

.risk-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    #111;
  border: 1px solid rgba(190, 168, 146, 0.16);
  border-radius: 8px;
  min-height: 300px;
  padding: 28px;
}

.risk-item .product-code {
  margin-bottom: 92px;
}

.risk-item p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.68;
}

.protocol-band {
  background:
    radial-gradient(circle at 82% 44%, rgba(190, 168, 146, 0.16), transparent 34%),
    linear-gradient(110deg, #070707 0 52%, #111 52% 100%),
    #070707;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.protocol-band::before {
  color: rgba(190, 168, 146, 0.055);
  content: "QUALITY";
  font-size: clamp(5rem, 15vw, 15rem);
  font-weight: 900;
  line-height: 1;
  right: -18px;
  top: 28px;
  letter-spacing: 0;
  opacity: 1;
  position: absolute;
}

.protocol-band::after {
  background: linear-gradient(180deg, rgba(190, 168, 146, 0), rgba(190, 168, 146, 0.36), rgba(190, 168, 146, 0));
  content: "";
  height: 70%;
  left: 52%;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
  top: 15%;
  width: 1px;
}

.protocol-band .section-inner {
  position: relative;
  z-index: 1;
}

.protocol-band .section-kicker {
  color: var(--gold);
}

.protocol-layout,
.source-layout {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
}

.position-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 48px;
  position: relative;
}

.position-list::before {
  background: linear-gradient(90deg, rgba(190, 168, 146, 0), rgba(190, 168, 146, 0.7), rgba(190, 168, 146, 0));
  content: "";
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 20px;
}

.position-list div {
  padding: 0 24px;
  position: relative;
}

.position-list div::before {
  background: var(--gold);
  border: 6px solid #111;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(190, 168, 146, 0.3), 0 0 38px rgba(190, 168, 146, 0.28);
  content: "";
  height: 18px;
  left: 24px;
  position: absolute;
  top: -37px;
  width: 18px;
}

.position-list span {
  color: rgba(190, 168, 146, 0.24);
  display: block;
  font-size: clamp(4.3rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.82;
  margin-bottom: 28px;
}

.position-list p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0;
}

.source-band {
  background:
    radial-gradient(circle at 18% 20%, rgba(190, 168, 146, 0.18), rgba(3, 3, 3, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #050505;
}

.source-layout {
  align-items: end;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.authentication-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(190, 168, 146, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(190, 168, 146, 0.12), rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0)),
    #0b0b0b;
  border-bottom: 1px solid rgba(190, 168, 146, 0.12);
  border-top: 1px solid rgba(190, 168, 146, 0.12);
  overflow: hidden;
  position: relative;
}

.authentication-band::before {
  background:
    linear-gradient(90deg, rgba(190, 168, 146, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(190, 168, 146, 0.1) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent, #000 62%, transparent);
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.authentication-band .section-inner {
  position: relative;
  z-index: 1;
}

.auth-layout {
  align-items: end;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
}

.auth-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
  line-height: 1.72;
  margin-top: 26px;
  max-width: 680px;
}

.auth-steps {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  max-width: 560px;
}

.auth-steps span {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(190, 168, 146, 0.15);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  font-size: 0.82rem;
  font-weight: 800;
  min-height: 44px;
  padding: 0 14px;
  text-transform: uppercase;
}

.auth-steps span::before {
  background: var(--gold);
  content: "";
  height: 6px;
  margin-right: 12px;
  width: 6px;
}

.auth-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.026)),
    rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(190, 168, 146, 0.28);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 90px rgba(0, 0, 0, 0.42),
    0 0 54px rgba(190, 168, 146, 0.1);
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.auth-card::before {
  background: radial-gradient(ellipse at center, rgba(190, 168, 146, 0.95), rgba(190, 168, 146, 0) 72%);
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.auth-card-top {
  border-bottom: 1px solid rgba(190, 168, 146, 0.14);
  margin: -2px 0 6px;
  padding-bottom: 20px;
}

.auth-card-top strong {
  background: linear-gradient(135deg, #ffffff, #bea892);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-top: 10px;
}

.auth-card label {
  display: grid;
  gap: 10px;
}

.auth-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-card input {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(190, 168, 146, 0.22);
  color: var(--white);
  min-height: 52px;
  outline: none;
  padding: 0 15px;
}

.auth-card input:focus {
  border-color: rgba(190, 168, 146, 0.62);
}

.auth-page-hero {
  background:
    radial-gradient(circle at 78% 26%, rgba(190, 168, 146, 0.2), transparent 30%),
    linear-gradient(110deg, rgba(3, 3, 3, 0.98) 0 54%, rgba(17, 17, 17, 0.96) 54% 100%),
    #030303;
  min-height: 760px;
  overflow: hidden;
  padding: 170px clamp(20px, 6vw, 84px) 92px;
  position: relative;
}

.auth-page-hero-inner {
  align-items: end;
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  margin: 0 auto;
  max-width: 1380px;
  position: relative;
  z-index: 1;
}

.auth-page-hero::before {
  color: rgba(190, 168, 146, 0.055);
  content: "AUTH";
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  line-height: 0.8;
  position: absolute;
  right: -34px;
  top: 150px;
}

.auth-page-hero::after {
  background: url("data:image/svg+xml,%3Csvg width='520' height='520' viewBox='0 0 520 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23bea892' stroke-opacity='.16'%3E%3Cpath d='M260 40a220 220 0 1 0 0 440a220 220 0 0 0 0-440Z'/%3E%3Cpath d='M260 96a164 164 0 1 0 0 328a164 164 0 0 0 0-328Z'/%3E%3Cpath d='M40 260h440M260 40v440M104 104l312 312M416 104 104 416'/%3E%3C/g%3E%3Ccircle cx='260' cy='260' r='8' fill='%23bea892' fill-opacity='.5'/%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
  height: min(42vw, 520px);
  opacity: 0.8;
  position: absolute;
  right: clamp(10px, 5vw, 86px);
  top: 148px;
  width: min(42vw, 520px);
}

.auth-hero-content,
.auth-page-card {
  position: relative;
  z-index: 1;
}

.auth-hero-content {
  max-width: 760px;
}

.auth-hero-content h1 {
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  max-width: 8ch;
}

.auth-hero-content p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.72;
  max-width: 610px;
}

.auth-page-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.026)),
    rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(190, 168, 146, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 32px 100px rgba(0, 0, 0, 0.46),
    0 0 64px rgba(190, 168, 146, 0.12);
  display: grid;
  gap: 20px;
  overflow: hidden;
  padding: 30px;
}

.auth-page-card::before {
  background: radial-gradient(ellipse at center, rgba(190, 168, 146, 0.95), rgba(190, 168, 146, 0) 72%);
  content: "";
  height: 4px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
}

.auth-page-card-head {
  border-bottom: 1px solid rgba(190, 168, 146, 0.15);
  padding-bottom: 22px;
}

.auth-page-card-head span,
.auth-page-card label span {
  color: var(--gold);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-page-card-head strong {
  background: linear-gradient(135deg, #fff, #bea892);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  margin-top: 12px;
}

.auth-page-card label {
  display: grid;
  gap: 10px;
}

.auth-page-card input {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(190, 168, 146, 0.24);
  color: var(--white);
  min-height: 56px;
  outline: none;
  padding: 0 16px;
}

.auth-page-card input:focus {
  border-color: rgba(190, 168, 146, 0.68);
}

.verify-result {
  align-items: center;
  border: 1px solid rgba(190, 168, 146, 0.22);
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  font-size: 0.92rem;
  gap: 14px;
  grid-template-columns: 44px minmax(0, 1fr);
  line-height: 1.55;
  padding: 14px;
}

.verify-result[hidden] {
  display: none;
}

.verify-result i {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  font-size: 1.45rem;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.verify-result strong {
  color: var(--white);
  display: block;
  font-size: 0.98rem;
  font-weight: 900;
}

.verify-result p {
  color: currentColor;
  margin: 2px 0 0;
}

.verify-result[data-tone="success"] {
  background: rgba(48, 185, 117, 0.12);
  border-color: rgba(48, 185, 117, 0.35);
  color: #dffbea;
}

.verify-result[data-tone="success"] i {
  background: rgba(48, 185, 117, 0.18);
  color: #7dffb8;
}

.verify-result[data-tone="warning"] {
  background: rgba(190, 168, 146, 0.14);
  border-color: rgba(190, 168, 146, 0.42);
  color: #f5e7d4;
}

.verify-result[data-tone="warning"] i {
  background: rgba(190, 168, 146, 0.18);
  color: var(--gold);
}

.verify-result[data-tone="error"] {
  background: rgba(220, 67, 67, 0.12);
  border-color: rgba(220, 67, 67, 0.36);
  color: #ffdede;
}

.verify-result[data-tone="error"] i {
  background: rgba(220, 67, 67, 0.18);
  color: #ff8b8b;
}

.auth-system-section {
  background: #080808;
}

.auth-system-grid {
  display: grid;
  gap: clamp(32px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
}

.auth-system-list {
  display: grid;
  gap: 14px;
}

.auth-system-list article {
  background:
    linear-gradient(135deg, rgba(190, 168, 146, 0.1), rgba(255, 255, 255, 0.022)),
    #101010;
  border: 1px solid rgba(190, 168, 146, 0.17);
  display: grid;
  gap: 18px;
  grid-template-columns: 70px minmax(0, 0.65fr) minmax(0, 1fr);
  min-height: 116px;
  padding: 24px;
}

.auth-system-list span {
  color: rgba(190, 168, 146, 0.42);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.auth-system-list h3 {
  margin: 0;
}

.auth-system-list p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.64;
  margin: 0;
}

.auth-support-band {
  background:
    linear-gradient(135deg, rgba(190, 168, 146, 0.14), rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0)),
    #101010;
}

.auth-support-layout {
  align-items: end;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
}

.auth-support-layout p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
  margin-bottom: 28px;
}

.product-hero {
  background:
    radial-gradient(circle at 76% 28%, rgba(190, 168, 146, 0.16), transparent 28%),
    linear-gradient(110deg, #050505 0%, #101010 58%, #070707 100%);
  border-bottom: 1px solid rgba(190, 168, 146, 0.14);
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 84px) 58px;
  position: relative;
}

.product-hero::before {
  background: linear-gradient(90deg, rgba(190, 168, 146, 0), rgba(190, 168, 146, 0.46), rgba(190, 168, 146, 0));
  bottom: 0;
  content: "";
  height: 1px;
  left: clamp(20px, 6vw, 84px);
  opacity: 0.7;
  position: absolute;
  width: min(520px, calc(100% - 40px));
}

.product-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.78fr);
  margin: 0 auto;
  max-width: 1380px;
  position: relative;
  z-index: 1;
}

.product-hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 4.45rem);
  line-height: 1;
  max-width: 680px;
}

.product-hero-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
  margin-bottom: 0;
  max-width: 650px;
}

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

.product-hero-visual {
  display: grid;
  gap: 14px;
}

.product-hero-frame {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(4, 4, 4, 0.72);
  border: 1px solid rgba(190, 168, 146, 0.2);
  min-height: 360px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
  position: relative;
}

.product-hero-frame::before {
  background: radial-gradient(ellipse at center, rgba(190, 168, 146, 0.96), rgba(190, 168, 146, 0) 72%);
  content: "";
  height: 4px;
  left: 26px;
  position: absolute;
  right: 26px;
  top: 0;
}

.product-hero-frame img {
  display: block;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

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

.product-hero-panel div,
.product-hero-panel a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(190, 168, 146, 0.055);
  border: 1px solid rgba(190, 168, 146, 0.15);
  min-height: 82px;
  padding: 18px;
}

.product-hero-panel strong {
  color: var(--gold);
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.product-hero-panel span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
  margin-top: 9px;
  text-transform: uppercase;
}

.product-hero-panel a {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: space-between;
  text-transform: uppercase;
}

.product-hero-panel a::after {
  color: var(--gold);
  content: ">";
  font-size: 1rem;
}

.product-catalog-section {
  background: #090909;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.product-catalog-section .section-inner {
  max-width: 1480px;
  padding-left: clamp(16px, 3vw, 36px);
  padding-right: clamp(16px, 3vw, 36px);
}

.product-catalog-head {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #0f0f0f;
  border-bottom: 1px solid rgba(190, 168, 146, 0.14);
  margin-bottom: 34px;
}

.product-catalog-head-inner {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  margin: 0 auto;
  max-width: 1480px;
  padding: clamp(30px, 4vw, 52px) clamp(16px, 3vw, 36px);
}

.product-catalog-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  max-width: 760px;
}

.product-catalog-head p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 640px;
}

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

.product-category-nav a {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(190, 168, 146, 0.16);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-category-nav a::after {
  color: var(--gold);
  content: ">";
}

.product-category-nav a:hover {
  border-color: rgba(190, 168, 146, 0.4);
  color: var(--white);
  transform: translateY(-1px);
}

.catalog-sections {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
}

.catalog-group {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(13, 13, 13, 0.72);
  border: 1px solid rgba(190, 168, 146, 0.12);
  padding: clamp(18px, 2.4vw, 28px);
  scroll-margin-top: 110px;
}

.catalog-group-head {
  align-items: center;
  border-bottom: 1px solid rgba(190, 168, 146, 0.16);
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
}

.catalog-group-head span {
  color: rgba(190, 168, 146, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
}

.catalog-group-head h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  margin: 0;
}

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

.catalog-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    #080808;
  border: 1px solid rgba(190, 168, 146, 0.16);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 330px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card-featured {
  grid-column: span 1;
}

.catalog-card:hover {
  border-color: rgba(190, 168, 146, 0.38);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.36), 0 0 34px rgba(190, 168, 146, 0.08);
  transform: translateY(-3px);
}

.catalog-media {
  background:
    radial-gradient(circle at 50% 20%, rgba(190, 168, 146, 0.11), transparent 42%),
    #050505;
  border: 0;
  border-bottom: 1px solid rgba(190, 168, 146, 0.12);
  cursor: zoom-in;
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.catalog-media img {
  display: block;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  transition: transform 420ms ease;
  width: 100%;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.045);
}

.catalog-card-body {
  align-content: start;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.catalog-card-body span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card-body h3 {
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
  line-height: 1.18;
  margin: 0;
}

.catalog-card-body p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.58;
  margin: 0;
}

.catalog-card-body a {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 8px;
  margin-top: 4px;
  text-transform: uppercase;
}

.catalog-card-body a::after {
  content: ">";
}

.product-process-section {
  background:
    linear-gradient(135deg, rgba(190, 168, 146, 0.12), rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0)),
    #101010;
  padding-left: clamp(16px, 3vw, 36px);
  padding-right: clamp(16px, 3vw, 36px);
}

.product-process-section .section-inner {
  max-width: 1480px;
}

.product-process-layout {
  display: block;
}

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

.process-stack div {
  background:
    linear-gradient(135deg, rgba(190, 168, 146, 0.12), rgba(255, 255, 255, 0.02)),
    #080808;
  border: 1px solid rgba(190, 168, 146, 0.16);
  display: grid;
  gap: 14px;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 260px;
  padding: 24px;
}

.process-stack i {
  align-items: center;
  background: rgba(190, 168, 146, 0.12);
  color: var(--gold);
  display: flex;
  font-size: 1.35rem;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.process-stack span {
  color: rgba(190, 168, 146, 0.46);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  justify-self: end;
}

.process-stack h3,
.process-stack p {
  grid-column: 1 / -1;
  margin: 0;
}

.process-stack p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.62;
}

body.is-modal-open {
  overflow: hidden;
}

.site-page .section-inner,
.site-page .about-hero-inner,
.site-page .auth-page-hero-inner,
.site-page .contact-hero-inner,
.site-page .product-hero-inner,
.site-page .product-catalog-section .section-inner,
.site-page .product-catalog-head-inner,
.site-page .product-process-section .section-inner {
  max-width: 1380px;
}

.product-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
  position: fixed;
  z-index: 40;
}

.product-modal[hidden] {
  display: none;
}

.product-modal-backdrop {
  background: rgba(0, 0, 0, 0.82);
  border: 0;
  cursor: zoom-out;
  inset: 0;
  position: absolute;
}

.product-modal-content {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    #080808;
  border: 1px solid rgba(190, 168, 146, 0.26);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72);
  max-height: 88vh;
  max-width: min(980px, 92vw);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.product-modal-content img {
  display: block;
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.product-modal-content strong {
  border-top: 1px solid rgba(190, 168, 146, 0.16);
  color: var(--white);
  display: block;
  font-size: 1rem;
  padding: 16px 18px;
}

.product-modal-close {
  align-items: center;
  background: rgba(3, 3, 3, 0.72);
  border: 1px solid rgba(190, 168, 146, 0.26);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  z-index: 1;
}

.about-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(190, 168, 146, 0.16), transparent 30%),
    linear-gradient(180deg, #080808 0%, #101010 100%);
  border-bottom: 1px solid rgba(190, 168, 146, 0.14);
  padding: 122px clamp(20px, 6vw, 84px) 58px;
}

.about-hero-inner {
  align-items: stretch;
  display: grid;
  gap: clamp(34px, 5vw, 78px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  margin: 0 auto;
  max-width: 1480px;
}

.about-hero h1 {
  font-size: clamp(2.25rem, 4.1vw, 4.7rem);
  line-height: 1.02;
  max-width: 780px;
}

.about-hero p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.72;
  margin-top: 24px;
  max-width: 760px;
}

.about-hero-mark {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(3, 3, 3, 0.52);
  border: 1px solid rgba(190, 168, 146, 0.18);
  display: grid;
  gap: 28px;
  min-height: 280px;
  padding: 32px;
  position: relative;
}

.about-hero-mark::before {
  background: radial-gradient(ellipse at center, rgba(190, 168, 146, 0.96), rgba(190, 168, 146, 0) 72%);
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.about-hero-mark img {
  align-self: center;
  max-width: 260px;
  width: 82%;
}

.about-hero-mark span {
  align-self: end;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-statement-section {
  background:
    linear-gradient(135deg, rgba(190, 168, 146, 0.12), rgba(255, 255, 255, 0.018) 48%, transparent),
    #0b0b0b;
  padding-left: 0;
  padding-right: 0;
}

.about-statement-section .section-inner,
.about-system-section .section-inner {
  max-width: 1480px;
}

.about-standard-panel {
  background: transparent;
  border: 0;
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  padding: 0 clamp(16px, 3vw, 36px);
  position: relative;
}

.about-standard-panel::before {
  display: none;
}

.about-standard-copy {
  display: block;
}

.about-standard-copy > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
  line-height: 1.76;
  margin: 0;
}

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

.about-pillars-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016)),
    #080808;
  border: 1px solid rgba(190, 168, 146, 0.16);
  display: grid;
  gap: 20px;
  min-height: 300px;
  padding: 30px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.about-pillars-grid article:hover {
  border-color: rgba(190, 168, 146, 0.34);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.about-pillars-grid i {
  align-items: center;
  background: rgba(190, 168, 146, 0.12);
  color: var(--gold);
  display: flex;
  font-size: 1.45rem;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.about-pillars-grid span {
  color: rgba(190, 168, 146, 0.46);
  font-size: 1.7rem;
  font-weight: 900;
}

.about-pillars-grid h3,
.about-pillars-grid p {
  margin: 0;
}

.about-pillars-grid h3 {
  font-size: clamp(1.18rem, 1.5vw, 1.45rem);
  line-height: 1.18;
}

.about-pillars-grid p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.72;
}

.about-system-section {
  background: #080808;
  padding-left: clamp(16px, 3vw, 36px);
  padding-right: clamp(16px, 3vw, 36px);
}

.about-system-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
}

.about-system-panel {
  background:
    linear-gradient(145deg, rgba(190, 168, 146, 0.16), rgba(255, 255, 255, 0.018)),
    #111;
  border: 1px solid rgba(190, 168, 146, 0.2);
  display: grid;
  min-height: 300px;
  padding: 34px;
}

.about-system-panel span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-system-panel strong {
  align-self: end;
  font-size: clamp(1.55rem, 2.35vw, 2.65rem);
  line-height: 1.1;
}

.about-system-list {
  display: grid;
  gap: 14px;
}

.about-system-list div {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(190, 168, 146, 0.14);
  display: grid;
  gap: 22px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 82px;
  padding: 18px 22px;
}

.about-system-list b {
  color: rgba(190, 168, 146, 0.56);
  font-size: 1.1rem;
}

.about-system-list p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.58;
  margin: 0;
}

.link-card {
  display: block;
  transition: border-color 160ms ease, transform 160ms ease;
}

.link-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

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

.detail-grid article {
  border-left: 2px solid var(--gold-dark);
  padding-left: 24px;
}

.detail-grid .product-code {
  color: var(--gold-dark);
  margin-bottom: 42px;
}

.detail-grid p {
  color: rgba(10, 10, 10, 0.72);
  line-height: 1.7;
}

.contact-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(190, 168, 146, 0.18), transparent 30%),
    linear-gradient(120deg, #050505 0%, #101112 58%, #070707 100%);
  border-bottom: 1px solid rgba(190, 168, 146, 0.14);
  min-height: 760px;
  overflow: hidden;
  padding: 134px clamp(20px, 6vw, 84px) 78px;
  position: relative;
}

.contact-hero::before {
  background: url("../img/sigma-medicals-logo.png") center / contain no-repeat;
  content: "";
  height: min(46vw, 620px);
  opacity: 0.045;
  pointer-events: none;
  position: absolute;
  right: -120px;
  top: 110px;
  width: min(46vw, 620px);
}

.contact-hero-inner {
  align-items: end;
  display: grid;
  gap: clamp(32px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  margin: 0 auto;
  max-width: 1380px;
  position: relative;
  z-index: 1;
}

.contact-hero-copy {
  padding-bottom: clamp(8px, 3vw, 42px);
}

.contact-hero-copy h1 {
  font-size: clamp(2.65rem, 6vw, 6.4rem);
  line-height: 0.94;
  max-width: 820px;
}

.contact-hero-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.72;
  max-width: 620px;
}

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

.contact-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(7, 7, 7, 0.78);
  border: 1px solid rgba(190, 168, 146, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 100px rgba(0, 0, 0, 0.45);
  padding: clamp(24px, 3vw, 34px);
  position: relative;
}

.contact-panel::before {
  background: radial-gradient(ellipse at center, rgba(190, 168, 146, 0.95), rgba(190, 168, 146, 0) 72%);
  content: "";
  height: 4px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
}

.contact-panel-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-panel-head span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel-head strong {
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.16;
}

.contact-form {
  align-self: start;
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(190, 168, 146, 0.22);
  color: var(--white);
  outline: none;
  padding: 0 14px;
  width: 100%;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
}

.contact-form textarea {
  line-height: 1.55;
  min-height: 138px;
  padding-bottom: 13px;
  padding-top: 13px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(190, 168, 146, 0.9) 50%) calc(100% - 20px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(190, 168, 146, 0.9) 50%, transparent 50%) calc(100% - 15px) 50% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.05);
  padding-right: 42px;
}

.contact-form option {
  background: #101010;
  color: var(--white);
}

.contact-status {
  border: 1px solid rgba(190, 168, 146, 0.26);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
  padding: 13px 14px;
}

.contact-status[data-tone="success"] {
  background: rgba(48, 185, 117, 0.12);
  border-color: rgba(48, 185, 117, 0.35);
  color: #dffbea;
}

.contact-status[data-tone="error"] {
  background: rgba(220, 67, 67, 0.12);
  border-color: rgba(220, 67, 67, 0.36);
  color: #ffdede;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 168, 146, 0.1);
}

.contact-method-section {
  background:
    linear-gradient(135deg, rgba(190, 168, 146, 0.11), rgba(255, 255, 255, 0.02) 48%, transparent),
    #0b0b0b;
}

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

.contact-method-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016)),
    #080808;
  border: 1px solid rgba(190, 168, 146, 0.16);
  display: grid;
  gap: 16px;
  min-height: 300px;
  padding: 30px;
}

.contact-method-grid i {
  align-items: center;
  background: rgba(190, 168, 146, 0.12);
  color: var(--gold);
  display: flex;
  font-size: 1.45rem;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.contact-method-grid span {
  color: rgba(190, 168, 146, 0.7);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method-grid h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  line-height: 1;
  max-width: none;
}

.contact-method-grid p,
.contact-method-grid a {
  align-self: end;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.68;
  margin: 0;
}

.contact-method-grid a {
  color: var(--gold);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-process-band {
  background:
    radial-gradient(circle at 82% 42%, rgba(190, 168, 146, 0.14), transparent 32%),
    #080808;
}

.contact-process-layout {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
}

.contact-process-list {
  display: grid;
  gap: 12px;
}

.contact-process-list div {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(190, 168, 146, 0.14);
  display: grid;
  gap: 22px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 88px;
  padding: 18px 22px;
}

.contact-process-list b {
  color: rgba(190, 168, 146, 0.56);
  font-size: 1.1rem;
}

.contact-process-list p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.58;
  margin: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 14% 18%, rgba(190, 168, 146, 0.13), transparent 28%),
    linear-gradient(180deg, #0b0b0b, #030303);
  border-top: 1px solid rgba(190, 168, 146, 0.16);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 58px clamp(20px, 6vw, 84px) 24px;
}

.footer-main {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.55fr));
  margin: 0 auto;
  max-width: 1180px;
}

.footer-brand img {
  display: block;
  height: 62px;
  margin-bottom: 22px;
  width: auto;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0;
  max-width: 390px;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-column span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(190, 168, 146, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  margin: 46px auto 0;
  max-width: 1180px;
  padding-top: 22px;
}

.admin-logo {
  height: 58px;
  margin-bottom: 0;
  width: auto;
}

.admin-login-page {
  align-items: center;
  background:
    radial-gradient(circle at 72% 18%, rgba(190, 168, 146, 0.18), transparent 30%),
    linear-gradient(135deg, #030303, #101010);
  display: grid;
  min-height: 100vh;
  padding: 24px;
  place-items: center;
}

.admin-login-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.024)),
    rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(190, 168, 146, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 30px 90px rgba(0, 0, 0, 0.5);
  display: grid;
  gap: 16px;
  max-width: 460px;
  padding: 34px;
  position: relative;
  width: 100%;
}

.admin-login-card::before {
  background: radial-gradient(ellipse at center, rgba(190, 168, 146, 0.95), rgba(190, 168, 146, 0) 72%);
  content: "";
  height: 4px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
}

.admin-login-card h1 {
  font-size: clamp(2.15rem, 7vw, 4rem);
  margin-bottom: 8px;
  max-width: none;
}

.admin-login-card label {
  display: grid;
  gap: 8px;
}

.admin-login-card label span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-login-card input {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(190, 168, 146, 0.22);
  color: var(--white);
  min-height: 52px;
  outline: none;
  padding: 0 14px;
}

.admin-login-card input:focus {
  border-color: rgba(190, 168, 146, 0.62);
}

.admin-shell {
  display: grid;
  background:
    radial-gradient(circle at 84% 12%, rgba(190, 168, 146, 0.1), transparent 28%),
    #080808;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    #050505;
  border-right: 1px solid rgba(190, 168, 146, 0.14);
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 30px 22px;
}

.admin-brand {
  border-bottom: 1px solid rgba(190, 168, 146, 0.12);
  display: grid;
  gap: 14px;
  padding-bottom: 26px;
}

.admin-brand span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu a,
.admin-tab {
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  padding: 13px 14px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.admin-menu a.is-current,
.admin-menu a:hover,
.admin-tab.is-active {
  background: rgba(190, 168, 146, 0.12);
  border-color: rgba(190, 168, 146, 0.36);
  color: var(--gold);
}

.admin-menu a:hover {
  transform: translateX(3px);
}

.admin-workspace {
  padding: clamp(30px, 5vw, 64px);
}

.admin-topbar {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.admin-topbar h1 {
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  margin-bottom: 12px;
  max-width: none;
}

.admin-lead {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}

.admin-status {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(190, 168, 146, 0.18);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
  padding: 14px 16px;
}

.admin-status[data-tone="success"] {
  border-color: rgba(190, 168, 146, 0.48);
  color: var(--gold);
}

.admin-status[data-tone="error"] {
  border-color: rgba(255, 106, 106, 0.42);
  color: #ffaaaa;
}

.admin-dashboard-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
}

.admin-stat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.admin-stat-grid div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 12, 0.88);
  border: 1px solid rgba(190, 168, 146, 0.13);
  padding: 18px;
}

.admin-stat-grid span {
  color: rgba(190, 168, 146, 0.74);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.admin-stat-grid strong {
  color: var(--white);
  display: block;
  font-size: 1.35rem;
}

.admin-panel-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 12, 0.92);
  border: 1px solid rgba(190, 168, 146, 0.16);
  display: grid;
  gap: 22px;
  padding: 28px;
}

.admin-account-card {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
}

.admin-shortcut-card {
  align-content: start;
}

.admin-panel-card > span,
.admin-account-form label span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-panel-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  margin: 0;
}

.admin-panel-card p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
  margin: 0;
}

.admin-account-form {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.admin-account-form label {
  display: grid;
  gap: 8px;
}

.admin-account-form input {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(190, 168, 146, 0.2);
  color: var(--white);
  min-height: 50px;
  outline: none;
  padding: 0 13px;
}

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

.admin-account-form input:focus {
  border-color: rgba(190, 168, 146, 0.62);
}

.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-tab {
  background: transparent;
  cursor: pointer;
}

.translation-editor {
  display: grid;
  gap: 14px;
}

.translation-field {
  background: var(--graphite);
  border: 1px solid rgba(190, 168, 146, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.translation-field span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.translation-field input,
.translation-field textarea {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(190, 168, 146, 0.2);
  color: var(--white);
  outline: none;
  padding: 12px 13px;
  resize: vertical;
}

.translation-field input:focus,
.translation-field textarea:focus {
  border-color: rgba(190, 168, 146, 0.62);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
  display:block;
  width:100%!important;
  background:#000;
  position:absolute;
  top:63px;

  }
  
  .protocol-band{
  display:none
  }
  
  .product-process-section{ display:none }
    
  .main-nav a{
  display:block;
  width:100%;
  padding:15px 20px;
  border-top:1px solid #8f7863 ;
  }

  .brand-logo {
    height: 40px;
  }

  .hero {
    align-items: stretch;
    flex-direction: column;
    min-height: 86vh;
    padding-top: 120px;
  }

  .hero-panel {
    margin-top: 42px;
    position: relative;
    right: auto;
    width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.76) 62%, rgba(3, 3, 3, 0.5) 100%),
      linear-gradient(180deg, rgba(3, 3, 3, 0.14) 0%, rgba(3, 3, 3, 0.88) 100%);
  }

  .split-layout,
  .contact-layout,
  .product-grid,
  .detail-grid,
  .admin-shell,
  .risk-grid,
  .protocol-layout,
  .source-layout,
  .overview-layout,
  .institutional-layout,
  .policy-grid,
  .product-showcase,
  .footer-main,
  .auth-page-hero-inner,
  .auth-system-grid,
  .auth-system-list article,
  .auth-support-layout,
  .about-hero-inner,
  .about-standard-copy,
  .about-pillars-grid,
  .about-system-layout,
  .contact-hero-inner,
  .contact-form-grid,
  .contact-method-grid,
  .contact-process-layout,
  .product-hero-inner,
  .product-category-nav,
  .product-catalog-head,
  .product-catalog-head-inner,
  .catalog-grid,
  .product-process-layout,
  .process-stack div,
  .admin-dashboard-grid,
  .admin-stat-grid,
  .admin-account-card,
  .admin-form-row,
  .metrics-strip,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
    padding-top: 122px;
  }

  .contact-hero-copy {
    padding-bottom: 0;
  }

  .editorial-band .policy-grid {
    display: none;
  }

  .metric-item,
  .metric-item:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(190, 168, 146, 0.12);
  }

  .overview-statement {
    position: static;
  }

  .risk-item {
    min-height: 230px;
  }

  .risk-item .product-code {
    margin-bottom: 42px;
  }

  .source-links {
    justify-content: flex-start;
  }

  .admin-sidebar {
    border-bottom: 1px solid rgba(190, 168, 146, 0.14);
    border-right: 0;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card {
    min-height: 230px;
  }

  .catalog-card-featured {
    grid-column: span 1;
  }

  .product-hero-inner {
    min-height: auto;
  }

  .product-hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-stack div {
    gap: 12px;
  }

  .product-code {
    margin-bottom: 42px;
  }

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

}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding: 14px 16px;
  }

  .brand-logo {
    height: 34px;
  }

  .header-actions {
    gap: 8px;
  }

  .admin-link {
    display: none;
  }

  .lang-btn {
    height: 30px;
	width:55px
  }

  .hero {
    min-height: auto;
    padding: 110px 18px 54px;
  }

  .hero-content {
    max-width: calc(100vw - 36px);
    width: calc(100vw - 36px);
	padding:120px 0 0 0;
  }

  .hero-copy {
    max-width: 31ch;
    overflow-wrap: anywhere;
  }

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

  .hero-panel div {
    min-height: 92px;
  }

  .page-hero {
    padding: 116px 18px 62px;
  }

  .product-hero {
    min-height: auto;
    padding: 112px 18px 46px;
  }

  .product-hero-frame {
    min-height: 260px;
  }

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

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

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

  .auth-page-hero {
    min-height: auto;
    padding: 132px 18px 64px;
  }

  .auth-page-hero::after {
    height: 280px;
    opacity: 0.34;
    right: -80px;
    top: 120px;
    width: 280px;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 2.75rem);
    max-width: 100%;
  }

  .hero h1 {
    max-width: 8.5ch;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  h2 {
    font-size: 2.25rem;
  }

  .btn {
    width: 100%;
  }

  .contact-hero {
    padding: 116px 18px 58px;
  }

  .contact-panel {
    padding: 24px 18px;
  }

  .contact-process-list div {
    align-items: start;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
  }
  
  .main-nav {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.main-nav.active {
  max-height: 500px; /* menü yüksekligine göre artirabilirsin */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-switch{
display: block!important;
}
}

.lang-switch{
display:none;
}


