:root {
  color-scheme: dark;
  --bg: #0c1118;
  --bg-soft: #141d29;
  --paper: #f1f4f8;
  --text: #e8eef6;
  --text-dark: #111e33;
  --muted: #8fa0b8;
  --line: rgba(230, 238, 250, 0.12);
  --line-dark: rgba(17, 30, 51, 0.14);
  --accent: #e8921e;
  --accent-strong: #ffa840;
  --accent-glow: rgba(232, 146, 30, 0.18);
  --body-bg: linear-gradient(158deg, #0c1118 0%, #101824 54%, #161f2c 100%);
  --header-bg: rgba(10, 15, 22, 0.82);
  --topline-line: rgba(230, 238, 250, 0.08);
  --dropdown-bg: rgba(12, 18, 27, 0.97);
  --mobile-nav-bg: rgba(10, 15, 22, 0.98);
  --paper-bg: linear-gradient(180deg, #f4f7fc 0%, #eaeef5 100%);
  --paper-muted: #3e5069;
  --section-lead-color: #b8c6d8;
  --copy-color: #c4cedb;
  --card-bg: rgba(255, 255, 255, 0.025);
  --card-border: rgba(255, 255, 255, 0.07);
  --cta-bg: linear-gradient(110deg, rgba(232, 146, 30, 0.14), rgba(232, 146, 30, 0.04));
  --footer-bg: #090d14;
  --page-hero-bg: radial-gradient(circle at 85% 5%, rgba(232, 146, 30, 0.22), transparent 45%);
  --page-hero-copy: #b8c6d8;
  --table-bg: rgba(255, 255, 255, 0.5);
  --map-bg: linear-gradient(140deg, #d8dee7 0%, #eff2f7 100%);
  --map-text: #243856;
  --hero-overlay:
    radial-gradient(ellipse at 72% 12%, rgba(232, 146, 30, 0.38), transparent 48%),
    linear-gradient(95deg, rgba(8, 13, 22, 0.97) 0%, rgba(8, 13, 22, 0.56) 42%, rgba(8, 13, 22, 0.08) 100%);
  --hero-content-wash:
    linear-gradient(90deg, rgba(241, 244, 248, 0.18) 0%, rgba(241, 244, 248, 0.1) 48%, rgba(241, 244, 248, 0) 100%),
    radial-gradient(circle at 16% 34%, rgba(255, 180, 91, 0.2), transparent 46%);
  --hero-copy: #c8d4e2;
  --btn-secondary-border: rgba(230, 238, 250, 0.28);
  --max: 1200px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --radius-xs: 4px;
  --shadow-soft: 0 24px 56px rgba(2, 6, 16, 0.45);
  --shadow-card: 0 4px 24px rgba(2, 6, 16, 0.3);
  --duration: 340ms;
  --easing: cubic-bezier(0.19, 1, 0.22, 1);
  /* Typography scale */
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", "Source Sans 3", system-ui, sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f7fb;
  --bg-soft: #ffffff;
  --paper: #ffffff;
  --text: #1a273d;
  --text-dark: #162235;
  --muted: #3a506e;
  --line: rgba(26, 39, 61, 0.16);
  --line-dark: rgba(26, 39, 61, 0.2);
  --accent: #db7a0f;
  --accent-strong: #b86309;
  --body-bg: linear-gradient(170deg, #f6f8fb 0%, #edf2f8 62%, #e6edf6 100%);
  --header-bg: rgba(247, 250, 253, 0.86);
  --topline-line: rgba(26, 39, 61, 0.14);
  --dropdown-bg: rgba(255, 255, 255, 0.98);
  --mobile-nav-bg: rgba(255, 255, 255, 0.98);
  --paper-bg: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  --paper-muted: #4f617f;
  --section-lead-color: #4f617f;
  --copy-color: #31425f;
  --card-bg: rgba(255, 255, 255, 0.72);
  --card-border: rgba(26, 39, 61, 0.12);
  --cta-bg: linear-gradient(110deg, rgba(219, 122, 15, 0.14), rgba(219, 122, 15, 0.05));
  --footer-bg: #eef3fa;
  --page-hero-bg: radial-gradient(circle at 85% 5%, rgba(219, 122, 15, 0.18), transparent 45%);
  --page-hero-copy: #43546f;
  --table-bg: rgba(255, 255, 255, 0.92);
  --map-bg: linear-gradient(140deg, #eef2f8 0%, #f9fbfd 100%);
  --map-text: #243856;
  --hero-overlay:
    radial-gradient(circle at 76% 18%, rgba(255, 168, 64, 0.22), transparent 42%),
    linear-gradient(92deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.72) 45%, rgba(255, 255, 255, 0.18) 100%);
  --hero-content-wash:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.52) 50%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 18% 34%, rgba(255, 186, 102, 0.26), transparent 46%);
  --hero-copy: #394b68;
  --btn-secondary-border: rgba(26, 39, 61, 0.38);
  --shadow-card: 0 10px 30px rgba(20, 33, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--body-bg);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.topline {
  border-bottom: 1px solid var(--topline-line);
}

.topline-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 1rem));
  margin-inline: auto;
}

