:root {
  --color-ember-orange: #1E5AFF;
  --color-pale-peach: #E6F0FF;
  --color-midnight-charcoal: #0B1530;
  --color-canvas-white: #FFFFFF;
  --color-border-fog: #E4EAF4;
  --color-muted-ash: #6B7280;
  --color-divider-gray: #CBD5E1;
  --color-slate-50: #F8FAFC;
  --color-slate-900: #0B1530;
  --font-geist: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --text-caption: 12px;
  --leading-caption: 1.4;
  --text-body: 14px;
  --leading-body: 1.4;
  --text-body-lg: 16px;
  --leading-body-lg: 1.4;
  --text-subheading: 20px;
  --leading-subheading: 1.25;
  --text-heading-sm: 24px;
  --leading-heading-sm: 1.25;
  --text-heading: 32px;
  --leading-heading: 1.11;
  --text-heading-lg: 40px;
  --leading-heading-lg: 1.11;
  --text-display: 48px;
  --leading-display: 1.11;
  --text-display-lg: 60px;
  --leading-display-lg: 1;
  --spacing-8: 8px;
  --spacing-16: 16px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-64: 64px;
  --spacing-80: 72px;
  --spacing-112: 96px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 10px;
  --radius-full: 9999px;
  --shadow-subtle: 0 1px 3px rgba(11, 21, 48, 0.06), 0 1px 2px rgba(11, 21, 48, 0.04);
  --shadow-card: 0 1px 2px rgba(11, 21, 48, 0.04), 0 2px 8px rgba(11, 21, 48, 0.04);
  --shadow-card-hover: 0 4px 12px rgba(30, 90, 255, 0.1), 0 2px 4px rgba(11, 21, 48, 0.04);
}

html,
body {
  height: 100%;
}

body.heynds-body {
  background: var(--color-canvas-white);
  color: var(--color-midnight-charcoal);
  font-family: var(--font-geist);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.heynds-body .container {
  max-width: 1200px;
}

a {
  color: inherit;
}

.heynds-body a {
  text-decoration: none;
}

.heynds-body a:hover,
.heynds-body a:focus {
  color: var(--color-midnight-charcoal);
  text-decoration: none;
}

.heynds-accent {
  color: var(--color-ember-orange);
}

.heynds-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-full);
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
  color: var(--color-midnight-charcoal);
  background: rgba(255, 250, 250, 0.9);
}

.heynds-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ember-orange);
  font-weight: 600;
}

.heynds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
  user-select: none;
  white-space: nowrap;
}

.heynds-btn-sm {
  padding: 8px 14px;
  font-size: 14px;
}

.heynds-nav-actions .dropdown:hover > .dropdown-menu,
.heynds-nav-actions .dropdown.show > .dropdown-menu {
  display: block;
}

.heynds-nav-actions .dropdown-menu {
  left: auto;
  right: 0;
  min-width: 160px;
  max-width: 240px;
}

.heynds-nav .dropdown-menu.show {
  display: block;
}

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

.heynds-btn-primary {
  background: var(--color-ember-orange);
  color: var(--color-canvas-white);
  border-color: var(--color-ember-orange);
}

.heynds-nav-actions .heynds-btn-primary {
  background: var(--color-ember-orange);
  color: var(--color-canvas-white);
}

.heynds-btn-primary:hover,
.heynds-btn-primary:focus {
  background: #1849CC;
  border-color: #1849CC;
  color: var(--color-canvas-white);
  border-color: var(--color-ember-orange);
}

.heynds-btn-ghost {
  background: var(--color-canvas-white);
  color: var(--color-ember-orange);
  border-color: var(--color-ember-orange);
}

.heynds-btn-ghost:hover,
.heynds-btn-ghost:focus {
  background: var(--color-pale-peach);
  color: var(--color-ember-orange);
  border-color: var(--color-ember-orange);
}

.heynds-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 250, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-fog);
}

.heynds-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.heynds-header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.heynds-lang .heynds-btn {
  gap: 0;
}

.heynds-lang-mobile {
  display: none;
}

.heynds-lang-mobile .heynds-btn {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  gap: 0;
}

.heynds-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 140px;
}

.heynds-logo {
  height: 28px;
  width: auto;
  display: block;
}

