:root {
  --ivory: #f7f2e9;
  --ivory-deep: #eee7da;
  --paper: #fffdf9;
  --white: #ffffff;
  --ink: #17191d;
  --graphite: #2b2f35;
  --muted: #656a72;
  --line: #e4ded2;
  --gold: #c89424;
  --gold-dark: #8b6211;
  --gold-soft: #e6c26f;
  --som: #0c5b49;
  --som-deep: #073d33;
  --som-bright: #3bd29d;
  --shadow-sm: 0 12px 28px rgba(34, 28, 17, .08);
  --shadow-lg: 0 30px 80px rgba(34, 28, 17, .14);
  --container: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
section[id] { scroll-margin-top: 100px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -90px;
  z-index: 200;
  padding: 12px 17px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, .9);
  border-bottom: 1px solid rgba(228, 222, 210, .88);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 124px;
  height: auto;
  display: block;
}
.brand-mark img {
  display: block;
  width: 124px;
  height: auto;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1;
}
.brand-copy strong {
  font-size: 1.03rem;
  letter-spacing: .17em;
}
.brand-copy small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .1em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 9px 13px;
  border-radius: 11px;
  color: #555a61;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--ink);
  background: rgba(255, 255, 255, .85);
  outline: none;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.menu-button-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

h1, h2, h3, p { overflow-wrap: break-word; }
h1 {
  margin: 0;
  font-size: clamp(3rem, 5.35vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.062em;
}
h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}
h3 { line-height: 1.16; }

