/* ============================================
   Yobekan Official Website ? Design System
   Premium Medical Brand Experience
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --color-primary: #041828;
  --color-primary-dark: #010A12;
  --color-primary-light: #0C3D5E;
  --color-accent: #00D4BC;
  --color-accent-light: #6EFFF0;
  --color-accent-glow: rgba(0, 212, 188, 0.4);
  --color-gold: #C9A962;
  --color-gold-light: #F5E6C8;
  --color-gold-glow: rgba(201, 169, 98, 0.35);
  --color-champagne: #E8D5B5;
  --color-white: #FFFFFF;
  --color-off-white: #F6F9FC;
  --color-gray-50: #EEF3F8;
  --color-gray-100: #DCE4ED;
  --color-gray-200: #C5D0DC;
  --color-gray-400: #8B9AAD;
  --color-gray-600: #5C6B7E;
  --color-gray-800: #2D3A4A;
  --color-gray-900: #141C27;
  --color-text: #0F1C2E;
  --color-text-light: #5A6B7D;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --shadow-sm: 0 4px 16px rgba(5, 30, 50, 0.08);
  --shadow-md: 0 12px 40px rgba(5, 30, 50, 0.12);
  --shadow-lg: 0 24px 70px rgba(5, 30, 50, 0.18);
  --shadow-xl: 0 40px 100px rgba(5, 30, 50, 0.25);
  --shadow-glow: 0 0 80px rgba(0, 212, 188, 0.25);
  --shadow-gold: 0 8px 40px rgba(201, 169, 98, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-luxury: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 88px;
  --container-width: 80vw;
  --container-max: none;
  --section-padding: clamp(100px, 12vw, 160px);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

.display-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 28px;
  font-weight: 600;
}

.section-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-light);
  max-width: 640px;
  line-height: 1.8;
}

/* --- Layout --- */
.container {
  width: var(--container-width);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 40px);
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-inline: var(--mobile-gutter, 16px);
  }
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark .section-title {
  color: var(--color-white);
}

.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.section--dark .feature-list li {
  color: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section--light {
  background: var(--color-off-white);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .section-desc {
  margin: 0 auto;
}

.section-header--left {
  text-align: left;
}

.section-header--left .section-desc {
  margin: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #008F7F 100%);
  color: var(--color-white);
  box-shadow: 0 8px 32px var(--color-accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.btn--primary:hover::after {
  left: 150%;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--color-accent-glow);
}

.btn--outline {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--outline-dark {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--ghost {
  color: var(--color-accent);
  padding: 14px 0;
  font-weight: 600;
}

.btn--ghost:hover {
  gap: 16px;
}

.btn--ghost .arrow {
  transition: transform var(--transition);
}

.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(5, 30, 50, 0.06), var(--shadow-sm);
}

.header--scrolled .nav-link {
  color: var(--color-text);
}

.header--scrolled .logo-text {
  color: var(--color-primary);
}

.header--scrolled .lang-switch {
  color: var(--color-white);
  border-color: var(--color-white);
}

.header--scrolled .lang-switch span {
  color: inherit;
}

.header--transparent .lang-switch {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.3);
}

.header--transparent .lang-switch span {
  color: inherit;
}

.header--transparent .nav-link {
  color: var(--color-white);
}

.header--transparent .logo-text {
  color: var(--color-white);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--color-accent);
}

.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border: 1px solid var(--color-gray-100);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 24px;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: all 0.2s;
}

.dropdown a:hover {
  background: var(--color-gray-50);
  color: var(--color-accent);
  padding-left: 28px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--transition);
}

.lang-switch:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.lang-switch .active {
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 60%;
  height: 2px;
  background: currentColor;
  transition: all var(--transition);
}
/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 10, 18, 0.97) 0%, rgba(1, 10, 18, 0.88) 34%, rgba(1, 10, 18, 0.52) 58%, rgba(1, 10, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(1, 10, 18, 0.35) 0%, transparent 38%, rgba(1, 10, 18, 0.55) 100%);
  z-index: 1;
}

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

.hero__bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 180, 160, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(11, 61, 92, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, #062A42 0%, #0B3D5C 50%, #0E5A7A 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
  width: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 72px);
  padding-bottom: 72px;
}

.hero__main {
  max-width: none;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 201, 177, 0.18);
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  background: rgba(212, 175, 103, 0.12);
  bottom: 20%;
  left: 40%;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 280px;
  height: 280px;
  background: rgba(10, 61, 92, 0.4);
  top: 50%;
  right: 5%;
  animation-delay: -8s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__spotlight {
  position: relative;
  perspective: 1200px;
  min-height: clamp(380px, 42vh, 460px);
}

.hero__showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 24px);
}

.hero__spotlight-card {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: clamp(24px, 3vw, 32px);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  padding: clamp(32px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 3vw, 32px);
  align-items: center;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero__spotlight-card.active {
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero__spotlight-visual {
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__spotlight-visual img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.35));
}

.hero__spotlight-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__spotlight-category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

.hero__spotlight-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
}

.hero__spotlight-model {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.hero__spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent-light);
  margin-top: 8px;
  transition: gap var(--transition);
}

.hero__spotlight-link:hover {
  gap: 14px;
  color: var(--color-white);
}

.hero__spotlight-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.hero__spotlight-dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
  cursor: pointer;
}

.hero__spotlight-dot.active {
  width: 40px;
  background: var(--color-accent);
}

.hero__anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero--ready .hero__anim {
  opacity: 1;
  transform: translateY(0);
}

.hero--ready .hero__anim[data-delay="1"] { transition-delay: 0.1s; }
.hero--ready .hero__anim[data-delay="2"] { transition-delay: 0.2s; }
.hero--ready .hero__anim[data-delay="3"] { transition-delay: 0.3s; }
.hero--ready .hero__anim[data-delay="4"] { transition-delay: 0.45s; }
.hero--ready .hero__anim[data-delay="5"] { transition-delay: 0.55s; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5.4vw, 6.25rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.03;
  margin-bottom: clamp(24px, 3vw, 36px);
  max-width: 12ch;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-gold-light) 50%, var(--color-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  color: rgba(255, 255, 255, 0.76);
  max-width: 48ch;
  line-height: 1.85;
  margin-bottom: clamp(36px, 4vw, 48px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.5vw, 28px);
  margin-top: 0;
  border-top: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(201, 169, 98, 0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.hero__stat-number .suffix {
  font-size: 0.6em;
  color: var(--color-accent-light);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Page Hero (Subpages) --- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 100px) 0 100px;
  background: linear-gradient(155deg, #020F1A 0%, #051E32 45%, #0A3D5C 100%);
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 14s ease-in-out infinite;
}

.page-hero__orb--1 {
  width: 420px;
  height: 420px;
  background: rgba(0, 201, 177, 0.14);
  top: -10%;
  right: 10%;
}

.page-hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 103, 0.1);
  bottom: -5%;
  left: 25%;
  animation-delay: -6s;
}

.page-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-hero__title,
.page-hero__desc,
.page-hero .breadcrumb {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hero--ready .breadcrumb { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.page-hero--ready .page-hero__title { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.page-hero--ready .page-hero__desc { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 201, 177, 0.15) 0%, transparent 65%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 177, 0.3), transparent);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero__desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.breadcrumb a:hover {
  color: var(--color-accent-light);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Product Cards --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 201, 177, 0.25);
}

.product-card__image {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, var(--color-gray-50), var(--color-off-white));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image-placeholder {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  border-radius: 50%;
  opacity: 0.15;
  transition: all var(--transition);
}

.product-card:hover .product-card__image-placeholder {
  transform: scale(1.1);
  opacity: 0.25;
}

.product-card__icon {
  position: absolute;
  font-size: 4rem;
  opacity: 0.6;
}

.product-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
}

.product-card__body {
  padding: 28px 32px 32px;
}

.product-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.product-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-card__model {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  margin-bottom: 16px;
}

.product-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__features {
  margin-bottom: 24px;
}

.product-card__features li {
  font-size: 0.8125rem;
  color: var(--color-gray-600);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.product-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 40px 36px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 180, 160, 0.1), rgba(11, 61, 92, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.feature-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-top: -60px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.stats-bar__item {
  padding: 48px 32px;
  text-align: center;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--color-gray-100);
}

.stats-bar__number {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-bar__number .accent {
  color: var(--color-accent);
}

.stats-bar__label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* --- About Split Section --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.split-section__visual:has(img) {
  background: #0e1012;
}

.split-section__visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.3;
  color: white;
}

.split-section__visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.split-section__visual-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.split-section__visual-badge span {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-primary-light));
}

.timeline__item {
  position: relative;
  padding-bottom: 48px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.timeline__year {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.timeline__title {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* --- News Cards --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  opacity: 0.8;
  position: relative;
}

.news-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
}

.news-card__body {
  padding: 28px;
}

.news-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.news-card__title {
  font-size: 1.125rem;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color var(--transition);
}

.news-card:hover .news-card__title {
  color: var(--color-accent);
}

.news-card__excerpt {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Certifications --- */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  min-width: 160px;
  transition: all var(--transition);
}

.cert-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.cert-badge__icon {
  font-size: 2rem;
}

.cert-badge__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: clamp(100px, 12vw, 140px) 0;
  background: linear-gradient(155deg, #020F1A 0%, #051E32 50%, #0A3D5C 100%);
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 201, 177, 0.1) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 177, 0.2), transparent);
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta-section__desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* --- Global Map Section --- */
.global-section {
  text-align: center;
}

.global-map {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  aspect-ratio: 2/1;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0, 180, 160, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(11, 61, 92, 0.06) 0%, transparent 50%),
    var(--color-gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-map__dots {
  position: absolute;
  inset: 0;
}

.global-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--color-accent-glow);
  animation: map-pulse 3s infinite;
}

.global-dot::after {
  content: attr(data-country);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 4px 8px;
  background: white;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity var(--transition);
  margin-bottom: 6px;
}

.global-dot:hover::after {
  opacity: 1;
}

@keyframes map-pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--color-accent-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}

/* --- Video Section --- */
.video-section {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-primary-dark);
  cursor: pointer;
}

.video-section__poster {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  opacity: 0.6;
}

.video-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: all var(--transition);
  z-index: 2;
}

.video-section:hover .video-section__play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-100);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-accent);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info__item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0, 180, 160, 0.1), rgba(11, 61, 92, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* --- Footer --- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.footer__links a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Site Pagination --- */
.site-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.site-pagination .pagination {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-pagination .pagination > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-pagination .pagination > li > a,
.site-pagination .pagination > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(1, 10, 18, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text, #1a2332);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(1, 10, 18, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-pagination .pagination > li > a:hover,
.site-pagination .pagination > li > a:focus {
  color: var(--color-primary-dark, #010A12);
  border-color: rgba(201, 169, 98, 0.45);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(1, 10, 18, 0.1);
}

.site-pagination .pagination > li.active > a,
.site-pagination .pagination > li.active > span {
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent, #C9A962), var(--color-gold, #B8941F));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(201, 169, 98, 0.28);
  cursor: default;
  pointer-events: none;
}

.site-pagination .pagination > li.pagination__nav > a {
  min-width: auto;
  padding: 0 18px;
  letter-spacing: 0.02em;
}

.site-pagination .pagination > li.pagination__meta > span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
  color: rgba(1, 10, 18, 0.45);
  font-size: 0.8125rem;
  font-weight: 500;
}

.section--dark .site-pagination .pagination > li > a,
.section--dark .site-pagination .pagination > li > span,
.news-hub--editorial .site-pagination .pagination > li > a,
.news-hub--editorial .site-pagination .pagination > li > span {
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 767px) {
  .site-pagination {
    margin-top: 32px;
  }

  .site-pagination .pagination {
    gap: 6px;
  }

  .site-pagination .pagination > li > a,
  .site-pagination .pagination > li > span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.8125rem;
  }

  .site-pagination .pagination > li.pagination__nav > a {
    padding: 0 14px;
  }
}

/* --- SaaS Platform --- */
.saas-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.saas-feature {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition);
}

.saas-feature:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.saas-feature__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
}

.saas-feature__title {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.saas-feature__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Solutions --- */
.solution-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.solution-tab {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-light);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
}

.solution-tab.active,
.solution-tab:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.solution-panel {
  display: none;
}

.solution-panel.active {
  display: block;
}

/* --- Product Showcase Slider --- */
.showcase {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.showcase__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 0;
}

.showcase__slide {
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0;
}

.showcase__visual {
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.showcase__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 201, 177, 0.08), transparent 60%);
  pointer-events: none;
}

.showcase__model-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 20px;
  background: rgba(0, 201, 177, 0.15);
  border: 1px solid rgba(0, 201, 177, 0.3);
  color: var(--color-accent-light);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  z-index: 2;
}

.showcase__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 8px;
  color: var(--color-white);
}

.showcase__content .model {
  font-size: 1rem;
  color: var(--color-accent-light);
  font-weight: 600;
  margin-bottom: 24px;
}

.showcase__content .section-desc,
.section--showcase .showcase__features li,
.section--dark .showcase__features li {
  color: rgba(255, 255, 255, 0.65);
}

.split-section .showcase__features li,
.section:not(.section--showcase):not(.section--dark) .showcase__features li {
  color: var(--color-text);
}

.showcase__features li {
  font-size: 0.9375rem;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.showcase__features li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.showcase__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.showcase__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
  cursor: pointer;
}

.showcase__dot.active {
  width: 32px;
  border-radius: 5px;
  background: var(--color-accent);
}

.showcase__arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
  cursor: pointer;
}

.showcase__arrow:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px var(--color-accent-glow);
}

/* --- Partners / Trust --- */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.partner-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-gray-400);
  letter-spacing: 0.05em;
}

/* --- Scroll Reveal Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6, 42, 66, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--color-accent-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; color: white; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__spotlight { max-width: 480px; margin: 0 auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--large { grid-column: span 2; }
  .split-section { grid-template-columns: 1fr; gap: 48px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2)::after { display: none; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase__slide { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .saas-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  .hero__spotlight-card { grid-template-columns: 1fr; text-align: center; }
  .hero__spotlight-visual { max-width: 200px; margin: 0 auto; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--large { grid-column: span 1; }
  .manifesto__text { font-size: clamp(1.5rem, 5vw, 2rem); }
  .product-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; margin-top: -40px; }
  .stats-bar__item::after { display: none !important; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .product-detail__gallery { grid-template-columns: 1fr; }
  .product-detail__thumbs { flex-direction: row; overflow-x: auto; }
}

/* --- Logo Image --- */
.logo__img {
  height: 44px;
  width: auto;
}

.header--transparent .logo__img--light { display: block; }
.header--transparent .logo__img--dark { display: none; }
.header--scrolled .logo__img--light { display: none; }
.header--scrolled .logo__img--dark { display: block; }

.lang-switch a:hover { color: var(--color-accent); }
.header--transparent .lang-switch a { color: rgba(255,255,255,0.8); }
.header--scrolled .lang-switch a { color: var(--color-text); }

/* --- Hero Slideshow (company assets) --- */
.hero__slideshow {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.8s ease, transform 8s ease;
}

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

/* --- Real Image Overrides --- */
.product-card__image img,
.showcase__visual img,
.split-section__visual img,
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.split-section__visual img {
  object-fit: cover;
}

.news-card__image img {
  object-fit: cover;
}

.product-card__image--cover img {
  object-fit: cover;
}

.cert-badge img {
  width: 64px;
  height: auto;
  border-radius: var(--radius-sm);
}

.section-visual-bg {
  background-size: cover;
  background-position: center;
}

/* --- Brand Showcase (image sequence) --- */
.brand-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-primary-dark);
  cursor: pointer;
}

.brand-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.brand-showcase__img.active { opacity: 1; }

.brand-showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,42,66,0.5), transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.brand-showcase.playing .brand-showcase__play { opacity: 0; pointer-events: none; }

/* --- Product Detail Page --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-detail__gallery-main {
  aspect-ratio: 1;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-detail__thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--color-gray-50);
  transition: border-color var(--transition);
}

.product-detail__thumb.active { border-color: var(--color-accent); }

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

.product-detail__gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}

.product-detail__model {
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-detail__features li {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  padding: 8px 0 8px 24px;
  position: relative;
}

.product-detail__features li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.625rem;
  top: 11px;
}

.product-detail__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 0.9375rem;
}

.spec-table tr:nth-child(even) { background: var(--color-gray-50); }

.spec-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-gray-100);
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--color-primary-dark);
  width: 40%;
}

@media (max-width: 1024px) {
  .product-detail { grid-template-columns: 1fr; }
}

/* ============================================
   Premium Visual Enhancements ? Phase IV
   ============================================ */

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__logo {
  height: 52px;
  width: auto;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
  animation: preloader-pulse 2s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}

.preloader__bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.preloader__progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  animation: preloader-fill 1.2s ease forwards;
}

@keyframes preloader-fill {
  to { width: 100%; }
}

.preloader__text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}


/* --- Manifesto --- */
.manifesto {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 201, 177, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto__text {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  text-align: center;
  max-width: 960px;
  margin: 0 auto 40px;
  color: var(--color-primary-dark);
  line-height: 1.35;
}

.manifesto__text em {
  font-style: italic;
  color: var(--color-accent);
}

.manifesto__line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 0 auto 24px;
}

.manifesto__author {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-400);
}

/* --- Showcase Dark Immersive --- */
.section--showcase {
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, #071E30 50%, var(--color-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.section--showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 201, 177, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section--showcase .section-label {
  color: var(--color-accent-light);
}

.section--showcase .section-title {
  color: var(--color-white);
}

.section--showcase .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Bento Grid Solutions --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  padding: 36px 32px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.bento-card:hover::before {
  transform: scaleX(1);
}

.bento-card--large {
  grid-column: span 2;
  grid-row: span 1;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0A3D5C 100%);
  border: none;
  color: var(--color-white);
}

.bento-card--large .bento-card__title {
  color: var(--color-white);
}

.bento-card--large .bento-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.bento-card--large .bento-card__icon {
  background: rgba(0, 201, 177, 0.15);
  border: 1px solid rgba(0, 201, 177, 0.25);
}

.bento-card--accent {
  background: linear-gradient(135deg, rgba(0, 201, 177, 0.08), rgba(5, 30, 50, 0.04));
  border-color: rgba(0, 201, 177, 0.15);
}

.bento-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 201, 177, 0.1), rgba(5, 30, 50, 0.06));
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--color-accent);
}

.bento-card__icon svg {
  width: 24px;
  height: 24px;
}

.bento-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
}

.bento-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Icon Badge (replaces emoji) --- */
.icon-badge {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 201, 177, 0.12), rgba(212, 175, 103, 0.08));
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
  color: var(--color-gold);
}

.icon-badge svg {
  width: 28px;
  height: 28px;
}

.global-map__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-400);
}

.global-map__label svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  opacity: 0.7;
}

/* ============================================
   Premium Visual Enhancements ? Phase V
   ============================================ */

/* Feature card SVG icons */
.feature-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section--dark .feature-card__icon {
  background: linear-gradient(135deg, rgba(0, 201, 177, 0.18), rgba(212, 175, 103, 0.1));
}

.section--dark .feature-card__icon svg {
  color: var(--color-accent-light);
}

/* Spec panel */
.spec-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.spec-panel .spec-table {
  margin-top: 0;
}

.spec-panel .spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table td:first-child {
  background: rgba(5, 30, 50, 0.02);
}

/* Product CTA band */
.product-cta {
  padding: clamp(72px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.product-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0, 201, 177, 0.15), transparent);
  pointer-events: none;
}

.product-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.product-cta__content {
  max-width: 560px;
}

.product-cta__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.product-cta__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.product-cta .section-label {
  color: var(--color-accent-light);
}

.product-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.btn--ghost-light {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* News card category gradients */
.news-card__image {
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-light) 55%, var(--color-accent) 100%);
  opacity: 1;
  overflow: hidden;
}

.news-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 30, 50, 0.35), transparent 60%);
}

.news-card__image--company {
  background: linear-gradient(145deg, #051E32 0%, #0A3D5C 50%, #00A896 100%);
}

.news-card__image--exhibit {
  background: linear-gradient(145deg, #0A2540 0%, #1A4A6E 45%, #D4AF67 100%);
}

.news-card__image--industry {
  background: linear-gradient(145deg, #020F1A 0%, #0A3D5C 60%, #5EEBD8 100%);
}

.news-card__date {
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

/* Page intro strip */
.page-intro {
  padding: 48px 0;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-gray-100);
}

.page-intro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.page-intro__stats {
  display: flex;
  gap: 40px;
}

.page-intro__stat {
  text-align: center;
}

.page-intro__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1;
}

.page-intro__stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 6px;
}

/* Timeline premium */
.timeline__item {
  position: relative;
  padding-left: 28px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 201, 177, 0.2);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}

/* Product detail gallery polish */
.product-detail__gallery-main {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
}

.product-detail__thumb {
  transition: all 0.3s ease;
}

.product-detail__thumb:hover {
  border-color: var(--color-accent-light);
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .product-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .product-cta__actions {
    width: 100%;
  }

  .product-cta__actions .btn {
    width: 100%;
  }
}
/* ============================================
   Premium Visual Enhancements ??Phase VI
   Homepage & key section redesigns
   ============================================ */

/* --- Manifesto v2 --- */
.manifesto {
  padding: clamp(100px, 12vw, 160px) 0;
  background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 50%, var(--color-off-white) 100%);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 50%, rgba(0, 201, 177, 0.06), transparent),
    radial-gradient(ellipse 40% 50% at 85% 30%, rgba(212, 175, 103, 0.05), transparent);
  pointer-events: none;
}

.manifesto__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.manifesto__content {
  position: relative;
  max-width: 820px;
}

.manifesto__quote-mark {
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 0.8;
  color: var(--color-accent);
  opacity: 0.12;
  position: absolute;
  top: -0.15em;
  left: -0.1em;
  pointer-events: none;
  user-select: none;
}

.manifesto__text {
  font-size: clamp(1.875rem, 3.8vw, 3.25rem);
  text-align: left;
  max-width: none;
  margin: 0 0 32px;
  color: var(--color-primary-dark);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.manifesto__text em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto__footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.manifesto__line {
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  margin: 0;
  flex-shrink: 0;
}

.manifesto__author {
  display: block;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-gray-600);
}

.manifesto__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 200px;
}

.manifesto__stat {
  padding: 24px 28px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
}

.manifesto__stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 201, 177, 0.25);
}

.manifesto__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.manifesto__stat span {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* --- Global Layout v2 --- */
.global-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 48px;
}

.global-layout__map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #051E32 0%, #0A3D5C 60%, #0D4A6E 100%);
  min-height: 420px;
  border: 1px solid rgba(0, 201, 177, 0.15);
  box-shadow: var(--shadow-lg);
}

.global-layout__map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

.global-layout__map-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 201, 177, 0.08), transparent),
    linear-gradient(to top, rgba(5, 30, 50, 0.6), transparent 50%);
}

.global-layout__dots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.global-layout__dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 201, 177, 0.25), 0 0 20px rgba(0, 201, 177, 0.4);
  animation: map-pulse 3s infinite;
  z-index: 3;
}

.global-layout__dot::after {
  content: attr(data-label);
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.global-layout__center-label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
  z-index: 4;
}

.global-layout__center-label svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent-light);
}

.global-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.global-stat-card {
  padding: 32px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-lg);
  color: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.global-stat-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent-light);
  margin-bottom: 8px;
}