.heynds-wordmark {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heynds-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-fog);
  background: var(--color-canvas-white);
  padding: 10px;
}

.heynds-burger span {
  display: block;
  height: 20px;
  background: var(--color-midnight-charcoal);
  border-radius: 2px;
  margin: 5px 2px;
  width: 4px;
}

.heynds-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: space-between;
}

.heynds-nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.heynds-nav-list > li {
  position: relative;
}

.heynds-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--color-midnight-charcoal);
  font-weight: 600;
}

.heynds-nav-list > li.active > a,
.heynds-nav-list > li > a:hover {
  background: rgba(30, 90, 255, 0.08);
  color: var(--color-midnight-charcoal);
}

.heynds-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 210px;
  max-width: 330px;
  border: 1px solid var(--color-border-fog);
  background: var(--color-canvas-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-subtle);
  padding: 10px;
  margin: 0;
  list-style: none;
  z-index: 1200;
}

.heynds-nav .dropdown-menu:empty {
  display: none !important;
}

.heynds-nav-list > li:hover > .dropdown-menu {
  display: block;
}

.heynds-nav .dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--color-midnight-charcoal);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.heynds-nav .dropdown-menu a:hover {
  background: rgba(30, 90, 255, 0.08);
}

.heynds-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.heynds-search {
  display: flex;
  align-items: center;
  background: var(--color-canvas-white);
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-full);
  padding: 4px 10px 4px 14px;
  min-width: 150px;
}

.heynds-search:focus,
.heynds-search:focus-within {
  border-color: rgba(30, 90, 255, 0.35);
}

.heynds-search-input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: var(--text-body);
}

.heynds-search-btn {
  border: 0;
  background: transparent;
  padding: 6px 8px;
  border-radius: var(--radius-full);
  color: var(--color-muted-ash);
}

.heynds-search-btn:hover {
  color: var(--color-midnight-charcoal);
  background: rgba(0, 0, 0, 0.03);
}

.heynds-user {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.heynds-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(30, 90, 255, 0.12), rgba(255, 250, 250, 0) 60%),
    linear-gradient(180deg, rgba(255, 250, 250, 1), rgba(255, 250, 250, 1));
  border-bottom: 1px solid var(--color-border-fog);
}

.heynds-hero-inner {
  position: relative;
  padding: 96px 0 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.heynds-hero-title {
  margin: 18px 0 14px;
  font-size: var(--text-display-lg);
  line-height: var(--leading-display-lg);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.heynds-hero-sub {
  font-size: var(--text-body-lg);
  line-height: var(--leading-body-lg);
  color: var(--color-muted-ash);
  max-width: 52ch;
}

.heynds-hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.heynds-hero-kpis .kpi {
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 250, 0.9);
  padding: 14px 16px;
}

.heynds-hero-kpis .kpi-num {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.heynds-hero-kpis .kpi-label {
  margin-top: 4px;
  color: var(--color-muted-ash);
  font-size: var(--text-caption);
}

.heynds-hero-card {
  border: 1px solid var(--color-border-fog);
  border-radius: 16px;
  background: rgba(255, 250, 250, 0.92);
  box-shadow: var(--shadow-subtle);
  padding: 28px;
}

.heynds-hero-card-title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.heynds-hero-card-desc {
  margin-top: 10px;
  color: var(--color-muted-ash);
}

.heynds-hero-card-grid {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.heynds-hero-card-grid .chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: var(--color-pale-peach);
  color: var(--color-ember-orange);
  font-weight: 600;
  font-size: var(--text-caption);
}

.heynds-hero-slider {
  background: #071d2f;
}

.heynds-hero-slider-track {
  position: relative;
  min-height: 680px;
}

.heynds-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.heynds-slide-item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.heynds-slide-media,
.heynds-slide-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.heynds-slide-media img {
  display: block;
  object-fit: cover;
}

.heynds-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 22, 0.82) 0%, rgba(4, 12, 22, 0.58) 42%, rgba(4, 12, 22, 0.18) 72%, rgba(4, 12, 22, 0.06) 100%),
    linear-gradient(180deg, rgba(30, 90, 255, 0.14) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.heynds-hero-slider .heynds-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 112px 0 96px;
  grid-template-columns: 1fr;
}