.topline-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--muted);
}

.topline-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topline-links a {
  transition: color var(--duration) var(--easing);
}

.topline-links .social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topline-links a:hover,
.main-nav a:hover,
.main-nav button:hover,
.footer-links a:hover,
.inline-link:hover {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-row {
  position: relative;
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

html[data-theme="light"] .brand-logo {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
}

.brand-sub {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.9vw, 1.2rem);
  font-weight: 600;
}

.main-nav a,
.main-nav button {
  color: var(--text);
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.main-nav a[data-active="true"] {
  color: var(--accent-strong);
}

.nav-dropdown[data-active="true"] > [data-dropdown-trigger] {
  color: var(--accent);
  font-weight: 600;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
  padding: 0.6rem 0;
}
.breadcrumb-nav .section-inner,
.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb li a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.breadcrumb li[aria-current="page"] {
  color: var(--text-dark);
  font-weight: 500;
}
.breadcrumb .sep {
  color: var(--muted);
  font-size: 0.75rem;
  user-select: none;
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  object-fit: contain;
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.figure-block img {
  cursor: zoom-in;
  transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing);
}
.figure-block img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.site-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.theme-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.77rem;
  cursor: pointer;
  transition: border-color var(--duration) var(--easing), color var(--duration) var(--easing);
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.theme-toggle:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.theme-toggle-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
}

.theme-toggle-icon svg,
.lang-switch-icon svg,
.social-link-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle-icon .fill-icon {
  fill: currentColor;
  stroke: none;
}

.social-link-icon .fill-icon {
  fill: currentColor;
  stroke: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.lang-switch-icon {
  width: 15px;
  height: 15px;
  color: var(--muted);
  display: inline-flex;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
}

.lang-switch {
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1;
  padding: 0.55rem 0.48rem;
  min-width: 34px;
  cursor: pointer;
  transition: color var(--duration) var(--easing), background var(--duration) var(--easing);
}

.lang-switch button[data-active="true"] {
  color: var(--text);
  background: rgba(243, 155, 47, 0.2);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 250px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--dropdown-bg);
  padding: 0.75rem;
  display: none;
  box-shadow: var(--shadow-soft);
}

.nav-dropdown.open .dropdown-panel,
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  display: grid;
  gap: 0.55rem;
}

.dropdown-panel a {
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  color: var(--muted);
  transition: background var(--duration) var(--easing), color var(--duration) var(--easing);
}

.dropdown-panel a:hover {
  background: rgba(243, 155, 47, 0.14);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 90px);
  display: grid;
  isolation: isolate;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 13, 22, 0.46) 100%);
  pointer-events: none;
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: -6% 0 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: saturate(1.16) contrast(1.06);
  transform: scale(1.06);
  transition: transform 600ms linear, filter 600ms linear;
}

.hero-inner {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
  display: grid;
  align-content: center;
  padding: clamp(4rem, 9vh, 7rem) 0;
  position: relative;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: clamp(2.3rem, 7vh, 5rem) auto clamp(2.3rem, 7vh, 5rem) max(-7vw, -5rem);
  width: min(760px, 72vw);
  border-left: 1px solid rgba(255, 180, 91, 0.46);
  background: var(--hero-content-wash);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transform: skewX(-4deg);
  transform-origin: left center;
  z-index: -1;
}

.hero-inner > * {
  position: relative;
}

.hero-kicker {
  margin: 0;
  width: fit-content;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(255, 168, 64, 0.3);
  border-radius: 999px;
  background: rgba(8, 13, 22, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  animation: rise 700ms var(--easing) both;
}

.hero-kicker::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-18deg);
  animation: heroKickerSheen 5.8s 1.4s ease-in-out infinite;
}

.hero h1 {
  margin: 0.9rem 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.8vw, 4.6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  max-width: 11ch;
  color: #f4f8ff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  animation: rise 820ms 100ms var(--easing) both;
}

@supports ((-webkit-background-clip: text) and (-webkit-text-fill-color: transparent)) {
  .hero h1 {
    color: transparent;
    background: linear-gradient(120deg, #ffffff 0%, #ffe1b4 42%, rgba(255, 255, 255, 0.9) 72%, #ffffff 100%);
    background-size: 180% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: rise 820ms 100ms var(--easing) both, heroTitleTint 7.2s 1.2s ease-in-out infinite;
  }
}

html[data-theme="light"] .hero h1 {
  color: #1f2d44;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.36);
}

@supports ((-webkit-background-clip: text) and (-webkit-text-fill-color: transparent)) {
  html[data-theme="light"] .hero h1 {
    color: transparent;
    background: linear-gradient(135deg, #172238 0%, rgba(31, 45, 68, 0.82) 54%, #9a520f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
  }
}

.hero-slogan {
  margin: 0 0 1rem;
  width: fit-content;
  max-width: min(100%, 48ch);
  padding: 0.5rem 0.92rem;
  border-left: 3px solid #ffb45b;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, rgba(9, 15, 23, 0.72), rgba(9, 15, 23, 0.42));
  color: #ffe0b2;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.3vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: rise 870ms 150ms var(--easing) both;
}

.hero-intro {
  margin: 0;
  max-width: 56ch;
  color: var(--hero-copy);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
  animation: rise 940ms 190ms var(--easing) both;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 980ms 230ms var(--easing) both;
}

.hero-video-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.68rem 1.06rem 0.68rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 146, 30, 0.48);
  background: linear-gradient(135deg, rgba(12, 20, 30, 0.82), rgba(29, 42, 58, 0.7));
  color: #f8fbff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform var(--duration) var(--easing), box-shadow var(--duration) var(--easing), border-color var(--duration) var(--easing);
}