.eyebrow,
.section-label {
  margin: 0 0 15px;
  color: var(--gold-dark);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.som-eyebrow,
.som-label { color: var(--som); }
.light-label { color: #f2cd70; }

.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 16px 30px rgba(23, 25, 29, .18);
}
.button-dark:hover { background: #2b3037; }
.button-light {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
}
.button-gold {
  color: #1c170d;
  background: linear-gradient(135deg, #f3d684, #c89424);
  box-shadow: 0 16px 32px rgba(200, 148, 36, .22);
}
.button-som {
  color: white;
  background: var(--som-deep);
  box-shadow: 0 16px 32px rgba(7, 61, 51, .2);
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-weight: 850;
}
.inline-link span { transition: transform .2s ease; }
.inline-link:hover span { transform: translateX(4px); }
.light-link { color: white; }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  background:
    linear-gradient(138deg, rgba(255,255,255,.84), rgba(247,242,233,.94)),
    var(--ivory);
}
.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 66px;
  align-items: center;
}
.hero-copy h1 { max-width: 820px; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-glow-gold {
  width: 390px;
  height: 390px;
  right: -150px;
  top: -160px;
  background: rgba(221, 185, 91, .22);
}
.hero-glow-gray {
  width: 270px;
  height: 270px;
  left: -120px;
  bottom: -130px;
  background: rgba(46, 50, 55, .08);
}
.hero-art {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}
.hero-art-frame {
  width: min(100%, 500px);
  border-radius: 38px;
  padding: 22px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.hero-art-frame img { width: 100%; }
.hero-art-note {
  position: absolute;
  right: 2px;
  bottom: 24px;
  min-width: 230px;
  padding: 15px 18px;
  border-radius: 17px;
  color: white;
  background: rgba(23,25,29,.93);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.hero-art-note span,
.hero-art-note strong { display: block; }
.hero-art-note span { color: #b9bec5; font-size: .7rem; }
.hero-art-note strong { margin-top: 3px; font-size: .82rem; }

.section { padding: 92px 0; }
.intro-section { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: .98fr .82fr;
  gap: 90px;
  align-items: start;
}
.intro-copy { color: var(--muted); font-size: 1.05rem; }
.intro-copy p { margin-top: 4px; }
.intro-copy .inline-link { margin-top: 8px; color: var(--ink); }

.products-preview {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
}
.section-heading.centered {
  display: block;
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.product-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.product-card.compact {
  max-width: 1040px;
  margin-inline: auto;
}
.product-media {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 52px;
  background: linear-gradient(145deg, #eee8dc, #f8f4ec);
}
.product-logo-square {
  width: min(100%, 340px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background: #fdf7ee;
  box-shadow: 0 24px 50px rgba(69, 50, 18, .14);
}
.product-logo-square img,
.som-logo-square img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 60px;
}
.product-meta {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #4c514e;
  background: #f2f5f1;
  border: 1px solid #e0e7e1;
  font-size: .78rem;
  font-weight: 800;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--som-bright);
  box-shadow: 0 0 0 5px rgba(59, 210, 157, .13);
}
.product-card-copy h3 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  letter-spacing: -.055em;
}
.product-card-copy > p {
  max-width: 610px;
  color: var(--muted);
}
.section-footer-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.values-section {
  color: white;
  background: var(--ink);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.value-card {
  min-height: 240px;
  padding: 31px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.11);
}
.value-card > span {
  color: #efca6e;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.value-card h3 {
  margin: 34px 0 10px;
  font-size: 1.55rem;
}
.value-card p {
  margin: 0;
  color: #b7bcc4;
}

.support-cta-section { background: var(--paper); }
.support-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  padding: 52px 58px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(232, 193, 96, .22), transparent 32%),
    #23272d;
  box-shadow: var(--shadow-lg);
}
.support-cta h2 { max-width: 730px; }
.support-cta p:not(.section-label) { color: #bdc2c9; }

.page-hero {
  padding: 84px 0 90px;
  background: linear-gradient(138deg, #fffdf9, var(--ivory));
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 72px;
  align-items: end;
}
.page-hero-lead {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 1.06rem;
}
.catalog-section { background: var(--ivory); }

.story-section { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 90px;
  align-items: center;
}
.story-mark {
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle, rgba(230,194,111,.22), transparent 55%),
    var(--ivory);
  border: 1px solid var(--line);
}
.story-mark img {
  width: min(82%, 390px);
  filter: drop-shadow(0 28px 30px rgba(45, 34, 15, .14));
}
.story-copy p:not(.section-label) {
  color: var(--muted);
  font-size: 1.04rem;
}
.values-light-section {
  background: #eee9df;
  border-top: 1px solid var(--line);
}
.values-light-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.values-light-grid article {
  padding: 31px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.73);
  border: 1px solid rgba(255,255,255,.9);
}
.values-light-grid span {
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 900;
}
.values-light-grid p { color: var(--muted); }

.som-hero {
  padding: 72px 0 82px;
  background: linear-gradient(145deg, #f7faf8, #edf3ef);
}
.som-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.breadcrumb {
  color: var(--muted);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
}
.breadcrumb span { margin: 0 6px; color: #a2aaa6; }
.product-meta-hero { margin-top: 24px; }
.som-hero-media { min-height: 480px; display: grid; place-items: center; }
.som-logo-shell {
  width: min(100%, 455px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 26px;
  border-radius: 40px;
  background: rgba(255,255,255,.86);
  border: 1px solid #dfe9e3;
  box-shadow: 0 30px 70px rgba(7, 61, 51, .14);
}
.som-logo-square.large {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 27px;
}
.product-subnav {
  position: sticky;
  top: 78px;
  z-index: 80;
  background: rgba(255,255,255,.9);
  border-top: 1px solid #e4ebe6;
  border-bottom: 1px solid #e4ebe6;
  backdrop-filter: blur(16px);
}
.product-subnav .container {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
}
.product-subnav a {
  padding: 13px 15px;
  color: #53605b;
  text-decoration: none;
  font-size: .87rem;
  font-weight: 800;
  white-space: nowrap;
}
.product-about-section { background: var(--white); }
.som-features-section {
  background: #f3f6f4;
  border-top: 1px solid #e2e9e4;
  border-bottom: 1px solid #e2e9e4;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: 42px;
}
.feature-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid #e1e7e3;
  box-shadow: 0 14px 35px rgba(15, 43, 34, .055);
}
.feature-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 29px;
  border-radius: 14px;
  color: white;
  background: var(--som-deep);
  font-size: 1.25rem;
}
.feature-card p { color: var(--muted); }
.som-guide-teaser {
  color: white;
  background: var(--som-deep);
}
.guide-teaser-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 80px;
  align-items: center;
}
.guide-teaser-grid > div:first-child > p:not(.section-label) {
  color: #c3d4cd;
}
.guide-teaser-card {
  padding: 34px;
  border-radius: 27px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.guide-teaser-card > span {
  color: #7ae2bc;
  font-size: .72rem;
  font-weight: 900;
}
.guide-teaser-card h3 { margin: 7px 0 4px; }
.guide-teaser-card p { margin-top: 0; color: #c9d8d2; }

.guide-hero { background: linear-gradient(145deg, #f7faf8, #edf3ef); }
.guide-section { background: var(--white); }
.guide-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 78px;
  align-items: start;
}
.guide-index {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 7px;
  padding: 22px;
  border-radius: 20px;
  background: #f4f7f5;
  border: 1px solid #e0e7e2;
}
.guide-index strong { margin-bottom: 8px; }
.guide-index a {
  padding: 5px 0;
  color: var(--muted);
  text-decoration: none;
}
.guide-content { max-width: 800px; }
.guide-content > section { margin-bottom: 76px; }
.guide-content h2,
.legal-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  margin-bottom: 18px;
}
.guide-content p,
.legal-content p {
  color: #585e65;
  font-size: 1.02rem;
}
.rule-table {
  margin: 28px 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.rule-table > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
}
.rule-table > div + div { border-top: 1px solid var(--line); }
.rule-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 25px;
}
.rule-cards article {
  padding: 24px;
  border-radius: 20px;
  background: #f4f7f5;
  border: 1px solid #e0e7e2;
}
.rule-cards h3 { margin-top: 0; }

.legal-hero {
  padding: 78px 0 66px;
  background: linear-gradient(145deg, #fffdf9, var(--ivory));
}
.legal-hero-inner { max-width: 860px; }
.legal-hero p:last-child { color: var(--muted); }
.legal-section { background: var(--white); }
.legal-content { max-width: 850px; }
.legal-content h2:not(:first-child) { margin-top: 52px; }
.legal-content a { color: var(--gold-dark); font-weight: 800; }

.support-hero {
  padding: 86px 0 90px;
  background: linear-gradient(138deg, #fffdf9, var(--ivory));
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 72px;
  align-items: center;
}
.contact-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.contact-card > span {
  color: var(--muted);
  font-size: .8rem;
}
.contact-card a {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  text-decoration: none;
}
.contact-card p { margin-bottom: 0; color: var(--muted); }
.support-steps-section { background: var(--white); }
.support-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.support-steps article {
  padding: 31px;
  border-radius: var(--radius-md);
  background: var(--ivory);
  border: 1px solid var(--line);
}
.support-steps span {
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 900;
}
.support-steps p { color: var(--muted); }

.site-footer {
  padding: 64px 0 28px;
  color: #d5d8dc;
  background: #121419;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, .7fr);
  gap: 45px;
  padding-bottom: 46px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}
.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.footer-logo span { display: grid; line-height: 1; }
.footer-logo strong { letter-spacing: .14em; }
.footer-logo small { margin-top: 7px; color: #858b94; }
.footer-identity p { max-width: 380px; color: #8e949d; }
.footer-column { display: grid; align-content: start; gap: 9px; }
.footer-column strong { margin-bottom: 7px; color: white; font-size: .86rem; }
.footer-column a { color: #9fa5ad; text-decoration: none; font-size: .88rem; }
.footer-column a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #737a84;
  font-size: .81rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-art-frame {
    animation: float 7s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: rotate(1.5deg) translateY(0); }
    50% { transform: rotate(.5deg) translateY(-9px); }
  }
}

@media (max-width: 980px) {
  .home-hero-grid,
  .intro-grid,
  .section-heading,
  .page-hero-grid,
  .story-grid,
  .som-hero-grid,
  .guide-teaser-grid,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .home-hero-grid,
  .som-hero-grid {
    text-align: center;
  }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art,
  .som-hero-media { min-height: 390px; }
  .hero-art-frame { width: min(100%, 450px); }
  .hero-art-note { right: calc(50% - 230px); }
  .section-heading > p { max-width: 720px; }
  .product-card { grid-template-columns: 1fr; }
  .product-media { min-height: 360px; }
  .product-card-copy { text-align: center; padding: 48px; }
  .product-card-copy > p { margin-inline: auto; }
  .card-actions { justify-content: center; }
  .values-grid,
  .values-light-grid,
  .support-steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-index {
    position: static;
    grid-template-columns: repeat(5, auto);
    overflow-x: auto;
  }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-identity { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { position: sticky; }
  .header-inner { min-height: 70px; }
  .brand-mark,
  .brand-mark img { width: 116px; height: auto; }
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,253,249,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 12px 14px; }
  .home-hero,
  .page-hero,
  .som-hero,
  .support-hero { padding: 58px 0 68px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.45rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions,
  .card-actions { display: grid; }
  .button { width: 100%; }
  .hero-art { min-height: 330px; }
  .hero-art-frame { width: min(100%, 340px); padding: 15px; border-radius: 28px; }
  .hero-art-note {
    position: static;
    width: min(100%, 340px);
    margin: -4px auto 0;
  }
  .section { padding: 68px 0; }
  .product-media { min-height: 300px; padding: 35px; }
  .product-logo-square { width: min(100%, 290px); }
  .product-card-copy { padding: 34px 24px; }
  .support-cta { display: grid; padding: 36px 25px; }
  .feature-grid,
  .rule-cards { grid-template-columns: 1fr; }
  .guide-index { grid-template-columns: 1fr 1fr; }
  .som-logo-shell { width: min(100%, 360px); padding: 17px; border-radius: 30px; }
  .product-subnav { top: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-identity { grid-column: auto; }
}


/* =========================================================
   V6 — clean corporate homepage, no decorative hero image
   ========================================================= */

.home-hero-v6 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
  background:
    radial-gradient(circle at 86% 12%, rgba(230, 194, 111, .24), transparent 25%),
    radial-gradient(circle at 7% 92%, rgba(23, 25, 29, .08), transparent 24%),
    linear-gradient(145deg, #fffdf9 0%, #f7f2e9 100%);
}

.home-hero-v6-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  text-align: center;
}

.home-hero-v6 h1 {
  max-width: 1040px;
  margin-inline: auto;
  font-size: clamp(3.4rem, 6.4vw, 6.7rem);
  line-height: .96;
  letter-spacing: -.064em;
}

.home-hero-v6 .hero-lead {
  max-width: 760px;
  margin: 30px auto 0;
  font-size: 1.08rem;
}

.home-hero-v6 .hero-actions {
  justify-content: center;
}

.home-hero-v6-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-hero-v6-glow-gold {
  width: 360px;
  height: 360px;
  top: -210px;
  right: -100px;
  background: rgba(218, 178, 77, .19);
}

.home-hero-v6-glow-dark {
  width: 290px;
  height: 290px;
  left: -140px;
  bottom: -185px;
  background: rgba(35, 39, 45, .075);
}

.brand-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin: 76px auto 0;
  overflow: hidden;
  border: 1px solid rgba(205, 194, 174, .86);
  border-radius: 22px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 20px 55px rgba(39, 31, 18, .08);
  backdrop-filter: blur(14px);
}

.brand-principles > div {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px;
}

.brand-principles > div + div {
  border-left: 1px solid rgba(205, 194, 174, .86);
}

.brand-principles span {
  color: #9a6b11;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.brand-principles strong {
  font-size: 1.02rem;
  letter-spacing: -.015em;
}

.intro-section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.values-section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.catalog-section-v6 {
  min-height: 620px;
}

.catalog-section-v6 .product-card {
  max-width: 1050px;
  margin-inline: auto;
}

/* Keep the ELHAEX SOM artwork perfectly square and never stretch it. */
.product-logo-square,
.som-logo-square,
.som-logo-square.large {
  aspect-ratio: 1 / 1 !important;
}

.product-logo-square img,
.som-logo-square img,
.som-logo-square.large img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 980px) {
  .home-hero-v6 {
    padding: 88px 0 76px;
  }

  .home-hero-v6 h1 {
    font-size: clamp(3rem, 9vw, 5.5rem);
  }
}

@media (max-width: 700px) {
  .home-hero-v6 {
    padding: 68px 0 58px;
  }

  .home-hero-v6 h1 {
    font-size: clamp(2.75rem, 13vw, 4.45rem);
    line-height: .98;
  }

  .brand-principles {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .brand-principles > div {
    min-height: 72px;
  }

  .brand-principles > div + div {
    border-left: 0;
    border-top: 1px solid rgba(205, 194, 174, .86);
  }

  .catalog-section-v6 {
    min-height: auto;
  }
}


/* =========================================================
   V7 — square product-logo presentation and domain support email
   ========================================================= */

.story-mark {
  min-height: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.story-logo-frame {
  width: min(84%, 430px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background: #f7f2e9;
  box-shadow: 0 24px 58px rgba(45, 34, 15, .13);
}

.story-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.contact-card a {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .story-mark {
    width: min(100%, 560px);
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .story-logo-frame {
    width: min(88%, 380px);
    border-radius: 24px;
  }
}


/* =========================================================
   V8 — mobile compact refinement
   Desktop remains unchanged.
   ========================================================= */

@media (max-width: 700px) {
  body {
    line-height: 1.58;
  }

  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  /* Header and mobile menu */
  .header-inner {
    min-height: 66px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark,
  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: .94rem;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: calc(100% + 7px);
    left: 13px;
    right: 13px;
    padding: 9px;
    border-radius: 16px;
  }

  .main-nav a {
    padding: 11px 13px;
    font-size: .88rem;
  }

  /* General mobile typography */
  h1 {
    font-size: clamp(2.45rem, 11.4vw, 3.55rem);
    line-height: .99;
    letter-spacing: -.055em;
  }

  h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.85rem);
    line-height: 1.03;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 11px;
    font-size: .67rem;
  }

  .hero-lead {
    margin-top: 21px;
    font-size: .96rem;
  }

  .section {
    padding: 56px 0;
  }

  /* Homepage hero */
  .home-hero-v6 {
    padding: 54px 0 48px;
  }

  .home-hero-v6 h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.7vw, 3.6rem);
    line-height: .98;
  }

  .home-hero-v6 .hero-lead {
    margin-top: 20px;
    font-size: .96rem;
  }

  .home-hero-v6 .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .button {
    min-height: 47px;
    padding-inline: 17px;
    border-radius: 13px;
  }

  .brand-principles {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
    border-radius: 17px;
  }

  .brand-principles > div {
    min-height: 70px;
    display: grid;
    gap: 3px;
    padding: 12px 7px;
  }

  .brand-principles > div + div {
    border-top: 0;
    border-left: 1px solid rgba(205, 194, 174, .86);
  }

  .brand-principles span {
    font-size: .58rem;
  }

  .brand-principles strong {
    font-size: .78rem;
  }

  /* Homepage about */
  .intro-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .intro-grid {
    gap: 25px;
  }

  .intro-copy {
    font-size: .96rem;
  }

  /* Principle section */
  .values-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .section-heading.centered {
    margin-bottom: 30px;
  }

  .values-grid {
    gap: 12px;
    margin-top: 28px;
  }

  .value-card {
    min-height: 0;
    padding: 24px 22px;
    border-radius: 18px;
  }

  .value-card h3 {
    margin: 22px 0 7px;
    font-size: 1.34rem;
  }

  .value-card p {
    font-size: .93rem;
  }

  /* Support CTA on homepage */
  .support-cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .support-cta {
    gap: 24px;
    padding: 29px 22px;
    border-radius: 23px;
  }

  .support-cta p:not(.section-label) {
    margin-bottom: 0;
    font-size: .93rem;
  }

  /* Page heroes */
  .page-hero,
  .support-hero,
  .legal-hero {
    padding: 52px 0 54px;
  }

  .page-hero-grid,
  .support-grid {
    gap: 25px;
  }

  .page-hero-lead {
    font-size: .96rem;
  }

  /* Product catalogue */
  .catalog-section-v6 {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .product-card {
    border-radius: 23px;
  }

  .product-media {
    min-height: 0;
    padding: 25px 24px;
  }

  .product-logo-square {
    width: min(100%, 230px);
    border-radius: 23px;
  }

  .product-card-copy {
    padding: 29px 21px 31px;
  }

  .product-meta {
    margin-bottom: 18px;
    padding: 7px 11px;
    font-size: .72rem;
  }

  .product-card-copy h3 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .product-card-copy > p {
    margin-top: 14px;
    font-size: .94rem;
  }

  .card-actions {
    margin-top: 22px;
  }

  /* About page */
  .about-hero {
    padding-bottom: 52px;
  }

  .story-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .story-grid {
    gap: 30px;
  }

  .story-mark {
    width: min(100%, 340px);
  }

  .story-logo-frame {
    width: min(82%, 300px);
    border-radius: 21px;
  }

  .story-copy p:not(.section-label) {
    font-size: .95rem;
  }

  .values-light-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .values-light-grid {
    gap: 12px;
  }

  .values-light-grid article {
    padding: 24px 21px;
    border-radius: 18px;
  }

  /* Support page */
  .support-hero {
    padding-bottom: 52px;
  }

  .contact-card {
    padding: 25px 21px;
    border-radius: 22px;
  }

  .contact-card a {
    margin-top: 6px;
    font-size: clamp(1.22rem, 6.3vw, 1.72rem);
  }

  .contact-card p {
    font-size: .92rem;
  }

  .support-steps-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .support-steps {
    gap: 12px;
  }

  .support-steps article {
    padding: 24px 21px;
    border-radius: 18px;
  }

  /* ELHAEX SOM page */
  .som-hero {
    padding: 51px 0 56px;
  }

  .som-hero-grid {
    gap: 34px;
  }

  .som-hero-media {
    min-height: 0;
  }

  .som-logo-shell {
    width: min(100%, 310px);
    padding: 14px;
    border-radius: 25px;
  }

  .som-logo-square.large {
    border-radius: 19px;
  }

  .product-subnav {
    top: 66px;
  }

  .product-subnav a {
    padding: 11px 12px;
    font-size: .81rem;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card {
    min-height: 0;
    padding: 23px 21px;
    border-radius: 18px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 21px;
  }

  .guide-teaser-grid {
    gap: 28px;
  }

  .guide-teaser-card {
    padding: 25px 21px;
    border-radius: 21px;
  }

  /* Guide and legal */
  .guide-layout {
    gap: 35px;
  }

  .guide-index {
    gap: 4px;
    padding: 16px;
    border-radius: 16px;
  }

  .guide-content > section {
    margin-bottom: 53px;
  }

  .guide-content h2,
  .legal-content h2 {
    margin-bottom: 13px;
  }

  .guide-content p,
  .legal-content p {
    font-size: .96rem;
  }

  .rule-cards article {
    padding: 20px;
  }

  /* Compact mobile footer */
  .site-footer {
    padding-top: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
    padding-bottom: 35px;
  }

  .footer-identity {
    grid-column: 1 / -1;
  }

  .footer-identity p {
    margin-bottom: 0;
    font-size: .88rem;
  }

  .footer-logo img {
    width: 49px;
    height: 49px;
  }

  .footer-column {
    gap: 7px;
  }

  .footer-column strong {
    margin-bottom: 3px;
  }

  .footer-column a {
    font-size: .84rem;
  }

  .footer-bottom {
    gap: 6px;
    padding-top: 20px;
    font-size: .76rem;
  }
}

@media (max-width: 390px) {
  .home-hero-v6 h1 {
    font-size: clamp(2.38rem, 11.5vw, 3.1rem);
  }

  .brand-principles strong {
    font-size: .72rem;
  }

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


/* =========================================================
   V9 — mobile final refinement
   ========================================================= */

@media (max-width: 700px) {
  /* Compact dropdown menu */
  .main-nav {
    left: auto;
    right: 13px;
    width: min(272px, calc(100% - 26px));
    padding: 7px;
    gap: 2px;
    border-radius: 15px;
  }

  .main-nav a {
    padding: 9px 11px;
    border-radius: 10px;
    font-size: .86rem;
  }

  /* Homepage typography */
  .home-hero-v6 {
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .home-hero-v6 h1 {
    max-width: 620px;
    font-size: clamp(2.28rem, 10.45vw, 3.18rem);
    line-height: 1;
    letter-spacing: -.052em;
  }

  .home-hero-v6 .hero-lead {
    max-width: 560px;
    margin-top: 18px;
    font-size: .94rem;
  }

  .home-hero-v6 .hero-actions {
    margin-top: 21px;
  }

  .brand-principles {
    margin-top: 32px;
  }

  /* General page titles */
  .page-hero h1,
  .about-hero h1,
  .support-hero h1 {
    font-size: clamp(2.22rem, 10.25vw, 3.08rem);
    line-height: 1;
    letter-spacing: -.052em;
  }

  .page-hero,
  .support-hero,
  .legal-hero {
    padding-top: 45px;
    padding-bottom: 46px;
  }

  .page-hero-grid,
  .support-grid {
    gap: 20px;
  }

  /* Products page */
  .catalog-section-v6 {
    padding-top: 28px;
    padding-bottom: 46px;
  }

  .catalog-section-v6 .product-card {
    margin-top: 0;
  }

  .product-media {
    padding: 20px 18px;
  }

  .product-logo-square {
    width: min(100%, 205px);
    border-radius: 20px;
  }

  .product-card-copy {
    padding: 25px 19px 28px;
  }

  .product-card-copy h3 {
    font-size: clamp(2.25rem, 10.7vw, 3rem);
  }

  /* About page */
  .about-hero {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .story-section {
    padding-top: 40px;
    padding-bottom: 46px;
  }

  .story-grid {
    gap: 25px;
  }

  .story-mark {
    width: min(100%, 310px);
  }

  .story-logo-frame {
    width: min(80%, 270px);
  }

  /* Support page */
  .support-hero {
    padding-top: 45px;
    padding-bottom: 46px;
  }

  .contact-card {
    padding: 23px 20px;
  }

  .contact-card a {
    font-size: clamp(1.16rem, 5.9vw, 1.58rem);
  }

  /* Slightly shorter mobile footer */
  .site-footer {
    padding-top: 41px;
  }

  .footer-grid {
    gap: 25px 20px;
    padding-bottom: 30px;
  }
}

@media (max-width: 390px) {
  .home-hero-v6 h1 {
    font-size: clamp(2.18rem, 10.2vw, 2.84rem);
  }

  .page-hero h1,
  .about-hero h1,
  .support-hero h1 {
    font-size: clamp(2.08rem, 9.9vw, 2.76rem);
  }
}


/* V10 soft-launch support state */
.contact-pending {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.2rem, 3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}

@media (max-width: 700px) {
  .contact-pending {
    font-size: clamp(1.15rem, 5.8vw, 1.55rem);
  }
}


/* =========================================================
   ELHAEX CORPORATE REBRAND — 2026-08-27
   Corporate mark is the ELHAEX wordmark itself.
   No separate initial-based symbol is used.
   ========================================================= */
:root {
  --elhaex-navy: #0d182a;
  --elhaex-gold: #d4af37;
}

.brand {
  gap: 0;
}
.brand-mark {
  width: 188px;
  height: 46px;
  display: flex;
  align-items: center;
}
.brand-mark img {
  width: 188px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}
.brand-copy {
  display: none !important;
}

.footer-logo {
  gap: 0;
}
.footer-logo img {
  width: 212px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}
.footer-logo span {
  display: none !important;
}

@media (max-width: 700px) {
  .brand-mark,
  .brand-mark img {
    width: 158px;
    height: auto;
    max-height: 40px;
  }
  .footer-logo img {
    width: 184px;
    height: auto;
    max-height: 54px;
  }
}

@media (max-width: 430px) {
  .brand-mark,
  .brand-mark img {
    width: 142px;
    height: auto;
    max-height: 38px;
  }
}


/* =========================================================
   ELHAEX CORPORATE VISUAL POLISH FIXED2 — 2026-08-27
   Visual-only refinement. Product identity remains unchanged.
   ========================================================= */

:root {
  --elhaex-navy: #0d182a;
  --elhaex-navy-deep: #07111f;
  --elhaex-navy-soft: #17263c;
  --elhaex-gold: #d4af37;
  --elhaex-gold-soft: #efd078;
  --elhaex-cream: #fbf8f1;
}

/* Header */
.site-header {
  background: rgba(255, 253, 249, .965);
  border-bottom-color: rgba(13, 24, 42, .09);
  box-shadow: 0 6px 24px rgba(13, 24, 42, .035);
}

.header-inner {
  min-height: 88px;
}

.brand-mark {
  width: 238px;
  height: 54px;
}

.brand-mark img {
  width: 238px;
  max-height: 54px;
}

.main-nav {
  gap: 7px;
}

.main-nav a {
  position: relative;
  padding: 10px 14px;
  color: #4f5968;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--elhaex-navy);
  background: rgba(13, 24, 42, .045);
}

.main-nav a.active {
  color: var(--elhaex-navy);
  background: rgba(212, 175, 55, .09);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: var(--elhaex-gold);
}

/* Hero */
.home-hero-v6 {
  padding: 90px 0 78px;
  background:
    radial-gradient(circle at 91% 8%, rgba(212, 175, 55, .23), transparent 24%),
    radial-gradient(circle at 8% 96%, rgba(13, 24, 42, .075), transparent 21%),
    linear-gradient(145deg, #fffefa 0%, #f8f3e9 55%, #f6f0e5 100%);
}

.home-hero-v6::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background:
    linear-gradient(
      90deg,
      transparent 0,
      transparent calc(50% - .5px),
      rgba(13,24,42,.025) 50%,
      transparent calc(50% + .5px),
      transparent 100%
    );
}

.home-hero-v6-inner {
  max-width: 1120px;
}

.home-hero-v6 .eyebrow {
  margin-bottom: 21px;
  color: #9d7419;
  font-size: .72rem;
  letter-spacing: .22em;
}

.home-hero-v6 h1 {
  max-width: 1000px;
  color: var(--elhaex-navy-deep);
  font-size: clamp(3.25rem, 5.85vw, 6.15rem);
  line-height: .975;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.home-hero-v6 .hero-lead {
  max-width: 720px;
  margin-top: 27px;
  color: #667080;
  font-size: 1.075rem;
  line-height: 1.72;
}

.home-hero-v6 .hero-actions {
  margin-top: 27px;
  gap: 12px;
}

.home-hero-v6 .button {
  min-height: 52px;
  border-radius: 13px;
  padding-inline: 24px;
}

.home-hero-v6 .button-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--elhaex-navy) 0%, var(--elhaex-navy-soft) 100%);
  box-shadow: 0 15px 34px rgba(13, 24, 42, .20);
}

.home-hero-v6 .button-dark:hover {
  background: var(--elhaex-navy-deep);
  box-shadow: 0 18px 38px rgba(13, 24, 42, .24);
}

.home-hero-v6 .button-light {
  color: var(--elhaex-navy);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(13, 24, 42, .13);
  box-shadow: 0 9px 24px rgba(13, 24, 42, .045);
}

.home-hero-v6 .button-light:hover {
  border-color: rgba(212, 175, 55, .55);
  background: #fff;
}

/* Principles panel */
.brand-principles {
  max-width: 870px;
  margin-top: 58px;
  border-color: rgba(13, 24, 42, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 20px 52px rgba(13, 24, 42, .075);
}

.brand-principles > div {
  position: relative;
  min-height: 94px;
  gap: 12px;
  padding: 21px 26px;
}

.brand-principles > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.82), transparent);
  opacity: .88;
}

.brand-principles > div + div {
  border-left-color: rgba(13, 24, 42, .09);
}

.brand-principles span {
  min-width: 31px;
  color: #a37717;
  font-size: .67rem;
  letter-spacing: .13em;
}

.brand-principles strong {
  color: var(--elhaex-navy);
  font-size: 1rem;
}

/* Corporate color language */
.intro-section h2 {
  color: var(--elhaex-navy);
}

.intro-copy .inline-link {
  color: var(--elhaex-navy);
}

.values-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(212,175,55,.10), transparent 28%),
    linear-gradient(145deg, var(--elhaex-navy-deep), var(--elhaex-navy));
}

.value-card {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.value-card > span {
  color: var(--elhaex-gold-soft);
}

.support-cta {
  background:
    radial-gradient(circle at 88% 17%, rgba(212,175,55,.22), transparent 32%),
    linear-gradient(135deg, var(--elhaex-navy-deep), var(--elhaex-navy-soft));
}

.button-gold {
  color: var(--elhaex-navy-deep);
  background: linear-gradient(135deg, #f1d47b, var(--elhaex-gold));
}

.site-footer {
  background: var(--elhaex-navy-deep);
}

/* Responsive */
@media (max-width: 980px) {
  .header-inner {
    min-height: 82px;
  }

  .brand-mark,
  .brand-mark img {
    width: 215px;
    max-height: 50px;
  }

  .home-hero-v6 {
    padding: 76px 0 68px;
  }

  .home-hero-v6 h1 {
    font-size: clamp(3rem, 8.2vw, 5.25rem);
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-mark,
  .brand-mark img {
    width: 176px;
    max-height: 42px;
  }

  .home-hero-v6 {
    padding: 58px 0 52px;
  }

  .home-hero-v6 .eyebrow {
    margin-bottom: 16px;
    font-size: .67rem;
  }

  .home-hero-v6 h1 {
    font-size: clamp(2.65rem, 12.4vw, 4.15rem);
    line-height: .99;
  }

  .home-hero-v6 .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .home-hero-v6 .hero-actions {
    margin-top: 23px;
  }

  .brand-principles {
    margin-top: 40px;
    border-radius: 18px;
  }

  .brand-principles > div {
    min-height: 68px;
    justify-content: flex-start;
    padding: 17px 22px;
  }

  .brand-principles > div::before {
    left: 22px;
    right: 22px;
  }

  .brand-principles > div + div {
    border-left: 0;
    border-top-color: rgba(13, 24, 42, .09);
  }
}

@media (max-width: 430px) {
  .brand-mark,
  .brand-mark img {
    width: 158px;
    max-height: 38px;
  }

  .home-hero-v6 h1 {
    font-size: clamp(2.35rem, 11.8vw, 3.2rem);
  }
}


/* =========================================================
   ELHAEX MOBILE MENU MICRO-POLISH FIXED3 — 2026-08-27
   Final mobile menu visual refinement only.
   ========================================================= */

@media (max-width: 700px) {
  .site-header {
    z-index: 1000;
  }

  .main-nav {
    z-index: 1100;
    background: #fffdf9 !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(13, 24, 42, .12);
    box-shadow:
      0 22px 55px rgba(7, 17, 31, .18),
      0 5px 16px rgba(7, 17, 31, .08);
  }

  .main-nav.open {
    display: grid;
    background: #fffdf9 !important;
  }

  .main-nav a {
    background: transparent;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(13, 24, 42, .045);
  }

  .main-nav a.active {
    background: rgba(212, 175, 55, .095);
  }

  .menu-button {
    position: relative;
    z-index: 1200;
    transition:
      border-color .18s ease,
      background .18s ease,
      box-shadow .18s ease;
  }

  .menu-button-line {
    transition:
      transform .20s ease,
      opacity .16s ease,
      width .18s ease;
    transform-origin: center;
  }

  /* Hamburger -> X */
  .menu-button[aria-expanded="true"] {
    background: #fffdf9;
    border-color: rgba(212, 175, 55, .48);
    box-shadow: 0 6px 18px rgba(13, 24, 42, .08);
  }

  .menu-button[aria-expanded="true"] .menu-button-line:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button-line:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}


/* =========================================================
   ELHAEX MOBILE MENU ICON FIXED4 — 2026-08-27
   Precise hamburger <-> X geometry only.
   ========================================================= */
@media (max-width: 700px) {
  .menu-button {
    position: relative;
    overflow: hidden;
  }

  .menu-button-line {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--ink);
    transform-origin: center;
    transition:
      transform .20s ease,
      top .20s ease,
      opacity .16s ease;
  }

  .menu-button-line:first-child {
    top: calc(50% - 4px);
    transform: translateX(-50%) rotate(0deg);
  }

  .menu-button-line:last-child {
    top: calc(50% + 4px);
    transform: translateX(-50%) rotate(0deg);
  }

  .menu-button[aria-expanded="true"] .menu-button-line:first-child,
  .menu-button[aria-expanded="true"] .menu-button-line:last-child {
    top: 50%;
  }

  .menu-button[aria-expanded="true"] .menu-button-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button-line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}


/* =========================================================
   ELHAEX MOBILE MENU ICON FIXED5 — 2026-08-27
   Correct selector bug caused by trailing .sr-only span.
   Only icon geometry is changed.
   ========================================================= */
@media (max-width: 700px) {
  .menu-button > .menu-button-line:nth-child(1),
  .menu-button > .menu-button-line:nth-child(2) {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--ink);
    transform-origin: center;
    transition:
      transform .20s ease,
      top .20s ease,
      opacity .16s ease;
  }

  .menu-button > .menu-button-line:nth-child(1) {
    top: calc(50% - 4px);
    transform: translateX(-50%) rotate(0deg);
  }

  .menu-button > .menu-button-line:nth-child(2) {
    top: calc(50% + 4px);
    transform: translateX(-50%) rotate(0deg);
  }

  .menu-button[aria-expanded="true"] > .menu-button-line:nth-child(1),
  .menu-button[aria-expanded="true"] > .menu-button-line:nth-child(2) {
    top: 50%;
  }

  .menu-button[aria-expanded="true"] > .menu-button-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > .menu-button-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}


/* =========================================================
   ELHAEX SOM PRODUCT REBRAND — 2026-08-27
   Product-specific styling only. Corporate homepage stays unchanged.
   ========================================================= */
:root {
  --som-navy: #0b1e3a;
  --som-navy-deep: #061426;
  --som-navy-soft: #123e7a;
  --som-gold: #d4af37;
  --som-gold-soft: #f1d178;
  --som-red: #e63946;
}

.elhaex-som-card .product-media {
  background:
    radial-gradient(circle at 48% 42%, rgba(38,82,145,.28), transparent 42%),
    linear-gradient(145deg, var(--som-navy-deep), var(--som-navy));
}

.elhaex-som-card .product-logo-square {
  background: transparent;
  box-shadow: 0 28px 62px rgba(4,16,31,.30);
}

.elhaex-som-card .product-card-copy h3 {
  color: var(--som-navy);
}

.elhaex-som-card .section-label {
  color: #a77818;
}

.som-hero-elhaex {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 23%, rgba(212,175,55,.16), transparent 28%),
    radial-gradient(circle at 17% 86%, rgba(34,89,163,.25), transparent 32%),
    linear-gradient(135deg, #061426 0%, #0b1e3a 52%, #0e2d5b 100%);
}

.som-hero-elhaex::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -185px;
  top: -240px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.16);
  box-shadow:
    0 0 0 54px rgba(212,175,55,.035),
    0 0 0 108px rgba(212,175,55,.022);
  pointer-events: none;
}

.som-hero-elhaex .som-hero-grid {
  position: relative;
  z-index: 2;
}

.som-hero-elhaex .breadcrumb {
  color: rgba(255,255,255,.68);
}

.som-hero-elhaex .breadcrumb span {
  color: rgba(241,209,120,.72);
}

.som-hero-elhaex .som-eyebrow {
  color: var(--som-gold-soft);
}

.som-hero-elhaex h1 {
  max-width: 760px;
  color: #fff;
}

.som-hero-elhaex .hero-lead {
  color: rgba(255,255,255,.75);
}

.som-status {
  color: #f3dfaa;
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.15);
}

.som-status .status-dot {
  background: #7ae2bc;
  box-shadow: 0 0 0 5px rgba(122,226,188,.12);
}

.som-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.som-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #f4dfaa;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(212,175,55,.22);
  font-size: .78rem;
  font-weight: 800;
}

.button-som {
  color: var(--som-navy-deep);
  background: linear-gradient(135deg, #f4db8a, var(--som-gold));
  box-shadow: 0 16px 34px rgba(212,175,55,.20);
}

.button-som:hover {
  background: linear-gradient(135deg, #f8e7aa, #deb947);
}

.button-som-secondary {
  color: white;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.18);
}

.button-som-secondary:hover {
  background: rgba(255,255,255,.12);
}

.som-logo-shell-elhaex {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  padding: 18px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 42%, rgba(36,82,148,.32), transparent 48%),
    rgba(1,10,22,.22);
  border: 1px solid rgba(239,208,120,.22);
  box-shadow:
    0 38px 90px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.som-master-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.30));
}