.heynds-hero-copy {
  max-width: 720px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(7, 22, 37, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.heynds-hero-slider .heynds-tag {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.heynds-hero-slider .heynds-hero-title,
.heynds-hero-slider .heynds-hero-sub {
  color: #fff;
}

.heynds-hero-slider .heynds-hero-sub {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
}

.heynds-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.heynds-hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  transition: transform 0.18s ease, background 0.18s ease;
}

.heynds-hero-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.heynds-section {
  padding: var(--spacing-80) 0;
}

.heynds-section-muted {
  background: rgba(229, 229, 229, 0.2);
  border-top: 1px solid var(--color-border-fog);
  border-bottom: 1px solid var(--color-border-fog);
}

.heynds-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}

.heynds-section-title {
  margin: 0;
  font-size: var(--text-heading);
  line-height: var(--leading-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heynds-section-desc {
  margin-top: 10px;
  color: var(--color-muted-ash);
  font-size: var(--text-body-lg);
}

.heynds-grid {
  display: grid;
  gap: 18px;
}

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

.heynds-card {
  display: block;
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-lg);
  background: var(--color-canvas-white);
  padding: 24px;
  transition: transform 0.14s ease, border-color 0.14s ease;
}

.heynds-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 90, 255, 0.35);
}

.heynds-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: var(--color-pale-peach);
  color: var(--color-ember-orange);
  font-weight: 700;
  font-size: var(--text-caption);
}

.heynds-card-title {
  margin-top: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.25;
}

.heynds-card-desc {
  margin-top: 10px;
  color: var(--color-muted-ash);
  font-size: var(--text-body);
}

.heynds-card-meta {
  margin-top: 14px;
  color: var(--color-muted-ash);
  font-size: var(--text-caption);
}

.heynds-card-soft {
  background: rgba(255, 224, 214, 0.22);
}

.heynds-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.heynds-feature-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.heynds-feature-list .feat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--color-midnight-charcoal);
}

.heynds-feature-list .feat i {
  margin-top: 2px;
  color: var(--color-ember-orange);
}

.heynds-page-hero {
  border-bottom: 1px solid var(--color-border-fog);
  background: radial-gradient(1200px 500px at 20% 0%, rgba(30, 90, 255, 0.12), rgba(255, 250, 250, 0) 60%);
  padding: 72px 0 48px;
}

.heynds-page-hero-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.heynds-page-title {
  margin: 14px 0 10px;
  font-size: 56px;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.heynds-page-sub {
  color: var(--color-muted-ash);
  font-size: var(--text-body-lg);
  max-width: 64ch;
}

.heynds-sort-descs {
  padding-top: 28px;
  display: grid;
  gap: 10px;
}

.heynds-sort-desc {
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--color-muted-ash);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.heynds-resource-search {
  display: flex;
  gap: 12px;
  align-items: center;
}

.heynds-resource-search input {
  height: 44px;
  width: min(420px, 72vw);
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-md);
  padding: 0 14px;
  background: var(--color-canvas-white);
  outline: 0;
}

.heynds-resource-search input:focus {
  border-color: rgba(30, 90, 255, 0.45);
}

.heynds-filters {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.heynds-filters .pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-fog);
  background: var(--color-canvas-white);
  font-weight: 600;
  color: var(--color-midnight-charcoal);
}

.heynds-filters .pill.active,
.heynds-filters .pill:hover {
  border-color: rgba(30, 90, 255, 0.45);
  background: rgba(30, 90, 255, 0.08);
}

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

.heynds-resource-card {
  display: block;
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-lg);
  background: var(--color-canvas-white);
  padding: 22px;
  transition: transform 0.14s ease, border-color 0.14s ease;
}

.heynds-resource-media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(229, 229, 229, 0.25);
  margin-bottom: 14px;
}

.heynds-resource-thumb {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
  background: transparent;
  display: block;
  margin: 0;
}

.heynds-card-tag-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 250, 250, 0.92);
  border: 1px solid var(--color-border-fog);
}

.heynds-resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 90, 255, 0.35);
}

.heynds-resource-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.heynds-resource-title {
  margin-top: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.25;
}