.global-stat-card__label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.region-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.region-item:hover {
  border-color: rgba(0, 201, 177, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.region-item__dot {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(0, 201, 177, 0.15);
}

.region-item__name {
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 0.9375rem;
}

.region-item__desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-left: auto;
}

/* --- Cert Gallery (large certs on dark bg) --- */
.cert-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cert-gallery__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.cert-gallery__item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 201, 177, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cert-gallery__frame {
  padding: 24px 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.cert-gallery__frame img {
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition);
}

.cert-gallery__item:hover .cert-gallery__frame img {
  transform: scale(1.04);
}

.cert-gallery__frame--icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-gallery__frame--icon .icon-badge {
  width: 100px;
  height: 100px;
  margin: 0;
}

.cert-gallery__info {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cert-gallery__info h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.cert-gallery__info p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* --- Cert Showcase (light bg, about page) --- */
.cert-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cert-showcase__item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.cert-showcase__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 201, 177, 0.25);
}

.cert-showcase__frame {
  padding: 20px;
  background: var(--color-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.cert-showcase__frame img {
  width: 100%;
  max-width: 160px;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.cert-showcase__name {
  padding: 16px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-align: center;
  border-top: 1px solid var(--color-gray-100);
}

/* --- Location Cards (production base) --- */
.location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.location-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 201, 177, 0.35);
}

.location-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 201, 177, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  color: var(--color-accent-light);
}

.location-card__icon svg {
  width: 20px;
  height: 20px;
}

.location-card h4 {
  color: var(--color-white) !important;
  font-size: 1.0625rem !important;
  font-weight: 700;
  margin-bottom: 6px !important;
}

.location-card p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.5;
  margin: 0;
}

/* --- Feature List --- */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  font-size: 0.9375rem;
  color: var(--color-text);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--color-gray-100);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 201, 177, 0.12);
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.section--dark .feature-list li::before {
  background: rgba(0, 212, 188, 0.15);
  color: rgba(0, 212, 188, 0.95);
}

/* --- Quality Flow (about page) --- */
.quality-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.quality-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 20px;
  row-gap: 0;
  align-items: start;
  padding: 28px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.quality-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 201, 177, 0.25);
}

.quality-step__num {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(0, 201, 177, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.quality-step__icon {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: stretch;
  width: 64px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 201, 177, 0.12), rgba(5, 30, 50, 0.06));
  border-radius: var(--radius-md);
  margin-bottom: 0;
  color: var(--color-accent);
}

.quality-step__icon svg {
  width: 28px;
  height: 28px;
}

.quality-step__title {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.quality-step__desc {
  grid-column: 2;
  grid-row: 3;
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Product Showcase (single product per category) --- */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-showcase:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 201, 177, 0.2);
}

.section--light .product-showcase {
  background: var(--color-white);
}

.product-showcase__visual {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--color-off-white), var(--color-gray-50));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-showcase__visual img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform var(--transition);
}

.product-showcase:hover .product-showcase__visual img {
  transform: scale(1.04);
}

.product-showcase__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.product-showcase__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.product-showcase__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.product-showcase__model {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-600);
  margin-bottom: 20px;
}

.product-showcase__desc {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.product-showcase__features {
  margin-bottom: 32px;
}

.product-showcase__features li {
  font-size: 0.9375rem;
  color: var(--color-text);
  padding: 8px 0 8px 24px;
  position: relative;
}

.product-showcase__features li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Products page category nav */
.products-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 24px 0 0;
  margin-bottom: -24px;
  position: sticky;
  top: var(--header-height);
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-100);
}

.products-nav a {
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-light);
  border-radius: 50px;
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition);
}

.products-nav a:hover,
.products-nav a.active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* --- Product Detail v2 --- */
.product-detail {
  gap: 72px;
}

.product-detail__info {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.product-detail__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-detail__badge {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(0, 201, 177, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(0, 201, 177, 0.2);
}

.product-detail__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-100);
}

.product-detail__highlight {
  text-align: center;
  padding: 12px;
}

.product-detail__highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

.product-detail__highlight span {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.product-detail__section-head {
  margin-bottom: 24px;
}

.product-detail__section-head .section-title {
  margin-bottom: 8px;
}

/* --- News Page v2 --- */
.news-masthead {
  padding: 32px 0 0;
}

.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.news-featured__main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  background: var(--color-primary-dark);
}

.news-featured__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.news-featured__main-content {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(5, 30, 50, 0.9), transparent 60%);
}

.news-featured__main .news-card__tag {
  align-self: flex-start;
  margin-bottom: 16px;
}

.news-featured__main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.news-featured__main p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 520px;
}

.news-featured__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-compact {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  flex: 1;
}

.news-compact:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 201, 177, 0.25);
  transform: translateX(4px);
}

.news-compact__thumb {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
}

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

.news-compact__body {
  flex: 1;
  min-width: 0;
}

.news-compact__date {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  margin-bottom: 6px;
}

.news-compact__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.4;
}

.news-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-gray-100);
}

.news-section-title h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-primary-dark);
}

/* Dark section feature cards fix */
.section--dark .feature-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--dark .feature-card__title {
  color: var(--color-white);
}

.section--dark .feature-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

/* Override tiny cert images in old cert-badge */
.section--dark .cert-badge img {
  width: auto;
  max-width: 200px;
  max-height: 260px;
}

@media (max-width: 1100px) {
  .manifesto__inner { grid-template-columns: 1fr; }
  .manifesto__stats { flex-direction: row; flex-wrap: wrap; }
  .manifesto__stat { flex: 1; min-width: 140px; }
  .global-layout { grid-template-columns: 1fr; }
  .cert-gallery { grid-template-columns: repeat(2, 1fr); }
  .quality-flow { grid-template-columns: repeat(2, 1fr); }
  .product-showcase { grid-template-columns: 1fr; padding: 32px; }
  .news-featured { grid-template-columns: 1fr; }
  .cert-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .manifesto__text { text-align: center; }
  .manifesto__footer { justify-content: center; }
  .manifesto__stats { flex-direction: column; }
  .cert-gallery { grid-template-columns: repeat(2, 1fr); }
  .quality-flow { grid-template-columns: 1fr; }
  .location-cards { grid-template-columns: 1fr; }
  .product-detail__highlights { grid-template-columns: 1fr; }
  .cert-showcase { grid-template-columns: 1fr; }
  .product-detail__info { position: static; }
}
/* ============================================
   Premium Visual Enhancements ??Phase VII
   Lightbox, map lines, spec luxury, global polish
   ============================================ */

/* --- Global map animated lines --- */
.global-layout__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.global-layout__line {
  fill: none;
  stroke: rgba(0, 201, 177, 0.55);
  stroke-width: 0.35;
  stroke-linecap: round;
  stroke-dasharray: 3 2;
  animation: global-line-flow 4s linear infinite;
  animation-delay: var(--line-delay, 0s);
  filter: drop-shadow(0 0 4px rgba(0, 201, 177, 0.5));
}

@keyframes global-line-flow {
  to { stroke-dashoffset: -20; }
}

.global-layout__dot--hub {
  width: 18px;
  height: 18px;
  background: var(--color-gold);
  box-shadow: 0 0 0 8px rgba(212, 175, 103, 0.25), 0 0 24px rgba(0, 201, 177, 0.6);
  z-index: 5;
  animation: hub-pulse 2.5s ease-in-out infinite;
}

@keyframes hub-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* --- Certificate lightbox --- */
.cert-gallery__frame,
.cert-showcase__frame {
  cursor: zoom-in;
  position: relative;
}

.cert-gallery__frame::after,
.cert-showcase__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 30, 50, 0);
  transition: background var(--transition);
  border-radius: inherit;
  pointer-events: none;
}

.cert-gallery__item:hover .cert-gallery__frame::after,
.cert-showcase__item:hover .cert-showcase__frame::after {
  background: rgba(0, 201, 177, 0.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(2, 15, 26, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__inner {
  position: relative;
  max-width: min(90vw, 560px);
  max-height: 90vh;
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.is-open .lightbox__inner {
  transform: scale(1);
}

.lightbox__img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox__caption {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 1;
}

.lightbox__close:hover {
  background: rgba(0, 201, 177, 0.25);
  border-color: var(--color-accent);
}

/* --- Product Spec Luxury --- */
.section--spec-luxury {
  position: relative;
  padding: clamp(100px, 12vw, 140px) 0;
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, #071E30 50%, var(--color-primary-dark) 100%);
  overflow: hidden;
}

.section--spec-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 201, 177, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.spec-luxury__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.spec-luxury__header .section-label {
  color: var(--color-accent-light);
}

.spec-luxury__header .section-title {
  color: var(--color-white);
}

.spec-luxury__header .section-desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto;
}

.spec-luxury__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.spec-luxury__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spec-luxury__card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.spec-luxury__card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-luxury__card ul {
  list-style: none;
}

.spec-luxury__card li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 0 8px 22px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-luxury__card li:last-child {
  border-bottom: none;
}

.spec-luxury__card li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.5rem;
  top: 11px;
}

.spec-luxury__card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.spec-luxury__main {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.spec-luxury__table-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: rgba(0, 201, 177, 0.08);
  border-bottom: 1px solid rgba(0, 201, 177, 0.15);
}

.spec-luxury__table-meta span:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

.spec-luxury__model-tag {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-white);
}

.spec-panel--luxury {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.spec-table--luxury {
  font-size: 0.9375rem;
}

.spec-table--luxury tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.spec-table--luxury td {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.spec-table--luxury td:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  width: 38%;
  background: rgba(0, 0, 0, 0.15);
}

.spec-table--luxury thead td {
  background: rgba(0, 201, 177, 0.12);
  color: var(--color-accent-light);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- Similar Products --- */
.similar-products {
  padding-top: 80px;
}

.similar-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.similar-card {
  display: block;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.similar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 201, 177, 0.3);
}

.similar-card__img {
  height: 200px;
  background: var(--color-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.similar-card__img img {
  max-height: 100%;
  object-fit: contain;
}

.similar-card__body {
  padding: 20px 24px 24px;
}

.similar-card__cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.similar-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.similar-card__model {
  font-size: 0.8125rem;
  color: var(--color-gray-600);
  margin-top: 4px;
}

/* --- Global luxury polish --- */
.feature-card {
  backdrop-filter: blur(4px);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-100);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 201, 177, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 22px 28px;
  font-weight: 600;
}

.news-card {
  box-shadow: var(--shadow-sm);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
}

.page-hero::before {
  opacity: 0.9;
}

.split-section__visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.section-header .section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin-right: 12px;
  vertical-align: middle;
}

.product-detail__info .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.product-detail__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.product-detail__highlight {
  padding: 16px;
  background: linear-gradient(135deg, rgba(0, 201, 177, 0.08), rgba(5, 30, 50, 0.04));
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 201, 177, 0.12);
  text-align: center;
}

@media (max-width: 1024px) {
  .spec-luxury__grid {
    grid-template-columns: 1fr;
  }
  .similar-products__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .spec-table--luxury td {
    display: block;
    width: 100%;
  }
  .spec-table--luxury td:first-child {
    padding-bottom: 4px;
    border-bottom: none;
    background: transparent;
  }
}

/* ============================================
   Phase VIII ? Ultra Luxury Enhancement
   Deeper palette ? Gold accents ? Rich motion
   ============================================ */

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 10001;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent), var(--color-gold-light));
  box-shadow: 0 0 12px var(--color-gold-glow), 0 0 24px var(--color-accent-glow);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* --- Global Ambient Grain --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: rgba(201, 169, 98, 0.25);
  color: var(--color-primary-dark);
}

/* --- Typography Luxury --- */
.display-title {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section--dark .display-title,
.section--showcase .display-title,
.product-cta .display-title,
.product-cta__title,
.page-hero__title,
.hero__title,
.cta-section__title,
.news-article-hero__title,
.spec-luxury__header .section-title {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-champagne) 45%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-label {
  color: var(--color-gold);
}

.section-label::before {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent), transparent);
}

.section-label::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  opacity: 0.6;
}

/* --- Header Luxury --- */
.header--scrolled {
  background: rgba(1, 10, 18, 0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow: 0 1px 0 rgba(201, 169, 98, 0.15), 0 8px 32px rgba(0, 0, 0, 0.12);
}

.header--scrolled .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.header--scrolled .nav-link:hover,
.header--scrolled .nav-item:hover > .nav-link {
  color: var(--color-gold-light);
}

.header--transparent .nav-link {
  position: relative;
}

.header--transparent .nav-link::after,
.header--scrolled .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-luxury);
}

.header--transparent .nav-link:hover::after,
.header--scrolled .nav-link:hover::after,
.nav-item:hover > .nav-link::after {
  transform: scaleX(1);
}

.dropdown {
  background: rgba(4, 24, 40, 0.96);
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

.dropdown a {
  color: rgba(255, 255, 255, 0.75);
}

.dropdown a:hover {
  background: rgba(201, 169, 98, 0.08);
  color: var(--color-gold-light);
}

.lang-switch:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  box-shadow: 0 0 20px var(--color-gold-glow);
}

/* --- Buttons Luxury --- */
.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent) 0%, #00A896 50%, var(--color-primary-light) 100%);
  box-shadow: 0 8px 32px var(--color-accent-glow), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover {
  box-shadow: 0 16px 56px var(--color-accent-glow), 0 0 24px var(--color-gold-glow);
  transform: translateY(-2px);
}

.btn--outline {
  border-color: rgba(201, 169, 98, 0.4);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  box-shadow: 0 0 24px var(--color-gold-glow);
}

/* --- Hero Luxury --- */
.hero__spotlight-card {
  border-color: rgba(201, 169, 98, 0.2);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 60px rgba(201, 169, 98, 0.06);
}

.hero__spotlight-card.active {
  animation: spotlight-glow 4s ease-in-out infinite;
}

@keyframes spotlight-glow {
  0%, 100% { box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 40px rgba(201,169,98,0.05); }
  50% { box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 80px rgba(0,212,188,0.12); }
}

.hero__title em,
.page-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Page Hero Luxury --- */
.page-hero {
  background: linear-gradient(155deg, #010A12 0%, #041828 40%, #0C3D5E 100%);
}

.page-hero::before {
  background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, rgba(0, 212, 188, 0.08) 40%, transparent 70%);
  animation: hero-glow-pulse 8s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.page-hero::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-accent), var(--color-gold), transparent);
}

.page-hero__orb--2 {
  background: rgba(201, 169, 98, 0.18);
}


/* --- Cards & Grids Luxury --- */
.feature-card,
.product-card,
.news-card,
.similar-card,
.saas-feature,
.bento-card {
  transition: all var(--transition-luxury);
}

.feature-card:hover,
.product-card:hover,
.news-card:hover,
.similar-card:hover,
.saas-feature:hover {
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.feature-card::before {
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent), var(--color-gold-light));
}

.feature-card__icon {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.12), rgba(0, 212, 188, 0.08));
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.product-card__image {
  background: linear-gradient(145deg, #F8FAFD 0%, #EEF3F8 50%, rgba(201, 169, 98, 0.04) 100%);
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
  transition: transform var(--transition-luxury);
}

/* --- Stats Bar Luxury --- */
.stats-bar {
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(201, 169, 98, 0.08);
}

.stats-bar__number {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Manifesto Luxury --- */
.manifesto {
  background: linear-gradient(180deg, var(--color-off-white) 0%, #FFFFFF 50%, var(--color-off-white) 100%);
}

.manifesto::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 98, 0.06) 0%, transparent 60%);
}

.manifesto__text em {
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
}

.manifesto__stat {
  border: 1px solid rgba(201, 169, 98, 0.2);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,250,253,0.95));
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-luxury);
}

.manifesto__stat:hover {
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  transform: translateY(-4px);
}

/* --- Global Layout Luxury --- */
.global-layout__map {
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: var(--shadow-lg), inset 0 0 80px rgba(0, 212, 188, 0.04);
}

.global-layout__dot--hub {
  box-shadow: 0 0 0 6px var(--color-gold-glow), 0 0 30px var(--color-gold-glow);
}

.region-item {
  border-left: 2px solid transparent;
  transition: all var(--transition-luxury);
}

.region-item:hover {
  border-left-color: var(--color-gold);
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.06), transparent);
}

/* --- Cert Gallery Luxury --- */
.cert-gallery__frame,
.cert-showcase__frame {
  border: 1px solid rgba(201, 169, 98, 0.15);
  transition: all var(--transition-luxury);
}

.cert-gallery__item:hover .cert-gallery__frame,
.cert-showcase__item:hover .cert-showcase__frame {
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: translateY(-6px) scale(1.02);
}

/* --- Product Showcase Luxury --- */
.product-showcase {
  border: 1px solid rgba(201, 169, 98, 0.12);
  transition: all var(--transition-luxury);
}

.product-showcase:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(201, 169, 98, 0.1);
}

.products-nav {
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.products-nav__link.active,
.products-nav__link:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* --- Section Dark Luxury --- */
.section--dark {
  background: linear-gradient(180deg, #010A12 0%, #041828 50%, #010A12 100%);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.section--inview .section-header {
  animation: section-enter 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes section-enter {
  from { opacity: 0.6; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- CTA Section Luxury --- */
.cta-section {
  background: linear-gradient(135deg, #010A12 0%, #041828 40%, #0C3D5E 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  animation: orb-float 16s ease-in-out infinite;
}

.product-cta {
  background: linear-gradient(135deg, #010A12, #041828);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

/* --- Footer Luxury --- */
.footer {
  background: linear-gradient(180deg, #010A12 0%, #000508 100%);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-accent), var(--color-gold), transparent);
}

.footer__heading {
  color: var(--color-gold-light);
}

.footer__social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* --- Preloader Luxury --- */
.preloader {
  background: radial-gradient(ellipse at center, #041828 0%, #010A12 100%);
}

.preloader__progress {
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent), var(--color-gold-light));
  box-shadow: 0 0 12px var(--color-gold-glow);
}

.preloader__logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(201, 169, 98, 0.3));
}

/* --- Reveal Luxury --- */
.reveal,
.reveal-left,
.reveal-right {
  filter: blur(6px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  filter: blur(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.54s; }

/* --- Spec Luxury Enhanced --- */
.section--spec-luxury::before {
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, rgba(0, 212, 188, 0.06) 40%, transparent 70%);
}

.spec-luxury__card {
  border-color: rgba(201, 169, 98, 0.15);
  transition: all var(--transition-luxury);
}

.spec-luxury__card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(201, 169, 98, 0.08);
}

.spec-luxury__table-meta {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.1), rgba(0, 212, 188, 0.08));
  border-bottom-color: rgba(201, 169, 98, 0.2);
}

/* --- Product Detail Luxury --- */
.product-detail__gallery-main {
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-detail__highlight {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), rgba(0, 212, 188, 0.06));
  border-color: rgba(201, 169, 98, 0.2);
  transition: all var(--transition-luxury);
}

.product-detail__highlight:hover {
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* --- Mobile Menu Luxury --- */
.mobile-menu {
  background: rgba(1, 10, 18, 0.98);
  backdrop-filter: blur(24px);
}

.mobile-menu a {
  position: relative;
  letter-spacing: 0.08em;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: all var(--transition-luxury);
  transform: translateX(-50%);
}

.mobile-menu a:hover::after {
  width: 40px;
}

/* --- Ambient Cursor Glow (desktop) --- */
.ambient-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
}

body.has-ambient .ambient-glow {
  opacity: 1;
}

/* --- Quality Flow / Location Cards --- */
.quality-flow__step,
.location-card {
  border: 1px solid rgba(201, 169, 98, 0.12);
  transition: all var(--transition-luxury);
}

.quality-flow__step:hover,
.location-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

/* --- News Featured Luxury --- */
.news-featured {
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: var(--shadow-lg);
}

.news-featured:hover {
  box-shadow: var(--shadow-xl), var(--shadow-gold);
}

/* ============================================
   FAQ Luxury ? Service Page
   ============================================ */
.faq-section {
  position: relative;
  overflow: hidden;
}

.section--light.faq-section {
  background: linear-gradient(180deg, var(--color-off-white) 0%, #FFFFFF 40%, var(--color-off-white) 100%);
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 188, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.faq-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.faq-section__header .section-desc {
  margin: 0 auto;
}

.faq-luxury {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.faq-luxury__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.faq-luxury__panel {
  padding: 32px 28px;
  background: linear-gradient(155deg, #010A12 0%, #041828 60%, #0C3D5E 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(201, 169, 98, 0.08);
  position: relative;
  overflow: hidden;
}

.faq-luxury__panel::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 188, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.faq-luxury__panel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--color-gold-light);
}

.faq-luxury__panel-icon svg {
  width: 24px;
  height: 24px;
}

.faq-luxury__panel-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.faq-luxury__panel-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.faq-luxury__panel .btn--primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 28px;
}

.faq-luxury__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-luxury__stat {
  text-align: center;
}

.faq-luxury__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1.2;
}

.faq-luxury__stat-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.faq-luxury__search {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-luxury__search svg {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: var(--color-gray-400);
  pointer-events: none;
}

.faq-luxury__search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-luxury__search-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-glow), var(--shadow-sm);
}

.faq-luxury__search-input::placeholder {
  color: var(--color-gray-400);
}

.faq-luxury__categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-luxury__cat {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.faq-luxury__cat::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gray-200);
  transition: all var(--transition);
  flex-shrink: 0;
}

.faq-luxury__cat:hover {
  background: rgba(201, 169, 98, 0.06);
  color: var(--color-primary-dark);
}

.faq-luxury__cat.active {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.12), rgba(0, 212, 188, 0.06));
  border-color: rgba(201, 169, 98, 0.25);
  color: var(--color-primary-dark);
  font-weight: 600;
}

.faq-luxury__cat.active::before {
  background: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold-glow);
}

.faq-luxury__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-luxury__item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-luxury);
  box-shadow: var(--shadow-sm);
}

.faq-luxury__item:hover {
  border-color: rgba(201, 169, 98, 0.25);
  box-shadow: var(--shadow-md);
}

.faq-luxury__item.active {
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 169, 98, 0.1);
}

.faq-luxury__item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-accent));
}

.faq-luxury__item {
  position: relative;
}

.faq-luxury__item.is-hidden {
  display: none;
}

.faq-luxury__trigger {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px 20px;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.faq-luxury__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 52px;
}

.faq-luxury__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(201, 169, 98, 0.35);
  line-height: 1;
  transition: color var(--transition);
}

.faq-luxury__item.active .faq-luxury__num {
  color: var(--color-gold);
}

.faq-luxury__tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 3px 8px;
  background: rgba(0, 212, 188, 0.08);
  border-radius: 50px;
  white-space: nowrap;
}

.faq-luxury__item[data-category="quality"] .faq-luxury__tag {
  color: var(--color-gold);
  background: rgba(201, 169, 98, 0.1);
}

.faq-luxury__item[data-category="partnership"] .faq-luxury__tag {
  color: var(--color-primary-light);
  background: rgba(12, 61, 94, 0.08);
}

.faq-luxury__item[data-category="technology"] .faq-luxury__tag {
  color: #6B8CFF;
  background: rgba(107, 140, 255, 0.1);
}

.faq-luxury__q {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  line-height: 1.45;
  transition: color var(--transition);
}

.faq-luxury__item.active .faq-luxury__q {
  color: var(--color-primary);
}

.faq-luxury__trigger:hover .faq-luxury__q {
  color: var(--color-accent);
}