.hero-video-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(232, 146, 30, 0.74);
}

.hero-video-cta::before {
  content: "";
  position: absolute;
  left: -1rem;
  right: -1rem;
  bottom: 100%;
  height: 1.15rem;
}

.hero-video-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 168, 64, 0.14);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.hero-video-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(232, 146, 30, 0.52);
  animation: heroPulse 1.9s ease-out infinite;
}

.hero-video-icon svg {
  width: 18px;
  height: 18px;
}

.hero-video-icon circle {
  fill: rgba(232, 146, 30, 0.14);
  stroke: rgba(255, 196, 120, 0.7);
  stroke-width: 0.8;
}

.hero-video-icon polygon {
  fill: #ffd49a;
}

.hero-video-copy {
  line-height: 1;
  white-space: nowrap;
}

.hero-video-preview {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  width: min(280px, 78vw);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 13, 22, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  opacity: 0;
  pointer-events: auto;
  transform: translate(-50%, 8px) scale(0.98);
  transform-origin: bottom center;
  transition:
    opacity 180ms var(--easing),
    transform 220ms var(--easing);
}

.hero-video-preview::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 13, 22, 0.92);
  transform: translateX(-50%) rotate(45deg);
}

.hero-video-preview-frame,
.hero-video-preview img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-video-preview-frame {
  position: relative;
}

.hero-video-preview img {
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.hero-video-preview-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent, rgba(8, 13, 22, 0.24));
}

.hero-video-preview-play::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(8, 13, 22, 0.22);
}

.hero-video-preview-play::after {
  content: "";
  position: absolute;
  border-left: 11px solid #9a520f;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  transform: translateX(2px);
}

.hero-video-cta:hover .hero-video-preview,
.hero-video-cta:focus-visible .hero-video-preview {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

html[data-theme="light"] .hero-slogan {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 232, 0.7));
  color: #8b4600;
  box-shadow: 0 10px 26px rgba(31, 45, 68, 0.12);
}

html[data-theme="light"] .hero-video-cta {
  color: #1f2d44;
  border-color: rgba(219, 122, 15, 0.38);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 224, 0.86));
  box-shadow: 0 11px 24px rgba(31, 45, 68, 0.12);
}

html[data-theme="light"] .hero-video-icon {
  background: rgba(219, 122, 15, 0.13);
  border-color: rgba(31, 45, 68, 0.22);
}

html[data-theme="light"] .hero-video-preview {
  border-color: rgba(26, 39, 61, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(31, 45, 68, 0.18);
}

html[data-theme="light"] .hero-video-preview::after {
  border-color: rgba(26, 39, 61, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--duration) var(--easing), box-shadow var(--duration) var(--easing), background var(--duration) var(--easing);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: transform 560ms var(--easing);
  pointer-events: none;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(360%) skewX(-18deg);
}

.btn-primary {
  background: linear-gradient(130deg, #f39b2f, #ffbe6f);
  color: #1f1508;
  box-shadow: 0 10px 25px rgba(243, 155, 47, 0.28);
}

.btn-secondary {
  border: 1px solid var(--btn-secondary-border);
  color: var(--text);
}

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

.section {
  padding: clamp(3.6rem, 8vw, 6.5rem) 0;
}

.section.paper {
  background: var(--paper-bg);
  color: var(--text-dark);
}

.section.paper .muted,
.section.paper .eyebrow,
.section.paper .section-lead {
  color: var(--paper-muted);
}

html[data-theme="dark"] .product-categories-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(232, 146, 30, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(11, 17, 25, 0.96) 0%, rgba(8, 12, 18, 0.99) 100%);
  color: var(--text);
  --category-card-bg: rgba(255, 255, 255, 0.065);
  --category-card-border: rgba(255, 255, 255, 0.14);
  --category-card-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  --category-card-title: #f5f8fc;
  --category-card-desc: #c0ccdb;
  --category-card-meta: #ffd08a;
}

html[data-theme="light"] .product-categories-section,
.product-categories-section {
  --category-card-bg: rgba(255, 255, 255, 0.88);
  --category-card-border: rgba(20, 30, 48, 0.12);
  --category-card-shadow: 0 12px 30px rgba(10, 16, 24, 0.08);
  --category-card-title: var(--text-dark);
  --category-card-desc: var(--paper-muted);
  --category-card-meta: var(--accent-strong);
}

html[data-theme="dark"] .product-categories-section .muted,
html[data-theme="dark"] .product-categories-section .eyebrow,
html[data-theme="dark"] .product-categories-section .section-lead {
  color: #aab8cb;
}

.product-categories-section .product-card {
  background: var(--category-card-bg);
  border-color: var(--category-card-border);
  box-shadow: var(--category-card-shadow);
}

.product-categories-section .product-card-thumb {
  background: rgba(255, 255, 255, 0.04);
}

.product-categories-section .product-card-name {
  color: var(--category-card-title);
}

.product-categories-section .product-card-desc {
  color: var(--category-card-desc);
}

.product-categories-section .product-card-link,
.product-categories-section .product-card-tag {
  color: var(--category-card-meta);
}

.section-header {
  display: grid;
  gap: 0.9rem;
  margin-bottom: clamp(1.6rem, 4vw, 2.2rem);
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.section-lead {
  margin: 0;
  max-width: 66ch;
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--section-lead-color);
}

.split {
  display: grid;
  gap: clamp(1.8rem, 4vw, 2.8rem);
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}

.figure-block {
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow-soft);
}

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