.heynds-resource-desc {
  margin-top: 10px;
  color: var(--color-muted-ash);
}

.heynds-resource-cta {
  margin-top: 16px;
  color: var(--color-ember-orange);
  font-weight: 700;
}

.heynds-footer {
  border-top: 1px solid var(--color-border-fog);
  padding: 56px 0 28px;
  background: var(--color-canvas-white);
}

.heynds-footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.6fr 1fr 1fr;
}

.heynds-footer-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.heynds-footer-desc {
  margin-top: 10px;
  color: var(--color-muted-ash);
}

.heynds-footer-meta {
  margin-top: 14px;
  color: var(--color-muted-ash);
  display: grid;
  gap: 6px;
}

.heynds-footer-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.heynds-footer-links {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.heynds-footer-links a {
  color: var(--color-muted-ash);
  font-weight: 600;
}

.heynds-footer-links a:hover {
  color: var(--color-midnight-charcoal);
}

.heynds-footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-fog);
  color: var(--color-muted-ash);
  font-size: var(--text-caption);
}

.heynds-body .pagination > li > a,
.heynds-body .pagination > li > span {
  border-color: var(--color-border-fog);
  color: var(--color-midnight-charcoal);
  border-radius: var(--radius-md);
  margin: 0 4px;
}

.heynds-body .pagination > .active > a,
.heynds-body .pagination > .active > span,
.heynds-body .pagination > .active > a:hover,
.heynds-body .pagination > .active > span:hover {
  background: var(--color-ember-orange);
  border-color: var(--color-ember-orange);
  color: var(--color-canvas-white);
}

.heynds-body .pagination > li > a:hover {
  background: rgba(30, 90, 255, 0.08);
  border-color: rgba(30, 90, 255, 0.35);
}

.heynds-body .pagination > li > .jumpto {
  display: inline-flex;
  align-items: stretch;
  margin-left: 8px;
  vertical-align: top;
}

.heynds-body .pagination .jumpto input {
  height: 40px;
  border: 1px solid var(--color-border-fog);
  background: var(--color-canvas-white);
  color: var(--color-midnight-charcoal);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.heynds-body .pagination .jumpto .page_number {
  width: 96px;
  padding: 0 14px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border-right: 0;
  outline: 0;
  box-shadow: none;
}

.heynds-body .pagination .jumpto .page_number::placeholder {
  color: var(--color-muted-ash);
}

.heynds-body .pagination .jumpto .page_number:focus {
  border-color: rgba(30, 90, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(30, 90, 255, 0.12);
  position: relative;
  z-index: 1;
}

.heynds-body .pagination .jumpto .submit {
  padding: 0 16px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(30, 90, 255, 0.08);
  color: var(--color-ember-orange);
  font-weight: 700;
  cursor: pointer;
}

.heynds-body .pagination .jumpto .submit:hover,
.heynds-body .pagination .jumpto .submit:focus {
  background: var(--color-ember-orange);
  border-color: var(--color-ember-orange);
  color: var(--color-canvas-white);
  outline: 0;
}

.heynds-body .cms-detail-box,
.heynds-body .article-box {
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-lg);
  background: var(--color-canvas-white);
  padding: 28px;
}

.heynds-body .detail-title,
.heynds-body .article-box h1,
.heynds-body .article-box h2,
.heynds-body .article-box h3 {
  letter-spacing: -0.02em;
}

.heynds-body .detail-meta,
.heynds-body .article-mt {
  color: var(--color-muted-ash);
}

.heynds-body .detail-content,
.heynds-body .article-main {
  margin-top: 18px;
}

.heynds-body .detail-content img,
.heynds-body .article-main img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.heynds-body .detail-nav {
  margin-top: 18px;
  color: var(--color-muted-ash);
  border-top: 1px solid var(--color-border-fog);
  padding-top: 14px;
  display: grid;
  gap: 8px;
}

.heynds-ai-product-hero {
  padding-top: 56px;
}

.heynds-ai-crumb {
  color: var(--color-muted-ash);
  font-size: var(--text-caption);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.heynds-ai-crumb .sep {
  color: rgba(130, 126, 126, 0.85);
}

.heynds-ai-title {
  font-size: 44px;
  line-height: 1.08;
}

.heynds-ai-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.heynds-ai-summary {
  margin-top: 16px;
  color: var(--color-midnight-charcoal);
}

.heynds-ai-hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.heynds-ai-detail-gallery {
  display: grid;
  gap: 0px;
}

.heynds-ai-detail-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 250, 250, 0.9);
}