.faq-luxury__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-100);
  color: var(--color-accent);
  flex-shrink: 0;
  transition: all var(--transition-luxury);
}

.faq-luxury__icon svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-luxury);
}

.faq-luxury__item.active .faq-luxury__icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 4px 16px var(--color-gold-glow);
}

.faq-luxury__item.active .faq-luxury__icon svg {
  transform: rotate(45deg);
}

.faq-luxury__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-luxury__body p {
  padding: 0 28px 28px 100px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.85;
  margin: 0;
}

.faq-luxury__body a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color var(--transition);
}

.faq-luxury__body a:hover {
  color: var(--color-gold);
}

.faq-luxury__empty {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.faq-luxury__empty.is-visible {
  display: block;
}

/* FAQ on dark band ? override .faq-section light shell when section--dark is set */
.section.section--dark.faq-section {
  background: linear-gradient(180deg, #010A12 0%, #041828 48%, #010A12 100%);
  color: rgba(255, 255, 255, 0.88);
}

.section.section--dark.faq-section::before {
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
}

.section.section--dark.faq-section::after {
  background: radial-gradient(circle, rgba(0, 212, 188, 0.08) 0%, transparent 70%);
}

.section.section--dark.faq-section .faq-section__header .section-label {
  color: rgba(201, 169, 98, 0.82);
}

.section.section--dark.faq-section .faq-section__header .section-label::before {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.72), transparent);
}

.section.section--dark.faq-section .faq-section__header .section-title,
.section.section--dark.faq-section .faq-section__header .display-title {
  background: linear-gradient(135deg, #fff 0%, var(--color-champagne) 45%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}

.section.section--dark.faq-section .faq-section__header .section-desc {
  color: rgba(255, 255, 255, 0.55);
}

.section.section--dark.faq-section .faq-luxury__search svg {
  color: rgba(255, 255, 255, 0.4);
}

.section.section--dark.faq-section .faq-luxury__search-input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.section.section--dark.faq-section .faq-luxury__search-input:focus {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.section.section--dark.faq-section .faq-luxury__search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.section.section--dark.faq-section .faq-luxury__cat {
  color: rgba(255, 255, 255, 0.52);
}

.section.section--dark.faq-section .faq-luxury__cat::before {
  background: rgba(255, 255, 255, 0.22);
}

.section.section--dark.faq-section .faq-luxury__cat:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
}

.section.section--dark.faq-section .faq-luxury__cat.active {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.14), rgba(0, 212, 188, 0.08));
  border-color: rgba(201, 169, 98, 0.32);
  color: rgba(255, 255, 255, 0.95);
}

.section.section--dark.faq-section .faq-luxury__cat.active::before {
  background: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold-glow);
}

.section.section--dark.faq-section .faq-luxury__empty {
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1024px) {
  .faq-luxury {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-luxury__sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .faq-luxury__panel {
    grid-column: 1 / -1;
  }

  .faq-luxury__categories {
    flex-direction: row;
    flex-wrap: wrap;
    grid-column: 1 / -1;
  }

  .faq-luxury__cat {
    width: auto;
    flex: 0 0 auto;
    padding: 10px 16px;
  }

  .faq-luxury__body p {
    padding-left: 28px;
  }
}

@media (max-width: 640px) {
  .faq-luxury__sidebar {
    grid-template-columns: 1fr;
  }

  .faq-luxury__trigger {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 20px;
  }

  .faq-luxury__meta {
    flex-direction: row;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .faq-luxury__q {
    grid-column: 1;
  }

  .faq-luxury__icon {
    grid-column: 2;
    grid-row: 2;
  }

  .faq-luxury__body p {
    padding: 0 20px 20px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right,
  .reveal-stagger > * {
    filter: none;
    transition-duration: 0.01ms;
  }
  .hero__spotlight-card.active,
  .page-hero::before {
    animation: none;
  }
  .ambient-glow { display: none; }
  .faq-luxury__body { transition-duration: 0.01ms; }
  .partners-luxury__track { animation: none; }
}

/* ============================================
   Hero Particles + Partners Luxury
   ============================================ */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

.partners-luxury {
  position: relative;
  overflow: hidden;
}

.partners-luxury::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, rgba(0, 212, 188, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.partners-luxury__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.partners-luxury__stat {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all var(--transition-luxury);
}

.partners-luxury__stat:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(201, 169, 98, 0.08);
  transform: translateY(-4px);
}

.partners-luxury__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.partners-luxury__stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
}

.partners-luxury__marquee {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-luxury__row {
  overflow: hidden;
  padding: 8px 0;
}

.partners-luxury__track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.partners-luxury__track--forward {
  animation: partners-scroll 40s linear infinite;
}

.partners-luxury__track--reverse {
  animation: partners-scroll 45s linear infinite reverse;
}

.partners-luxury__marquee:hover .partners-luxury__track {
  animation-play-state: paused;
}

@keyframes partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-luxury__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 200px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: all var(--transition-luxury);
  flex-shrink: 0;
}

.partners-luxury__card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 40px rgba(201, 169, 98, 0.1);
  transform: translateY(-6px) scale(1.02);
}

.partners-luxury__card img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.75);
  transition: filter var(--transition);
}

.partners-luxury__card--cert img {
  height: 56px;
  filter: none;
  border-radius: var(--radius-sm);
}

.partners-luxury__card:hover img {
  filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 12px rgba(201, 169, 98, 0.4));
}

.partners-luxury__card--cert:hover img {
  filter: drop-shadow(0 0 16px rgba(201, 169, 98, 0.35));
}

.partners-luxury__card span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  white-space: nowrap;
}

.partners-luxury__card:hover span {
  color: var(--color-gold-light);
}

@media (max-width: 768px) {
  .partners-luxury__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-luxury__card {
    min-width: 160px;
    padding: 20px 24px;
  }
}

/* ============================================
   Product Detail v3
   ============================================ */

.page-hero__eyebrow {
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page-hero:has(.page-hero__eyebrow):not(:has(.page-hero__title)) {
  padding-bottom: 32px;
}

.product-detail__nav {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  margin-top: -8px;
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
  overflow-x: auto;
  scrollbar-width: none;
}

.product-detail__nav::-webkit-scrollbar { display: none; }

.product-detail__nav a {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.product-detail__nav a:hover,
.product-detail__nav a.active {
  color: var(--color-primary-dark);
  background: rgba(201, 169, 98, 0.1);
  border-color: rgba(201, 169, 98, 0.25);
}

.section--product-hero {
  padding-top: 24px;
  background: linear-gradient(180deg, var(--color-off-white) 0%, #fff 100%);
}

.product-detail__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section--product-hero .product-detail__gallery-main {
  aspect-ratio: 4 / 3;
  min-height: 380px;
  background: linear-gradient(145deg, #f8fafd 0%, #eef3f8 100%);
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: var(--shadow-lg);
}

.section--product-hero .product-detail__thumbs {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.section--product-hero .product-detail__thumb {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-md);
  border-color: rgba(201, 169, 98, 0.15);
}

.section--product-hero .product-detail__thumb.active {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.product-detail__title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  margin: 8px 0 4px;
  line-height: 1.15;
}

.product-detail__intro {
  margin: 28px 0 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-gold);
}

.product-detail__block-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.product-detail__intro p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text);
  margin: 0;
}

.product-detail-features {
  padding: 80px 0;
}

.product-detail-features__header {
  text-align: center;
  margin-bottom: 48px;
}

.product-detail__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-detail__feature-card {
  position: relative;
  padding: 32px 28px 28px 72px;
  background: #fff;
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-luxury);
}

.product-detail__feature-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-detail__feature-num {
  position: absolute;
  left: 24px;
  top: 28px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-detail__feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
}

.product-detail-apps {
  padding: 72px 0;
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.product-detail-apps .section-label {
  color: var(--color-gold-light);
}

.product-detail-apps .section-title {
  color: var(--color-white);
}

.product-detail-apps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.product-detail-apps__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-luxury);
}

.product-detail-apps__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-4px);
}

.product-detail-apps__icon {
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-top: 4px;
}

.product-detail-apps__item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .product-detail__features-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-apps__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section--product-hero .product-detail__gallery-main {
    min-height: 280px;
  }
  .product-detail__nav a {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

/* ============================================
   SaaS Cloud Platform v2
   ============================================ */

.saas-hub {
  padding: clamp(56px, 7vw, 80px) 0 clamp(48px, 6vw, 64px);
  background: #0e1012;
}

.page-hero--editorial + .saas-hub--editorial {
  padding-top: 0;
  margin-top: 0;
}

.page-hero--editorial:has(+ .saas-hub--editorial) {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .page-hero--editorial:has(+ .saas-hub--editorial) {
    padding-bottom: 20px;
  }
}

.saas-hub--editorial {
  padding-top: 0;
}

.saas-hub .section-label {
  color: rgba(201, 169, 98, 0.82);
}

.saas-hub .section-title,
.saas-hub .display-title {
  background: linear-gradient(135deg, #fff 0%, var(--color-champagne) 45%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}

.saas-hub .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.saas-detail__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  margin: 0 0 clamp(40px, 5vw, 56px);
  padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2vw, 40px);
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-sizing: border-box;
  overflow-x: auto;
  scrollbar-width: none;
}

.saas-detail__nav::-webkit-scrollbar { display: none; }

.saas-detail__nav a {
  flex-shrink: 0;
  padding: 11px 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  border: none;
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.saas-detail__nav a:hover,
.saas-detail__nav a.active {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 212, 188, 0.14);
  border-color: transparent;
  box-shadow: none;
}

.saas-overview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.saas-overview__tags span {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 212, 188, 0.12);
  border: 1px solid rgba(0, 212, 188, 0.28);
  border-radius: 50px;
}

.saas-hub .saas-overview__tags span {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 212, 188, 0.12);
  border-color: rgba(0, 212, 188, 0.28);
}

.saas-metrics {
  padding: 0 0 48px;
  margin-top: -24px;
}

.saas-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.saas-metrics__item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(201, 169, 98, 0.1);
}

.saas-metrics__item:last-child {
  border-right: none;
}

.saas-metrics__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.saas-metrics__item span {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.saas-feature__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.saas-feature__list li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.saas-feature__list li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 0.5rem;
  color: var(--color-gold);
}

.saas-architecture__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 40px;
}

.saas-architecture__layer {
  position: relative;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-luxury);
}

.saas-architecture__layer:hover,
.saas-architecture__layer--highlight {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.saas-architecture__layer--highlight {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 0 40px rgba(201, 169, 98, 0.12);
}

.saas-architecture__num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(201, 169, 98, 0.35);
}

.saas-architecture__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-md);
}

.saas-architecture__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold-light);
}

.saas-architecture__layer h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.saas-architecture__lead {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  line-height: 1.6;
}

.saas-architecture__layer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.saas-architecture__layer li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.saas-architecture__layer li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 0.5rem;
  color: var(--color-gold);
}

.saas-architecture__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 72px;
}

.saas-architecture__connector-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
}

.saas-architecture__connector-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  white-space: nowrap;
}

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

.saas-architecture__extra {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.saas-architecture__extra strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.saas-architecture__extra p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.saas-benefits {
  background: linear-gradient(180deg, #fff 0%, var(--color-off-white) 100%);
}

.saas-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.saas-benefit-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-luxury);
}

.saas-benefit-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.saas-benefit-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.12), rgba(0, 212, 188, 0.08));
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-md);
}

.saas-benefit-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-primary-dark);
}

.saas-benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
}

.saas-benefit-card > p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.saas-benefit-card ul {
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.saas-benefit-card li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 0.8125rem;
  color: var(--color-text);
  line-height: 1.5;
}

.saas-benefit-card li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 0.5rem;
  color: var(--color-gold);
}

@media (max-width: 1100px) {
  .saas-architecture__flow {
    grid-template-columns: 1fr;
  }
  .saas-architecture__connector {
    flex-direction: row;
    min-width: auto;
    padding: 8px 0;
  }
  .saas-architecture__connector-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  }
  .saas-architecture__extras {
    grid-template-columns: 1fr;
  }
  .saas-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .saas-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .saas-metrics__item:nth-child(2) {
    border-right: none;
  }
  .saas-metrics__item:nth-child(1),
  .saas-metrics__item:nth-child(2) {
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  }
}

@media (max-width: 768px) {
  .saas-benefits__grid,
  .saas-metrics__grid {
    grid-template-columns: 1fr;
  }
  .saas-metrics__item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  }
  .saas-metrics__item:last-child {
    border-bottom: none;
  }
  .saas-detail__nav a {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

/* ============================================
   Site Content Fix ? News, Locations, Product Details
   ============================================ */
.location-card__meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-gray-100);
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.location-card__meta strong {
  display: block;
  color: var(--color-primary-dark);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.news-page {
  padding-bottom: 0;
}

.news-page__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.news-page__sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-page__cat {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transition: all var(--transition);
}

.news-page__cat:hover,
.news-page__cat.active {
  border-color: rgba(0, 212, 188, 0.32);
  background: rgba(0, 212, 188, 0.1);
  color: #fff;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
}

.news-card__link:hover {
  color: var(--color-primary);
}

.news-article {
  max-width: 820px;
  margin: 0 auto;
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.news-article__hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.news-article__hero img {
  width: 100%;
  height: auto;
}

.news-article__body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text);
}

.news-article__body h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.news-article__body p {
  margin-bottom: 20px;
}

/* News Article Atelier v4 ? full-bleed flow, no boxed scroll */
body.news-article-page {
  background: #0a0c0e;
}

.news-article--atelier {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #0a0c0e;
}

.news-article-hero {
  position: relative;
  min-height: clamp(360px, 52vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #020c14;
}

.news-article-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.news-article-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 12, 20, 0.45) 0%, rgba(2, 12, 20, 0.2) 42%, rgba(10, 12, 14, 0.96) 100%),
    linear-gradient(90deg, rgba(2, 12, 20, 0.7) 0%, rgba(2, 12, 20, 0.25) 100%);
}

.news-article-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.28;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.news-article-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 14vh, 168px);
  padding-bottom: clamp(88px, 10vw, 120px);
}

.news-article-hero .breadcrumb {
  margin-bottom: clamp(32px, 4vw, 44px);
}

.news-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: clamp(22px, 2.8vw, 30px);
}

.news-article-hero__tag {
  display: inline-flex;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 188, 0.28);
  background: rgba(0, 212, 188, 0.08);
  color: var(--color-accent-light);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-article-hero__date {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.46);
  letter-spacing: 0.04em;
}

.news-article-hero__title {
  max-width: min(1200px, 100%);
  font-size: clamp(2.125rem, 4.8vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.news-article-hero__rule {
  margin-top: clamp(40px, 5vw, 56px);
  width: 72px;
  height: 1px;
  background: rgba(201, 169, 98, 0.55);
}

.news-article__reading {
  background: linear-gradient(180deg, #0a0c0e 0%, #0e1012 100%);
  padding: clamp(72px, 9vw, 108px) 0 clamp(56px, 7vw, 80px);
}

.news-article__reading-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.news-article__deck {
  margin: 0 0 clamp(36px, 4.5vw, 48px);
  padding: 0 0 clamp(28px, 3.5vw, 36px) clamp(24px, 3vw, 32px);
  border: none;
  border-left: 2px solid rgba(201, 169, 98, 0.55);
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.3125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.news-article__prose {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.74);
}

.news-article__prose p {
  margin-bottom: 1.35em;
}

.news-article__prose > :first-child {
  margin-top: 0;
}

.news-article__prose > :last-child {
  margin-bottom: 0;
}

.news-article__prose h1,
.news-article__prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.01em;
}

.news-article__prose h1 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin: clamp(40px, 5vw, 52px) 0 16px;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-article__prose h2 {
  font-size: clamp(1.1875rem, 1.8vw, 1.375rem);
  margin: clamp(40px, 5vw, 52px) 0 14px;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-article__prose h1:first-child,
.news-article__prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.news-article__prose h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 2em 0 0.75em;
}

.news-article__prose h4,
.news-article__prose h5,
.news-article__prose h6 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin: 1.75em 0 0.65em;
}

.news-article__prose strong,
.news-article__prose b {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.news-article__prose a {
  color: var(--color-accent-light);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 188, 0.35);
  text-underline-offset: 0.15em;
}

.news-article__prose a:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.news-article__prose img,
.news-article__prose video,
.news-article__prose iframe {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.75em auto;
  border-radius: 6px;
}

.news-article__prose ul,
.news-article__prose ol {
  margin: 0 0 1.35em;
  padding-left: 1.35em;
}

.news-article__prose li {
  margin-bottom: 0.55em;
}

.news-article__prose li > ul,
.news-article__prose li > ol {
  margin-top: 0.55em;
  margin-bottom: 0;
}

.news-article__prose blockquote {
  margin: 1.75em 0;
  padding: 0 0 0 1.25em;
  border-left: 2px solid rgba(201, 169, 98, 0.4);
  color: rgba(255, 255, 255, 0.68);
  font-style: italic;
}

.news-article__prose table {
  width: 100%;
  margin: 1.75em 0;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.news-article__prose th,
.news-article__prose td {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.news-article__prose th {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.news-article__prose hr {
  margin: 2.5em 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(56px, 7vw, 72px);
  padding-top: clamp(40px, 5vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-article__continue {
  padding: clamp(64px, 8vw, 96px) 0 clamp(96px, 12vw, 128px);
  background: #0e1012;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.news-article__continue-head {
  margin-bottom: clamp(28px, 3.5vw, 36px);
  max-width: 720px;
}

.news-article__continue-head .section-label {
  color: rgba(201, 169, 98, 0.78);
  margin-bottom: 12px;
}

.news-article__continue-heading {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.news-article__continue-head .section-title,
.news-article__continue-head .display-title {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin-bottom: 0;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: rgba(255, 255, 255, 0.88);
}

.news-article__continue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.news-article__continue-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.news-article__continue-card:hover {
  border-color: rgba(0, 212, 188, 0.24);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.news-article__continue-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #12161c;
}

.news-article__continue-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.news-article__continue-card:hover .news-article__continue-media img {
  transform: scale(1.04);
  opacity: 0.95;
}

.news-article__continue-body {
  padding: clamp(18px, 2.2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-article__continue-date {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.36);
  letter-spacing: 0.04em;
}

.news-article__continue-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  flex: 1;
}

.news-article__continue-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .news-article__continue-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-article-hero__title {
    max-width: 100%;
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .news-article__reading-inner {
    max-width: 100%;
  }
}

.product-detail-content__blocks {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.product-detail-content__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.product-detail-content__block--reverse .product-detail-content__media {
  order: 2;
}

.product-detail-content__block--reverse .product-detail-content__text {
  order: 1;
}

.product-detail-content__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
}

.product-detail-content__media img {
  width: 100%;
  height: auto;
}

.product-detail-content__text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.product-detail-content__text p {
  color: var(--color-text-light);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .news-page__layout {
    grid-template-columns: 1fr;
  }
  .news-page__sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product-detail-content__block,
  .product-detail-content__block--reverse {
    grid-template-columns: 1fr;
  }
  .product-detail-content__block--reverse .product-detail-content__media,
  .product-detail-content__block--reverse .product-detail-content__text {
    order: unset;
  }
}

/* ============================================
   News Hub v4 ? Alternating Light / Dark Blocks
   ============================================ */
.news-hub {
  padding: 0;
  background: transparent;
}

.page-hero--editorial + .news-hub--editorial {
  padding-top: 0;
  margin-top: 0;
}

.page-hero--editorial:has(+ .news-hub--editorial) {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .page-hero--editorial:has(+ .news-hub--editorial) {
    padding-bottom: 20px;
  }
}

.news-hub__block > .container {
  max-width: 80vw;
  margin: 0 auto;
}

.news-hub__block {
  padding: clamp(56px, 7vw, 80px) 0;
  margin-bottom: 0;
}

.news-hub__block--light {
  background: var(--color-off-white);
  color: var(--color-text);
}

.news-hub__block--dark {
  background: linear-gradient(180deg, #010A12 0%, #041828 50%, #010A12 100%);
  color: var(--color-white);
}

.news-hub__block--metrics {
  padding-top: clamp(32px, 4vw, 48px);
}

.news-hub__block--dark .section-label {
  color: rgba(201, 169, 98, 0.82);
}

.news-hub__block--dark .section-title,
.news-hub__block--dark .display-title {
  background: linear-gradient(135deg, #fff 0%, var(--color-champagne) 45%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}

.news-hub__block--dark .section-desc {
  color: rgba(255, 255, 255, 0.48);
}

.news-hub__block--light .section-label {
  color: var(--color-accent);
}

.news-hub__block--light .section-title,
.news-hub__block--light .display-title {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}

.news-hub__block--light .section-desc {
  color: var(--color-text-light);
}

.news-hub__toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2vw, 40px);
  background: #0e1012;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-sizing: border-box;
}

.news-hub__pill {
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.news-hub__pill:hover,
.news-hub__pill.active {
  background: rgba(0, 212, 188, 0.14);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.news-hub__block-head {
  margin-bottom: clamp(28px, 3.5vw, 40px);
  max-width: 720px;
}

.news-hub__block-head .section-desc {
  margin-top: 10px;
}

.news-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.news-mosaic__card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}

.news-mosaic__card:hover {
  border-color: rgba(0, 212, 188, 0.24);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.news-mosaic__card--wide {
  grid-column: span 2;
  flex-direction: row;
}

.news-mosaic__card--wide .news-mosaic__media {
  width: 46%;
  min-height: 260px;
}

.news-mosaic__card--wide .news-mosaic__body {
  width: 54%;
  padding: clamp(28px, 3.5vw, 36px);
  justify-content: center;
}

.news-mosaic__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #12161c;
}

.news-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s ease;
}

.news-mosaic__card:hover .news-mosaic__media img {
  transform: scale(1.04);
}

.news-mosaic__date {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.72);
  backdrop-filter: blur(6px);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.news-mosaic__body {
  padding: clamp(22px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-mosaic__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-mosaic__title {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.news-mosaic__title a {
  color: rgba(255, 255, 255, 0.92);
}

.news-mosaic__title a:hover {
  color: var(--color-accent-light);
}

.news-mosaic__excerpt {
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
  font-size: 0.9375rem;
}

.news-mosaic__link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent-light);
}

.news-exhibit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.news-exhibit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}

.news-exhibit-card:hover {
  border-color: rgba(201, 169, 98, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.news-exhibit-card__visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.news-exhibit-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.news-exhibit-card:hover .news-exhibit-card__visual img {
  transform: scale(1.05);
}

.news-exhibit-card__date {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.6875rem;
  font-weight: 600;
}

.news-exhibit-card__body {
  padding: clamp(20px, 2.5vw, 24px);
}

.news-exhibit-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(201, 169, 98, 0.88);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-exhibit-card__title {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.news-exhibit-card__title a {
  color: rgba(255, 255, 255, 0.92);
}

.news-exhibit-card__title a:hover {
  color: var(--color-accent-light);
}

.news-exhibit-card__excerpt {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.65;
  margin-bottom: 14px;
}

.news-exhibit-card__link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent-light);
}

.news-insights-list {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.news-insight-card {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: clamp(24px, 3vw, 32px);
  padding: clamp(20px, 2.5vw, 24px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: all var(--transition);
  align-items: center;
}

.news-insight-card:hover {
  border-color: rgba(0, 212, 188, 0.24);
  background: rgba(255, 255, 255, 0.045);
}

.news-insight-card__visual {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.news-insight-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.news-insight-card:hover .news-insight-card__visual img {
  transform: scale(1.04);
}

.news-insight-card__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
}

.news-insight-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-insight-card__date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.36);
}

.news-insight-card__title {
  font-size: clamp(1.125rem, 1.8vw, 1.3125rem);
  margin-bottom: 10px;
  line-height: 1.32;
}

.news-insight-card__title a {
  color: rgba(255, 255, 255, 0.92);
}

.news-insight-card__title a:hover {
  color: var(--color-accent-light);
}

.news-insight-card__excerpt {
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.72;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}

.news-insight-card__link {
  font-weight: 700;
  color: var(--color-accent-light);
  font-size: 0.8125rem;
}

/* Light news blocks ? card & text overrides */
.news-hub__block--light .news-mosaic__card,
.news-hub__block--light .news-exhibit-card,
.news-hub__block--light .news-insight-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
}

.news-hub__block--light .news-mosaic__card:hover,
.news-hub__block--light .news-exhibit-card:hover {
  border-color: rgba(0, 201, 177, 0.28);
  box-shadow: var(--shadow-md);
}

.news-hub__block--light .news-insight-card:hover {
  border-color: rgba(0, 201, 177, 0.28);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.news-hub__block--light .news-mosaic__media {
  background: var(--color-gray-50, #f5f7f8);
}

.news-hub__block--light .news-mosaic__tag,
.news-hub__block--light .news-insight-card__tag {
  color: var(--color-accent);
}

.news-hub__block--light .news-exhibit-card__tag {
  color: rgba(201, 169, 98, 0.95);
}

.news-hub__block--light .news-mosaic__title a,
.news-hub__block--light .news-exhibit-card__title a,
.news-hub__block--light .news-insight-card__title a {
  color: var(--color-primary-dark);
}

.news-hub__block--light .news-mosaic__title a:hover,
.news-hub__block--light .news-exhibit-card__title a:hover,
.news-hub__block--light .news-insight-card__title a:hover {
  color: var(--color-accent);
}

.news-hub__block--light .news-mosaic__excerpt,
.news-hub__block--light .news-exhibit-card__excerpt,
.news-hub__block--light .news-insight-card__excerpt {
  color: var(--color-text-light);
}

.news-hub__block--light .news-insight-card__date {
  color: var(--color-text-light);
}

.news-hub__block--light .news-mosaic__link,
.news-hub__block--light .news-exhibit-card__link,
.news-hub__block--light .news-insight-card__link {
  color: var(--color-primary);
}

.news-hub__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(28px, 3.5vw, 40px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  margin-top: clamp(8px, 1vw, 16px);
}

.news-hub__metric {
  text-align: center;
  padding: 8px;
}

.news-hub__metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 6px;
}

.news-hub__metric span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1100px) {
  .news-hub__block > .container {
    max-width: 90vw;
  }

  .news-mosaic__card--wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .news-mosaic__card--wide .news-mosaic__media,
  .news-mosaic__card--wide .news-mosaic__body {
    width: 100%;
  }

  .news-exhibit-grid {
    grid-template-columns: 1fr;
  }

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

  .news-hub__metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-hub__block > .container {
    max-width: 92vw;
  }

  .news-hub__toolbar {
    width: 100%;
    border-radius: 0;
    justify-content: center;
  }

  .saas-detail__nav {
    width: 100%;
    border-radius: 0;
    justify-content: center;
  }

  .news-mosaic {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Contact Luxury v4 ? Editorial Premium
   ============================================ */

/* --- Contact Hero v5 (legacy ? layout only, width overridden below) --- */
.page-hero--contact {
  padding: calc(var(--header-height) + clamp(48px, 6vw, 72px)) 0 clamp(64px, 8vw, 96px);
  min-height: clamp(480px, 62vh, 640px);
  display: flex;
  align-items: center;
}

.page-hero--contact .breadcrumb {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.page-hero--contact .page-hero__orb--3 {
  width: 360px;
  height: 360px;
  background: rgba(201, 169, 98, 0.08);
  top: 20%;
  left: 55%;
  animation-delay: -10s;
}

.contact-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}

.contact-hero__copy {
  max-width: 780px;
}

.contact-hero__eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: clamp(24px, 3vw, 32px);
}

.contact-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin-right: 16px;
  vertical-align: middle;
}

.page-hero--contact .page-hero__title {
  font-size: clamp(2rem, 3.2vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: clamp(24px, 3vw, 32px);
  max-width: none;
}

.page-hero--contact .page-hero__desc {
  font-size: clamp(1.0625rem, 1.4vw, 1.3125rem);
  line-height: 1.85;
  max-width: none;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-hero__authority {
  padding: clamp(32px, 3.5vw, 44px);
  border-radius: clamp(20px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(201, 169, 98, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.contact-hero__authority-head {
  margin-bottom: clamp(24px, 3vw, 32px);
  padding-bottom: clamp(20px, 2.5vw, 28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero__authority-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 10px;
}

.contact-hero__authority-head p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

.contact-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px) clamp(20px, 3vw, 32px);
}

.contact-hero__stat {
  position: relative;
  padding-left: 16px;
}

.contact-hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-accent));
}

.contact-hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.contact-hero__stat span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact-hero__rule {
  margin-top: clamp(48px, 6vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.45), rgba(0, 212, 188, 0.35), rgba(201, 169, 98, 0.45), transparent);
}


/* --- Contact Main Stage --- */
.contact-luxury {
  --contact-stage-pad-x: clamp(40px, 4.5vw, 64px);
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0 clamp(120px, 14vw, 180px);
  background: linear-gradient(180deg, #010A12 0%, #041828 50%, #051E32 100%);
  overflow: hidden;
}

.contact-luxury__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(0, 212, 188, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(201, 169, 98, 0.07) 0%, transparent 50%);
}

.contact-luxury__ambient::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 188, 0.04) 0%, transparent 65%);
}

.contact-luxury .container {
  position: relative;
  z-index: 1;
}

.contact-luxury__stage {
  position: relative;
  border-radius: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, rgba(4, 24, 40, 0.92) 0%, rgba(1, 10, 18, 0.98) 100%);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.contact-luxury__stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-accent), var(--color-gold), transparent);
}

.contact-luxury__main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

/* Shared contact page column grid */
.contact-page__inset {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
}

.contact-luxury__stage .contact-page__inset {
  align-items: stretch;
}

.contact-luxury__aside {
  position: relative;
  padding: clamp(48px, 5vw, 72px) var(--contact-stage-pad-x);
  color: var(--color-white);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-luxury__aside::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-luxury__aside .section-label {
  color: var(--color-gold);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.contact-luxury__aside .section-title,
.contact-luxury__aside .display-title {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--color-champagne) 48%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.contact-luxury__aside .section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-luxury__aside .section-desc {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: clamp(36px, 4vw, 48px);
  max-width: 480px;
}

.contact-luxury__channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(32px, 4vw, 44px);
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-luxury);
}

a.contact-channel:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 212, 188, 0.35);
  transform: translateX(6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-channel__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(0, 212, 188, 0.1));
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.contact-channel__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold-light);
}