.copy-flow {
  display: grid;
  gap: 1rem;
}

.copy-flow p {
  margin: 0;
  color: var(--copy-color);
  font-size: 1.04rem;
}

.copy-flow ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.copy-flow li {
  position: relative;
  padding-left: 1.2rem;
}

.copy-flow li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

.strip-list {
  border-top: 1px solid var(--line);
}

.strip-item {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: background var(--duration) var(--easing);
}

.strip-item strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.strip-item span {
  color: var(--muted);
  max-width: 54ch;
  font-size: 0.94rem;
  line-height: 1.5;
}

.strip-item a {
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--accent-strong);
  border-radius: 999px;
  transition: all var(--duration) var(--easing);
}

.strip-item a:hover {
  background: var(--accent-strong);
  color: #1a0e00;
  text-decoration: none;
}

/* ── Product Card Grid ──────────────────────────────────────────────────── */
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .product-card-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.product-card {
  border: 0;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--easing), box-shadow var(--duration) var(--easing), border-color var(--duration) var(--easing);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(232, 146, 30, 0.3);
}

.product-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--easing);
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-strong);
}

.product-card-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.product-card-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.product-card-link {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--duration) var(--easing);
}

.product-card-link:hover {
  gap: 0.7rem;
  text-decoration: none;
}

.product-card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.media-unit {
  border-radius: var(--radius-md);
  overflow: clip;
  min-height: 300px;
  position: relative;
}

.media-unit img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 480ms var(--easing);
}

.media-unit:hover img {
  transform: scale(1.12);
}

.media-unit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 28, 0.05) 0%, rgba(11, 18, 28, 0.84) 100%);
}

.media-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(232, 146, 30, 0.1) 0%, rgba(232, 146, 30, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(232, 146, 30, 0.15), transparent 60%);
  pointer-events: none;
}

.cta-row {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.cta-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 30ch;
}

/* ── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: rgba(255,255,255,0.024);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

html[data-theme="light"] .stats-bar {
  background: linear-gradient(180deg, rgba(219, 122, 15, 0.08) 0%, rgba(219, 122, 15, 0.04) 100%);
}

.stats-bar-inner {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--line);
}

@media (max-width: 680px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

.stat-block {
  padding: 1.6rem 1.8rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  position: relative;
}

.stat-block:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent-strong);
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

html[data-theme="light"] .stat-label {
  color: #4a5d78;
}

/* ── Trust Badges ───────────────────────────────────────────────────────── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
  animation: rise 1050ms 280ms var(--easing) both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.85rem;
  border: 1px solid rgba(232, 146, 30, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(232, 146, 30, 0.06);
  letter-spacing: 0.01em;
}

html[data-theme="light"] .trust-badge {
  color: #2a3d5a;
  background: rgba(219, 122, 15, 0.08);
  border-color: rgba(219, 122, 15, 0.2);
}

html[data-theme="light"] .product-card,
html[data-theme="light"] .blog-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(26, 39, 61, 0.12);
}

html[data-theme="light"] .product-card-thumb {
  background: rgba(26, 39, 61, 0.04);
}

.trust-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--accent-strong);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Blog Card ──────────────────────────────────────────────────────────── */
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 860px) {
  .blog-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .blog-card-grid { grid-template-columns: 1fr; }
}

.blog-card {
  border: 0;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--easing), box-shadow var(--duration) var(--easing);
}

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

.blog-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--easing);
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.07);
}

.blog-card-body {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.blog-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-strong);
}

.blog-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
}

.blog-card-title a {
  color: inherit;
  transition: color var(--duration) var(--easing);
}

.blog-card:hover .blog-card-title a {
  color: var(--accent-strong);
}