.heynds-ai-detail-thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.heynds-ai-hero-media {
  border: 1px solid var(--color-border-fog);
}

.heynds-ai-video-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(128, 132, 142, 0.72);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.24);
}

.heynds-ai-video-trigger i {
  font-size: 60px;
  line-height: 1;
}

.heynds-ai-video-trigger:hover {
  background: rgba(30, 90, 255, 0.92);
}

.heynds-ai-hero-thumb {
  height: 360px;
}

.heynds-ai-hero-fallback {
  height: 360px;
  background: radial-gradient(900px 320px at 20% 0%, rgba(30, 90, 255, 0.16), rgba(255, 250, 250, 0) 60%),
    linear-gradient(180deg, rgba(229, 229, 229, 0.2), rgba(229, 229, 229, 0.05));
}

.heynds-ai-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.heynds-video-open {
  overflow: hidden;
}

.heynds-ai-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.heynds-ai-video-modal.is-active {
  display: flex;
}

.heynds-ai-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(2px);
}

.heynds-ai-video-dialog {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  overflow: hidden;
  background: #0f172a;
  box-shadow: none;
}

.heynds-ai-video-player {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: #000;
}

.heynds-ai-video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
}

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

.heynds-ai-block {
  margin-top: 18px;
}

.heynds-ai-h2 {
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1.25;
}

.heynds-ai-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--color-midnight-charcoal);
}

.heynds-ai-list li {
  margin: 8px 0;
  color: var(--color-midnight-charcoal);
}

.heynds-ai-rich {
  margin-top: 14px;
}

.heynds-ai-rich p,
.heynds-ai-rich li,
.heynds-ai-rich blockquote {
  color: var(--color-midnight-charcoal);
}