.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding-top: 2px;
}

.contact-channel__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.contact-channel__value {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.contact-luxury__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.contact-luxury__tags span {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-champagne);
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.contact-luxury__form-wrap {
  position: relative;
  background: linear-gradient(165deg, #FDFCF9 0%, #F6F1E8 55%, #F0EBE2 100%);
}

.contact-luxury__form-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(0, 212, 188, 0.05) 0%, transparent 45%);
  pointer-events: none;
}

.contact-luxury__form {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 5vw, 72px) var(--contact-stage-pad-x);
}

.contact-luxury__form-head {
  margin-bottom: clamp(32px, 4vw, 40px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.contact-luxury__form-head .section-label {
  color: var(--color-gold);
  letter-spacing: 0.14em;
}

.contact-luxury__form-head p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-top: 10px;
  line-height: 1.6;
}

.contact-luxury__form-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  color: var(--color-primary-dark);
  margin-top: 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.contact-luxury__form .form-group {
  margin-bottom: 22px;
}

.contact-luxury__form .form-group label {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--color-gray-800);
}

.contact-luxury__form .form-group input,
.contact-luxury__form .form-group textarea,
.contact-luxury__form .form-group select {
  padding: 16px 20px;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.contact-luxury__form .form-group input:focus,
.contact-luxury__form .form-group textarea:focus,
.contact-luxury__form .form-group select:focus {
  background: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.15);
}

.contact-luxury__form .form-group textarea {
  min-height: 128px;
}

.contact-luxury__submit {
  width: 100%;
  margin-top: 12px;
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  box-shadow: 0 12px 40px rgba(4, 24, 40, 0.25);
  transition: all var(--transition-luxury);
}

.contact-luxury__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(4, 24, 40, 0.35), var(--shadow-gold);
}

/* --- Global Locations --- */
.contact-locations {
  position: relative;
  padding: clamp(120px, 14vw, 180px) 0 clamp(100px, 12vw, 140px);
  background: #010A12;
  overflow: hidden;
}

.contact-locations__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 80% 15%, rgba(0, 212, 188, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(201, 169, 98, 0.06) 0%, transparent 50%);
}

.contact-locations .container {
  position: relative;
  z-index: 1;
}

.contact-locations__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(64px, 8vw, 96px);
}

.contact-locations__head .section-label {
  color: var(--color-gold);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.contact-locations__head .section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.contact-locations__head .section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-locations__head .section-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

.contact-locations__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: clamp(20px, 2.5vw, 28px);
  margin-bottom: clamp(64px, 8vw, 88px);
}

.contact-location-card {
  position: relative;
  border-radius: clamp(20px, 2.5vw, 28px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-luxury);
}

.contact-location-card--featured {
  grid-row: span 1;
}

.contact-location-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.contact-location-card__index {
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.contact-location-card__visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.contact-location-card--featured .contact-location-card__visual {
  aspect-ratio: 16 / 12;
}

.contact-location-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 10, 18, 0.85) 0%, rgba(1, 10, 18, 0.2) 45%, transparent 100%);
  pointer-events: none;
}

.contact-location-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.contact-location-card:hover .contact-location-card__visual img {
  transform: scale(1.06);
  opacity: 0.95;
}

.contact-location-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  background: rgba(1, 10, 18, 0.72);
  border: 1px solid rgba(201, 169, 98, 0.4);
  backdrop-filter: blur(10px);
}

.contact-location-card__body {
  padding: clamp(28px, 3vw, 36px) clamp(24px, 2.5vw, 32px) clamp(32px, 3.5vw, 40px);
}

.contact-location-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.contact-location-card__body > p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 24px;
}

.contact-location-card__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-location-card__meta li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.55;
}

.contact-location-card__meta strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 2px;
}

.contact-location-card__meta span {
  color: rgba(255, 255, 255, 0.85);
}

.contact-location-card__meta a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-location-card__meta a:hover {
  color: var(--color-gold-light);
}

.contact-locations__band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: clamp(36px, 5vw, 52px) clamp(32px, 5vw, 64px);
  border-radius: clamp(20px, 2.5vw, 28px);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-locations__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px clamp(16px, 2.5vw, 28px);
  min-width: 130px;
}

.contact-locations__node strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-white);
  margin-bottom: 6px;
}

.contact-locations__node span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-locations__node--accent strong {
  color: var(--color-gold-light);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.contact-locations__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 16px var(--color-accent-glow);
  margin-bottom: 14px;
  position: relative;
}

.contact-locations__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 188, 0.3);
}

.contact-locations__node--accent .contact-locations__dot {
  background: var(--color-gold);
  box-shadow: 0 0 16px var(--color-gold-glow);
}

.contact-locations__node--accent .contact-locations__dot::after {
  border-color: rgba(201, 169, 98, 0.4);
}

.contact-locations__line {
  flex: 1;
  min-width: 48px;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 212, 188, 0.15), rgba(201, 169, 98, 0.5), rgba(0, 212, 188, 0.15));
}

@media (max-width: 1100px) {
  .contact-hero__layout {
    grid-template-columns: 1fr;
    gap: clamp(40px, 5vw, 56px);
    align-items: start;
  }

  .contact-hero__authority {
    max-width: 520px;
  }

  .contact-luxury__main { grid-template-columns: 1fr; }
  .contact-luxury__aside { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .contact-locations__grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .contact-location-card--featured .contact-location-card__visual { aspect-ratio: 16 / 11; }
}

@media (max-width: 768px) {
  .page-hero--contact .page-hero__title { font-size: clamp(1.5rem, 6.2vw, 1.875rem); }
  .contact-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .contact-hero__authority { max-width: none; }
  .contact-luxury__form .form-row { grid-template-columns: 1fr; }

  .contact-locations__band {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    padding: 18px 10px;
  }

  .contact-locations__node {
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 2px;
  }

  .contact-locations__node strong {
    font-size: clamp(0.8125rem, 3.6vw, 0.9375rem);
    margin-bottom: 4px;
  }

  .contact-locations__node--accent strong {
    font-size: clamp(0.9375rem, 4vw, 1.0625rem);
  }

  .contact-locations__node span {
    font-size: 0.5625rem;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-transform: none;
  }

  .contact-locations__dot {
    width: 8px;
    height: 8px;
    margin-bottom: 6px;
  }

  .contact-locations__dot::after {
    inset: -4px;
  }

  .contact-locations__line {
    flex: 0 0 clamp(6px, 1.5vw, 12px);
    min-width: 6px;
    max-width: 12px;
    width: auto;
    height: 1px;
    align-self: center;
    background: linear-gradient(90deg, rgba(0, 212, 188, 0.15), rgba(201, 169, 98, 0.5), rgba(0, 212, 188, 0.15));
  }
}

/* ============================================
   Quiet Luxury v7 ? Typography & Space
   ============================================ */

.btn--ghost-gold {
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.4);
  color: rgba(255, 255, 255, 0.82);
}

.btn--ghost-gold:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background: rgba(201, 169, 98, 0.06);
}

/* --- Home Hero --- */
.hero__video-wrap::after {
  background:
    linear-gradient(90deg, rgba(2, 8, 14, 0.97) 0%, rgba(2, 8, 14, 0.88) 38%, rgba(2, 8, 14, 0.45) 62%, rgba(2, 8, 14, 0.12) 100%),
    linear-gradient(180deg, rgba(2, 8, 14, 0.45) 0%, transparent 45%, rgba(2, 8, 14, 0.55) 100%);
}

.hero__orbs,
.hero__particles {
  display: none;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: clamp(56px, 7vw, 112px);
  min-height: calc(100vh - var(--header-height) - 88px);
  padding-bottom: 88px;
}

.hero__statement {
  max-width: 640px;
}

.hero__kicker {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.7);
  margin-bottom: clamp(32px, 4.5vw, 48px);
}

.hero__title {
  font-size: clamp(3.5rem, 6.2vw, 7.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: clamp(28px, 3.5vw, 40px);
  max-width: 11ch;
}

.hero__title em {
  background: linear-gradient(135deg, var(--color-champagne) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lede {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: rgba(255, 255, 255, 0.55);
  max-width: 36ch;
  line-height: 1.8;
  margin-bottom: clamp(44px, 5vw, 60px);
  font-weight: 400;
}

.hero__actions {
  gap: 20px;
}

.hero__atelier {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(28px, 3.5vw, 36px);
}

.hero__atelier-frame {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
}

.hero__product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 48px 96px rgba(0, 0, 0, 0.5));
}

.hero__product.active {
  opacity: 1;
  transform: scale(1);
}

.hero__atelier-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  width: min(100%, 540px);
}

.hero__atelier-tab {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  transition: color 0.35s ease;
}

.hero__atelier-tab span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(201, 169, 98, 0.35);
  transition: color 0.35s ease;
}

.hero__atelier-tab:hover {
  color: rgba(255, 255, 255, 0.65);
}

.hero__atelier-tab.active {
  color: rgba(255, 255, 255, 0.92);
}

.hero__atelier-tab.active span {
  color: var(--color-gold);
}

.hero__scroll {
  opacity: 0.35;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --- Inner Page Hero --- */
.page-hero {
  min-height: clamp(360px, 44vh, 520px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + clamp(56px, 8vw, 96px)) 0 clamp(80px, 10vw, 120px);
  background: #020C14;
}

.page-hero::before {
  display: none;
}

.page-hero__orbs {
  display: none;
}

.page-hero__grain {
  opacity: 0.02;
}

.page-hero .breadcrumb {
  margin-bottom: clamp(36px, 5vw, 52px);
}

.page-hero__title {
  font-size: clamp(3rem, 5.8vw, 5.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: clamp(24px, 3.5vw, 32px);
  max-width: 14ch;
}

.page-hero__title--product {
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
  letter-spacing: -0.02em;
  max-width: none;
}

.page-hero__desc {
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  line-height: 1.8;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.page-hero__rule {
  margin-top: clamp(52px, 7vw, 80px);
  width: 80px;
  height: 1px;
  background: rgba(201, 169, 98, 0.55);
}

.page-hero--contact {
  min-height: clamp(380px, 46vh, 540px);
}

.page-hero--contact .page-hero__title {
  max-width: none;
}

.page-hero--compact {
  min-height: clamp(300px, 36vh, 400px);
  padding-bottom: clamp(64px, 8vw, 88px);
}

.page-hero--compact .page-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: 20ch;
}

.page-hero__eyebrow {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.65);
}

.page-hero__title,
.page-hero__desc,
.page-hero .breadcrumb,
.page-hero__rule {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hero--ready .page-hero__rule {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.page-hero__mark,
.page-hero__layout,
.contact-hero__authority,
.contact-hero__stats {
  display: none !important;
}

@media (min-width: 1400px) {
  .hero__title { max-width: 12ch; }
}

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 64px;
    gap: 48px;
  }

  .hero__title { max-width: none; }

  .hero__atelier {
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero__atelier-nav {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .hero__title { font-size: clamp(2.75rem, 11vw, 3.5rem); }
  .hero__atelier-nav { gap: 12px 20px; }
  .hero__atelier-tab { font-size: 0.75rem; }
  .page-hero__title { font-size: clamp(2.25rem, 9vw, 3rem); }
  .page-hero__rule { width: 56px; }
  .hero__scroll { display: none; }
}

/* ============================================
   Page Hero ? Background + FX Layer
   ============================================ */
.page-hero--editorial,
.page-hero--contact {
  min-height: clamp(520px, 65vh, 680px);
  background: #020c14;
  overflow: hidden;
}

.page-hero--editorial .page-hero__bg,
.page-hero--contact .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--editorial .page-hero__bg img,
.page-hero--contact .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.62;
}

.page-hero--about .page-hero__bg img { object-position: center 42%; }
.page-hero--products .page-hero__bg img { object-position: center 28%; }
.page-hero--news .page-hero__bg img { object-position: center 32%; }
.page-hero--service .page-hero__bg img { object-position: center 38%; }
.page-hero--solutions .page-hero__bg img { object-position: center 30%; }
.page-hero--saas .page-hero__bg img { object-position: center 45%; }
.page-hero--csr .page-hero__bg img { object-position: center 36%; }

.page-hero__fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.page-hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero__geo {
  position: absolute;
  inset: 0;
}

.page-hero__geo-ring {
  position: absolute;
  border: 1px solid rgba(0, 212, 188, 0.18);
  border-radius: 50%;
  animation: hero-geo-drift 20s ease-in-out infinite;
}

.page-hero__geo-ring--1 {
  width: clamp(280px, 38vw, 460px);
  height: clamp(280px, 38vw, 460px);
  top: 12%;
  right: 6%;
  border-color: rgba(201, 169, 98, 0.22);
  animation-duration: 24s;
}

.page-hero__geo-ring--2 {
  width: clamp(180px, 22vw, 300px);
  height: clamp(180px, 22vw, 300px);
  bottom: 18%;
  right: 20%;
  animation-duration: 17s;
  animation-direction: reverse;
}

.page-hero__geo-hex {
  position: absolute;
  width: clamp(80px, 10vw, 130px);
  height: clamp(80px, 10vw, 130px);
  top: 22%;
  right: 16%;
  border: 1px solid rgba(0, 212, 188, 0.28);
  background: rgba(0, 212, 188, 0.04);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hero-geo-spin 28s linear infinite;
}

.page-hero__geo-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.4), transparent);
  animation: hero-geo-sweep 14s ease-in-out infinite;
}

.page-hero__geo-line--1 {
  width: clamp(120px, 18vw, 240px);
  top: 38%;
  right: 10%;
}

.page-hero__geo-line--2 {
  width: clamp(80px, 12vw, 160px);
  bottom: 32%;
  right: 28%;
  animation-delay: -6s;
}

@keyframes hero-geo-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(-20px, 14px) scale(1.04); opacity: 0.95; }
}

@keyframes hero-geo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hero-geo-sweep {
  0%, 100% { opacity: 0.25; transform: translateX(-16px); }
  50% { opacity: 0.75; transform: translateX(16px); }
}

.page-hero--editorial .page-hero__grain,
.page-hero--contact .page-hero__grain {
  z-index: 2;
  opacity: 0.28;
}

.page-hero--editorial .page-hero__editorial-fade,
.page-hero--contact .page-hero__contact-fade {
  z-index: 3;
}

.page-hero--editorial .container,
.page-hero--contact .container {
  z-index: 5;
}

@media (max-width: 768px) {
  .page-hero--contact {
    min-height: clamp(460px, 58vh, 560px);
  }

  .page-hero--editorial:not(.page-hero--contact) {
    min-height: 0;
  }

  .page-hero__geo-ring--1 {
    right: -12%;
    opacity: 0.7;
  }

  .page-hero__geo-hex {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__geo-ring,
  .page-hero__geo-hex,
  .page-hero__geo-line {
    animation: none;
  }
}

/* ============================================
   Contact Hero v8 ? Editorial Concierge
   ============================================ */
.page-hero--contact {
  --contact-stage-pad-x: clamp(40px, 4.5vw, 64px);
  align-items: flex-end;
  padding: calc(var(--header-height) + clamp(56px, 8vw, 92px)) 0 clamp(72px, 9vw, 100px);
}

.page-hero--contact .page-hero__bg img {
  object-position: center 35%;
}

.page-hero--contact .page-hero__contact-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(2, 12, 20, 0.78) 0%, rgba(2, 12, 20, 0.48) 48%, rgba(1, 10, 18, 0.96) 100%),
    linear-gradient(90deg, rgba(2, 12, 20, 0.84) 0%, rgba(2, 12, 20, 0.42) 58%);
  pointer-events: none;
}