.product-subnav {
  border-color: rgba(13,24,42,.09);
}

.product-subnav a:hover {
  color: var(--som-navy);
  background: rgba(212,175,55,.08);
}

.som-features-section {
  background:
    radial-gradient(circle at 85% 8%, rgba(212,175,55,.09), transparent 26%),
    #f8f5ee;
  border-color: #e8e0d1;
}

.feature-card {
  border-color: #e8dfcf;
  box-shadow: 0 14px 35px rgba(13,24,42,.055);
}

.feature-icon {
  color: #fff4d0;
  background: linear-gradient(145deg, var(--som-navy), var(--som-navy-soft));
  border: 1px solid rgba(212,175,55,.28);
}

.som-guide-teaser {
  background:
    radial-gradient(circle at 82% 20%, rgba(212,175,55,.14), transparent 32%),
    linear-gradient(135deg, var(--som-navy-deep), var(--som-navy));
}

.guide-teaser-card > span {
  color: var(--som-gold-soft);
}

@media (max-width: 980px) {
  .som-logo-shell-elhaex {
    width: min(100%, 440px);
  }
}

@media (max-width: 700px) {
  .som-hero-elhaex {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .som-hero-elhaex .som-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .som-hero-elhaex .som-hero-media {
    min-height: 0;
  }

  .som-logo-shell-elhaex {
    width: min(100%, 355px);
    margin-inline: auto;
    border-radius: 32px;
  }

  .som-hero-pills {
    gap: 7px;
  }

  .som-hero-pills span {
    font-size: .72rem;
  }

  .elhaex-som-card .product-media {
    min-height: 360px;
  }
}


/* =========================================================
   ELHAEX SOM FINAL ASSET POLISH — 2026-08-27
   Final master logo + final simplified app icon.
   ========================================================= */

.elhaex-som-card .product-logo-square {
  width: min(78%, 360px);
  margin-inline: auto;
}

.som-logo-shell-elhaex {
  width: min(100%, 560px);
}

.som-master-logo {
  transform: scale(1.06);
  transform-origin: center;
}

@media (max-width: 700px) {
  .elhaex-som-card .product-logo-square {
    width: min(82%, 300px);
  }

  .som-logo-shell-elhaex {
    width: min(100%, 385px);
  }

  .som-master-logo {
    transform: scale(1.08);
  }
}


/* =========================================================
   ELHAEX SOM MOBILE SUBNAV FIXED2 — 2026-08-27
   Horizontal-scroll polish only. Product status unchanged.
   ========================================================= */
@media (max-width: 700px) {
  .product-subnav {
    overflow: hidden;
  }

  .product-subnav .container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(42px, env(safe-area-inset-right));
  }

  .product-subnav .container::-webkit-scrollbar {
    display: none;
  }

  .product-subnav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 12px 11px;
    font-size: .79rem;
  }

  .product-subnav::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 34px;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0),
      rgba(255,255,255,.94) 72%,
      #fff 100%
    );
  }
}