.heynds-ai-spec {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.heynds-ai-spec th,
.heynds-ai-spec td {
  border-bottom: 1px solid var(--color-border-fog);
  padding: 10px 10px;
  text-align: left;
  vertical-align: top;
}

.heynds-ai-spec th {
  width: 44%;
  color: var(--color-muted-ash);
  font-weight: 700;
}

.heynds-ai-faq {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.heynds-ai-faq-item {
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  background: rgba(255, 250, 250, 0.7);
}

.heynds-ai-faq-q {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.heynds-ai-faq-a {
  margin-top: 8px;
  color: var(--color-muted-ash);
}

.heynds-ai-bottom-cta {
  padding: 56px 0;
}

.heynds-ai-bottom-cta-card {
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(30, 90, 255, 0.1), rgba(255, 250, 250, 0.92));
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.heynds-ai-bottom-cta-title {
  margin-top: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 26px;
  line-height: 1.12;
}

.heynds-ai-bottom-cta-desc {
  margin-top: 10px;
  color: var(--color-muted-ash);
  max-width: 72ch;
}

.heynds-ai-bottom-cta-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.heynds-ai-bottom-cta-btn {
  padding: 12px 22px;
  border-radius: 14px;
  box-shadow: rgba(30, 90, 255, 0.2) 0px 3px 15px;
}

.heynds-home-whatsapp {
  position: fixed;
  right: 60px;
  bottom: 80px;
  z-index: 1100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4e83fd;
  color: #fff;
}

.heynds-home-whatsapp a:hover {
  color: #fff;
}

.heynds-home-whatsapp .fa {
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 992px) {
  .heynds-ai-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .heynds-ai-grid-2 {
    grid-template-columns: 1fr;
  }

  .heynds-ai-bottom-cta-card {
    flex-direction: column;
    align-items: stretch;
  }

  .heynds-ai-bottom-cta-actions {
    width: 100%;
  }

  .heynds-ai-bottom-cta-btn {
    width: 100%;
  }

  .heynds-home-whatsapp {
    right: 16px;
  }

  .heynds-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .heynds-lang {
    display: none;
  }

  .heynds-lang-mobile {
    display: inline-flex;
  }

  .heynds-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 250, 0.98);
    border-bottom: 1px solid var(--color-border-fog);
    padding: 16px 16px 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  body.heynds-nav-open .heynds-nav {
    display: flex;
  }

  .heynds-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .heynds-nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .heynds-search {
    min-width: 0;
    width: 100%;
  }

  .heynds-nav .dropdown-menu {
    position: static;
    display: block;
    padding: 0;
    border: 0;
    box-shadow: none;
    min-width: 0;
  }

  .heynds-nav .dropdown-menu a {
    padding-left: 18px;
  }

  .heynds-hero-inner {
    grid-template-columns: 1fr;
    padding: 72px 0 56px;
  }

  .heynds-hero-slider-track,
  .heynds-hero-slider .heynds-hero-inner {
    min-height: 560px;
  }

  .heynds-hero-slider .heynds-hero-inner {
    padding: 80px 0 76px;
  }

  .heynds-slide-overlay {
    background:
      linear-gradient(180deg, rgba(4, 12, 22, 0.66) 0%, rgba(4, 12, 22, 0.42) 46%, rgba(4, 12, 22, 0.64) 100%),
      linear-gradient(180deg, rgba(30, 90, 255, 0.16) 0%, rgba(0, 0, 0, 0.12) 100%);
  }

  .heynds-hero-copy {
    max-width: 100%;
    padding: 28px 24px;
  }

  .heynds-hero-title {
    font-size: 46px;
  }

  .heynds-grid-3,
  .heynds-resource-grid {
    grid-template-columns: 1fr;
  }

  .heynds-body .pagination > li > .jumpto {
    margin: 8px 4px 0;
  }

  .heynds-body .pagination .jumpto .page_number {
    width: 82px;
  }

  .heynds-two-col {
    grid-template-columns: 1fr;
  }

  .heynds-page-title {
    font-size: 44px;
  }

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

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

  .b2b-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.b2b-hero-stats {
  background: var(--color-slate-50);
  border-bottom: 1px solid var(--color-border-fog);
  padding: 22px 0;
}

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

.b2b-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: var(--color-canvas-white);
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.b2b-stat-item i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-pale-peach);
  color: var(--color-ember-orange);
  border-radius: var(--radius-md);
  font-size: 18px;
}

.b2b-stat-title {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-midnight-charcoal);
}

.b2b-stat-desc {
  margin-top: 3px;
  font-size: var(--text-caption);
  color: var(--color-muted-ash);
}

.heynds-body .heynds-section {
  padding: var(--spacing-64) 0;
}

.heynds-body .heynds-section-head {
  margin-bottom: 24px;
}

.heynds-body .heynds-card,
.heynds-body .heynds-resource-card {
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-border-fog);
  background: var(--color-canvas-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.heynds-body .heynds-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 90, 255, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.heynds-body .heynds-resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 90, 255, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.b2b-card-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border-fog);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.b2b-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: var(--color-ember-orange);
  color: var(--color-canvas-white);
  font-weight: 700;
  font-size: var(--text-caption);
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: background 0.14s ease, transform 0.12s ease;
}

.b2b-quote-btn:hover {
  background: #1849CC;
  transform: translateY(-1px);
}

.b2b-footer-logistics {
  margin-top: 28px;
  padding: 22px 0 8px;
  border-top: 1px solid var(--color-border-fog);
}

.b2b-footer-logistics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.b2b-footer-block-title {
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-midnight-charcoal);
  font-size: 14px;
}

.b2b-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.b2b-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-md);
  background: var(--color-canvas-white);
  color: var(--color-midnight-charcoal);
  font-weight: 700;
  font-size: var(--text-caption);
  box-shadow: var(--shadow-subtle);
}

.b2b-logo-item i {
  color: var(--color-ember-orange);
}

.heynds-body .heynds-page-hero {
  padding-top: 56px;
  padding-bottom: 36px;
}

.heynds-body .heynds-sort-descs {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--color-slate-50);
  border: 1px solid var(--color-border-fog);
  border-radius: var(--radius-lg);
}

.heynds-body .heynds-sort-desc + .heynds-sort-desc {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--color-border-fog);
}