.blog-card-desc {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.blog-card-foot {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-card-read {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--duration) var(--easing);
}

.blog-card:hover .blog-card-read { gap: 0.55rem; }

.blog-card-read svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Why Eral — Value Props ─────────────────────────────────────────────── */
.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

@media (max-width: 900px) { .value-props { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .value-props { grid-template-columns: 1fr; } }

.vp-card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--easing), transform var(--duration) var(--easing);
}

.vp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(232, 146, 30, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--duration) var(--easing);
}

.vp-card:hover { border-color: rgba(232, 146, 30, 0.3); transform: translateY(-3px); }
.vp-card:hover::before { opacity: 1; }

.vp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 146, 30, 0.1);
  border: 1px solid rgba(232, 146, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-strong);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vp-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.vp-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Featured Product Spotlight ─────────────────────────────────────────── */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) { .spotlight { grid-template-columns: 1fr; } }

.spotlight-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.spotlight-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--accent-strong);
  color: #1a0900;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.spotlight-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.spotlight-model {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
}

.spotlight-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.spotlight-copy p {
  margin: 0;
  color: var(--copy-color);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 46ch;
}

.spotlight-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  border-radius: 10px;
}

.spec-key {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.spec-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.spotlight-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ── Industries ─────────────────────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 860px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }

.industry-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--easing);
}

.industry-card:hover img { transform: scale(1.07); }

.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 10, 18, 0.88) 0%, rgba(6, 10, 18, 0.2) 55%, transparent 100%);
  transition: background var(--duration) var(--easing);
}

.industry-card:hover::after {
  background: linear-gradient(0deg, rgba(6, 10, 18, 0.92) 0%, rgba(232, 146, 30, 0.18) 100%);
}

.industry-label {
  position: relative;
  z-index: 2;
  padding: 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.industry-label strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.industry-label span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* ── Export Network ─────────────────────────────────────────────────────── */
.export-section {
  background: linear-gradient(135deg, rgba(232,146,30,0.06) 0%, rgba(232,146,30,0.01) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.export-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 146, 30, 0.08), transparent 70%);
  pointer-events: none;
}

.export-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) { .export-layout { grid-template-columns: 1fr; } }

.export-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.export-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.export-copy p {
  margin: 0;
  color: var(--copy-color);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 44ch;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.country-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.7rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  transition: border-color var(--duration) var(--easing), color var(--duration) var(--easing);
}

.country-tag:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.export-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.export-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.export-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-strong);
  line-height: 1;
}

.export-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Process Steps ───────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  opacity: 0.3;
}

@media (max-width: 860px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 1rem;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(232, 146, 30, 0.1);
  border: 2px solid rgba(232, 146, 30, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-strong);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.step-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ Accordion ───────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  width: 100%;
  background: var(--card-bg);
  border: none;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--duration) var(--easing);
}

.faq-trigger:hover { background: rgba(255,255,255,0.04); }

.faq-trigger.open { color: var(--accent-strong); background: rgba(232,146,30,0.04); }

.faq-chevron {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform var(--duration) var(--easing);
}

.faq-trigger.open .faq-chevron { transform: rotate(180deg); }

.faq-body {
  display: none;
  padding: 0 1.4rem 1.2rem;
  background: rgba(232, 146, 30, 0.02);
}

.faq-body.open { display: block; }

.faq-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
}

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

.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 760px) { .faq-two-col { grid-template-columns: 1fr; } }

/* ── Video Section ───────────────────────────────────────────────────────── */
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
}

.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms ease;
}

.video-wrap:hover .video-poster { opacity: 0.85; }

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-play-btn span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232, 146, 30, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms var(--easing), background 300ms ease;
  box-shadow: 0 8px 32px rgba(232, 146, 30, 0.4);
}

.video-wrap:hover .video-play-btn span {
  transform: scale(1.1);
  background: var(--accent-strong);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #1a0900;
  margin-left: 4px;
}

.video-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* ── Certificate/Partner logos strip ─────────────────────────────────────── */
.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.4rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  min-width: 110px;
  transition: border-color var(--duration) var(--easing);
}

.cert-badge:hover { border-color: rgba(232,146,30,0.3); }

.cert-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232, 146, 30, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-badge-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-strong);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-badge-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.cert-badge-sub {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--line);
  padding-top: 3.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h3 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--muted);
  margin: 0;
}

.footer-links,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.social-row {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
}

.social-row a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text);
}

.social-row .social-link-icon {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1rem 0 1.8rem;
  border-top: 1px solid var(--line);
  color: #8190a6;
  font-size: 0.9rem;
}

.made-with-love {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid var(--line);
}

.made-with-love a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-hero {
  padding: clamp(3.2rem, 4.6vw, 4.8rem) 0 clamp(1.6rem, 3vw, 2.4rem);
  background: var(--page-hero-bg);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
  max-width: 19ch;
  line-height: 1.14;
}

.page-hero p {
  margin: 0.75rem 0 0;
  max-width: 62ch;
  color: var(--page-hero-copy);
}