.page-hero--contact .container {
  position: relative;
  z-index: 5;
  width: var(--container-width);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.contact-hero__stage {
  border-radius: clamp(24px, 3vw, 36px);
}

.contact-luxury__stage--ghost {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  overflow: visible;
}

.contact-luxury__stage--ghost::before {
  display: none;
}

/* Hero ghost panel ? readable text over photography */
.page-hero--editorial .contact-luxury__stage--ghost,
.page-hero--contact .contact-luxury__stage--ghost {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-hero--editorial .contact-luxury__stage--ghost .display-title,
.page-hero--contact .contact-luxury__stage--ghost .display-title,
.page-hero--editorial .contact-luxury__stage--ghost .page-hero__title,
.page-hero--contact .contact-luxury__stage--ghost .page-hero__title {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.page-hero--editorial .contact-luxury__stage--ghost .breadcrumb,
.page-hero--contact .contact-luxury__stage--ghost .breadcrumb {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero--editorial .contact-luxury__stage--ghost .breadcrumb a,
.page-hero--contact .contact-luxury__stage--ghost .breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero--editorial .contact-luxury__stage--ghost .breadcrumb .sep,
.page-hero--contact .contact-luxury__stage--ghost .breadcrumb .sep {
  color: rgba(255, 255, 255, 0.45);
}

.page-hero--editorial .contact-luxury__stage--ghost .breadcrumb .current,
.page-hero--contact .contact-luxury__stage--ghost .breadcrumb .current {
  color: rgba(201, 169, 98, 0.95);
}

.page-hero--editorial .contact-luxury__stage--ghost .page-hero__title em,
.page-hero--contact .contact-luxury__stage--ghost .page-hero__title em {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #e8d5a8;
  color: #e8d5a8;
}

.page-hero--editorial .contact-luxury__stage--ghost .page-hero__kicker,
.page-hero--contact .contact-luxury__stage--ghost .contact-hero__kicker {
  color: #c9a962;
}

.page-hero--editorial .contact-luxury__stage--ghost .page-hero__desc,
.page-hero--contact .contact-luxury__stage--ghost .page-hero__desc {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero--editorial .contact-luxury__stage--ghost .page-hero__meta-value,
.page-hero--contact .contact-luxury__stage--ghost .contact-hero__reach-value {
  color: #ffffff;
}

.page-hero--editorial .contact-luxury__stage--ghost .page-hero__meta-label,
.page-hero--contact .contact-luxury__stage--ghost .contact-hero__reach-label {
  color: rgba(201, 169, 98, 0.9);
}

.page-hero--contact .contact-luxury__stage--ghost .contact-hero__reach-value--text {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero--contact .contact-luxury__stage--ghost .contact-hero__reach-foot span {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero--editorial .contact-luxury__stage--ghost .page-hero__meta,
.page-hero--contact .contact-luxury__stage--ghost .contact-hero__reach {
  border-left-color: rgba(201, 169, 98, 0.32);
}

.page-hero--contact .contact-page__inset {
  grid-template-rows: auto auto;
  align-items: end;
}

.page-hero--contact .breadcrumb {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: clamp(40px, 5.5vw, 56px);
  padding-left: var(--contact-stage-pad-x);
}

.contact-hero__copy {
  grid-column: 1;
  grid-row: 2;
  padding-left: var(--contact-stage-pad-x);
  padding-right: clamp(24px, 3vw, 40px);
}

.contact-hero__reach {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 3.2vw, 34px);
  padding-left: var(--contact-stage-pad-x);
  padding-right: var(--contact-stage-pad-x);
  border-left: 1px solid rgba(201, 169, 98, 0.18);
  margin-bottom: clamp(4px, 0.5vw, 8px);
}

.contact-hero__kicker {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.62);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.page-hero--contact .page-hero__title {
  font-size: clamp(2rem, 3.2vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: clamp(24px, 3vw, 32px);
  max-width: none;
}

.page-hero--contact .page-hero__desc {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.8;
  max-width: none;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0;
}

.page-hero--contact .page-hero__rule {
  margin-top: clamp(44px, 5.5vw, 60px);
  width: 72px;
  height: 1px;
  background: rgba(201, 169, 98, 0.5);
}

.contact-hero__reach-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 10px;
}

.contact-hero__reach-value {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.55vw, 1.4375rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  transition: color 0.3s ease;
}

a.contact-hero__reach-value:hover {
  color: var(--color-gold-light);
}

.contact-hero__reach-value--text {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.contact-hero__reach-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: clamp(8px, 1.5vw, 16px);
  padding-top: clamp(22px, 2.8vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-hero__reach-foot span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.45);
}

.contact-hero__kicker,
.contact-hero__reach {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hero--ready .contact-hero__kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.page-hero--ready .contact-hero__reach {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

@media (max-width: 1100px) {
  .contact-page__inset {
    grid-template-columns: 1fr;
  }

  .page-hero--contact .breadcrumb,
  .contact-hero__copy {
    grid-column: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero--contact .breadcrumb {
    grid-row: 1;
  }

  .contact-hero__copy {
    grid-row: 2;
  }

  .contact-hero__reach {
    grid-column: 1;
    grid-row: 3;
    padding-left: 0;
    padding-right: 0;
    border-left: none;
    padding-top: clamp(32px, 4vw, 40px);
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    max-width: 520px;
  }

  .page-hero--contact .page-hero__title {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .page-hero--contact {
    min-height: clamp(460px, 58vh, 560px);
    padding-bottom: clamp(64px, 10vw, 88px);
  }

  .page-hero--contact .page-hero__title {
    font-size: clamp(1.5rem, 6.2vw, 1.875rem);
  }

  .contact-hero__reach-value {
    font-size: 1.0625rem;
  }
}

/* Contact page ? force identical content frame */
.page-hero--contact > .container,
.page-hero--editorial > .container,
.contact-luxury > .container {
  width: var(--container-width) !important;
  max-width: var(--container-max) !important;
  margin-inline: auto !important;
  padding-inline: clamp(16px, 2vw, 40px) !important;
  box-sizing: border-box;
}

/* ============================================
   Editorial Hero ? Contact Page Standard
   ============================================ */
.page-hero--editorial {
  --contact-stage-pad-x: clamp(40px, 4.5vw, 64px);
  align-items: flex-end;
  padding: calc(var(--header-height) + clamp(56px, 8vw, 92px)) 0 clamp(72px, 9vw, 100px);
}

.page-hero--editorial .page-hero__editorial-fade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(2, 12, 20, 0.78) 0%, rgba(2, 12, 20, 0.48) 48%, rgba(1, 10, 18, 0.96) 100%),
    linear-gradient(90deg, rgba(2, 12, 20, 0.84) 0%, rgba(2, 12, 20, 0.42) 58%);
  pointer-events: none;
}

.page-hero--editorial .container {
  position: relative;
}

.page-hero--editorial .contact-page__inset {
  grid-template-rows: auto auto;
  align-items: end;
}

.page-hero--editorial .breadcrumb {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: clamp(36px, 5vw, 48px);
  padding-left: var(--contact-stage-pad-x);
}

.page-hero--editorial .page-hero__copy {
  grid-column: 1;
  grid-row: 2;
  padding-left: var(--contact-stage-pad-x);
  padding-right: clamp(24px, 3vw, 40px);
}

.page-hero--editorial .page-hero__kicker {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.62);
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

.page-hero--editorial .page-hero__title {
  font-size: clamp(2.45rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: clamp(20px, 3vw, 28px);
  max-width: 14ch;
}

.page-hero--editorial .page-hero__desc {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.8;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0;
}

.page-hero--editorial .page-hero__rule {
  margin-top: clamp(40px, 5vw, 56px);
  width: 72px;
  height: 1px;
  background: rgba(201, 169, 98, 0.5);
}

.page-hero--editorial .page-hero__meta {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.8vw, 30px);
  padding-left: var(--contact-stage-pad-x);
  padding-right: var(--contact-stage-pad-x);
  border-left: 1px solid rgba(201, 169, 98, 0.18);
  margin-bottom: clamp(4px, 0.5vw, 8px);
}

.page-hero__meta-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
  margin-bottom: 6px;
}

.page-hero__meta-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.45);
}

.page-hero--editorial .page-hero__kicker,
.page-hero--editorial .page-hero__meta {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hero--ready .page-hero__kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.page-hero--editorial.page-hero--ready .page-hero__kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.page-hero--ready .page-hero__meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

@media (max-width: 1100px) {
  .page-hero--editorial .contact-page__inset {
    grid-template-columns: 1fr;
  }

  .page-hero--editorial .breadcrumb,
  .page-hero--editorial .page-hero__copy {
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero--editorial .page-hero__meta {
    grid-column: 1;
    grid-row: 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 40px;
    padding-left: 0;
    padding-right: 0;
    border-left: none;
    padding-top: clamp(28px, 4vw, 36px);
    border-top: 1px solid rgba(201, 169, 98, 0.15);
  }

  .page-hero--editorial .page-hero__title {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .page-hero--editorial {
    padding-bottom: clamp(56px, 10vw, 72px);
  }

  .page-hero--editorial .page-hero__title {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }
}

/* ============================================
   Page Hero ? Top fill behind fixed header
   (mirrors homepage .hero__video-wrap bleed)
   ============================================ */
body:has(.page-hero) {
  background-color: #020C14;
}

/* Inner sections on subpages ? restore light surface (body is dark behind hero) */
body:has(.page-hero) .section:not(.page-hero):not(.section--dark):not(.section--showcase):not(.faq-section):not(.cta-section):not(.contact-luxury):not(.news-hub):not(.saas-hub):not(.section--spec-luxury):not(.product-detail-apps):not(.section--product-hero) {
  background: var(--color-white);
  color: var(--color-text);
}

body:has(.page-hero) .section:not(.page-hero):not(.section--dark):not(.section--showcase):not(.faq-section):not(.cta-section):not(.contact-luxury):not(.news-hub):not(.saas-hub):not(.section--spec-luxury):not(.product-detail-apps):not(.section--product-hero) .section-desc {
  color: var(--color-text-light);
}

body:has(.page-hero) .section.section--light {
  background: var(--color-off-white);
  color: var(--color-text);
}

body:has(.page-hero) .section.section--light .section-desc {
  color: var(--color-text);
}

body:has(.page-hero) .section:not(.page-hero):not(.section--dark):not(.section--showcase):not(.faq-section):not(.cta-section):not(.contact-luxury):not(.news-hub):not(.saas-hub):not(.section--spec-luxury):not(.product-detail-apps):not(.section--product-hero) .feature-list li {
  color: var(--color-text);
  border-bottom-color: var(--color-gray-100);
}

body:has(.page-hero) .section--dark .feature-list li {
  color: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header--transparent {
  background: transparent !important;
  box-shadow: none !important;
}

.header--transparent:not(.header--scrolled) {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.page-hero {
  position: relative;
  isolation: isolate;
  margin-top: calc(-1 * var(--header-height));
}

.page-hero::before {
  display: block !important;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * var(--header-height));
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  filter: none;
  animation: none;
  opacity: 1;
  background: linear-gradient(168deg, #020C14 0%, #031822 50%, #041E30 100%);
}

.page-hero--compact::before {
  background: linear-gradient(155deg, #020C14 0%, #031822 50%, #041E30 100%);
}

.page-hero--editorial,
.page-hero--contact {
  padding-top: calc(var(--header-height) * 2 + clamp(56px, 8vw, 92px));
}

.page-hero--compact {
  padding-top: calc(var(--header-height) * 2 + clamp(40px, 5vw, 56px));
}

.page-hero:not(.page-hero--editorial):not(.page-hero--contact):not(.page-hero--compact) {
  padding-top: calc(var(--header-height) * 2 + clamp(56px, 8vw, 96px));
}

.page-hero:not(.page-hero--editorial):not(.page-hero--contact) .container {
  position: relative;
  z-index: 2;
}

/* Editorial / contact hero ? enforce stacking (must stay above fade overlays) */
.page-hero--editorial .page-hero__editorial-fade,
.page-hero--contact .page-hero__contact-fade {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.page-hero--editorial .page-hero__grain,
.page-hero--contact .page-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.page-hero--editorial .container,
.page-hero--contact .container {
  position: relative;
  z-index: 5;
}

/* ============================================
   Product Trio ? 1 large + 2 small row layout
   ============================================ */
.product-trio {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
}

.product-trio__lead {
  grid-column: 1;
  grid-row: 1 / -1;
  height: 100%;
  align-self: stretch;
}

.product-trio__lead.product-showcase {
  min-height: 100%;
}

.product-trio__item {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(148px, 0.44fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
}

.product-card--trio {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(201, 169, 98, 0.1);
  border-radius: clamp(12px, 1.4vw, 18px);
  box-shadow: 0 14px 42px rgba(1, 10, 18, 0.06);
  overflow: hidden;
}

.product-card--trio:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.22);
  box-shadow: 0 20px 52px rgba(1, 10, 18, 0.1);
}

.product-card--trio .product-card__image {
  position: relative;
  height: 100%;
  min-height: 0;
  margin: clamp(14px, 1.8vw, 20px);
  margin-right: 0;
  padding: clamp(18px, 2.2vw, 28px);
  border-radius: clamp(10px, 1.2vw, 14px);
  background: linear-gradient(155deg, #f8f6f2 0%, #f0ede8 48%, #e6e2dc 100%);
  border: 1px solid rgba(1, 10, 18, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card--trio .product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 62%, rgba(201, 169, 98, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.product-card--trio .product-card__image img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 96%;
  max-height: clamp(200px, 22vw, 260px);
  min-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 14px 32px rgba(1, 10, 18, 0.14));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

.product-card--trio:hover .product-card__image img {
  transform: scale(1.04) translateY(-2px);
  filter: drop-shadow(0 18px 40px rgba(1, 10, 18, 0.18));
}

.product-card--trio .product-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 28px) clamp(8px, 1vw, 12px);
}

.product-card--trio .product-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.28;
}

.product-card--trio .product-card__model {
  margin-bottom: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-500);
}

.product-card--trio .product-card__desc {
  margin-bottom: 14px;
  font-size: 0.9375rem;
  line-height: 1.65;
  -webkit-line-clamp: 2;
}

.product-card--trio .product-card__features {
  margin-bottom: 16px;
}

.product-card--trio .product-card__features li {
  padding: 4px 0 4px 18px;
  font-size: 0.875rem;
}

.product-card--trio .btn--ghost {
  align-self: flex-start;
  padding: 10px 0;
  font-size: 0.875rem;
}

@media (max-width: 1100px) {
  .product-trio {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .product-trio__lead {
    grid-column: 1;
    grid-row: auto;
  }

  .product-trio__item {
    grid-column: 1;
    grid-template-columns: minmax(140px, 0.4fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .product-trio__item {
    grid-template-columns: 1fr;
  }

  .product-card--trio .product-card__image {
    margin: 16px 16px 0;
    min-height: 220px;
    padding: 24px;
  }

  .product-card--trio .product-card__image img {
    max-height: 240px;
    min-height: 180px;
  }

  .product-card--trio .product-card__body {
    padding: 20px 24px 24px;
  }

  body:has(.products-nav) #thermometer .product-card--trio::after {
    display: none;
  }
}

/* ============================================
   Home Hero v9 ? Maison Editorial
   ============================================ */
.hero--maison .hero__video-wrap::after {
  background:
    linear-gradient(90deg, rgba(2, 8, 14, 0.96) 0%, rgba(2, 8, 14, 0.88) 40%, rgba(2, 8, 14, 0.42) 68%, rgba(2, 8, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 8, 14, 0.5) 0%, transparent 42%, rgba(2, 8, 14, 0.72) 100%);
}

.hero--maison .hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100vh - var(--header-height));
  padding-bottom: clamp(40px, 5vw, 64px);
}

.hero__maison {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(200px, 0.92fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: end;
  width: 100%;
  padding-bottom: clamp(40px, 5vw, 56px);
}

.hero__credence {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
  padding-left: clamp(28px, 3.5vw, 44px);
  border-left: 1px solid rgba(201, 169, 98, 0.22);
  margin-bottom: clamp(8px, 1vw, 16px);
}

.hero__credence-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero__credence-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.hero__reel {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 44px);
  width: 100%;
  padding-top: clamp(22px, 2.8vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero__reel-label {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.58);
}

.hero--maison .hero__atelier-nav {
  flex: 1;
  width: auto;
  border-top: none;
  padding-top: 0;
  justify-content: flex-start;
  gap: clamp(18px, 2.8vw, 36px);
}

.hero--maison .hero__atelier-tab.active {
  color: rgba(255, 255, 255, 0.92);
}

.hero--maison .hero__atelier-tab.active span {
  color: rgba(201, 169, 98, 0.85);
}

.hero--maison .btn--primary {
  box-shadow: none;
}

@media (max-width: 1100px) {
  .hero__maison {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__credence {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px 48px;
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 768px) {
  .hero__reel {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero--maison .hero__atelier-nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

/* ============================================
   Manifesto v3 ? Dark Editorial
   ============================================ */
.manifesto--editorial {
  padding: clamp(100px, 12vw, 148px) 0;
  background: linear-gradient(180deg, #010A12 0%, #041828 55%, #051E32 100%);
  position: relative;
  overflow: hidden;
}

.manifesto--editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 40%, rgba(0, 212, 188, 0.06), transparent 55%),
    radial-gradient(ellipse 40% 35% at 88% 60%, rgba(201, 169, 98, 0.05), transparent 50%);
  pointer-events: none;
}

.manifesto--editorial .manifesto__stage {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.manifesto--editorial .manifesto__kicker {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.62);
  margin-bottom: clamp(32px, 4.5vw, 48px);
}

.manifesto--editorial .manifesto__text {
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
  max-width: 28ch;
}

.manifesto--editorial .manifesto__text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-champagne) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto--editorial .manifesto__rule {
  margin-top: clamp(48px, 6vw, 72px);
  width: 72px;
  height: 1px;
  background: rgba(201, 169, 98, 0.5);
}

.manifesto--editorial .manifesto__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(32px, 4vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.manifesto--editorial .manifesto__metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}

.manifesto--editorial .manifesto__metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
  line-height: 1;
}

.manifesto--editorial .manifesto__metric-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 768px) {
  .manifesto--editorial .manifesto__text {
    max-width: none;
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .manifesto--editorial .manifesto__metrics {
    gap: 28px 40px;
  }
}

/* ============================================
   Products Catalog v3 ? Atelier Editorial
   ============================================ */
body:has(.products-nav) .products-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  min-height: 48px;
  padding: 8px clamp(16px, 2vw, 24px);
  margin-bottom: 0;
  background: rgba(2, 10, 16, 0.94);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body:has(.products-nav) .products-nav a {
  padding: 7px 14px;
  line-height: 1.35;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

body:has(.products-nav) .products-nav a:hover,
body:has(.products-nav) .products-nav a.active {
  color: rgba(201, 169, 98, 0.92);
  background: rgba(201, 169, 98, 0.06);
  border-color: rgba(201, 169, 98, 0.22);
}

body:has(.products-nav) .section {
  scroll-margin-top: calc(var(--header-height) + 48px);
}

/* Section bands */
body:has(.products-nav) .section:not(.section--light) {
  background: linear-gradient(180deg, #010A12 0%, #041828 48%, #010A12 100%);
  position: relative;
}

body:has(.products-nav) .section--light {
  background: #f4f2ee;
}

/* Unified editorial panel (title + product in one frame) */
body:has(.products-nav) .section:not(:has(.product-trio)) {
  padding: clamp(48px, 6vw, 80px) 0;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .container {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(200px, 0.3fr) minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid rgba(201, 169, 98, 0.14);
  border-radius: clamp(14px, 1.6vw, 20px);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-sizing: border-box;
  min-height: auto;
  overflow: hidden;
}

/* Per-category product backdrop (right-aligned detail fill) */
body:has(.products-nav) #oxygen .container { --catalog-bg: url('../assets/images/products/ke-y205w-01.jpg'); }
body:has(.products-nav) #bp .container { --catalog-bg: url('../assets/images/products/ke-b106-01.jpg'); }
body:has(.products-nav) #oximeter .container { --catalog-bg: url('../assets/images/products/ybk303-01.jpg'); }
body:has(.products-nav) #nebulizer .container { --catalog-bg: url('../assets/images/products/ke-w01-01.jpg'); }
body:has(.products-nav) #wheelchair .container { --catalog-bg: url('../assets/images/products/y2410-01.jpg'); }
body:has(.products-nav) #monitor .container { --catalog-bg: url('../assets/images/products/ybk-pm-01.jpg'); }

body:has(.products-nav) .section:not(:has(.product-trio)) .container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  background-image: var(--catalog-bg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 18%, rgba(0, 0, 0, 0.55) 42%, black 68%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 18%, rgba(0, 0, 0, 0.55) 42%, black 68%);
}

body:has(.products-nav) .section--light:not(:has(.product-trio)) .container::after {
  opacity: 0.15;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .section-header,
body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase {
  position: relative;
  z-index: 1;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.34), transparent);
  pointer-events: none;
}

body:has(.products-nav) .section--light:not(:has(.product-trio)) .container {
  background: var(--color-white);
  border-color: rgba(201, 169, 98, 0.12);
  box-shadow: 0 18px 48px rgba(1, 10, 18, 0.045);
}

body:has(.products-nav) .section:not(:has(.product-trio)) .section-header {
  grid-column: 1;
  margin: 0;
  padding-right: clamp(18px, 2.2vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

body:has(.products-nav) .section--light:not(:has(.product-trio)) .section-header {
  border-right-color: rgba(1, 10, 18, 0.06);
}

body:has(.products-nav) .section:not(.section--light) h2,
body:has(.products-nav) .section:not(.section--light) .section-title {
  color: rgba(255, 255, 255, 0.94);
}

body:has(.products-nav) .section:not(.section--light) .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

body:has(.products-nav) .section:not(.section--light) .section-label {
  color: rgba(201, 169, 98, 0.72);
}

body:has(.products-nav) .section:not(.section--light) .section-label::before {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.72), transparent);
}

body:has(.products-nav) .section:not(:has(.product-trio)) .section-label {
  margin-bottom: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .section-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  max-width: none;
}

/* Product body ? no white card, inline editorial */
body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(200px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-height: none;
  overflow: visible;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase > * {
  min-width: 0;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__visual {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  height: auto;
  max-height: clamp(280px, 34vw, 440px);
  align-self: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(12px, 1.4vw, 18px);
}

body:has(.products-nav) .section--light:not(:has(.product-trio)) .product-showcase__visual {
  background: linear-gradient(145deg, #f8f6f2, #efede8);
  border-color: rgba(1, 10, 18, 0.05);
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__visual img {
  width: 94%;
  height: 94%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__category {
  display: none;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

body:has(.products-nav) .section:not(.section--light):not(:has(.product-trio)) .product-showcase__name {
  color: rgba(255, 255, 255, 0.92);
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__model {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.68);
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__desc {
  font-size: 1.0625rem;
  margin-bottom: 28px;
  line-height: 1.75;
}

body:has(.products-nav) .section:not(.section--light):not(:has(.product-trio)) .product-showcase__desc {
  color: rgba(255, 255, 255, 0.5);
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__features {
  margin-bottom: 32px;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__features li {
  padding: 8px 0 8px 24px;
  font-size: 0.9375rem;
  line-height: 1.55;
}

body:has(.products-nav) .section:not(.section--light):not(:has(.product-trio)) .product-showcase__features li {
  color: rgba(255, 255, 255, 0.46);
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__tag {
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  background: rgba(201, 169, 98, 0.14);
  color: rgba(201, 169, 98, 0.9);
  border: 1px solid rgba(201, 169, 98, 0.24);
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase .btn--primary {
  padding: 10px 22px;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.42);
  color: rgba(201, 169, 98, 0.9);
  box-shadow: none;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase .btn--primary::after {
  display: none;
}

body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase .btn--primary:hover {
  transform: none;
  background: rgba(201, 169, 98, 0.08);
  border-color: rgba(201, 169, 98, 0.55);
  box-shadow: none;
}

body:has(.products-nav) .section--light:not(:has(.product-trio)) .product-showcase .btn--primary {
  border-color: rgba(1, 10, 18, 0.14);
  color: var(--color-primary-dark);
}

body:has(.products-nav) .section--light:not(:has(.product-trio)) .product-showcase .btn--primary:hover {
  background: rgba(201, 169, 98, 0.06);
  border-color: rgba(201, 169, 98, 0.4);
}

/* Thermometer trio ? keep classic rhythm */
body:has(.products-nav) .section:has(.product-trio) {
  padding: clamp(64px, 8vw, 100px) 0;
}

body:has(.products-nav) .section:has(.product-trio) .container {
  display: block;
  padding: 0 clamp(16px, 2vw, 40px);
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body:has(.products-nav) .section:has(.product-trio) .container::before {
  display: none;
}

body:has(.products-nav) .section:has(.product-trio) .section-header {
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-right: 0;
  border-right: none;
}

/* Thermometer trio ? secondary cards editorial polish */
body:has(.products-nav) #thermometer .product-trio__item:nth-child(2) {
  --trio-card-bg: url('../assets/images/products/kv-12-01.jpg');
}

body:has(.products-nav) #thermometer .product-trio__item:nth-child(3) {
  --trio-card-bg: url('../assets/images/products/ke-v21-01.jpg');
}

body:has(.products-nav) #thermometer .product-card--trio::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background-image: var(--trio-card-bg);
  background-repeat: no-repeat;
  background-position: right 8% center;
  background-size: contain;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 28%, rgba(0, 0, 0, 0.65) 55%, black 78%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 28%, rgba(0, 0, 0, 0.65) 55%, black 78%);
}

body:has(.products-nav) #thermometer .product-card--trio .product-card__image {
  background: linear-gradient(160deg, #faf8f4 0%, #f2efe9 42%, #e8e4de 100%);
}

body:has(.products-nav) #thermometer .product-card--trio .product-card__image img {
  max-height: clamp(220px, 24vw, 280px);
  min-height: 180px;
}

@media (max-width: 1100px) {
  body:has(.products-nav) .section:not(:has(.product-trio)) .container::after {
    width: 52%;
    background-size: contain;
    opacity: 0.16;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__visual {
    max-height: clamp(240px, 30vw, 360px);
  }
}

@media (max-width: 960px) {
  body:has(.products-nav) .section:not(:has(.product-trio)) .container::after {
    display: none;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: clamp(24px, 4.5vw, 36px);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .section-header {
    padding-right: 0;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  body:has(.products-nav) .section--light:not(:has(.product-trio)) .section-header {
    border-bottom-color: rgba(1, 10, 18, 0.06);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__visual {
    max-height: 280px;
    margin: 0 auto;
    max-width: 280px;
  }
}

/* ============================================
   Home Hero Showcase v14 ? Text Focus Layout
   ============================================ */
.hero--showcase {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #0e1012;
}

.hero--showcase::after {
  display: none;
}

.hero--showcase .hero__video-wrap {
  background: #0e1012;
}

.hero--showcase .hero__slideshow {
  opacity: 1;
}

.hero--showcase .hero__slide {
  object-fit: cover;
  object-position: center center;
}

.hero--showcase .hero__grain {
  opacity: 0.04;
}

.hero--showcase .hero__video-wrap::after {
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.78) 0%, rgba(10, 12, 14, 0.52) 42%, rgba(12, 14, 16, 0.22) 68%, rgba(14, 16, 18, 0.1) 100%),
    linear-gradient(180deg, rgba(6, 8, 10, 0.32) 0%, transparent 50%, rgba(4, 6, 8, 0.48) 100%);
}

.hero--showcase .hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: clamp(120px, 14vh, 160px);
  min-height: calc(100svh - var(--header-height));
  max-width: none;
}

.hero--showcase .hero__grid {
  flex: 0 1 auto;
  width: 100%;
  max-width: 80vw;
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  justify-items: start;
  min-height: auto;
  padding-bottom: clamp(16px, 2.5vw, 28px);
}

.hero--showcase .hero__statement {
  width: 100%;
  max-width: min(60%, 1280px);
}

.hero--showcase .hero__kicker {
  text-transform: none;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(201, 169, 98, 0.9);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.hero--showcase .hero__title {
  max-width: 100%;
  font-size: clamp(2rem, 2.2vw + 1rem, 4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  background: linear-gradient(168deg, #ffffff 0%, #f6f8f8 38%, #d8f2ec 72%, #9fe8db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero--showcase .hero__title em {
  font-style: normal;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero--showcase .hero__lede {
  color: rgba(255, 255, 255, 0.62);
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  margin-bottom: clamp(32px, 3.8vw, 44px);
}

.hero--showcase .btn--ghost-gold {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.92);
}

.hero--showcase .btn--ghost-gold:hover {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero--showcase .hero__atelier-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(clamp(18px, 2.5vw, 28px) + 72px);
  z-index: 4;
  display: flex;
  width: 100%;
  max-width: 80vw;
  margin: 0;
  padding: 0;
  border-top: none;
  justify-content: center;
  gap: clamp(28px, 4vw, 48px);
}

.hero--showcase .hero__atelier-tab {
  position: relative;
  padding-bottom: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
}

.hero--showcase .hero__atelier-tab span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(201, 169, 98, 0.34);
}

.hero--showcase .hero__atelier-tab.active {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.hero--showcase .hero__atelier-tab.active span {
  color: rgba(201, 169, 98, 0.9);
}

.hero--showcase .hero__atelier-tab.active::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 2px;
  background: var(--color-gold);
}

.hero--showcase .btn--primary {
  box-shadow: 0 14px 40px rgba(0, 201, 177, 0.3);
}

.hero--showcase .hero__scroll {
  bottom: 0;
  z-index: 4;
  opacity: 0.4;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: none;
}

@media (max-width: 1100px) {
  .hero--showcase .hero__content {
    min-height: auto;
    padding-bottom: clamp(112px, 13vh, 148px);
  }

  .hero--showcase .hero__grid,
  .hero--showcase .hero__atelier-nav {
    max-width: 90vw;
  }

  .hero--showcase .hero__statement {
    max-width: min(75%, 1280px);
  }
}

@media (max-width: 768px) {
  .hero--showcase .hero__grid,
  .hero--showcase .hero__atelier-nav {
    max-width: 92vw;
  }

  .hero--showcase .hero__statement {
    max-width: 100%;
  }

  .hero--showcase .hero__lede {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .hero--showcase .hero__atelier-nav {
    bottom: calc(clamp(18px, 2.5vw, 28px) + 88px);
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}

/* ============================================
   Manifesto Atelier v6 ? Fullscreen Backdrop
   ============================================ */
.manifesto--atelier {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(96px, 12vh, 140px) 0;
  background: #0e1012;
  overflow: hidden;
}

.manifesto--atelier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(80px, 10vh, 120px);
  background: linear-gradient(180deg, rgba(14, 16, 18, 0.92) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.manifesto--atelier .manifesto__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.manifesto--atelier .manifesto__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  opacity: 0.42;
}

.manifesto--atelier .manifesto__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.9) 0%, rgba(10, 12, 14, 0.78) 38%, rgba(12, 14, 16, 0.52) 62%, rgba(14, 16, 18, 0.32) 100%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.55) 0%, transparent 42%, rgba(8, 10, 12, 0.62) 100%);
  pointer-events: none;
}

.manifesto--atelier .manifesto__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80vw;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 4.5vw, 56px);
}

.manifesto--atelier .manifesto__header {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
}

.manifesto--atelier .manifesto__kicker {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: none;
  color: rgba(201, 169, 98, 0.92);
  margin: 0;
  white-space: nowrap;
}

.manifesto--atelier .manifesto__kicker-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.48), rgba(255, 255, 255, 0.06));
}

.manifesto--atelier .manifesto__quote {
  margin: 0;
  padding: 0;
  border: none;
  max-width: min(68%, 920px);
  font-size: clamp(1.625rem, 2.4vw + 0.5rem, 2.5rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  font-weight: 600;
  background: linear-gradient(168deg, #ffffff 0%, #f4f7f7 42%, #d4f0eb 78%, #9fe8db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.35));
}

.manifesto--atelier .manifesto__quote em {
  font-style: normal;
  background: linear-gradient(135deg, #f5e6c8 0%, #6efff0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manifesto--atelier .manifesto__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 32px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
}

.manifesto--atelier .manifesto__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 100px;
}

.manifesto--atelier .manifesto__metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.manifesto--atelier .manifesto__metric-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.manifesto--atelier .manifesto__proof-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.manifesto--atelier .manifesto__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.manifesto--atelier .manifesto__cert {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(201, 169, 98, 0.36);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(245, 230, 200, 0.92);
  background: rgba(8, 10, 12, 0.45);
  backdrop-filter: blur(6px);
}

.manifesto--atelier .manifesto__caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.manifesto--atelier .manifesto__caption-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(0, 212, 188, 0.45);
}

@media (max-width: 1100px) {
  .manifesto--atelier .manifesto__inner {
    max-width: 90vw;
  }

  .manifesto--atelier .manifesto__quote {
    max-width: 100%;
  }

  .manifesto--atelier .manifesto__certs {
    margin-left: 0;
    width: 100%;
  }

  .manifesto--atelier .manifesto__bg img {
    opacity: 0.36;
  }

  .manifesto--atelier .manifesto__overlay {
    background:
      linear-gradient(90deg, rgba(8, 10, 12, 0.92) 0%, rgba(10, 12, 14, 0.82) 55%, rgba(12, 14, 16, 0.58) 100%),
      linear-gradient(180deg, rgba(8, 10, 12, 0.58) 0%, transparent 45%, rgba(8, 10, 12, 0.65) 100%);
  }
}

@media (max-width: 768px) {
  .manifesto--atelier {
    min-height: auto;
    padding: clamp(88px, 11vh, 112px) 0 clamp(72px, 9vh, 96px);
  }

  .manifesto--atelier .manifesto__inner {
    max-width: 92vw;
    gap: clamp(28px, 4vw, 40px);
  }

  .manifesto--atelier .manifesto__proof {
    gap: 20px 28px;
  }

  .manifesto--atelier .manifesto__proof-sep {
    display: none;
  }

  .manifesto--atelier .manifesto__metric {
    min-width: calc(50% - 14px);
  }

  .manifesto--atelier .manifesto__bg img {
    opacity: 0.3;
    object-position: center center;
  }
}

/* CSR / dark split sections ? feature list legibility */
.section--dark .feature-list li {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* ============================================
   Mobile Luxury System v1
   Compact rhythm ? Premium hierarchy ? More per viewport
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: clamp(44px, 9vw, 56px);
    --header-height: 60px;
  }

  body {
    line-height: 1.62;
  }

  .container {
    width: 100%;
    padding-inline: 16px;
  }

  .logo__img {
    height: 36px;
  }

  /* Typography rhythm */
  .section-label {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.6875rem;
  }

  .section-label::before {
    width: 28px;
  }

  .section-title {
    font-size: clamp(1.625rem, 5.2vw, 2rem);
    margin-bottom: 14px;
    line-height: 1.18;
  }

  .section-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .section-header {
    margin-bottom: clamp(24px, 5vw, 32px);
  }

  .section {
    padding: var(--section-padding) 0;
  }

  /* Page heroes ? compact editorial presence */
  .page-hero--editorial,
  .page-hero--contact {
    padding-top: calc(var(--header-height) + clamp(28px, 6vw, 40px));
    padding-bottom: clamp(36px, 7vw, 48px);
  }

  .page-hero--editorial .breadcrumb,
  .page-hero--contact .breadcrumb {
    margin-bottom: clamp(16px, 3vw, 20px);
  }

  .page-hero--editorial .page-hero__kicker {
    margin-bottom: clamp(12px, 2.5vw, 16px);
  }

  .page-hero--editorial .page-hero__title {
    font-size: clamp(1.875rem, 7.5vw, 2.375rem);
    margin-bottom: clamp(12px, 2.5vw, 16px);
  }

  .page-hero--editorial .page-hero__desc {
    font-size: 0.9375rem;
    line-height: 1.62;
  }

  .page-hero--editorial .page-hero__rule {
    margin-top: clamp(20px, 4vw, 28px);
    width: 48px;
  }

  .page-hero--editorial .page-hero__meta {
    padding-top: clamp(16px, 3vw, 20px);
    gap: 16px 28px;
  }

  .page-hero--compact {
    padding-top: calc(var(--header-height) + clamp(24px, 5vw, 32px));
    padding-bottom: clamp(32px, 6vw, 40px);
  }

  .page-hero:not(.page-hero--editorial):not(.page-hero--contact):not(.page-hero--compact) {
    padding-top: calc(var(--header-height) + clamp(32px, 6vw, 44px));
    padding-bottom: clamp(36px, 7vw, 48px);
  }

  .page-hero--contact {
    min-height: auto;
  }

  .page-hero--contact .page-hero__title {
    font-size: clamp(1.5rem, 6.2vw, 1.875rem);
  }

  /* News hub ? dense editorial cards */
  .news-hub__toolbar,
  .saas-detail__nav {
    position: sticky;
    top: var(--header-height);
    z-index: 40;
    padding: 10px 12px;
    gap: 6px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(14, 16, 18, 0.94);
    border-bottom: 1px solid rgba(201, 169, 98, 0.12);
  }

  .news-hub__pill,
  .saas-detail__nav a {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .news-hub__block {
    padding: clamp(36px, 7vw, 44px) 0;
  }

  .news-hub__block > .container {
    max-width: 100%;
    padding-inline: 16px;
  }

  .news-hub__block-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.14);
  }

  .news-hub__block--light .news-hub__block-head {
    border-bottom-color: rgba(1, 10, 18, 0.08);
  }

  .news-hub__block-head .section-desc {
    margin-top: 6px;
    font-size: 0.875rem;
  }

  .news-mosaic {
    gap: 12px;
  }

  .news-mosaic__card--wide {
    flex-direction: row;
    align-items: stretch;
  }

  .news-mosaic__card--wide .news-mosaic__media {
    width: 36%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .news-mosaic__card--wide .news-mosaic__body {
    width: 64%;
    padding: 14px 14px 14px 0;
  }

  .news-mosaic__card:not(.news-mosaic__card--wide) .news-mosaic__media {
    aspect-ratio: 16 / 9;
  }

  .news-mosaic__body {
    padding: 14px;
  }

  .news-mosaic__title {
    font-size: 0.9375rem;
    margin-bottom: 6px;
  }

  .news-mosaic__excerpt {
    font-size: 0.8125rem;
    line-height: 1.55;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-mosaic__tag {
    margin-bottom: 4px;
    font-size: 0.625rem;
  }

  .news-mosaic__date {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 0.625rem;
  }

  .news-exhibit-grid {
    gap: 12px;
  }

  .news-exhibit-card {
    display: grid;
    grid-template-columns: 38% 1fr;
    align-items: stretch;
  }

  .news-exhibit-card__visual {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .news-exhibit-card__body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .news-exhibit-card__title {
    font-size: 0.9375rem;
  }

  .news-exhibit-card__excerpt {
    font-size: 0.8125rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-insight-card {
    grid-template-columns: 32% 1fr;
    gap: 12px;
    padding: 12px;
    align-items: center;
  }

  .news-insight-card__visual {
    aspect-ratio: 1;
  }

  .news-insight-card__title {
    font-size: 0.9375rem;
    margin-bottom: 4px;
  }

  .news-insight-card__excerpt {
    font-size: 0.8125rem;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-insights-list {
    gap: 10px;
  }

  .news-hub__metrics {
    gap: 12px;
  }

  .news-hub__block--metrics {
    padding-top: clamp(24px, 5vw, 32px);
    padding-bottom: clamp(32px, 6vw, 40px);
  }

  /* SaaS hub */
  .saas-hub {
    padding: clamp(36px, 7vw, 44px) 0 clamp(32px, 6vw, 40px);
  }

  .saas-detail__nav {
    margin-bottom: clamp(24px, 4vw, 32px);
  }

  /* Home hero showcase */
  .hero--showcase {
    min-height: auto;
  }

  .hero--showcase .hero__content {
    padding-bottom: clamp(72px, 10vh, 96px);
    min-height: auto;
  }

  .hero--showcase .hero__title {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
    margin-bottom: 14px;
  }

  .hero--showcase .hero__kicker {
    margin-bottom: 14px;
    font-size: 0.75rem;
  }

  .hero--showcase .hero__lede {
    font-size: 0.9375rem;
    margin-bottom: 22px;
    line-height: 1.58;
  }

  .hero--showcase .hero__grid,
  .hero--showcase .hero__atelier-nav {
    max-width: 100%;
    padding-inline: 16px;
  }

  .hero--showcase .hero__atelier-nav {
    bottom: calc(clamp(12px, 2vw, 18px) + 64px);
    gap: 12px 20px;
  }

  .hero--showcase .hero__atelier-tab {
    font-size: 0.8125rem;
    padding-bottom: 6px;
  }

  /* Manifesto */
  .manifesto--atelier {
    min-height: auto;
    padding: clamp(56px, 10vh, 72px) 0 clamp(48px, 8vh, 64px);
  }

  .manifesto--atelier .manifesto__inner {
    max-width: 100%;
    gap: 24px;
    padding-inline: 16px;
  }

  .manifesto--atelier .manifesto__quote {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    line-height: 1.42;
  }

  /* Product showcase ? side-by-side compact */
  .product-showcase {
    grid-template-columns: 38% 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
  }

  .product-showcase__visual {
    aspect-ratio: 1;
  }

  .product-showcase__name {
    font-size: clamp(1.125rem, 4vw, 1.375rem);
    margin-bottom: 4px;
  }

  .product-showcase__desc {
    font-size: 0.8125rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-showcase__features li {
    font-size: 0.8125rem;
    padding: 6px 0;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase {
    grid-template-columns: 38% 1fr;
    gap: 16px;
    padding: 16px;
  }

  /* Product trio ? horizontal compact rows */
  .product-trio {
    gap: 12px;
  }

  .product-trio__item {
    grid-template-columns: minmax(108px, 0.36fr) minmax(0, 1fr);
    gap: 12px;
  }

  .product-card--trio .product-card__image {
    margin: 10px 10px 0;
    min-height: 0;
    padding: 12px;
  }

  .product-card--trio .product-card__image img {
    max-height: 120px;
    min-height: 80px;
  }

  .product-card--trio .product-card__body {
    padding: 12px 14px 14px;
  }

  .product-card--trio .product-card__name {
    font-size: 0.9375rem;
  }

  .product-card--trio .product-card__desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Split sections */
  .split-section {
    gap: 24px;
  }

  .split-section__visual {
    max-height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  /* Quality steps */
  .quality-flow {
    gap: 12px;
    margin-bottom: 32px;
  }

  .quality-step {
    padding: 16px 14px;
    column-gap: 14px;
  }

  .quality-step__icon {
    width: 48px;
    min-height: 48px;
  }

  .quality-step__icon svg {
    width: 22px;
    height: 22px;
  }

  .quality-step__num {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }

  .quality-step__title {
    font-size: 1rem;
  }

  .quality-step__desc {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  /* Feature / bento grids */
  .feature-grid,
  .bento-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 20px 18px;
  }

  /* CTA */
  .cta-section {
    padding: clamp(48px, 10vw, 64px) 0;
  }

  .cta-section__title {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
    margin-bottom: 12px;
  }

  .cta-section__desc {
    font-size: 0.9375rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  /* Footer ? 2-col compact */
  .footer {
    padding-top: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 36px;
  }

  .footer__grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer__heading {
    margin-bottom: 14px;
    font-size: 0.8125rem;
  }

  .footer__brand-desc {
    margin: 12px 0 18px;
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .footer__links a {
    padding: 4px 0;
    font-size: 0.8125rem;
  }

  .footer__bottom {
    padding: 20px 0;
    gap: 12px;
  }

  /* FAQ */
  .faq-luxury {
    gap: 20px;
  }

  .faq-luxury__trigger {
    padding: 16px;
  }

  /* Contact luxury */
  .contact-luxury {
    padding: clamp(40px, 8vw, 52px) 0;
  }

  .contact-luxury__main {
    gap: clamp(24px, 5vw, 32px);
  }

  /* Partners */
  .partners-luxury__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
  }

  .partners-luxury__stat {
    padding: 18px 14px;
  }

  .partners-luxury__stat strong {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
  }

  /* Stats bar */
  .stats-bar {
    margin-top: -24px;
    gap: 12px;
  }

  .stats-bar__item {
    padding: 20px 16px;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.875rem;
  }

  /* Global map */
  .global-map {
    margin-top: 32px;
    border-radius: var(--radius-md);
  }

  /* Product detail */
  .product-detail-content__blocks {
    gap: 32px;
  }

  .product-detail-content__block {
    gap: 24px;
  }

  /* Touch ? calmer hover */
  @media (hover: none) {
    .news-mosaic__card:hover,
    .news-exhibit-card:hover,
    .news-insight-card:hover,
    .product-showcase:hover,
    .quality-step:hover,
    .product-card--trio:hover {
      transform: none;
    }
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: clamp(36px, 8vw, 44px);
  }

  .container {
    padding-inline: 14px;
  }

  .news-hub__block > .container {
    padding-inline: 14px;
  }

  .news-mosaic__card--wide {
    flex-direction: row;
  }

  .news-mosaic__card--wide .news-mosaic__media {
    width: 34%;
  }

  .news-mosaic__card--wide .news-mosaic__body {
    width: 66%;
    padding: 12px 10px 12px 0;
  }

  .news-insight-card {
    grid-template-columns: 30% 1fr;
    gap: 10px;
    padding: 10px;
  }

  .news-exhibit-card {
    grid-template-columns: 34% 1fr;
  }

  .product-showcase,
  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase {
    grid-template-columns: 34% 1fr;
    gap: 12px;
    padding: 12px;
  }

  .product-showcase__tag {
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    font-size: 0.6875rem;
  }

  .product-trio__item {
    grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
  }

  .partners-luxury__stats {
    gap: 10px;
  }

  .partners-luxury__stat {
    padding: 14px 12px;
  }
}

/* ============================================
   Mobile Readability System v2
   Vertical stacks ? Image-first ? Full readability
   ============================================ */
@media (max-width: 768px) {
  /* ?? Products catalog: image ? title ? specs ?? */
  body:has(.products-nav) .products-nav {
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 16px;
    gap: 8px;
  }

  body:has(.products-nav) .products-nav::-webkit-scrollbar {
    display: none;
  }

  body:has(.products-nav) .products-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) {
    padding: clamp(28px, 6vw, 36px) 0;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .container {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    min-height: 0;
    overflow: visible;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .container::before,
  body:has(.products-nav) .section:not(:has(.product-trio)) .container::after {
    display: none;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .section-header {
    padding: 0 16px 14px;
    margin: 0;
    border: none;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .section-label {
    margin-bottom: 10px;
    font-size: 0.6875rem;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .section-title {
    font-size: clamp(1.375rem, 5vw, 1.625rem);
    margin-bottom: 6px;
    line-height: 1.2;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .section-desc {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 16px;
    padding: 0;
    background: var(--color-white);
    border: 1px solid rgba(201, 169, 98, 0.14);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(1, 10, 18, 0.07);
  }

  body:has(.products-nav) .section:not(.section--light):not(:has(.product-trio)) .product-showcase {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__visual {
    order: 1;
    width: 100%;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    align-self: stretch;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(1, 10, 18, 0.06);
  }

  body:has(.products-nav) .section--light:not(:has(.product-trio)) .product-showcase__visual {
    background: linear-gradient(160deg, #f8f6f2 0%, #efede8 100%);
  }

  body:has(.products-nav) .section:not(.section--light):not(:has(.product-trio)) .product-showcase__visual {
    background: rgba(255, 255, 255, 0.04);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__visual img {
    width: 88%;
    height: 88%;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__content {
    order: 2;
    padding: 18px 16px 20px;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__category {
    display: block;
    margin-bottom: 6px;
    font-size: 0.6875rem;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__name {
    font-size: clamp(1.125rem, 4.5vw, 1.3125rem);
    margin-bottom: 4px;
    line-height: 1.25;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__model {
    margin-bottom: 12px;
    font-size: 0.8125rem;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__desc {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(201, 169, 98, 0.07);
  }

  body:has(.products-nav) .section:not(.section--light):not(:has(.product-trio)) .product-showcase__features {
    background: rgba(255, 255, 255, 0.04);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__features li {
    padding: 7px 0 7px 18px;
    font-size: 0.8125rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(1, 10, 18, 0.05);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__features li:last-child {
    border-bottom: none;
  }

  body:has(.products-nav) .section:not(.section--light):not(:has(.product-trio)) .product-showcase__features li {
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase .btn--primary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.875rem;
    border-radius: 10px;
  }

  /* Thermometer trio ? same vertical card pattern */
  body:has(.products-nav) .section:has(.product-trio) {
    padding: clamp(28px, 6vw, 36px) 0;
  }

  body:has(.products-nav) .section:has(.product-trio) .section-header {
    padding: 0 16px;
    margin-bottom: 14px;
  }

  body:has(.products-nav) .product-trio {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 16px;
  }

  body:has(.products-nav) .product-trio__lead.product-showcase,
  body:has(.products-nav) .product-trio__item.product-card--trio {
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid rgba(201, 169, 98, 0.14);
    border-radius: 14px;
    box-shadow: 0 10px 36px rgba(1, 10, 18, 0.07);
  }

  body:has(.products-nav) .product-trio__lead.product-showcase {
    padding: 0;
    gap: 0;
  }

  body:has(.products-nav) .product-trio__lead .product-showcase__visual {
    order: 1;
    width: 100%;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(1, 10, 18, 0.06);
    background: linear-gradient(160deg, #f8f6f2 0%, #efede8 100%);
  }

  body:has(.products-nav) .product-trio__lead .product-showcase__content {
    order: 2;
    padding: 18px 16px 20px;
  }

  body:has(.products-nav) .product-trio__lead .product-showcase__category {
    display: block;
  }

  body:has(.products-nav) .product-trio__lead .product-showcase__desc {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
  }

  body:has(.products-nav) .product-trio__lead .product-showcase .btn--primary {
    width: 100%;
    justify-content: center;
  }

  body:has(.products-nav) .product-trio__item {
    grid-template-columns: 1fr;
  }

  body:has(.products-nav) .product-card--trio .product-card__image {
    order: 1;
    margin: 0;
    padding: 16px;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(1, 10, 18, 0.06);
  }

  body:has(.products-nav) .product-card--trio .product-card__image img {
    max-height: none;
    min-height: 0;
    width: 82%;
    height: auto;
    object-fit: contain;
  }

  body:has(.products-nav) .product-card--trio .product-card__body {
    order: 2;
    padding: 16px;
  }

  body:has(.products-nav) .product-card--trio .product-card__desc {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  body:has(.products-nav) .product-card--trio .product-card__features {
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(201, 169, 98, 0.06);
  }

  body:has(.products-nav) .product-card--trio .btn {
    width: 100%;
    justify-content: center;
  }

  body:has(.products-nav) #thermometer .product-card--trio::after {
    display: none;
  }

  /* Generic product-showcase (index etc.) */
  .product-showcase {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .product-showcase__visual {
    order: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .product-showcase__content {
    order: 2;
    padding: 18px 16px 20px;
  }

  .product-showcase__desc {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .product-showcase .btn {
    width: 100%;
    justify-content: center;
  }

  /* ?? News: vertical cards, full-width image on top ?? */
  .news-mosaic__card,
  .news-mosaic__card--wide {
    flex-direction: column;
  }

  .news-mosaic__card--wide .news-mosaic__media,
  .news-mosaic__card:not(.news-mosaic__card--wide) .news-mosaic__media {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .news-mosaic__card--wide .news-mosaic__body,
  .news-mosaic__body {
    width: 100%;
    padding: 16px;
  }

  .news-mosaic__title {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .news-mosaic__excerpt {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    font-size: 0.875rem;
    line-height: 1.62;
    margin-bottom: 12px;
  }

  .news-exhibit-card {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .news-exhibit-card__visual {
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .news-exhibit-card__body {
    padding: 16px;
  }

  .news-exhibit-card__title {
    font-size: 1rem;
  }

  .news-exhibit-card__excerpt {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    font-size: 0.875rem;
    line-height: 1.62;
  }

  .news-insight-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .news-insight-card__visual {
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

  .news-insight-card__body,
  .news-insight-card > div:not(.news-insight-card__visual) {
    padding: 16px;
  }

  .news-insight-card__title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .news-insight-card__excerpt {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    font-size: 0.875rem;
    line-height: 1.62;
    margin-bottom: 10px;
  }

  /* ?? Split sections: image top, copy below ?? */
  .split-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .split-section__visual {
    order: -1;
    max-height: none;
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .split-section__content,
  .split-section > div:not(.split-section__visual) {
    order: 1;
  }

  /* ?? Index showcase carousel ?? */
  .showcase__slide {
    gap: 20px;
  }

  .showcase__visual {
    order: -1;
    max-height: 280px;
  }

  .showcase__content {
    padding: 0 4px;
  }

  .showcase__name {
    font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  }

  .showcase__desc {
    font-size: 0.9375rem;
    line-height: 1.62;
  }

  /* Feature / bento: two columns on mobile */
  .feature-grid,
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .bento-card--large {
    grid-column: span 1;
  }

  .feature-card {
    padding: 18px 16px;
  }

  .feature-card__title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .feature-card__desc {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .bento-card {
    padding: 18px 16px;
  }

  /* ?? Quality steps: vertical readable cards ?? */
  .quality-step {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
    padding: 16px;
  }

  .quality-step__icon {
    grid-column: 1;
    grid-row: 1 / -1;
    width: 48px;
    min-height: 48px;
  }

  .quality-step__num {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.25rem;
  }

  .quality-step__title {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.9375rem;
  }

  .quality-step__desc {
    grid-column: 2;
    grid-row: 3;
    font-size: 0.8125rem;
    line-height: 1.58;
  }

  /* ?? Contact luxury ?? */
  .contact-luxury__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-luxury__aside {
    padding-bottom: 24px;
  }

  .contact-locations__grid {
    gap: 16px;
  }

  .contact-location-card {
    border-radius: 12px;
  }

  /* ?? FAQ luxury ?? */
  .faq-luxury {
    gap: 16px;
  }

  .faq-luxury__sidebar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-luxury__categories {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .faq-luxury__cat {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .faq-luxury__q {
    font-size: 0.9375rem;
    line-height: 1.45;
  }

  .faq-luxury__body p {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  /* ?? SaaS architecture ?? */
  .saas-architecture__flow,
  .saas-benefits__grid,
  .saas-metrics__grid {
    gap: 14px;
  }

  .saas-benefit-card {
    padding: 18px 16px;
  }

  /* ?? Product detail pages ?? */
  .product-detail,
  .product-detail-content__block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-detail__gallery-main {
    min-height: 260px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .product-detail__info {
    position: static;
  }

  .product-detail__highlights {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-detail-content__block--reverse .product-detail-content__media,
  .product-detail-content__block--reverse .product-detail-content__text {
    order: unset;
  }

  .product-detail-content__media {
    order: -1;
    border-radius: 12px;
  }

  .spec-luxury__grid {
    gap: 20px;
  }

  /* ?? Stats / partners ?? */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    gap: 10px;
  }

  .stats-bar__item {
    padding: 16px 12px;
  }

  .partners-luxury__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-gallery,
  .cert-showcase {
    gap: 12px;
  }

  /* ?? Global map ?? */
  .global-map {
    margin-top: 24px;
    aspect-ratio: 3 / 2;
  }

  .global-layout {
    gap: 20px;
  }

  /* ?? Timeline ?? */
  .timeline {
    padding-left: 28px;
  }

  .timeline__item {
    padding-bottom: 28px;
  }

  /* ?? Section headers: left-align readable ?? */
  .section-header {
    text-align: left;
    margin-bottom: 20px;
  }

  .section-header .section-desc {
    margin: 0;
    max-width: none;
  }

  /* ?? CTA full-width button ?? */
  .cta-section .btn {
    width: 100%;
    max-width: 320px;
  }

  /* ?? Page hero meta: horizontal chips ?? */
  .page-hero--editorial .page-hero__meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-top: 14px;
    margin-top: 4px;
  }

  .page-hero__meta-item {
    flex: 0 0 auto;
  }

  /* ?? Home hero ?? */
  .hero--showcase .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero--showcase .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero--showcase .hero__atelier-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .hero--showcase .hero__atelier-nav::-webkit-scrollbar {
    display: none;
  }

  .hero--showcase .hero__atelier-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .manifesto--atelier .manifesto__proof {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .manifesto--atelier .manifesto__metric {
    min-width: calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase,
  body:has(.products-nav) .product-trio__lead.product-showcase,
  body:has(.products-nav) .product-trio__item.product-card--trio {
    margin: 0 14px;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .section-header,
  body:has(.products-nav) .section:has(.product-trio) .section-header,
  body:has(.products-nav) .product-trio {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   Mobile Experience v4 — Compact · Readable · Touch-native
   ============================================ */
@media (max-width: 768px) {
  :root {
    --container-width: 100%;
    --mobile-gutter: 16px;
    --header-height: 56px;
    --section-padding: 40px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 12px;
    --mobile-gap-xs: 8px;
    --mobile-gap-sm: 10px;
    --mobile-gap-md: 14px;
    --mobile-gap-lg: 18px;
  }

  html {
    font-size: 15px;
  }

  body {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .container,
  .page-hero--contact > .container,
  .page-hero--editorial > .container,
  .contact-luxury > .container,
  .news-hub__block > .container,
  .news-article__reading-inner,
  .manifesto--atelier .manifesto__inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: var(--mobile-gutter) !important;
    box-sizing: border-box;
  }

  .header__inner.container {
    padding-inline: var(--mobile-gutter) !important;
  }

  .logo__img {
    height: 32px;
  }

  /* Typography — readable, not oversized */
  .section-label {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
  }

  .section-label::before {
    width: 22px;
  }

  .section-title {
    font-size: clamp(1.375rem, 5.2vw, 1.625rem);
    margin-bottom: 10px;
    line-height: 1.22;
  }

  .section-desc {
    font-size: 0.875rem;
    line-height: 1.58;
  }

  .section-header {
    margin-bottom: var(--mobile-gap-md);
    text-align: left;
  }

  .section-header .section-desc {
    margin: 0;
    max-width: none;
  }

  .section {
    padding: var(--section-padding) 0;
  }

  .breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  /* Compact radius on cards & panels */
  .product-card,
  .feature-card,
  .bento-card,
  .quality-step,
  .news-mosaic__card,
  .news-exhibit-card,
  .news-insight-card,
  .partners-luxury__stat,
  .stats-bar,
  .stats-bar__item,
  .global-map,
  .contact-location-card,
  .faq-luxury__item,
  .saas-benefit-card,
  .product-detail__gallery-main,
  .product-detail-content__media,
  .split-section__visual,
  .hero__stats {
    border-radius: var(--radius-md) !important;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase,
  body:has(.products-nav) .product-trio__lead.product-showcase,
  body:has(.products-nav) .product-trio__item.product-card--trio,
  .product-showcase {
    border-radius: var(--radius-md) !important;
  }

  .showcase__visual {
    border-radius: var(--radius-md) !important;
    max-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .product-showcase__visual {
    border-radius: 0 !important;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__features,
  body:has(.products-nav) .product-card--trio .product-card__features {
    border-radius: var(--radius-sm) !important;
    padding: 10px 12px;
  }

  .split-section__visual-badge {
    border-radius: var(--radius-sm);
    padding: 10px 14px;
  }

  .btn {
    font-size: 0.875rem;
    padding: 12px 20px;
    min-height: 44px;
    border-radius: var(--radius-sm);
  }

  /* Mobile menu — left-aligned list, thumb-friendly */
  .mobile-menu {
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 20px) var(--mobile-gutter) max(20px, env(safe-area-inset-bottom));
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    padding: 14px 4px;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 8px;
    color: var(--color-accent-light);
    font-weight: 600;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle span {
    width: 60%;
  }

  /* Home — Quality Assurance cert gallery: 2 columns on mobile */
  .cert-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cert-gallery__frame {
    min-height: 0;
    padding: 12px 10px 8px;
  }

  .cert-gallery__frame img {
    max-width: 100%;
    max-height: 120px;
  }

  .cert-gallery__frame--icon .icon-badge {
    width: 64px;
    height: 64px;
  }

  .cert-gallery__info {
    padding: 10px 10px 12px;
  }

  .cert-gallery__info h4 {
    font-size: 0.8125rem;
    margin-bottom: 4px;
  }

  .cert-gallery__info p {
    font-size: 0.6875rem;
    line-height: 1.45;
  }

  .cert-gallery__item {
    border-radius: var(--radius-md);
  }

  /* Home hero — content vertically centered in hero */
  .hero--showcase {
    min-height: min(72svh, 560px);
    display: flex;
    flex-direction: column;
  }

  .hero--showcase .hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: 0;
    width: 100%;
    padding-top: var(--header-height);
    padding-bottom: 72px;
    box-sizing: border-box;
  }

  .hero--showcase .hero__grid,
  .hero--showcase .hero__atelier-nav,
  .hero--showcase .hero__content {
    max-width: 100%;
    padding-inline: var(--mobile-gutter);
  }

  .hero--showcase .hero__statement {
    max-width: 100%;
  }

  .hero--showcase .hero__kicker {
    margin-bottom: 10px;
    font-size: 0.75rem;
  }

  .hero--showcase .hero__title {
    font-size: clamp(1.5rem, 6.2vw, 1.875rem);
    margin-bottom: 12px;
    line-height: 1.16;
  }

  .hero--showcase .hero__lede {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 18px;
    white-space: normal;
  }

  .hero--showcase .hero__actions {
    gap: 8px;
    margin-bottom: 0;
  }

  .hero--showcase .hero__atelier-nav {
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    transform: none;
    bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    padding: 10px var(--mobile-gutter) 0;
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
  }

  .hero--showcase .hero__atelier-nav::-webkit-scrollbar {
    display: none;
  }

  .hero--showcase .hero__atelier-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.8125rem;
    padding: 6px 12px 8px;
    margin-right: 4px;
  }

  .hero--showcase .hero__scroll {
    display: none;
  }

  /* Manifesto — tighter vertical rhythm */
  .manifesto--atelier {
    padding: 48px 0 40px;
  }

  .manifesto--atelier .manifesto__inner {
    gap: 18px;
    padding-inline: var(--mobile-gutter) !important;
  }

  .manifesto--atelier .manifesto__quote {
    font-size: clamp(1.25rem, 4.8vw, 1.5rem);
    line-height: 1.4;
  }

  .manifesto--atelier .manifesto__proof {
    gap: 12px 16px;
  }

  .manifesto--atelier .manifesto__metric-value {
    font-size: clamp(1.375rem, 5vw, 1.625rem);
  }

  .manifesto--atelier .manifesto__metric-label {
    font-size: 0.6875rem;
  }

  /* Showcase carousel — image top, compact copy */
  .showcase__slide {
    display: flex;
    flex-direction: column;
    gap: var(--mobile-gap-md);
    padding: 0;
  }

  .showcase__visual {
    order: -1;
    width: 100%;
  }

  .showcase__content {
    padding: 0 2px;
  }

  .showcase__content h3 {
    font-size: clamp(1.125rem, 4.5vw, 1.3125rem);
    margin-bottom: 4px;
  }

  .showcase__content .model {
    font-size: 0.8125rem;
    margin-bottom: 10px;
  }

  .showcase__content .section-desc {
    font-size: 0.875rem !important;
    margin-bottom: 12px !important;
    line-height: 1.55;
  }

  .showcase__features li {
    font-size: 0.8125rem;
    padding: 5px 0 5px 18px;
  }

  .showcase__nav {
    margin-top: 16px;
    gap: 10px;
  }

  .showcase__model-tag {
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 0.6875rem;
    border-radius: var(--radius-sm);
  }

  /* Split sections — image then text, minimal gap */
  .split-section {
    gap: var(--mobile-gap-md);
  }

  .split-section__visual {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .split-section__content .section-desc {
    margin-bottom: 16px !important;
  }

  /* Stats bar — 2×2 grid, compact cells */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    gap: var(--mobile-gap-xs);
  }

  .stats-bar__item {
    padding: 14px 10px;
  }

  .stats-bar__number {
    font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  }

  .stats-bar__label {
    font-size: 0.6875rem;
  }

  /* Feature / bento — single column, tight padding */
  .feature-grid,
  .bento-grid {
    gap: var(--mobile-gap-sm);
  }

  .feature-card,
  .bento-card {
    padding: 14px 12px;
  }

  .feature-card__title,
  .bento-card__title {
    font-size: 0.9375rem;
    margin-bottom: 4px;
  }

  .feature-card__desc,
  .bento-card__desc {
    font-size: 0.8125rem;
    line-height: 1.52;
  }

  /* Page heroes */
  .page-hero--editorial {
    --contact-stage-pad-x: 0;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 32px;
  }

  .page-hero--editorial .breadcrumb,
  .page-hero--editorial .page-hero__copy,
  .page-hero--editorial .page-hero__meta {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-hero--editorial .page-hero__title {
    font-size: clamp(1.5rem, 6.2vw, 1.875rem);
    margin-bottom: 10px;
  }

  .page-hero--editorial .page-hero__desc {
    font-size: 0.875rem;
  }

  .page-hero--editorial .page-hero__kicker {
    font-size: 0.6875rem;
    margin-bottom: 10px;
  }

  .page-hero--editorial .page-hero__rule {
    margin-top: 14px;
    width: 36px;
  }

  .page-hero--editorial .page-hero__meta {
    padding-top: 12px;
    gap: 10px 20px;
  }

  .page-hero--compact {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 28px;
  }

  /* Products catalog */
  .news-hub__toolbar,
  .saas-detail__nav,
  body:has(.products-nav) .products-nav {
    padding-inline: var(--mobile-gutter);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) {
    padding: 32px 0;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .section-header {
    padding: 0 var(--mobile-gutter) 10px;
    margin-bottom: 0;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase,
  body:has(.products-nav) .product-trio {
    margin-left: var(--mobile-gutter);
    margin-right: var(--mobile-gutter);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__content,
  body:has(.products-nav) .product-trio__lead .product-showcase__content,
  body:has(.products-nav) .product-card--trio .product-card__body,
  .product-showcase__content {
    padding: 12px 12px 14px;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__name,
  .product-showcase__name {
    font-size: 1.0625rem;
    line-height: 1.28;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__desc,
  .product-showcase__desc {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase__features li {
    font-size: 0.8125rem;
    padding: 6px 0 6px 16px;
  }

  body:has(.products-nav) .product-trio {
    gap: 10px;
  }

  /* News cards — vertical, compact body */
  .news-hub__block {
    padding: 32px 0;
  }

  .news-hub__block-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .news-mosaic {
    gap: 10px;
  }

  .news-mosaic__body,
  .news-exhibit-card__body,
  .news-insight-card__body {
    padding: 12px;
  }

  .news-mosaic__title,
  .news-exhibit-card__title,
  .news-insight-card__title {
    font-size: 0.9375rem;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  .news-mosaic__excerpt,
  .news-exhibit-card__excerpt,
  .news-insight-card__excerpt {
    font-size: 0.8125rem;
    line-height: 1.55;
    margin-bottom: 8px;
  }

  .news-exhibit-grid,
  .news-insights-list {
    gap: 10px;
  }

  /* CTA & footer */
  .cta-section {
    padding: 40px 0;
  }

  .cta-section__title {
    font-size: clamp(1.3125rem, 4.8vw, 1.5rem);
    margin-bottom: 8px;
  }

  .cta-section__desc {
    font-size: 0.875rem;
    margin-bottom: 18px;
  }

  .cta-section .btn {
    width: 100%;
    max-width: none;
  }

  .footer {
    padding-top: 36px;
  }

  .footer__grid {
    gap: 20px 16px;
    padding-bottom: 28px;
  }

  .footer__brand-desc,
  .footer__links a {
    font-size: 0.8125rem;
  }

  .footer__heading {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .footer__bottom {
    padding: 16px 0;
  }

  /* FAQ & contact */
  .faq-luxury {
    gap: 10px;
  }

  .faq-luxury__trigger {
    padding: 14px 12px;
    border-radius: var(--radius-md);
  }

  .faq-luxury__q {
    font-size: 0.9375rem;
  }

  .faq-luxury__body p {
    font-size: 0.875rem;
  }

  .contact-luxury {
    padding: 36px 0;
  }

  .contact-luxury__main {
    gap: 20px;
  }

  .quality-flow {
    gap: 10px;
    margin-bottom: 24px;
  }

  .quality-step {
    padding: 12px;
    column-gap: 12px;
  }

  .quality-step__title {
    font-size: 0.9375rem;
  }

  .quality-step__desc {
    font-size: 0.8125rem;
  }

  .partners-luxury__stats {
    gap: var(--mobile-gap-xs);
    margin-bottom: 20px;
  }

  .partners-luxury__stat {
    padding: 14px 10px;
  }

  /* Product detail */
  .product-detail__highlights {
    gap: 8px;
  }

  .product-detail-content__blocks {
    gap: 24px;
  }

  .product-detail-content__block {
    gap: 16px;
  }

  body:has(.products-nav) .products-nav a {
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .news-hub__pill,
  .saas-detail__nav a {
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 0.8125rem;
  }

  /* Disable hover lift on touch */
  @media (hover: none) {
    .product-card:hover,
    .feature-card:hover,
    .bento-card:hover,
    .news-mosaic__card:hover {
      transform: none;
    }
  }
}

@media (max-width: 480px) {
  :root {
    --mobile-gutter: 14px;
    --section-padding: 36px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  body:has(.products-nav) .section:not(:has(.product-trio)) .product-showcase,
  body:has(.products-nav) .product-trio__lead.product-showcase,
  body:has(.products-nav) .product-trio__item.product-card--trio {
    margin-left: var(--mobile-gutter);
    margin-right: var(--mobile-gutter);
  }

  .showcase__visual {
    max-height: 200px;
  }

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

/* ============================================
   Layout Overflow Guard + Solutions Page Fix
   ============================================ */
.showcase,
.partners-luxury__row,
.solution-tabs {
  max-width: 100%;
  min-width: 0;
}

.container,
.section,
.page-hero,
.hero,
.manifesto--atelier,
.section--showcase .container,
.partners-luxury {
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 768px) {
  /* Prevent horizontal reveal animations from causing page drag */
  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }

  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }

  /* Solutions page — tabs + panel layout */
  .solution-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 4px;
  }

  .solution-tabs::-webkit-scrollbar {
    display: none;
  }

  .solution-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
  }

  .solution-panel .split-section,
  .split-section {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: unset !important;
    gap: var(--mobile-gap-md, 14px);
    width: 100%;
    min-width: 0;
  }

  .solution-panel .split-section__visual,
  .split-section__visual {
    order: -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-shrink: 0;
  }

  .solution-panel .split-section > div:not(.split-section__visual),
  .split-section > div:not(.split-section__visual),
  .split-section__content {
    order: 1;
    width: 100%;
    min-width: 0;
  }

  .solution-panel .showcase__features li {
    word-break: break-word;
  }

  /* Editorial hero — single column on all mobile */
  .page-hero--editorial .contact-page__inset {
    grid-template-columns: 1fr !important;
    width: 100%;
    min-width: 0;
  }

  .page-hero--editorial .page-hero__meta {
    grid-column: 1 !important;
    grid-row: 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-left: none;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    padding-top: 12px;
  }

  .page-hero--editorial .breadcrumb {
    grid-row: 1;
    margin-bottom: 12px;
  }

  .page-hero--editorial .page-hero__copy {
    grid-row: 2;
    padding-right: 0 !important;
  }

  /* Bento grid — prevent span-2 overflow */
  .bento-card--large {
    grid-column: span 1 !important;
  }
}

/* ============================================
   Mobile Pages v5 — All subpages unified
   Product · Contact · News · About · Service · SaaS · CSR
   ============================================ */
@media (max-width: 768px) {
  /* --- Generic compact page hero (product detail etc.) --- */
  .page-hero:not(.page-hero--editorial):not(.page-hero--contact):not(.page-hero--compact) {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 24px;
  }

  .page-hero:not(.page-hero--editorial):not(.page-hero--contact) .page-hero__title,
  .page-hero:not(.page-hero--editorial):not(.page-hero--contact) .page-hero__title--product {
    font-size: clamp(1.5rem, 6.2vw, 1.875rem);
    max-width: none;
  }

  .page-hero:not(.page-hero--editorial):not(.page-hero--contact) .page-hero__eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 10px;
  }

  .page-hero:not(.page-hero--editorial):not(.page-hero--contact) .page-hero__rule {
    margin-top: 14px;
    width: 36px;
  }

  /* --- Product detail --- */
  .product-detail__nav.container {
    padding-inline: var(--mobile-gutter);
    margin-top: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .product-detail__nav a {
    padding: 8px 14px;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
  }

  .section--product-hero {
    padding-top: 16px;
  }

  .product-detail {
    gap: 20px;
  }

  .section--product-hero .product-detail__gallery-main {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
  }

  .section--product-hero .product-detail__thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
  }

  .product-detail__title {
    font-size: clamp(1.375rem, 5.2vw, 1.625rem);
  }

  .product-detail__intro {
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--radius-md);
  }

  .product-detail__block-title {
    font-size: 0.6875rem;
    margin-bottom: 6px;
  }

  .product-detail__intro p {
    font-size: 0.875rem;
    line-height: 1.58;
  }

  .product-detail__actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }

  .product-detail__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .product-detail__highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    margin: 16px 0;
    border-radius: var(--radius-md);
  }

  .product-detail__highlight {
    padding: 8px 6px;
  }

  .product-detail__highlight strong {
    font-size: 1.125rem;
  }

  .product-detail__highlight span {
    font-size: 0.6875rem;
  }

  .product-detail-features,
  .product-detail-apps {
    padding: var(--section-padding) 0;
  }

  .product-detail-features__header {
    margin-bottom: 18px;
    text-align: left;
  }

  .product-detail__features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-detail__feature-card {
    padding: 14px 14px 14px 52px;
    border-radius: var(--radius-md);
  }

  .product-detail__feature-num {
    left: 14px;
    top: 14px;
    font-size: 1.25rem;
  }

  .product-detail__feature-card p {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .product-detail-apps__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .product-detail-apps__item {
    padding: 14px;
    border-radius: var(--radius-md);
    gap: 12px;
  }

  .product-detail-apps__item p {
    font-size: 0.875rem;
  }

  .product-detail-content__block {
    gap: 14px;
  }

  .product-detail-content__media {
    border-radius: var(--radius-md);
  }

  .product-detail-content__text h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
  }

  .product-detail-content__text p {
    font-size: 0.875rem;
    line-height: 1.58;
  }

  /* Spec table */
  .section--spec-luxury {
    padding: var(--section-padding) 0;
  }

  .spec-luxury__header {
    margin-bottom: 20px;
    text-align: left;
  }

  .spec-luxury__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .spec-luxury__card {
    padding: 16px;
    border-radius: var(--radius-md);
  }

  .spec-luxury__card h3 {
    font-size: 0.9375rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .spec-luxury__card li,
  .spec-luxury__card p {
    font-size: 0.8125rem;
  }

  .spec-table {
    font-size: 0.8125rem;
    margin-top: 12px;
  }

  .spec-table td {
    padding: 10px 12px;
  }

  .spec-table td:first-child {
    width: 42%;
  }

  /* Similar products */
  .similar-products {
    padding: var(--section-padding) 0;
  }

  .similar-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .similar-card {
    border-radius: var(--radius-md);
  }

  .similar-card__body {
    padding: 10px;
  }

  .similar-card__name {
    font-size: 0.8125rem;
  }

  .similar-card__model {
    font-size: 0.6875rem;
  }

  /* Product CTA band */
  .product-cta {
    padding: var(--section-padding) 0;
  }

  .product-cta__inner {
    flex-direction: column;
    gap: 16px;
    text-align: left;
  }

  .product-cta__title {
    font-size: clamp(1.25rem, 4.8vw, 1.5rem);
  }

  .product-cta__desc {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .product-cta__actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .product-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Contact page --- */
  .page-hero--contact {
    min-height: auto;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 32px;
    --contact-stage-pad-x: 0;
  }

  .page-hero--contact .page-hero__title {
    font-size: clamp(1.5rem, 6.2vw, 1.875rem) !important;
    max-width: none;
  }

  .page-hero--contact .page-hero__desc {
    font-size: 0.875rem;
  }

  .page-hero--contact .contact-page__inset {
    grid-template-columns: 1fr !important;
    width: 100%;
    min-width: 0;
    padding: 50px 0 0;
  }

  .page-hero--contact .breadcrumb,
  .page-hero--contact .contact-hero__copy {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-hero--contact .contact-hero__copy {
    grid-row: 2;
  }

  .page-hero--contact .contact-hero__reach {
    grid-column: 1 !important;
    grid-row: 3;
    padding: 12px 0 0 !important;
    border-left: none;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    gap: 12px;
  }

  .contact-hero__kicker {
    font-size: 0.6875rem;
    margin-bottom: 10px;
  }

  .contact-hero__reach-value {
    font-size: 0.9375rem;
  }

  .contact-hero__reach-value--text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .contact-hero__reach-foot {
    gap: 10px;
    font-size: 0.6875rem;
  }

  .contact-luxury {
    padding: var(--section-padding) 0;
    --contact-stage-pad-x: var(--mobile-gutter);
  }

  .contact-luxury__stage {
    border-radius: var(--radius-md);
  }

  .contact-luxury__aside {
    padding: 20px var(--mobile-gutter);
  }

  .contact-luxury__aside .section-title {
    font-size: clamp(1.375rem, 5.2vw, 1.625rem);
    margin-bottom: 10px;
  }

  .contact-luxury__aside .section-desc {
    font-size: 0.875rem;
    margin-bottom: 18px;
  }

  .contact-channel {
    padding: 12px;
    border-radius: var(--radius-md);
    gap: 12px;
  }

  .contact-channel__value {
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .contact-luxury__form {
    padding: 20px var(--mobile-gutter);
  }

  .contact-luxury__form-head {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .contact-luxury__form-title {
    font-size: clamp(1.25rem, 4.8vw, 1.5rem);
  }

  .contact-luxury__form .form-group {
    margin-bottom: 14px;
  }

  .contact-luxury__form .form-group input,
  .contact-luxury__form .form-group textarea,
  .contact-luxury__form .form-group select {
    padding: 12px 14px;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
  }

  .contact-luxury__submit {
    padding: 14px 20px;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
  }

  .contact-locations {
    padding: var(--section-padding) 0;
  }

  .contact-locations__head {
    margin-bottom: 20px;
    text-align: left;
  }

  .contact-locations__head .section-title {
    font-size: clamp(1.375rem, 5.2vw, 1.625rem);
  }

  .contact-locations__head .section-desc {
    font-size: 0.875rem;
  }

  .contact-locations__grid {
    gap: 10px;
    margin-bottom: 20px;
  }

  .contact-locations__band {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding: 16px 8px !important;
  }

  .contact-locations__node {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 4px 2px !important;
  }

  .contact-location-card {
    border-radius: var(--radius-md);
  }

  .contact-location-card__body {
    padding: 14px;
  }

  .contact-location-card__body h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .contact-location-card__body p,
  .contact-location-card__body li {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  /* --- News article --- */
  .news-article-hero__inner {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 32px;
  }

  .news-article-hero .breadcrumb {
    margin-bottom: 14px;
  }

  .news-article-hero__meta {
    gap: 8px 12px;
    margin-bottom: 12px;
  }

  .news-article-hero__title {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem) !important;
    line-height: 1.22;
  }

  .news-article-hero__rule {
    margin-top: 16px;
    width: 36px;
  }

  .news-article__reading {
    padding: 32px 0 36px;
  }

  .news-article__reading-inner {
    max-width: 100% !important;
    padding-inline: 0 !important;
  }

  .news-article__deck {
    margin-bottom: 24px;
    padding: 0 0 16px 14px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .news-article__prose {
    font-size: 0.9375rem;
    line-height: 1.72;
  }

  .news-article__prose h1,
  .news-article__prose h2 {
    font-size: 1.0625rem;
    margin: 28px 0 10px;
    padding-top: 16px;
  }

  .news-article__prose h3 {
    font-size: 1rem;
  }

  .news-article__prose p {
    margin-bottom: 1.1em;
  }

  .news-article__actions {
    margin-top: 28px;
    padding-top: 20px;
    gap: 8px;
  }

  .news-article__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .news-article__continue {
    padding: 36px 0 40px;
  }

  .news-article__continue-head {
    margin-bottom: 16px;
    text-align: left;
  }

  .news-article__continue-head .section-title,
  .news-article__continue-head .display-title,
  .news-article__continue-heading {
    font-size: clamp(1.125rem, 4.2vw, 1.3125rem) !important;
  }

  .news-article__continue-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .news-article__continue-card {
    border-radius: var(--radius-md);
  }

  /* --- About page --- */
  .timeline {
    padding-left: 24px;
  }

  .timeline__item {
    padding-bottom: 20px;
  }

  .timeline__item::before {
    left: -20px;
    width: 10px;
    height: 10px;
  }

  .timeline__year {
    font-size: 0.9375rem;
  }

  .timeline__title {
    font-size: 1rem;
  }

  .timeline__desc {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  .quality-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .cert-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cert-showcase__item {
    border-radius: var(--radius-md);
  }

  .cert-showcase__frame {
    padding: 12px;
    min-height: 0;
  }

  .cert-showcase__frame img {
    max-height: 100px;
  }

  .cert-showcase__info {
    padding: 10px;
  }

  .cert-showcase__info h4 {
    font-size: 0.8125rem;
  }

  .cert-showcase__info p {
    font-size: 0.6875rem;
  }

  /* --- Service / FAQ --- */
  .faq-luxury {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-luxury__sidebar {
    position: static;
    gap: 12px;
  }

  .faq-luxury__panel {
    padding: 16px;
    border-radius: var(--radius-md);
  }

  .faq-luxury__panel-title {
    font-size: 1rem;
  }

  .faq-luxury__panel-desc {
    font-size: 0.8125rem;
  }

  .faq-luxury__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .faq-luxury__search-input {
    padding: 12px 14px 12px 40px;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
  }

  /* --- SaaS cloud --- */
  .saas-hub {
    padding: 32px 0;
  }

  .saas-detail__nav {
    padding: 8px var(--mobile-gutter);
    gap: 6px;
  }

  .saas-detail__nav a {
    padding: 8px 14px;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
  }

  .saas-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .saas-metrics__item {
    padding: 14px 10px;
  }

  .saas-metrics__item strong {
    font-size: 1.25rem;
  }

  .saas-metrics__item span {
    font-size: 0.6875rem;
  }

  .saas-architecture__flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .saas-architecture__layer {
    padding: 14px;
    border-radius: var(--radius-md);
  }

  .saas-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .saas-benefit-card {
    padding: 14px 12px;
    border-radius: var(--radius-md);
  }

  .saas-overview__tags {
    gap: 6px;
  }

  .saas-overview__tags span {
    padding: 6px 12px;
    font-size: 0.6875rem;
    border-radius: var(--radius-sm);
  }

  /* --- CSR / generic content blocks --- */
  .csr-grid,
  .csr-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-list li {
    font-size: 0.875rem;
    padding: 10px 0;
  }

  /* --- Form rows sitewide --- */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* --- Lightbox --- */
  .lightbox__close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .product-detail__highlights {
    grid-template-columns: 1fr;
  }

  .similar-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Mobile Hero Compact v6
   SaaS metrics · News article · Editorial heroes
   ============================================ */
@media (max-width: 768px) {
  /* SaaS metrics — full 2×2 grid, prevent number clipping */
  .saas-metrics {
    margin-top: 0;
    padding-bottom: 32px;
  }

  .saas-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    overflow: visible;
    border-radius: var(--radius-md);
    padding: 4px 0;
  }

  .saas-metrics__item {
    padding: 18px 10px 16px;
    border-right: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  }

  .saas-metrics__item:nth-child(2n) {
    border-right: none;
  }

  .saas-metrics__item:nth-child(n + 3) {
    border-bottom: none;
  }

  .saas-metrics__item strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.25;
    padding-top: 2px;
    margin-bottom: 6px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .saas-metrics__item span {
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  /* News article hero — half height, full-width image */
  .news-article-hero {
    min-height: clamp(220px, 34vh, 360px);
    align-items: center;
  }

  .news-article-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .news-article-hero__inner {
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 20px;
    width: 100%;
  }

  .news-article-hero .breadcrumb {
    margin-bottom: 10px;
  }

  .news-article-hero__meta {
    margin-bottom: 10px;
  }

  .news-article-hero__title {
    font-size: clamp(1.25rem, 5vw, 1.625rem) !important;
    line-height: 1.22;
  }

  .news-article-hero__rule {
    margin-top: 12px;
  }

  /* Editorial heroes — unified compact (match news hub), max 420px, vertically centered */
  .page-hero--editorial:not(.page-hero--contact) {
    min-height: clamp(300px, 50vh, 420px) !important;
    max-height: 420px !important;
    height: auto;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding-top: calc(var(--header-height) + 16px) !important;
    padding-bottom: 24px !important;
    box-sizing: border-box !important;
    --contact-stage-pad-x: 0;
    overflow: hidden;
  }

  .page-hero--editorial:has(+ .news-hub--editorial),
  .page-hero--editorial:has(+ .saas-hub--editorial) {
    padding-bottom: 20px !important;
  }

  .page-hero--editorial:not(.page-hero--contact) .container {
    width: 100%;
  }

  .page-hero--editorial:not(.page-hero--contact) .contact-page__inset {
    align-items: start;
    grid-template-rows: auto auto auto;
  }

  .page-hero--editorial:not(.page-hero--contact) .breadcrumb {
    display: none;
  }

  .page-hero--editorial:not(.page-hero--contact) .page-hero__copy {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-hero--editorial:not(.page-hero--contact) .page-hero__kicker {
    font-size: 0.6875rem;
    margin-bottom: 6px;
  }

  .page-hero--editorial:not(.page-hero--contact) .page-hero__title {
    font-size: clamp(1.5rem, 6.2vw, 1.875rem);
    margin-bottom: 6px;
    max-width: none;
  }

  .page-hero--editorial:not(.page-hero--contact) .page-hero__desc {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .page-hero--editorial:not(.page-hero--contact) .page-hero__rule {
    margin-top: 8px;
    width: 36px;
  }

  .page-hero--editorial:not(.page-hero--contact) .page-hero__meta {
    grid-column: 1 !important;
    grid-row: 3;
    align-self: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 8px 0 0 !important;
    border-left: none;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    margin-bottom: 0;
  }

  .page-hero--editorial:not(.page-hero--contact) .page-hero__meta-value {
    font-size: clamp(1rem, 4vw, 1.125rem);
    margin-bottom: 2px;
  }

  .page-hero--editorial:not(.page-hero--contact) .page-hero__meta-label {
    font-size: 0.625rem;
  }
}

/* FAQ dark band ? ensure section--dark wins over legacy .faq-section shell */
body:has(.page-hero) .section.section--dark.faq-section {
  background: linear-gradient(180deg, #010A12 0%, #041828 48%, #010A12 100%);
  color: rgba(255, 255, 255, 0.88);
}

body:has(.page-hero) .section.section--dark.faq-section .faq-section__header .section-title,
body:has(.page-hero) .section.section--dark.faq-section .faq-section__header .display-title {
  background: linear-gradient(135deg, #fff 0%, var(--color-champagne) 45%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}

body:has(.page-hero) .section.section--dark.faq-section .faq-section__header .section-desc {
  color: rgba(255, 255, 255, 0.55);
}

body:has(.page-hero) .section.section--dark.faq-section .faq-section__header .section-label {
  color: rgba(201, 169, 98, 0.82);
}

#faq.section.section--dark.faq-section {
  background: linear-gradient(180deg, #010A12 0%, #041828 48%, #010A12 100%) !important;
  color: rgba(255, 255, 255, 0.88);
}

/* Mobile Hero Compact v7 — override legacy padding-bottom:0 on hub-adjacent heroes */
@media (max-width: 768px) {
  .page-hero--editorial:not(.page-hero--contact) {
    min-height: clamp(300px, 50vh, 420px) !important;
    max-height: 420px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding-top: calc(var(--header-height) + 16px) !important;
    padding-bottom: 24px !important;
    box-sizing: border-box !important;
  }

  .page-hero--editorial:has(+ .news-hub--editorial),
  .page-hero--editorial:has(+ .saas-hub--editorial) {
    padding-bottom: 20px !important;
  }

  .page-hero--editorial:not(.page-hero--contact) .container {
    width: 100%;
    flex: 0 0 auto;
  }
}

/* Manifesto Atelier — mobile readability */
@media (max-width: 768px) {
  .manifesto--atelier {
    min-height: auto;
    padding: 40px 0 36px;
  }

  .manifesto--atelier .manifesto__inner {
    max-width: 100%;
    gap: 22px;
    align-items: center;
    text-align: center;
    padding-inline: var(--mobile-gutter, 16px) !important;
  }

  .manifesto--atelier .manifesto__header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .manifesto--atelier .manifesto__kicker {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .manifesto--atelier .manifesto__kicker-line {
    display: none;
  }

  .manifesto--atelier .manifesto__quote {
    max-width: 34em;
    font-family: var(--font-body);
    font-size: clamp(1.0625rem, 4.2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.72;
    letter-spacing: 0.01em;
    text-align: center;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
    color: rgba(255, 255, 255, 0.9);
    filter: none;
  }

  .manifesto--atelier .manifesto__quote em {
    font-style: normal;
    font-weight: 600;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: var(--color-accent-light);
    color: var(--color-accent-light);
  }

  .manifesto--atelier .manifesto__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
    width: 100%;
    padding: 18px 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .manifesto--atelier .manifesto__proof-sep {
    display: none;
  }

  .manifesto--atelier .manifesto__metric {
    min-width: 0;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .manifesto--atelier .manifesto__metric-value {
    font-size: clamp(1.125rem, 4vw, 1.375rem);
    font-weight: 600;
  }

  .manifesto--atelier .manifesto__metric-label {
    font-size: 0.625rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.5);
  }

  .manifesto--atelier .manifesto__certs {
    grid-column: 1 / -1;
    justify-content: center;
    margin: 2px 0 0;
    gap: 8px;
  }

  .manifesto--atelier .manifesto__cert {
    padding: 6px 12px;
    font-size: 0.625rem;
  }

  .manifesto--atelier .manifesto__caption {
    justify-content: center;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.45);
  }
}

/* Bento / Feature / card grids — mobile 2-column unified */
@media (max-width: 768px) {
  .bento-grid,
  .feature-grid,
  .saas-benefits__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .bento-card,
  .bento-card--large,
  .bento-card--accent {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    padding: 12px 10px;
  }

  .bento-card__icon,
  .bento-card--large .bento-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .bento-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .bento-card__title,
  .bento-card--large .bento-card__title {
    font-size: 0.8125rem;
    margin-bottom: 4px;
    line-height: 1.28;
  }

  .bento-card__desc,
  .bento-card--large .bento-card__desc {
    font-size: 0.6875rem;
    line-height: 1.45;
  }

  .feature-card {
    padding: 12px 10px;
  }

  .feature-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .feature-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-card__title {
    font-size: 0.8125rem;
    margin-bottom: 4px;
    line-height: 1.28;
  }

  .feature-card__desc {
    font-size: 0.6875rem;
    line-height: 1.45;
  }

  .saas-benefit-card {
    padding: 12px 10px;
  }

  .saas-benefit-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .saas-benefit-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .saas-benefit-card h3 {
    font-size: 0.8125rem;
    margin-bottom: 6px;
    line-height: 1.28;
  }

  .saas-benefit-card > p {
    font-size: 0.6875rem;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .saas-benefit-card li {
    font-size: 0.625rem;
    line-height: 1.4;
    padding: 3px 0 3px 14px;
  }
}

/* Product detail pages — mobile text contrast + similar products 2-col */
@media (max-width: 768px) {
  /* Light sections: solid titles instead of invisible gradient clip */
  body:has(.page-hero) .section.section--light .section-title.display-title,
  body:has(.page-hero) .section--product-hero .product-detail__title.display-title,
  body:has(.page-hero) .product-detail-features .section-title.display-title,
  body:has(.page-hero) .product-detail-content .section-title.display-title,
  body:has(.page-hero) .similar-products .section-title.display-title {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: var(--color-primary-dark);
    color: var(--color-primary-dark);
  }

  body:has(.page-hero) .section--product-hero .section-label,
  body:has(.page-hero) .product-detail-features .section-label,
  body:has(.page-hero) .product-detail-content .section-label,
  body:has(.page-hero) .similar-products .section-label {
    color: var(--color-accent);
  }

  body:has(.page-hero) .product-detail-content__text h3 {
    color: var(--color-primary-dark);
  }

  /* Dark CTA band on product pages */
  .product-cta .display-title,
  .product-cta__title.display-title {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: #fff;
    color: #fff;
  }

  /* Preserve spec / apps dark surfaces (belt-and-suspenders) */
  body:has(.page-hero) .section.section--spec-luxury {
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, #071E30 50%, var(--color-primary-dark) 100%) !important;
    color: rgba(255, 255, 255, 0.88);
  }

  body:has(.page-hero) .section.product-detail-apps {
    background: var(--color-primary-dark) !important;
    color: var(--color-white);
  }

  .similar-products__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .similar-card__img {
    height: 120px;
    padding: 12px;
  }

  .similar-card__name {
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .similar-card__model {
    font-size: 0.6875rem;
  }

  .similar-card__cat {
    font-size: 0.625rem;
    margin-bottom: 4px;
  }
}

/* === Contact hero — title cap 3.75rem, desc single line on desktop === */
@media (min-width: 769px) {
  .page-hero--contact .page-hero__title {
    font-size: clamp(2rem, 3.2vw, 3.75rem) !important;
    max-width: none !important;
  }

  .page-hero--contact .page-hero__desc {
    max-width: none !important;
    white-space: nowrap;
  }
}