/* =========================================================
   ELHAEX EXPLICIT LANGUAGE SELECTOR FIXED1 - 2026-09-04
   Clear bilingual selector: Bahasa Indonesia | English
   ========================================================= */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 5px;
  padding-left: 12px;
  border-left: 1px solid rgba(13, 24, 42, .13);
  white-space: nowrap;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.main-nav .language-switcher .language-option {
  padding: 7px 5px;
  border-radius: 8px;
  color: #596272;
  text-decoration: none;
}

.main-nav .language-switcher a.language-option:hover,
.main-nav .language-switcher a.language-option:focus-visible {
  color: var(--elhaex-navy);
  background: rgba(13, 24, 42, .045);
  outline: none;
}

.language-switcher .language-option.is-current {
  color: var(--elhaex-navy);
  font-weight: 900;
}

.language-switcher .language-divider {
  color: rgba(13, 24, 42, .30);
  font-weight: 500;
}

@media (max-width: 700px) {
  .language-switcher {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    gap: 9px;
    margin: 5px 0 0;
    padding: 12px 10px 5px;
    border-left: 0;
    border-top: 1px solid rgba(13, 24, 42, .10);
    font-size: .83rem;
  }

  .main-nav .language-switcher .language-option {
    padding: 7px 6px;
  }
}

@media (max-width: 390px) {
  .language-switcher {
    gap: 6px;
    font-size: .78rem;
  }

  .main-nav .language-switcher .language-option {
    padding-left: 4px;
    padding-right: 4px;
  }
}