.value-grid,
.doc-grid,
.blog-grid,
.contact-grid,
.product-grid {
  display: grid;
  gap: 1rem;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-block,
.doc-item,
.blog-item,
.contact-item {
  border: 0;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: var(--card-bg);
}

.value-block h3,
.doc-item h3,
.blog-item h3,
.contact-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.value-block p,
.doc-item p,
.blog-item p,
.contact-item p {
  margin: 0;
  color: var(--muted);
}

.doc-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.8rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-thumb-link {
  display: block;
}

.blog-item h3 a {
  color: inherit;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.4rem !important;
}

.post-layout {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  overflow: hidden;
}

.post-cover {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.post-meta {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.post-body {
  display: grid;
  gap: 1rem;
  color: var(--text);
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

.post-body > * {
  min-width: 0;
  max-width: 100%;
}

.post-body p {
  margin: 0;
}

.post-body h2 {
  margin: 0.5rem 0 0;
  font-size: 1.25rem;
  font-family: "Sora", sans-serif;
  color: var(--heading);
}

.post-body ul {
  margin: 0;
  padding-left: 1.5rem;
  display: grid;
  gap: 0.4rem;
}

.post-body ul li {
  color: var(--text);
  line-height: 1.7;
}

.post-body strong {
  color: var(--heading);
}

.post-body img,
.post-body video,
.post-body iframe,
.post-body table {
  max-width: 100%;
}

.post-body pre {
  overflow-x: auto;
  max-width: 100%;
}

.post-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Blog page: figcaption */
.post-figure {
  margin: 0 0 1rem;
}

.post-figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
  text-align: center;
  font-style: italic;
}

/* Breadcrumb */
.breadcrumb-nav {
  background: var(--card-bg);
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0;
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.4rem;
  list-style: none;
  font-size: 0.82rem;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.4rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb [aria-current="page"] {
  color: var(--muted);
}

/* Related products */
.post-related-products {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card-bg);
}

.related-products-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: "Sora", sans-serif;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.related-product-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  text-decoration: none;
  transition: border-color 200ms, transform 200ms;
}

.related-product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.related-product-card strong {
  font-size: 0.88rem;
  color: var(--heading);
  font-family: "Sora", sans-serif;
}

.related-product-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

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

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 11, 19, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--easing);
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-dialog {
  width: min(980px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  padding: 0.8rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.video-modal-close {
  margin-left: auto;
  margin-bottom: 0.5rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.video-modal-frame-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #000;
}

.video-modal-frame-wrap iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border: 0;
}

a.product-item {
  color: var(--text-dark);
  display: grid;
  grid-template-rows: 165px auto auto;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(20, 30, 48, 0.08);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 30, 50, 0.07);
  transition:
    transform var(--duration) var(--easing),
    border-color var(--duration) var(--easing),
    box-shadow var(--duration) var(--easing);
}

a.product-item:hover {
  transform: translateY(-4px);
  border-color: rgba(219, 122, 15, 0.22);
  box-shadow: 0 16px 34px rgba(18, 30, 50, 0.12);
}

.product-item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 165px;
  padding: 0.35rem 0.45rem 0.3rem;
  background: #fff;
}

.product-item-media img {
  width: 98%;
  height: 98%;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.08));
}

.product-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0.65rem 0.8rem;
  border-top: 1px solid rgba(20, 30, 48, 0.08);
  border-bottom: 1px solid rgba(20, 30, 48, 0.08);
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 0.96vw, 0.98rem);
  font-weight: 800;
  line-height: 1.28;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.product-item-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  color: #536174;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.doc-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.doc-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms var(--easing);
}

.doc-thumb:hover img {
  transform: scale(1.06);
}

.table-wrap {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--table-bg);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  vertical-align: top;
  text-align: left;
}

.spec-table th {
  width: 32%;
  min-width: 180px;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.spec-table td {
  color: var(--text-dark);
}

html[data-theme="light"] .spec-table th {
  color: #1a273d;
}

html[data-theme="light"] .spec-table td {
  color: #31425b;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.product-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3.4rem) 0 clamp(3.2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 8% 20%, rgba(232, 146, 30, 0.18), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(36, 56, 86, 0.18), transparent 42%),
    linear-gradient(150deg, rgba(12, 17, 24, 0.98), rgba(18, 28, 42, 0.94));
}

html[data-theme="light"] .product-detail-hero {
  background:
    radial-gradient(circle at 8% 20%, rgba(219, 122, 15, 0.14), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(142, 159, 184, 0.24), transparent 42%),
    linear-gradient(150deg, #f7f9fc, #eaf0f8);
}

.product-detail-shell {
  display: grid;
  gap: clamp(1.25rem, 2.6vw, 1.9rem);
}

.product-media-panel,
.product-spec-panel {
  min-width: 0;
}

.product-detail-main {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.3rem, 3.2vw, 2.4rem);
  align-items: start;
}

.product-media-panel {
  position: sticky;
  top: 112px;
  border: 0;
  border-radius: 10px;
  padding: clamp(0.55rem, 1.2vw, 0.85rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 48px rgba(2, 6, 16, 0.28);
}

html[data-theme="light"] .product-media-panel {
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(28, 42, 62, 0.13);
}

.product-media-panel .carousel-stage {
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(232, 146, 30, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.92);
}

.product-media-panel .carousel-image {
  aspect-ratio: 1.08 / 1;
  object-fit: contain;
  padding: clamp(0.35rem, 1.4vw, 0.9rem);
  transform: scale(1);
  transition: transform 700ms var(--easing), filter 700ms var(--easing);
}

.product-media-panel:hover .carousel-image {
  transform: scale(1.03);
  filter: contrast(1.04);
}

.product-spec-panel {
  display: grid;
  gap: 0.75rem;
}

.product-title-stack {
  display: grid;
  gap: 0.75rem;
  max-width: 980px;
}

.product-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-hero-meta span {
  position: relative;
  padding-left: 0.75rem;
}

.product-hero-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.product-category-link {
  width: fit-content;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.product-title-stack h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--text);
}

html[data-theme="light"] .product-title-stack h1 {
  color: var(--text-dark);
}

.product-title-stack p {
  max-width: 60ch;
  margin: 0;
  color: var(--section-lead-color);
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  line-height: 1.58;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-highlight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 820px;
  margin: 0.35rem 0 0;
}

.product-highlight-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.72rem 0.82rem;
  background: rgba(255, 255, 255, 0.055);
}

html[data-theme="light"] .product-highlight-item {
  border-color: rgba(26, 39, 61, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.product-highlight-item dt {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-highlight-item dd {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.35;
}

html[data-theme="light"] .product-highlight-item dd {
  color: var(--text-dark);
}

.product-category-cta {
  justify-self: end;
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
}

.product-spec-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 34px rgba(2, 6, 16, 0.16);
}

html[data-theme="light"] .product-spec-card {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(28, 42, 62, 0.08);
}

.product-spec-card h2 {
  margin: 0;
  padding: 0.85rem clamp(1rem, 2vw, 1.25rem);
  border-bottom: 1px solid var(--line);
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
}

.product-spec-list {
  max-height: none;
  overflow: auto;
}

.product-spec-item {
  display: grid;
  grid-template-columns: minmax(118px, 0.45fr) minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.78rem clamp(1rem, 2vw, 1.25rem);
  border-bottom: 1px solid var(--line);
}

.product-spec-item:last-child {
  border-bottom: 0;
}

.product-spec-item span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
}

.product-spec-item strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.48;
}

html[data-theme="light"] .product-spec-item strong {
  color: var(--text-dark);
}

.product-included-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--body-bg);
}

.product-included-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.62fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  margin-bottom: clamp(1.4rem, 4vw, 2.2rem);
}

.product-included-header h2,
.product-support-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.product-included-header p {
  margin: 0;
  color: var(--section-lead-color);
  line-height: 1.7;
}

.included-product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 340px);
  grid-auto-rows: 1fr;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0.2rem 0 1rem;
}

.included-product-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.7rem;
  min-height: 100%;
  padding: 0.85rem;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 420ms var(--easing), border-color 420ms var(--easing), background 420ms var(--easing);
}

.included-product-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.085);
}

.included-product-thumb {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
}

.included-product-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 0.8rem;
  transition: transform 700ms var(--easing);
}

.included-product-card:hover .included-product-thumb img {
  transform: scale(1.06);
}

.included-product-meta {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.included-product-card strong {
  color: inherit;
  font-size: 1.12rem;
  line-height: 1.25;
}

.included-product-link {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.88rem;
}

html[data-theme="light"] .included-product-card {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.78);
}

.product-support-section {
  padding-top: clamp(3rem, 7vw, 5rem);
}

.product-support-card {
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

.product-support-card p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.7;
}

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

.product-grid.product-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  padding: 1rem;
}

.catalog-title {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.category-side-list {
  display: grid;
  gap: 0.35rem;
}

.category-side-link {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
  display: grid;
  gap: 0.2rem;
  transition: border-color var(--duration) var(--easing), background var(--duration) var(--easing),
    transform var(--duration) var(--easing);
}

.category-side-link:hover {
  border-color: var(--line);
  background: rgba(243, 155, 47, 0.08);
  transform: translateX(2px);
}

.category-side-link.is-active {
  border-color: rgba(243, 155, 47, 0.45);
  background: rgba(243, 155, 47, 0.14);
}

.category-side-link strong {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
}

.category-side-link small {
  color: var(--muted);
  font-size: 0.84rem;
}

.catalog-main {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  padding: 1.1rem;
}

.catalog-main-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.95rem;
}

.catalog-main-header h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
}

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

.map-faux {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
  min-height: 260px;
  background: var(--map-bg);
  color: var(--map-text);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.2rem;
  font-weight: 600;
}

/* Reveal: only animate when JS is active AND user allows motion */
@media (prefers-reduced-motion: no-preference) {
  body.js-loaded .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 640ms var(--easing), transform 640ms var(--easing);
    will-change: opacity, transform;
  }

  body.js-loaded .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
  }
}

/* Always show if no JS or reduced motion */
.reveal { opacity: 1; transform: none; }


@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@keyframes heroKickerSheen {
  0%,
  52% {
    transform: translateX(0) skewX(-18deg);
  }

  68%,
  100% {
    transform: translateX(380%) skewX(-18deg);
  }
}

@keyframes heroTitleTint {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 1rem;
    font-size: 0.95rem;
  }

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

  .media-grid,
  .doc-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .catalog-sidebar {
    position: static;
  }

  .footer-grid,
  .value-grid,
  .contact-grid,
  .cta-row {
    grid-template-columns: 1fr;
  }

  .cta-row {
    padding: 2rem 0;
  }
}

@media (max-width: 860px) {
  .site-tools {
    margin-left: 0;
    margin-right: 0;
  }

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

  .main-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 1.5rem;
    right: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--mobile-nav-bg);
    box-shadow: var(--shadow-soft);
    padding: 0.85rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 40;
  }

  .main-nav.open {
    display: flex;
  }

  .lang-switch button {
    min-width: 31px;
    padding: 0.52rem 0.42rem;
  }

  .dropdown-panel {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    margin-top: 0.6rem;
  }

  .nav-dropdown::after {
    display: none;
  }

  .hero {
    min-height: 78dvh;
  }
}

@media (max-width: 640px) {
  .topline-inner,
  .nav-inner,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: calc(100% - 1.6rem);
  }

  .topline-inner {
    min-height: 44px;
    font-size: 0.78rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.45rem 0;
  }

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

  .hero-inner::before {
    inset: 1.4rem -0.8rem 1.4rem -0.8rem;
    width: auto;
    transform: none;
    border-left-color: rgba(255, 180, 91, 0.32);
  }

  .hero-video-cta {
    width: 100%;
    max-width: 360px;
    justify-content: flex-start;
  }

  .hero-video-preview {
    left: 0;
    width: min(300px, 88vw);
    transform: translateY(8px) scale(0.98);
    transform-origin: bottom left;
  }

  .hero-video-preview::after {
    left: 28px;
    transform: rotate(45deg);
  }

  .hero-video-cta:hover .hero-video-preview,
  .hero-video-cta:focus-visible .hero-video-preview {
    transform: translateY(0) scale(1);
  }

  .media-grid,
  .doc-grid,
  .blog-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .catalog-main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-tools {
    gap: 0.34rem;
  }

  .theme-toggle {
    padding: 0.46rem 0.6rem;
  }

  .theme-toggle-text {
    display: none;
  }

  .strip-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-icon::after,
  .hero-kicker::after,
  .hero h1 {
    animation: none;
  }

  .btn::after {
    display: none;
  }
}

/* ── Sprint 5 — Responsive fixes ────────────────────────────────────────── */

/* MOB-01: Spec table mobile horizontal scroll */
@media (max-width: 640px) {
  .spec-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
  }
  .spec-table { min-width: 480px; }
}

@media (max-width: 900px) {
  .product-detail-main,
  .product-included-header {
    grid-template-columns: 1fr;
  }

  .product-media-panel {
    position: relative;
    top: auto;
  }

  .product-title-stack h1 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .product-highlight-list {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .product-detail-hero {
    padding-top: 2rem;
  }

  .product-spec-item {
    grid-template-columns: 1fr;
    gap: 0.32rem;
  }

  .product-category-cta {
    justify-self: start;
  }

  .included-product-rail {
    grid-auto-columns: minmax(230px, 82vw);
  }
}

/* MOB-02: Topline sosyal linkler küçük ekranda gizle */
@media (max-width: 480px) {
  .topline-inner > .topline-links:last-child { display: none; }
}

/* MOB-04: Hero H1 küçük cihaz font scale */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
    max-width: 100%;
    line-height: 1.18;
  }
  .page-hero h1 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
}

/* MOB-05: Sertifika + doc grid dar ekran */
@media (max-width: 768px) { .doc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .doc-grid { grid-template-columns: 1fr; } }

/* ── Sprint 6 — Code Quality fixes ────────────────────────────────────────── */

/* CODE-03: Dropdown panel indent correction */
.dropdown-panel a {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* UX-06 / CODE-01: Footer sosyal satır */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  min-height: 36px;
}

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(219, 122, 15, 0.06);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

/* === İlgili Yazılar Bölümü === */
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.related-post-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border-color: var(--accent-strong);
}
.related-post-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: .5rem;
  line-height: 1.4;
}
.related-post-excerpt {
  font-size: .875rem;
  color: var(--copy-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.related-post-cta {
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.related-posts-section .section-title { font-size: 1.5rem; }

/* ── Skip to main content (Erişilebilirlik) ─────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  background: var(--accent, #e63a2e);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius, 8px) var(--radius, 8px);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ── Contact Form ───────────────────────────────────────────── */
.contact-form-wrapper h2 { margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--heading-color);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius, 8px);
  background: var(--surface);
  color: var(--copy-color);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent, #e63a2e);
  box-shadow: 0 0 0 3px rgba(230,58,46,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-status {
  min-height: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem 0;
}
.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 480px) {
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; text-align: center; }
}
