:root {
  --bg: #07090d;
  --bg-soft: #0d1017;
  --panel: #11141c;
  --text: #e8eaee;
  --muted: #a9aeb8;
  --gold: #d6ae44;
  --gold-soft: #f3d77b;
  --line: #252a35;
  --header-offset: 160px;
}

html {
  scroll-padding-top: calc(var(--header-offset) + 18px);
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-ready {
    cursor: none;
  }

  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready .btn,
  body.cursor-ready [role="button"],
  body.cursor-ready .navbar-toggler,
  body.cursor-ready .dropdown-item,
  body.cursor-ready input[type="submit"],
  body.cursor-ready input[type="button"],
  body.cursor-ready select,
  body.cursor-ready summary {
    cursor: none;
  }

  body.cursor-ready input,
  body.cursor-ready textarea,
  body.cursor-ready [contenteditable="true"] {
    cursor: text;
  }

  .custom-cursor,
  .custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(var(--cursor-scale, 1));
    will-change: top, left, transform, opacity;
    z-index: 6000;
  }

  .custom-cursor {
    --cursor-scale: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: 0 0 16px rgba(214, 174, 68, 0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .custom-cursor-ring {
    --cursor-scale: 1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(214, 174, 68, 0.58);
    background: rgba(214, 174, 68, 0.08);
    transition: opacity 0.2s ease, transform 0.28s ease, border-color 0.22s ease, background-color 0.22s ease;
  }

  .custom-cursor.is-visible,
  .custom-cursor-ring.is-visible {
    opacity: 1;
  }

  .custom-cursor.is-active {
    --cursor-scale: 1.45;
  }

  .custom-cursor-ring.is-active {
    --cursor-scale: 1.55;
    border-color: rgba(243, 215, 123, 0.92);
    background: rgba(214, 174, 68, 0.16);
  }
}

/* Global page container width */
.container-lg {
  max-width: 1540px !important;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .hero-content,
body.is-loading main,
body.is-loading footer {
  opacity: 0;
  transform: translateY(22px) scale(0.992);
}

body.page-ready .hero-content,
body.page-ready main,
body.page-ready footer {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 35%, rgba(36, 111, 139, 0.2), transparent 38%),
    linear-gradient(130deg, #06080d 0%, #0b111b 55%, #07090f 100%);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.site-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, #04060a 0%, #080b11 100%);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.loader-curtain-left {
  left: 0;
  border-right: 1px solid rgba(214, 174, 68, 0.2);
}

.loader-curtain-right {
  right: 0;
  border-left: 1px solid rgba(214, 174, 68, 0.2);
}

.site-loader.hide .loader-curtain-left {
  transform: translateX(-102%);
}

.site-loader.hide .loader-curtain-right {
  transform: translateX(102%);
}

.loader-core {
  position: relative;
  z-index: 1;
  width: min(90vw, 480px);
  text-align: center;
  padding: 34px 24px;
  border: 1px solid rgba(214, 174, 68, 0.24);
  background: rgba(10, 13, 19, 0.86);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.65s ease, opacity 0.65s ease;
}

.site-loader.hide .loader-core {
  transform: translateY(-30px) scale(0.98);
  opacity: 0;
}

.loader-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(214, 174, 68, 0.24));
}

.loader-title {
  margin: 0;
  font-family: "Cinzel", serif;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  font-size: 1.25rem;
}

.loader-subtitle {
  margin: 8px 0 20px;
  color: #c6cedb;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.loader-track {
  position: relative;
  width: min(72vw, 340px);
  height: 5px;
  margin: 0 auto;
  background: rgba(175, 184, 199, 0.2);
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, #b78d2f 0%, #f0cb68 70%, #fff2c8 100%);
  box-shadow: 0 0 18px rgba(214, 174, 68, 0.55);
  transition: width 0.25s ease;
}

.section-space {
  padding: 90px 0;
  scroll-margin-top: calc(var(--header-offset) + 32px);
}

main > .hero-section + section.section-space {
  padding-top: clamp(42px, 5vw, 64px);
}

section,
:target {
  scroll-margin-top: calc(var(--header-offset) + 32px);
}

.details-empty-section {
  padding-top: clamp(44px, 5vw, 68px);
}

.details-empty-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(210, 175, 84, 0.35);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(11, 18, 33, 0.92), rgba(7, 12, 24, 0.96));
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
}

.details-empty-card .section-title {
  margin-bottom: 14px;
}

.details-empty-copy {
  max-width: 680px;
  margin: 0 auto 22px;
  color: #b9c3d6;
  line-height: 1.75;
}

.section-kicker {
  color: var(--gold-soft);
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.trusted-clients-section {
  background: #000;
  border-top: 1px solid rgba(98, 112, 136, 0.18);
  border-bottom: 1px solid rgba(98, 112, 136, 0.18);
  padding: clamp(46px, 6vw, 68px) 0;
}

.trusted-clients-kicker {
    margin: 0 0 clamp(28px, 4vw, 38px);
    text-align: center;
    color: #d6ae44;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.trusted-clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.trusted-clients-track {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  width: max-content;
  animation: trustedClientsScroll 30s linear infinite;
}

.trusted-clients-marquee:hover .trusted-clients-track {
  animation-play-state: paused;
}

.trusted-logo-card {
  min-width: clamp(156px, 16vw, 212px);
  padding: clamp(16px, 2vw, 22px) clamp(14px, 1.5vw, 20px);
  text-align: center;
  border: 1px solid rgba(104, 116, 139, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(234, 238, 245, 0.84) 100%);
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.trusted-logo-card:hover {
  opacity: 1;
  filter: grayscale(0.2);
  transform: translateY(-2px);
}

.trusted-logo-name {
  display: block;
  color: #6f747e;
  font-family: "Cinzel", serif;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.trusted-logo-sub {
  display: block;
  margin-top: 4px;
  color: #9298a4;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trusted-logo-img {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 55px;
    margin: 0 auto;
    object-fit: contain;
}

@keyframes trustedClientsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .trusted-clients-section {
    padding: 38px 0;
  }

  .trusted-clients-kicker {
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    margin-bottom: 24px;
  }

  .trusted-logo-card {
    min-width: 148px;
    padding: 14px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-clients-track {
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }
}

.foundry-kicker {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 16px;
  color: #10141d;
  font-weight: 800;
  letter-spacing: 0.16em;
  background: linear-gradient(90deg, rgba(214, 174, 68, 0.98) 0%, rgba(214, 174, 68, 0.82) 100%);
}

.foundry-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 247, 220, 0.22), transparent 42%),
    linear-gradient(105deg, rgba(214, 174, 68, 0.98) 0%, rgba(195, 149, 44, 0.96) 52%, rgba(157, 115, 28, 0.95) 100%);
}

.foundry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 8, 5, 0.02) 0%, rgba(10, 8, 5, 0.3) 100%);
  pointer-events: none;
}

.foundry-section > .container-lg {
  position: relative;
  z-index: 1;
}

.foundry-section .foundry-kicker {
  background: rgba(12, 9, 5, 0.82);
  color: #f5dd8b;
  border: 1px solid rgba(255, 224, 140, 0.55);
}

.foundry-section .section-title {
  color: #d6ae44;
  font-weight: 800;
}

.foundry-section .feature-card {
  border-color: rgba(255, 236, 184, 0.35);
  background: rgba(16, 12, 7, 0.74);
}

.foundry-section .feature-copy h4 {
  color: #f7e9bf;
  font-weight: 800;
}

.foundry-section .feature-copy p {
  color: rgba(251, 242, 220, 0.95);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .foundry-section {
    background:
      radial-gradient(circle at 88% 14%, rgba(255, 247, 220, 0.18), transparent 40%),
      linear-gradient(105deg, rgba(214, 174, 68, 0.98) 0%, rgba(195, 149, 44, 0.95) 52%, rgba(157, 115, 28, 0.93) 100%);
  }
}

@media (max-width: 767.98px) {
  .foundry-section .section-title {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .foundry-section .feature-copy {
    padding: 18px 16px;
  }

  .foundry-section .feature-copy p {
    font-size: 0.96rem;
  }
}

.section-title,
.hero-title,
.cta-title {
  font-family: "Cinzel", serif;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 18px;
}

.section-text,
.catalog-intro {
  color: var(--muted);
  line-height: 1.7;
}

.bg-soft {
  background: var(--bg-soft);
}

.about-hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-height: 420px;
}

.about-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.about-hero-card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  background: rgba(5, 8, 14, 0.82);
  border: 1px solid rgba(214, 174, 68, 0.18);
}

.about-hero-card-copy .banner-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.about-hero-card-copy h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.about-stats-grid {
  display: grid;
  gap: 18px;
}

.about-stat-card {
  padding: 26px 24px;
  background: rgba(8, 12, 18, 0.92);
  border: 1px solid rgba(214, 174, 68, 0.12);
}

.about-stat-card h3 {
  margin: 0 0 10px;
  font-size: 2.6rem;
  color: var(--gold);
}

.about-stat-card p {
  margin: 0;
  color: #c8cfda;
  line-height: 1.75;
}

.about-value-card,
.about-panel,
.feature-card,
.timeline-card,
.team-card,
.contact-cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 9, 14, 0.88);
}

.about-value-card {
  padding: 28px 24px;
  display: grid;
  gap: 16px;
}

.about-value-card i {
  font-size: 1.9rem;
  color: var(--gold);
}

.about-value-card h4 {
  margin: 0;
  font-size: 1.18rem;
  color: #fff;
}

.about-value-card p {
  margin: 0;
  color: #b8bfca;
  line-height: 1.75;
}

#core-values {
  position: relative;
  overflow: hidden;
}

#core-values::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(36vw, 820px);
  background: linear-gradient(90deg, rgba(184, 141, 47, 0.88) 0%, rgba(214, 174, 68, 0.8) 56%, rgba(214, 174, 68, 0) 100%);
  transform: translateX(-110%);
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

body.page-ready #core-values::before {
  transform: translateX(0);
}

#core-values > .container-lg {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  #core-values::before {
    width: min(48vw, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #core-values::before {
    transition: none;
    transform: translateX(0);
  }
}

.about-panel {
  padding: 32px 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(214, 174, 68, 0.2), 0 0 30px rgba(214, 174, 68, 0.08);
  border-color: rgba(214, 174, 68, 0.35);
}

.about-panel-dark {
  background: rgba(3, 5, 10, 0.96);
}

.about-panel h3 {
  margin-top: 0;
  font-size: 1.8rem;
  transition: color 0.35s ease;
}

.about-panel:hover h3 {
  color: var(--gold-soft);
}

.about-panel p {
  margin: 18px 0 0;
  color: #c5cada;
  line-height: 1.75;
  transition: color 0.35s ease;
}

.about-panel:hover p {
  color: #d8dfe8;
}

.feature-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.feature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.feature-copy {
  padding: 22px 20px;
}

.feature-copy h4 {
  margin-bottom: 12px;
}

.feature-copy p {
  margin: 0;
  color: #b8bfca;
  line-height: 1.7;
}

.timeline-section {
  position: relative;
}

.chronicles-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 174, 68, 0.13), transparent 46%),
    linear-gradient(180deg, #121318 0%, #0f1116 52%, #101215 100%);
}

.chronicles-section::before,
.chronicles-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(15vw, 240px);
  pointer-events: none;
  z-index: 0;
}

.chronicles-section::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}

.chronicles-section::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}

.chronicles-section .container-lg {
  position: relative;
  z-index: 1;
}

.chronicles-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 24px;
}

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

.chronicles-slider-prev,
.chronicles-slider-next {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(214, 174, 68, 0.42);
  background: rgba(11, 15, 23, 0.86);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.24s ease;
}

.chronicles-slider-prev:hover,
.chronicles-slider-next:hover {
  border-color: var(--gold);
  background: rgba(214, 174, 68, 0.14);
}

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

.chronicles-slider.slick-initialized {
  display: block;
  margin-left: -8px;
  margin-right: -8px;
}

.chronicles-slider .slick-list {
  overflow: visible;
}

.chronicles-slider .slick-track {
  display: flex;
}

.chronicles-slider .slick-slide {
  height: auto;
  padding: 0 8px;
}

.chronicles-slider .slick-slide > div {
  height: 100%;
}

.chronicle-slide {
  height: 100%;
}

.chronicle-card {
  position: relative;
  min-height: 500px;
  padding: clamp(24px, 3vw, 44px) clamp(18px, 2.4vw, 40px) clamp(22px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(214, 174, 68, 0.22);
  background: linear-gradient(170deg, rgba(24, 26, 33, 0.95), rgba(17, 19, 24, 0.98));
  opacity: 0.56;
  transition: transform 0.34s ease, opacity 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.chronicle-year {
  margin: 0 0 20px;
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 700;
  line-height: 0.92;
  color: rgba(214, 174, 68, 0.24);
  letter-spacing: 0.01em;
}

.chronicle-card h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.55rem, 2.45vw, 3rem);
  line-height: 1.12;
  color: var(--gold);
  text-transform: uppercase;
}

.chronicle-card p {
  margin: 20px 0 0;
  max-width: 36ch;
  color: #a9afb7;
  font-size: 1.03rem;
  line-height: 1.58;
}

.chronicle-phase {
  margin-top: auto;
  padding-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.chronicle-phase span {
  width: 56px;
  height: 1px;
  background: rgba(214, 174, 68, 0.82);
}

.chronicle-phase small {
  color: rgba(214, 174, 68, 0.86);
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  font-weight: 600;
}

.chronicle-index {
  position: absolute;
  right: clamp(-4px, 1.2vw, 12px);
  bottom: -12px;
  font-family: "Cinzel", serif;
  font-size: clamp(3.8rem, 6.4vw, 7.2rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.chronicles-divider {
  margin-top: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 174, 68, 0) 0%, rgba(214, 174, 68, 0.26) 50%, rgba(214, 174, 68, 0) 100%);
}

.chronicles-slider:not(.slick-initialized) .chronicle-slide:nth-child(2) .chronicle-card {
  opacity: 1;
  transform: none;
  border-color: rgba(214, 174, 68, 0.6);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  background:
    linear-gradient(180deg, rgba(214, 174, 68, 0.08) 0%, rgba(214, 174, 68, 0) 24%),
    linear-gradient(165deg, rgba(15, 18, 25, 0.98), rgba(12, 14, 19, 0.98));
}

.chronicles-slider:not(.slick-initialized) .chronicle-slide:nth-child(2) .chronicle-year {
  color: rgba(214, 174, 68, 0.48);
}

.chronicles-slider:not(.slick-initialized) .chronicle-slide:nth-child(2) h3 {
  color: #f3f3f2;
}

.chronicles-slider:not(.slick-initialized) .chronicle-slide:nth-child(2) p {
  color: #b9b4aa;
}

.chronicles-slider:not(.slick-initialized) .chronicle-slide:nth-child(2) .chronicle-index {
  color: rgba(255, 255, 255, 0.1);
}

.chronicles-slider.slick-initialized .chronicle-card {
  opacity: 0.56;
  transform: translateY(8px) scale(0.985);
}

.chronicles-slider.slick-initialized .slick-center .chronicle-card,
.chronicles-slider.slick-initialized .slick-current .chronicle-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(214, 174, 68, 0.6);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  background:
    linear-gradient(180deg, rgba(214, 174, 68, 0.08) 0%, rgba(214, 174, 68, 0) 24%),
    linear-gradient(165deg, rgba(15, 18, 25, 0.98), rgba(12, 14, 19, 0.98));
}

.chronicles-slider.slick-initialized .slick-center .chronicle-year,
.chronicles-slider.slick-initialized .slick-current .chronicle-year {
  color: rgba(214, 174, 68, 0.48);
}

.chronicles-slider.slick-initialized .slick-center h3,
.chronicles-slider.slick-initialized .slick-current h3 {
  color: #f3f3f2;
}

.chronicles-slider.slick-initialized .slick-center p,
.chronicles-slider.slick-initialized .slick-current p {
  color: #b9b4aa;
}

.chronicles-slider.slick-initialized .slick-center .chronicle-index,
.chronicles-slider.slick-initialized .slick-current .chronicle-index {
  color: rgba(255, 255, 255, 0.1);
}

.chronicles-slider .slick-dots {
  display: none !important;
}

.journey-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 12%, rgba(214, 174, 68, 0.12), transparent 42%),
    linear-gradient(180deg, #0a0d12 0%, #090c12 100%);
}

.journey-section::before,
.journey-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  opacity: 0.34;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(214, 174, 68, 0.72) 1px, transparent 1.8px);
  background-size: 6px 14px;
}

.journey-section::before {
  left: 0;
}

.journey-section::after {
  right: 0;
}

.journey-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 24px;
}

.journey-intro {
  max-width: 680px;
  margin: 10px 0 0;
}

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

.journey-slider-prev,
.journey-slider-next {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(214, 174, 68, 0.42);
  background: rgba(11, 15, 23, 0.86);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.24s ease;
}

.journey-slider-prev:hover,
.journey-slider-next:hover {
  border-color: var(--gold);
  background: rgba(214, 174, 68, 0.14);
}

.journey-slider {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.journey-slider.slick-initialized {
  display: block;
  margin-left: -8px;
  margin-right: -8px;
}

.journey-slider .slick-list {
  overflow: visible;
}

.journey-slider .slick-track {
  display: flex;
}

.journey-slider .slick-slide {
  height: auto;
  padding: 0 8px;
}

.journey-slider .slick-slide > div {
  height: 100%;
}

.journey-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 440px;
  padding: clamp(20px, 2.8vw, 36px);
  border: 1px solid rgba(214, 174, 68, 0.22);
  background:
    linear-gradient(180deg, rgba(214, 174, 68, 0.07) 0%, rgba(214, 174, 68, 0) 26%),
    linear-gradient(165deg, rgba(20, 24, 32, 0.96), rgba(12, 15, 23, 0.96));
  transition: transform 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease, opacity 0.38s ease;
}

.journey-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(214, 174, 68, 0) 0%, rgba(214, 174, 68, 0.7) 50%, rgba(214, 174, 68, 0) 100%);
  opacity: 0.38;
}

.journey-card::after {
  content: attr(data-phase);
  position: absolute;
  right: 14px;
  bottom: -10px;
  font-family: "Cinzel", serif;
  font-size: clamp(3.2rem, 8vw, 5.4rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.journey-year {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  color: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

.journey-card h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.36rem, 2.1vw, 2rem);
  color: #f5e8c5;
  text-transform: uppercase;
  line-height: 1.15;
}

.journey-card p {
  margin: 16px 0 0;
  color: #c7cdd7;
  line-height: 1.62;
  font-size: 1.02rem;
  max-width: 34ch;
}

.journey-phase {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.journey-phase span {
  width: 44px;
  height: 1px;
  background: rgba(214, 174, 68, 0.8);
}

.journey-phase small {
  color: rgba(214, 174, 68, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 600;
}

.journey-slider.slick-initialized .journey-card {
  opacity: 0.56;
  transform: translateY(10px) scale(0.98);
}

.journey-slider.slick-initialized .slick-current .journey-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(214, 174, 68, 0.56);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

.journey-slider.slick-initialized .slick-current .journey-year {
  color: rgba(255, 255, 255, 0.06);
}

.journey-slider .slick-dots {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .journey-slider:not(.slick-initialized) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-card {
    min-height: 410px;
  }

  .chronicles-slider:not(.slick-initialized) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .chronicle-card {
    min-height: 430px;
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .journey-head {
    flex-direction: column;
    gap: 14px;
  }

  .journey-nav {
    align-self: flex-end;
  }

  .chronicles-head {
    flex-direction: column;
    gap: 14px;
  }

  .chronicles-nav {
    align-self: flex-end;
  }

  .chronicles-slider:not(.slick-initialized) {
    grid-template-columns: 1fr;
  }

  .chronicle-card {
    min-height: 0;
  }

  .chronicle-card h3 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .chronicle-card p {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .journey-slider:not(.slick-initialized) {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 360px;
    padding: 20px 18px;
  }

  .journey-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 14px;
  }

  .journey-slider-prev,
  .journey-slider-next {
    display: none !important;
  }

  .chronicle-card {
    min-height: 360px;
    padding: 20px 18px;
  }

  .chronicles-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 14px;
  }

  .chronicles-slider-prev,
  .chronicles-slider-next {
    display: none !important;
  }
}

.team-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(46%, 940px);
  background: linear-gradient(
    270deg,
    rgba(214, 174, 68, 0.72) 0%,
    rgba(214, 174, 68, 0.42) 34%,
    rgba(214, 174, 68, 0.16) 60%,
    rgba(214, 174, 68, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.team-section .container-lg {
  position: relative;
  z-index: 1;
}

.team-section .team-card {
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(214, 174, 68, 0.22), rgba(15, 22, 33, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-meta {
  padding: 18px 16px 20px;
  background: rgba(6, 10, 16, 0.96);
  border-top: 1px solid rgba(214, 174, 68, 0.22);
}

.team-card h4 {
  margin: 0 0 6px;
}

.team-card p {
  margin: 0;
  color: #b8bfca;
}

.contact-cta-section {
  padding: 90px 0;
}

.contact-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 30px;
  min-height: 240px;
}

.contact-cta-panel p,
.contact-cta-panel h2 {
  margin: 0;
}

.contact-cta-actions .btn {
  min-width: 220px;
}

@media (max-width: 992px) {
  .team-section::before {
    width: 72%;
    opacity: 0.6;
  }

  .about-page .hero-section {
    background-attachment: scroll;
    min-height: auto;
  }

  .about-page .hero-content {
    min-height: 0;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .about-hero-text-panel {
    max-width: 100%;
    padding: 24px 22px;
  }

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

  .contact-cta-panel {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .team-photo {
    height: 250px;
  }

  .team-meta {
    padding: 16px 14px 18px;
  }

  .about-page .hero-section {
    background-position: center;
    background-attachment: scroll;
    min-height: auto;
  }

  .about-page .hero-content {
    min-height: 0;
    padding: 28px 0;
  }

  .about-hero-banner img {
    height: clamp(230px, 44vw, 320px);
  }

  .about-hero-text-panel {
    padding: 22px 18px;
  }

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

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

@media (max-width: 576px) {
  .about-page .hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: auto;
  }

  .about-page .hero-content {
    min-height: 0;
    padding: 18px 0;
  }

  .about-hero-banner img {
    height: 220px;
  }

  .about-hero-banner-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
  }

  .about-hero-banner-overlay p {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .about-hero-text-panel {
    padding: 18px 14px;
  }

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

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .about-panel,
  .feature-card,
  .timeline-card,
  .team-card,
  .contact-cta-panel {
    padding: 22px;
  }

  .team-section .team-card {
    padding: 0;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5000;
  border-bottom: 1px solid rgba(214, 174, 68, 0.16);
  background: linear-gradient(180deg, rgba(6, 9, 13, 0.95), rgba(7, 10, 15, 0.82));
  backdrop-filter: blur(12px);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  isolation: isolate;
  transform: translateZ(0);
}

.site-header.scrolled {
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.42);
  border-bottom-color: rgba(214, 174, 68, 0.3);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(4, 6, 10, 0.96));
  backdrop-filter: blur(16px);
}

@media (min-width: 992px) {
  .fortune-nav .container-lg {
    display: flex;
    align-items: center;
  }

  .fortune-nav .navbar-collapse {
    position: static !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-basis: auto;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .navbar-nav {
    width: auto;
    margin-top: 0;
  }

  .nav-cta {
    margin-top: 0;
  }
}

.top-contact-bar {
  padding: 8px 0;
  border-bottom: 1px solid rgba(214, 174, 68, 0.2);
  background:
    linear-gradient(90deg, rgba(214, 174, 68, 0.18), rgba(214, 174, 68, 0.04) 35%, rgba(14, 35, 51, 0.38) 100%);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(214, 174, 68, 0.28);
  background: rgba(8, 12, 19, 0.55);
  color: #e6ebf2;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.topbar-item i {
  color: var(--gold-soft);
}

.topbar-item a {
  color: #eff3f9;
  text-decoration: none;
}

.topbar-brand {
  font-weight: 700;
  color: #fff3ca;
}

.fortune-nav {
  padding: 12px 0;
  transition: padding 0.3s ease;
}

.fortune-nav.scrolled {
  padding: 9px 0;
}

.brand-logo {
  width: 200px;
  height: 70px;
  object-fit: contain;
}

.brand-name,
.footer-brand {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.07em;
}

.navbar-nav {
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(214, 174, 68, 0.28);
  background: linear-gradient(120deg, rgba(12, 18, 27, 0.82), rgba(12, 27, 38, 0.5));
}

.navbar-nav .nav-link {
  color: #d8dde7;
  margin: 0;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #0f1114;
  border-color: rgba(214, 174, 68, 0.65);
  background: linear-gradient(180deg, #f3d77b 0%, #c89d37 100%);
  box-shadow: 0 6px 18px rgba(214, 174, 68, 0.3);
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 8px;
}

.fortune-nav .dropdown-menu {
  border-radius: 0;
  border: 1px solid rgba(214, 174, 68, 0.32);
  background: rgba(8, 12, 18, 0.98);
  min-width: 260px;
  padding: 8px;
  margin-top: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
}

.fortune-nav .dropdown-item {
  color: #d5dbe5;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  padding: 10px 12px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.fortune-nav .dropdown-item:hover,
.fortune-nav .dropdown-item:focus {
  color: var(--gold-soft);
  background: rgba(214, 174, 68, 0.08);
  border-color: rgba(214, 174, 68, 0.26);
}

@media (max-width: 1279.98px) {
  .brand-logo {
    width: 108px;
    height: 64px;
  }

  .navbar-nav .nav-link {
    padding: 10px 12px;
    letter-spacing: 0.08em;
  }

  .nav-cta {
    padding: 12px 14px;
  }
}

.btn {
  border-radius: 0;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 14px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

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

.btn-gold {
  background: var(--gold);
  color: #121212;
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: #f0cb68;
  border-color: #f0cb68;
  color: #0f1013;
  box-shadow: 0 6px 22px rgba(214, 174, 68, 0.28);
}

.btn-outline-custom {
  border: 1px solid #3a3f49;
  color: #e1e6f0;
  background: transparent;
}

.btn-outline-custom:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  box-shadow: 0 6px 22px rgba(214, 174, 68, 0.18);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-offset);
  background:
    radial-gradient(circle at 74% 35%, rgba(21, 112, 140, 0.28), transparent 35%),
    linear-gradient(100deg, #06090d 25%, #0a121e 60%, #08090f 90%);
  isolation: auto;
  overflow-x: clip;
  overflow-y: visible;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.68) 0%, rgba(7, 8, 13, 0.54) 40%, rgba(9, 12, 16, 0.36) 100%),
    radial-gradient(circle at center, rgba(94, 143, 179, 0.16), transparent 58%);
  z-index: -2;
}

.hero-ring {
  position: relative;
  width: min(38vw, 660px);
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 25px rgba(200, 217, 234, 0.05), inset 0 0 40px rgba(27, 124, 161, 0.25);
  animation: floatY 6s ease-in-out infinite;
}

.hero-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 50%;
  border: 2px solid rgba(196, 210, 231, 0.23);
  box-shadow: inset 0 0 32px rgba(36, 143, 184, 0.3), 0 0 20px rgba(36, 143, 184, 0.2);
  animation: spinRing 26s linear infinite;
  pointer-events: none;
}

.hero-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 24%, rgba(24, 157, 205, 0.08), rgba(5, 8, 14, 0.72) 65%);
  pointer-events: none;
}

.hero-ring-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: grayscale(8%) contrast(1.08) saturate(0.92);
  animation: imageDrift 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8px;
  padding-bottom: 18px;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: relative;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
  height: 100%;
}

.hero-slider .slick-track {
  display: flex;
}

.hero-slider .slick-slide {
  height: auto;
}

.hero-slider .slick-slide > div {
  height: 100%;
}

.hero-row {
  min-height: calc(100svh - var(--header-offset) - 26px);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(8px, 2vw, 30px);
}

body.is-loading .hero-slide .hero-visual {
  opacity: 0;
  transform: translateX(-140px);
}

body.page-ready .hero-slider:not(.slick-initialized) .hero-visual {
  animation: heroImageInLeft 1.05s cubic-bezier(0.19, 1, 0.22, 1) 0.25s both;
}

.hero-line {
  width: 3px;
  height: 58px;
  background: var(--gold);
  margin-bottom: 20px;
  animation: stretchLine 1.2s ease forwards;
}

.hero-title {
  font-size: clamp(2.1rem, 5.6vw, 4.3rem);
  line-height: 1.03;
  margin-bottom: 14px;
  text-shadow: 0 2px 0 #000;
}

.title-line {
  display: block;
}

.title-line-top {
  animation: slideDown 0.9s ease both;
}

.title-line-bottom {
  animation: slideUp 0.95s ease both;
}

.hero-title .accent {
  color: var(--gold-soft);
  font-style: italic;
}

.hero-copy {
  max-width: 560px;
  line-height: 1.7;
  color: #d0d5df;
  margin-bottom: 22px;
  animation: fadeIn 1.2s 0.3s both;
}

.hero-actions {
  animation: fadeIn 1.2s 0.45s both;
}

.hero-slider.slick-initialized .hero-line,
.hero-slider.slick-initialized .hero-title,
.hero-slider.slick-initialized .hero-copy,
.hero-slider.slick-initialized .hero-actions {
  opacity: 0;
  transform: translateY(26px);
  animation: none;
}

.hero-slider.slick-initialized .hero-visual {
  opacity: 0;
  transform: translateX(-120px);
  animation: none;
}

.hero-slider.slick-initialized .slick-current .hero-line,
.hero-slider.slick-initialized .slick-current .hero-title,
.hero-slider.slick-initialized .slick-current .hero-copy,
.hero-slider.slick-initialized .slick-current .hero-actions {
  opacity: 1;
  transform: none;
}

.hero-slider.slick-initialized .slick-current .hero-line {
  transition: opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s;
}

.hero-slider.slick-initialized .slick-current .hero-title {
  transition: opacity 0.55s ease 0.18s, transform 0.55s ease 0.18s;
}

.hero-slider.slick-initialized .slick-current .hero-copy {
  transition: opacity 0.6s ease 0.32s, transform 0.6s ease 0.32s;
}

.hero-slider.slick-initialized .slick-current .hero-actions {
  transition: opacity 0.65s ease 0.44s, transform 0.65s ease 0.44s;
}

.hero-slider.slick-initialized .slick-current .hero-visual {
  opacity: 1;
  transform: none;
  transition: opacity 0.95s ease 0.18s, transform 0.95s cubic-bezier(0.19, 1, 0.22, 1) 0.18s;
}

.hero-slider .slick-dots {
  bottom: 8px;
  text-align: left;
}

.hero-slider .slick-dots li {
  margin: 0 4px;
}

.hero-slider .slick-dots li button:before {
  font-size: 10px;
  color: rgba(230, 236, 245, 0.6);
  opacity: 1;
}

.hero-slider .slick-dots li.slick-active button:before {
  color: var(--gold-soft);
  text-shadow: 0 0 14px rgba(214, 174, 68, 0.5);
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
  z-index: 5;
  width: 42px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(214, 174, 68, 0.45);
  background: rgba(6, 10, 17, 0.78);
  transition: all 0.25s ease;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
  border-color: var(--gold);
  background: rgba(214, 174, 68, 0.16);
}

.hero-slider .slick-prev {
  left: clamp(-78px, -4vw, -36px);
}

.hero-slider .slick-next {
  right: clamp(-78px, -4vw, -36px);
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  color: var(--gold-soft);
  font-size: 22px;
}

.foundation-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #05070b 0%, #090c12 90%);
}

.foundation-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(34vw, 860px);
  background: linear-gradient(90deg, rgba(184, 141, 47, 0.9) 0%, rgba(214, 174, 68, 0.82) 58%, rgba(214, 174, 68, 0) 100%);
  transform: translateX(-110%);
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

body.page-ready .foundation-section::before {
  transform: translateX(0);
}

.foundation-section > .container-lg {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .foundation-section::before {
    width: min(46vw, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .foundation-section::before {
    transition: none;
    transform: translateX(0);
  }
}

.portrait-wrap {
  position: relative;
  border: 8px solid #2a2d33;
  overflow: visible;
}

.portrait-img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.12);
}

.years-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  background: var(--gold);
  color: #171717;
  padding: 18px 20px;
  min-width: 132px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.years-badge h3 {
  font-family: "Cinzel", serif;
  margin: 0;
  font-size: 2rem;
}

.years-badge p {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.feature-title {
  font-family: "Cinzel", serif;
  font-size: 1.45rem;
  color: var(--gold-soft);
}

.feature-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.catalog-section {
  background: #080a0f;
}

.capabilities-section {
  background: #e9edf3;
  padding-top: 78px;
  padding-bottom: 86px;
}

.capabilities-section .container-lg {
  max-width: 1260px !important;
}

.capabilities-section .section-kicker {
  color: #ff4e3a;
  margin-bottom: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
}

.capabilities-section .section-title {
  color: #0f1e3d;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.capabilities-section .catalog-intro {
  margin-top: 10px;
  max-width: 620px;
  color: #415676;
  font-size: 1.03rem;
  line-height: 1.52;
}

.mould-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(21, 112, 140, 0.16), transparent 34%),
    linear-gradient(180deg, #06080d 0%, #07090d 100%);
}

.mould-main {
  padding-top: 0;
  padding-bottom: 90px;
}

.mould-page-hero {
  position: relative;
  min-height: calc(100svh - var(--header-offset));
  padding: 80px 0 60px;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.95) 0%, rgba(7, 9, 13, 0.7) 50%, rgba(7, 9, 13, 0.95) 100%),
    url('https://images.unsplash.com/photo-1537181277127-4d69f7f0afee?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mould-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.mould-title {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.mould-hero-visual {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  min-height: 420px;
  background: rgba(0, 0, 0, 0.15);
}

.mould-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.92);
}

.mould-hero-banner-text {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 22px;
  background: rgba(4, 7, 12, 0.78);
  border: 1px solid rgba(214, 174, 68, 0.2);
  backdrop-filter: blur(10px);
}

.banner-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5d386;
  margin-bottom: 10px;
}

.mould-hero-banner-text h4 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  color: #fff;
  line-height: 1.2;
}

.mould-hero-banner-text p {
  margin: 0;
  color: #d2d8e0;
  line-height: 1.7;
}

.mould-hero-actions {
  margin-top: 32px;
}

.mould-intro {
  color: #cfd5df;
  line-height: 1.75;
  max-width: 700px;
}

.mould-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mould-chip {
  border: 1px solid rgba(214, 174, 68, 0.34);
  color: #f1d988;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  transition: all 0.24s ease;
}

.mould-chip:hover {
  background: rgba(214, 174, 68, 0.12);
  border-color: rgba(214, 174, 68, 0.6);
  color: #ffe9a3;
}

.mould-hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-height: 280px;
}

.mould-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.mould-catalog {
  padding-top: 70px;
}

.mould-catalog .row {
  counter-reset: mouldCard;
}

.mould-catalog.reveal .row > [class*="col-"] {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.75s ease, transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

.mould-catalog.reveal .row > [class*="col-"]:nth-child(even) {
  transform: translateX(70px);
}

.mould-catalog.reveal.visible .row > [class*="col-"] {
  opacity: 1;
  transform: none;
}

.mould-catalog.reveal.visible .row > [class*="col-"]:nth-child(1) { transition-delay: 0.04s; }
.mould-catalog.reveal.visible .row > [class*="col-"]:nth-child(2) { transition-delay: 0.12s; }
.mould-catalog.reveal.visible .row > [class*="col-"]:nth-child(3) { transition-delay: 0.2s; }
.mould-catalog.reveal.visible .row > [class*="col-"]:nth-child(4) { transition-delay: 0.28s; }
.mould-catalog.reveal.visible .row > [class*="col-"]:nth-child(5) { transition-delay: 0.36s; }
.mould-catalog.reveal.visible .row > [class*="col-"]:nth-child(6) { transition-delay: 0.44s; }

@media (max-width: 991.98px) {
  .mould-catalog.reveal .row > [class*="col-"] {
    transform: translateX(-34px);
  }

  .mould-catalog.reveal .row > [class*="col-"]:nth-child(even) {
    transform: translateX(34px);
  }
}

.mould-detail-card {
  position: relative;
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(320px, 46%) minmax(0, 1fr);
  grid-template-areas: "media body";
  min-height: clamp(280px, 32vw, 360px);
  background:
    radial-gradient(circle at 96% 0%, rgba(214, 174, 68, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(20, 24, 32, 0.96), rgba(12, 15, 23, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  counter-increment: mouldCard;
}

.mould-detail-card::after {
  content: "";
}

.mould-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 174, 68, 0.45);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.38);
}

.mould-detail-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 46%);
  grid-template-areas: "body media";
  background:
    radial-gradient(circle at 4% 0%, rgba(214, 174, 68, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(20, 24, 32, 0.96), rgba(12, 15, 23, 0.94));
}

.mould-media {
  grid-area: media;
  position: relative;
  display: flex;
  padding: 12px;
  min-height: 100%;
}

.mould-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  filter: grayscale(10%) contrast(1.04) saturate(0.94);
  transition: transform 0.5s ease;
}

.mould-detail-card:hover .mould-media img {
  transform: scale(1.04);
}

.mould-media::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 44%;
  background: linear-gradient(to top, rgba(5, 8, 12, 0.8), transparent 80%);
  pointer-events: none;
}

.mould-body {
  grid-area: body;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px 20px;
  min-height: 100%;
  flex: 1;
}

.mould-body > * {
  position: relative;
  z-index: 1;
}

.mould-body::after {
  content: counter(mouldCard, decimal-leading-zero);
  position: absolute;
  right: 20px;
  bottom: 12px;
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: rgba(233, 217, 164, 0.16);
  text-shadow: 0 0 24px rgba(214, 174, 68, 0.16);
  pointer-events: none;
}

.mould-body h3 {
  font-family: "Cinzel", serif;
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 1.7vw, 2.45rem);
  letter-spacing: 0.05em;
  color: #d6ae44;
  line-height: 1.28;
}

.mould-body ul {
  margin: 0;
  padding: 0 0 0 2px;
  list-style: none;
}

.mould-body li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: #cfd5e1;
  line-height: 1.55;
  font-size: 20px;
}

.mould-body li:last-child {
  margin-bottom: 0;
}

.mould-body li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--gold-soft);
  font-size: 0.52rem;
  line-height: 1.5;
}

.three-d-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(21, 112, 140, 0.18), transparent 34%),
    radial-gradient(circle at 14% 78%, rgba(214, 174, 68, 0.1), transparent 30%),
    linear-gradient(180deg, #05070c 0%, #07090d 100%);
}

.three-d-main {
  padding-bottom: 90px;
}

.three-d-hero {
  min-height: 92svh;
  padding-top: var(--header-offset);
  background:
    linear-gradient(120deg, rgb(2 5 10 / 89%) 0%, rgb(5 10 17 / 80%) 48%, rgb(8 18 28 / 70%) 100%),
    url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.three-d-hero .hero-row {
  min-height: calc(92svh - var(--header-offset));
}

.three-d-list-card {
  border: 1px solid rgba(214, 174, 68, 0.28);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 174, 68, 0.18), transparent 40%),
    linear-gradient(145deg, rgba(9, 13, 20, 0.96), rgba(7, 12, 20, 0.92));
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
}

.three-d-list-card h2 {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.three-d-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.three-d-list li {
  position: relative;
  padding-left: 18px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #d8dee7;
  line-height: 1.5;
}

.three-d-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.22em;
  color: #f0cb68;
  font-size: 0.55rem;
}

.three-d-service-card {
  height: 100%;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(155deg, rgba(22, 27, 36, 0.88), rgba(12, 17, 26, 0.86));
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.three-d-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 174, 68, 0.38);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.three-d-service-card i {
  font-size: 1.6rem;
  color: var(--gold-soft);
}

.three-d-service-card h3 {
  margin: 16px 0 10px;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
}

.three-d-service-card p {
  margin: 0;
  color: #c9d0dc;
  line-height: 1.72;
}

.three-d-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.three-d-process-step {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 12, 18, 0.86);
  padding: 24px 20px;
}

.three-d-process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(214, 174, 68, 0.5);
  color: var(--gold-soft);
  margin-bottom: 12px;
  font-family: "Cinzel", serif;
}

.three-d-process-step h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  font-family: "Cinzel", serif;
}

.three-d-process-step p {
  margin: 0;
  color: #c4cad5;
  line-height: 1.7;
}

.three-d-visual-card {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.three-d-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.three-d-visual-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 22px;
  background: rgba(4, 8, 14, 0.78);
  border: 1px solid rgba(214, 174, 68, 0.25);
}

.three-d-visual-overlay h3 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.three-d-visual-overlay p {
  margin: 0;
  color: #d4dbe8;
  line-height: 1.65;
}

.three-d-metric-card {
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(214, 174, 68, 0.26);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 174, 68, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(17, 22, 31, 0.95), rgba(11, 14, 22, 0.94));
}

.three-d-metric-card h3 {
  margin: 0 0 18px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.three-d-metric-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.three-d-metric-card li {
  position: relative;
  padding-left: 16px;
  color: #d4dae4;
  line-height: 1.7;
}

.three-d-metric-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.14em;
  font-size: 0.55rem;
  color: var(--gold-soft);
}

.three-d-metric-card strong {
  color: #f3d77b;
  font-weight: 600;
}

.three-d-cta-section {
  padding-bottom: 0;
}

.three-d-cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 174, 68, 0.12), transparent 32%),
    linear-gradient(130deg, rgba(20, 26, 35, 0.96), rgba(12, 16, 24, 0.94));
  padding: clamp(34px, 6vw, 70px) 20px;
}

@media (max-width: 991.98px) {
  .three-d-main {
    padding-bottom: 74px;
  }

  .three-d-hero {
    min-height: auto;
    background-attachment: scroll;
  }

  .three-d-hero .hero-row {
    min-height: auto;
    padding: 36px 0 10px;
  }

  .three-d-list-card {
    margin-top: 14px;
  }

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

  .three-d-visual-card,
  .three-d-visual-card img {
    min-height: 340px;
  }
}

@media (max-width: 575.98px) {
  .three-d-main {
    padding-bottom: 66px;
  }

  .three-d-hero {
    padding-top: calc(var(--header-offset) + 8px);
  }

  .three-d-list-card {
    padding: 18px 16px;
  }

  .three-d-list li {
    font-size: 0.98rem;
  }

  .three-d-process-grid {
    grid-template-columns: 1fr;
  }

  .three-d-service-card {
    padding: 22px 18px;
  }

  .three-d-visual-overlay {
    inset: auto 10px 10px 10px;
    padding: 14px;
  }

  .three-d-visual-card,
  .three-d-visual-card img {
    min-height: 270px;
  }
}

.about-page {
  background:
    radial-gradient(circle at 15% 20%, rgba(21, 112, 140, 0.22), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(214, 174, 68, 0.12), transparent 32%),
    linear-gradient(180deg, #05070b 0%, #07090d 100%);
}

.about-page .hero-section {
  min-height: auto;
  padding-top: var(--header-offset);
  background:
    radial-gradient(circle at 86% 10%, rgba(214, 174, 68, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(5, 8, 13, 0.98) 0%, rgba(5, 8, 13, 0.92) 100%);
}

.about-page .hero-content {
  display: block;
  min-height: 0;
  padding-top: 24px;
  padding-bottom: 24px;
}

.about-page .hero-slide {
  display: grid;
  gap: 24px;
}

.about-hero-banner {
  position: relative;
  border: 1px solid rgba(214, 174, 68, 0.24);
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}

.about-hero-banner img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06);
}

.about-hero-banner-overlay {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(214, 174, 68, 0.24);
  background: rgba(4, 10, 17, 0.68);
}

.about-hero-banner-overlay p {
  margin: 0;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
}

.about-hero-row {
  min-height: auto;
}

.about-hero-text-panel {
  width: 100%;
  max-width: 980px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(214, 174, 68, 0.28);
  background:
    radial-gradient(circle at 95% 8%, rgba(214, 174, 68, 0.2), transparent 40%),
    linear-gradient(145deg, rgba(4, 10, 17, 0.9), rgba(4, 8, 14, 0.8));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(10px);
}

.about-hero-kicker {
  margin: 0 0 10px;
  color: #ff3d3d;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
}

.about-hero-text-panel .hero-line {
  height: 54px;
  margin-bottom: 18px;
  background: #ff2c2c;
}

.about-hero-text-panel .hero-title {
  max-width: 820px;
  font-size: clamp(2.3rem, 5.2vw, 5rem);
}

.about-hero-lead {
  border-left: 2px solid #ff2f2f;
  padding-left: 18px;
  max-width: 760px;
}

.btn-red-hero {
  background: #eb1111;
  border-color: #eb1111;
  color: #fff;
}

.btn-red-hero:hover {
  background: #ff3030;
  border-color: #ff3030;
  color: #fff;
}

.btn-ghost-hero {
  background: transparent;
  border: 1px solid rgba(229, 236, 244, 0.75);
  color: #f2f6fb;
}

.btn-ghost-hero:hover {
  border-color: #ff5e5e;
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 37, 37, 0.2);
}

.about-hero-text-panel .hero-copy {
  max-width: 760px;
  margin-bottom: 24px;
}

.about-hero-facts {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-hero-fact {
  padding: 14px 14px;
  border: 1px solid rgba(214, 174, 68, 0.2);
  background: rgba(6, 11, 18, 0.62);
}

.about-hero-fact h3 {
  margin: 0 0 4px;
  font-family: "Cinzel", serif;
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.about-hero-fact p {
  margin: 0;
  color: #d3d9e3;
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-page .hero-section.about-three-d-hero {
  min-height: 92svh;
  background:
    linear-gradient(120deg, rgb(2 5 10 / 89%) 0%, rgb(5 10 17 / 80%) 48%, rgb(8 18 28 / 70%) 100%),
    url("https://images.unsplash.com/photo-1565008447742-97f6f38c985c?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-page .hero-section.about-three-d-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.62) 0%, rgba(7, 8, 13, 0.50) 45%, rgba(9, 12, 16, 0.38) 100%),
    radial-gradient(circle at center, rgba(94, 143, 179, 0.14), transparent 58%);
}

.about-page .about-three-d-hero .hero-row {
  min-height: calc(92svh - var(--header-offset));
}

.about-page .about-three-d-card {
  border-color: rgba(214, 174, 68, 0.34);
}

.about-page .about-three-d-card h2 {
  margin-bottom: 16px;
}

.about-page .about-three-d-card .three-d-list {
  gap: 10px;
}

.about-page .about-three-d-card .three-d-list li {
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .about-page .hero-section.about-three-d-hero {
    min-height: auto;
    background-attachment: scroll;
  }

  .about-page .about-three-d-hero .hero-row {
    min-height: auto;
    padding: 36px 0 10px;
  }

  .about-page .about-three-d-card {
    margin-top: 14px;
  }
}

@media (max-width: 575.98px) {
  .about-page .hero-section.about-three-d-hero {
    padding-top: calc(var(--header-offset) + 8px);
  }

  .about-page .about-three-d-card {
    padding: 18px 16px;
  }

  .about-page .about-three-d-card .three-d-list li {
    font-size: 0.98rem;
  }
}

.mould-page .hero-section.mould-three-d-hero {
  min-height: 92svh;
  padding-top: var(--header-offset);
  background:
     linear-gradient(120deg, rgb(2 5 10 / 89%) 0%, rgb(5 10 17 / 80%) 48%, rgb(8 18 28 / 70%) 100%),
    url("../images/home/hero-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mould-page .hero-section.mould-three-d-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.62) 0%, rgba(7, 8, 13, 0.50) 45%, rgba(9, 12, 16, 0.38) 100%),
    radial-gradient(circle at center, rgba(94, 143, 179, 0.14), transparent 58%);
}

.mould-page .mould-three-d-hero .hero-row {
  min-height: calc(92svh - var(--header-offset));
}

.mould-page .mould-three-d-card {
  border-color: rgba(214, 174, 68, 0.34);
}

.mould-page .mould-three-d-card h2 {
  margin-bottom: 16px;
}

.mould-page .mould-three-d-card .three-d-list {
  gap: 10px;
}

.mould-page .mould-three-d-card .three-d-list li {
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .mould-page .hero-section.mould-three-d-hero {
    min-height: auto;
    background-attachment: scroll;
  }

  .mould-page .mould-three-d-hero .hero-row {
    min-height: auto;
    padding: 36px 0 10px;
  }

  .mould-page .mould-three-d-card {
    margin-top: 14px;
  }
}

@media (max-width: 575.98px) {
  .mould-page .hero-section.mould-three-d-hero {
    padding-top: calc(var(--header-offset) + 8px);
  }

  .mould-page .mould-three-d-card {
    padding: 18px 16px;
  }

  .mould-page .mould-three-d-card .three-d-list li {
    font-size: 0.98rem;
  }
}

.raw-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(214, 174, 68, 0.14), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(21, 112, 140, 0.16), transparent 30%),
    linear-gradient(180deg, #06080d 0%, #07090d 100%);
}

.raw-page .hero-section.raw-three-d-hero {
  min-height: 92svh;
  padding-top: var(--header-offset);
  background:
 linear-gradient(120deg, rgb(2 5 10 / 89%) 0%, rgb(5 10 17 / 80%) 48%, rgb(8 18 28 / 70%) 100%), url(../images/home/hero-image.jpg);
   
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.raw-page .hero-section.raw-three-d-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.62) 0%, rgba(7, 8, 13, 0.50) 45%, rgba(9, 12, 16, 0.38) 100%),
    radial-gradient(circle at center, rgba(94, 143, 179, 0.14), transparent 58%);
}

.raw-page .raw-three-d-hero .hero-row {
  min-height: calc(92svh - var(--header-offset));
}

.raw-page .raw-three-d-card {
  border-color: rgba(214, 174, 68, 0.34);
}

.raw-page .raw-three-d-card h2 {
  margin-bottom: 16px;
}

.raw-page .raw-three-d-card .three-d-list {
  gap: 10px;
}

.raw-page .raw-three-d-card .three-d-list li {
  font-size: 1rem;
}

.raw-main {
  padding-top: 0;
  padding-bottom: 90px;
}

.raw-material-card {
  min-height: 100%;
}

.raw-material-card img {
  background: #0e131c;
  object-fit: contain;
  padding: 10px;
}

.raw-support-panel {
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  .raw-page .hero-section.raw-three-d-hero {
    min-height: auto;
    background-attachment: scroll;
  }

  .raw-page .raw-three-d-hero .hero-row {
    min-height: auto;
    padding: 36px 0 10px;
  }

  .raw-page .raw-three-d-card {
    margin-top: 14px;
  }

  .raw-main {
    padding-top: 0;
    padding-bottom: 72px;
  }
}

@media (max-width: 575.98px) {
  .raw-page .hero-section.raw-three-d-hero {
    padding-top: calc(var(--header-offset) + 8px);
  }

  .raw-page .raw-three-d-card {
    padding: 18px 16px;
  }

.raw-page .raw-three-d-card .three-d-list li {
  font-size: 0.98rem;
}

  .raw-main {
    padding-top: 0;
  }
}

.part-page {
  background:
    radial-gradient(circle at 84% 10%, rgba(214, 174, 68, 0.14), transparent 34%),
    radial-gradient(circle at 10% 82%, rgba(21, 112, 140, 0.16), transparent 30%),
    linear-gradient(180deg, #06080d 0%, #07090d 100%);
}

.part-page .hero-section.part-three-d-hero {
  min-height: 92svh;
  padding-top: var(--header-offset);
  background:
    linear-gradient(120deg, rgb(2 5 10 / 89%) 0%, rgb(5 10 17 / 80%) 48%, rgb(8 18 28 / 70%) 100%),
    url("../images/home/hero-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.part-page .hero-section.part-three-d-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.62) 0%, rgba(7, 8, 13, 0.50) 45%, rgba(9, 12, 16, 0.38) 100%),
    radial-gradient(circle at center, rgba(94, 143, 179, 0.14), transparent 58%);
}

.part-page .part-three-d-hero .hero-row {
  min-height: calc(92svh - var(--header-offset));
}

.part-page .part-three-d-card {
  border-color: rgba(214, 174, 68, 0.34);
}

.part-page .part-three-d-card h2 {
  margin-bottom: 16px;
}

.part-page .part-three-d-card .three-d-list {
  gap: 10px;
}

.part-page .part-three-d-card .three-d-list li {
  font-size: 1rem;
}

.part-main {
  padding-top: 0;
  padding-bottom: 90px;
}

@media (max-width: 991.98px) {
  .part-page .hero-section.part-three-d-hero {
    min-height: auto;
    background-attachment: scroll;
  }

  .part-page .part-three-d-hero .hero-row {
    min-height: auto;
    padding: 36px 0 10px;
  }

  .part-page .part-three-d-card {
    margin-top: 14px;
  }

  .part-main {
    padding-top: 0;
    padding-bottom: 72px;
  }
}

@media (max-width: 575.98px) {
  .part-page .hero-section.part-three-d-hero {
    padding-top: calc(var(--header-offset) + 8px);
  }

  .part-page .part-three-d-card {
    padding: 18px 16px;
  }

  .part-page .part-three-d-card .three-d-list li {
    font-size: 0.98rem;
  }

  .part-main {
    padding-top: 0;
  }
}

.hero-section.three-d-hero {
  border-bottom: 0 !important;
}

.contact-page {
  background:
    radial-gradient(circle at 86% 12%, rgba(214, 174, 68, 0.14), transparent 34%),
    radial-gradient(circle at 8% 22%, rgba(21, 112, 140, 0.18), transparent 30%),
    linear-gradient(180deg, #06080d 0%, #07090d 100%);
}

.contact-page .hero-section.contact-three-d-hero {
  min-height: 92svh;
  padding-top: var(--header-offset);
  background:
   linear-gradient(120deg, rgb(2 5 10 / 89%) 0%, rgb(5 10 17 / 80%) 48%, rgb(8 18 28 / 70%) 100%), 
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-page .hero-section.contact-three-d-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.62) 0%, rgba(7, 8, 13, 0.50) 45%, rgba(9, 12, 16, 0.38) 100%),
    radial-gradient(circle at center, rgba(94, 143, 179, 0.14), transparent 58%);
}

.contact-page .contact-three-d-hero .hero-row {
  min-height: calc(92svh - var(--header-offset));
}

.contact-page .contact-three-d-card {
  border-color: rgba(214, 174, 68, 0.34);
}

.contact-page .contact-three-d-card h2 {
  margin-bottom: 16px;
}

.contact-page .contact-three-d-card .contact-mini-card {
  border-color: rgba(214, 174, 68, 0.22);
  background: rgba(6, 11, 18, 0.72);
}

.contact-main {
  padding-top: 0;
  padding-bottom: 90px;
}

.contact-hero {
  padding: 20px 0 0;
}

.contact-hero-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 88% 8%, rgba(214, 174, 68, 0.15), transparent 35%),
    linear-gradient(145deg, rgba(18, 23, 32, 0.96), rgba(11, 14, 22, 0.93));
}

.contact-hero-copy {
  color: #d4dae5;
  line-height: 1.75;
  max-width: 760px;
}

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

.contact-mini-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 21, 0.7);
}

.contact-mini-card i {
  font-size: 1.1rem;
  color: var(--gold-soft);
}

.contact-mini-card h3 {
  margin: 0 0 3px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-mini-card a,
.contact-mini-card p {
  margin: 0;
  color: #dde2eb;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-form-panel,
.contact-info-panel,
.contact-map-panel {
  padding: clamp(20px, 3.2vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(18, 22, 30, 0.95), rgba(11, 14, 21, 0.93));
}

.contact-form-title {
  margin-bottom: 18px;
}

.contact-form .form-label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: #dce2ee;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 11, 17, 0.7);
  color: #eef2f9;
  padding: 12px 12px;
}

.contact-form .form-control::placeholder {
  color: #93a0b6;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: rgba(214, 174, 68, 0.72);
  box-shadow: 0 0 0 0.2rem rgba(214, 174, 68, 0.2);
  background: rgba(10, 13, 20, 0.88);
  color: #fff;
}

.contact-side-stack {
  display: grid;
  gap: 16px;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-info-list li:last-child {
  border-bottom: 0;
}

.contact-info-list span {
  color: #afbacb;
}

.contact-info-list strong {
  color: #ecf1f8;
  font-weight: 500;
  text-align: right;
}

.map-frame {
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.capabilities-head {
  max-width: 900px;
  margin: 0 0 26px;
}

.capabilities-head .section-title {
  margin-bottom: 0;
}

.mould-services-slider {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.mould-services-slider.slick-initialized {
  display: block;
  margin-left: -9px;
  margin-right: -9px;
  padding-top: 10px;
}

.mould-services-slider .slick-list {
  overflow: visible;
}

.mould-services-slider .slick-track {
  display: flex;
}

.mould-services-slider .slick-slide {
  height: auto;
  padding: 0 9px;
}

.mould-services-slider .slick-slide > div {
  height: 100%;
}

.mould-service-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border: 1px solid #c4cedb;
  background: #edf0f4;
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.mould-service-slide:hover {
  border-color: #9daabc;
  box-shadow: 0 10px 22px rgba(21, 38, 62, 0.13);
  transform: translateY(-2px);
}

.mould-services-slider .slick-current .mould-service-slide {
  border-color: #a6b2c2;
}

.mould-service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 168px;
  overflow: hidden;
  background: #d7dce3;
}

.mould-service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: none;
}

.mould-service-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background: #edf0f4;
}

.mould-service-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.02rem, 1.28vw, 1.62rem);
  font-weight: 700;
  color: #0b2247;
  line-height: 1.28;
  letter-spacing: 0.01em;
  text-transform: none;
}

.mould-services-slider .slick-current .mould-service-title {
  color: #0b2247;
}

.mould-service-desc {
  margin: 0;
  color: #39516f;
  line-height: 1.55;
  font-size: 0.82rem;
}

.mould-service-points {
  display: none;
}

.mould-service-points li {
  position: relative;
  padding-left: 12px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #516683;
}

.mould-service-points li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.16em;
  font-size: 0.44rem;
  color: #222e43;
}

.mould-service-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border: 1px solid #b7c3d3;
  color: #1a3257;
  text-decoration: none;
  background: #eef2f8;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.22s ease;
}

.mould-service-btn:hover {
  border-color: #8da0ba;
  background: #e6edf8;
  color: #0f264a;
}

.mould-services-slider .slick-dots {
  display: none !important;
}

.mould-services-slider .slick-prev,
.mould-services-slider .slick-next {
  z-index: 5;
  width: 30px;
  height: 30px;
  top: -50px;
  transform: none;
  border: 1px solid #bac5d2;
  background: #edf1f6;
  transition: all 0.25s ease;
}

.mould-services-slider .slick-prev:hover,
.mould-services-slider .slick-next:hover {
  border-color: #8fa0b7;
  background: #e2e8f2;
}

.mould-services-slider .slick-prev {
  left: auto;
  right: 46px;
}

.mould-services-slider .slick-next {
  right: 8px;
}

.mould-services-slider .slick-prev:before,
.mould-services-slider .slick-next:before {
  color: #5a6f8e;
  font-size: 18px;
  line-height: 1;
  opacity: 1;
}

@media (max-width: 1399.98px) {
  .mould-services-slider:not(.slick-initialized) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1199.98px) {
  .mould-services-slider:not(.slick-initialized) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mould-service-title {
    font-size: 1.12rem;
  }
}

@media (max-width: 991.98px) {
  .capabilities-section .container-lg {
    max-width: 100% !important;
  }

  .mould-services-slider:not(.slick-initialized) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mould-services-slider .slick-prev {
    right: 46px;
  }

  .mould-services-slider .slick-next {
    right: 8px;
  }

  .mould-service-body {
    padding: 16px 16px 18px;
  }
}

@media (max-width: 767.98px) {
  .mould-services-slider:not(.slick-initialized) {
    grid-template-columns: 1fr;
  }

  .mould-service-media,
  .mould-service-media img {
    min-height: 155px;
    aspect-ratio: 4 / 3;
  }

  .mould-service-title {
    font-size: 1.2rem;
  }

  .mould-service-desc {
    font-size: 0.88rem;
  }

  .mould-services-slider .slick-prev,
  .mould-services-slider .slick-next {
    display: none !important;
  }

  .mould-services-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 14px;
  }
}

@media (max-width: 575.98px) {
  .mould-service-body {
    padding: 14px 14px 16px;
  }

  .mould-service-title {
    font-size: 1.08rem;
  }
}

.capability-card {
  height: 100%;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(165deg, rgba(24, 27, 35, 0.84), rgba(18, 21, 30, 0.74));
}

.capability-number {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #b6953c;
  line-height: 1;
}

.capability-card h3 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 12px;
}

.capability-card p {
  margin: 0;
  color: #d0d6e2;
  line-height: 1.72;
}

.capability-list {
  margin: 0;
  padding-left: 18px;
  color: #d0d6e2;
  column-count: 2;
  column-gap: 26px;
}

.capability-list li {
  margin-bottom: 6px;
}

.capability-line {
  display: inline-block;
  width: 44px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold);
}

.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-media {
  background: #090b11;
}

.showcase-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: grayscale(22%) contrast(1.05);
}

.showcase-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.94), rgba(5, 7, 10, 0.08));
}

.showcase-overlay h3 {
  font-family: "Cinzel", serif;
  margin: 0 0 5px;
  font-size: 2rem;
}

.showcase-overlay p {
  margin: 0;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
}

.showcase-content {
  padding: 38px 34px;
  background: linear-gradient(140deg, #1a1f2a 0%, #131822 100%);
}

.showcase-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f0cb68 0%, #a87f2a 100%);
}

.showcase-content h3 {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.showcase-tagline {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-style: italic;
  font-size: 1.2rem;
}

.showcase-copy {
  max-width: 540px;
  margin: 0 0 24px;
  line-height: 1.72;
  color: #d7dce6;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.parts-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0e1118;
  min-height: 260px;
}

.parts-card-lg {
  min-height: 290px;
}

.parts-card-md,
.parts-card-sm {
  min-height: 290px;
}

.parts-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}

.parts-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(7, 9, 13, 0.95), rgba(7, 9, 13, 0.2));
}

.parts-overlay h3 {
  font-family: "Cinzel", serif;
  margin: 0 0 4px;
}

.parts-overlay p {
  margin-bottom: 0;
  color: #d3d9e2;
  line-height: 1.6;
}

.tiny-label {
  color: var(--gold-soft);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  margin-bottom: 6px;
}

.parts-card-horizontal {
  background: linear-gradient(90deg, #10131a 0%, #1a1d26 100%);
  padding: 34px 28px;
}

.parts-card-horizontal h3 {
  font-family: "Cinzel", serif;
  margin-bottom: 10px;
}

.parts-card-horizontal p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.65;
}

.pulse-icon {
  min-width: 56px;
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  animation: pulse 2s infinite;
}

.parts-card:hover .parts-image {
  transform: scale(1.08);
}

.catalog-shell {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.catalog-feature-card {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: 360px;
  border: 1px solid rgba(214, 174, 68, 0.22);
  background:
    radial-gradient(circle at 92% 8%, rgba(214, 174, 68, 0.1), transparent 42%),
    linear-gradient(155deg, rgba(17, 22, 31, 0.96), rgba(9, 13, 20, 0.96));
  overflow: hidden;
}

.catalog-feature-media {
  min-height: 100%;
}

.catalog-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.catalog-feature-content {
  padding: clamp(20px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-pill {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
}

.catalog-feature-content h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.34rem, 2.1vw, 2rem);
  color: #f4e8c8;
  line-height: 1.2;
}

.catalog-feature-content p {
  margin: 0;
  color: #cfd6e2;
  line-height: 1.68;
}

.catalog-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.catalog-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(214, 174, 68, 0.26);
  background: rgba(214, 174, 68, 0.08);
  color: #e9d7a7;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.catalog-link-btn {
 margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    width: fit-content;
    padding: 0 14px;
    border: 1px solid rgba(214, 174, 68, 0.46);
    background: rgb(214 174 68);
    color: #080a0f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.24s ease;
}

.catalog-link-btn:hover {
  color: #fff6dc;
  background: rgba(214, 174, 68, 0.2);
  border-color: var(--gold);
}

.catalog-side-grid {
  grid-column: span 4;
  display: grid;
  gap: 18px;
}

.catalog-mini-card {
  position: relative;
  min-height: 170px;
  border: 1px solid rgba(214, 174, 68, 0.2);
  overflow: hidden;
}

.catalog-mini-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.catalog-mini-body {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 14px 16px;
  background: linear-gradient(to top, rgba(7, 9, 13, 0.96), rgba(7, 9, 13, 0.22));
}

.catalog-mini-body h3 {
  margin: 0 0 4px;
  font-family: "Cinzel", serif;
  font-size: 1.04rem;
  color: #f2e6c5;
}

.catalog-mini-body p {
  margin: 0;
  color: #d3d9e2;
  line-height: 1.5;
  font-size: 0.86rem;
}

.catalog-mini-card:hover img {
  transform: scale(1.1);
}

.catalog-capability-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(214, 174, 68, 0.2);
  background:
    linear-gradient(90deg, rgba(214, 174, 68, 0.07), rgba(214, 174, 68, 0) 36%),
    linear-gradient(140deg, rgba(16, 20, 28, 0.96), rgba(10, 13, 19, 0.95));
}

.catalog-capability-copy h3 {
  margin: 8px 0 10px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  color: #f3e6c3;
}

.catalog-capability-copy p {
  margin: 0;
  color: #cdd4df;
  line-height: 1.68;
}

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

.catalog-metric {
  padding: 50px 10px;
  border: 1px solid rgba(214, 174, 68, 0.24);
  background: rgba(214, 174, 68, 0.08);
  text-align: center;
}

.catalog-metric strong {
  display: block;
  margin: 0 0 4px;
  font-family: "Cinzel", serif;
  font-size: 1.18rem;
  color: var(--gold-soft);
}

.catalog-metric span {
  display: block;
  color: #d3d9e2;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1199.98px) {
  .catalog-feature-card {
    grid-column: span 7;
  }

  .catalog-side-grid {
    grid-column: span 5;
  }
}

@media (max-width: 991.98px) {
  .catalog-feature-card,
  .catalog-side-grid,
  .catalog-capability-panel {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 767.98px) {
  .catalog-feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .catalog-feature-media img {
    min-height: 220px;
  }

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

  .catalog-mini-card {
    min-height: 210px;
  }

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

.why-choose-section {
  position: relative;
}

.why-choose-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(214, 174, 68, 0.18);
  background:
    linear-gradient(180deg, rgba(214, 174, 68, 0.07), rgba(214, 174, 68, 0) 44%),
    linear-gradient(155deg, rgba(18, 22, 31, 0.92), rgba(11, 15, 23, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease, background 0.34s ease;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #f3d77b 0%, #d6ae44 100%);
  transition: width 0.4s ease;
}

.why-choose-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 174, 68, 0.18) 0%, rgba(214, 174, 68, 0) 70%);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 174, 68, 0.42);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 24px rgba(214, 174, 68, 0.14);
}

.why-choose-card:hover::before {
  width: 100%;
}

.why-choose-card:hover::after {
  transform: scale(1);
  opacity: 1;
}

.why-choose-card i {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  font-size: 1.55rem;
  color: #f2d98b;
  border: 1px solid rgba(214, 174, 68, 0.34);
  background: rgba(214, 174, 68, 0.08);
  transition: transform 0.34s ease, box-shadow 0.34s ease, background 0.34s ease;
}

.why-choose-card:hover i {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 10px 24px rgba(214, 174, 68, 0.22);
  background: rgba(214, 174, 68, 0.16);
}

.why-choose-card h3 {
  margin: 14px 0 10px;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  transition: color 0.34s ease;
}

.why-choose-card:hover h3 {
  color: #fff0c2;
}

.why-choose-card p {
  margin: 0;
  color: #c7cfda;
  line-height: 1.7;
  transition: color 0.34s ease;
}

.why-choose-card:hover p {
  color: #dde5ef;
}

.cta-section {
  background: linear-gradient(180deg, #0a0d12 0%, #0d1017 100%);
}

.cta-panel {
  border: 1px solid #282d38;
  padding: clamp(42px, 7vw, 80px) 20px;
  background:
    radial-gradient(circle at 8% 18%, rgba(214, 174, 68, 0.12), transparent 35%),
    linear-gradient(120deg, #1b1f28 0%, #242730 100%);
}

.cta-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 28px;
  text-shadow: 0 2px 0 #000;
}

.get-connect-section {
  padding-top: 0;
  position: relative;
  overflow: hidden;
  background: #090d14;
}

.get-connect-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.78), rgba(5, 8, 12, 0.78)),
    url("../images/home/contact%20bg%20image.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  z-index: 0;
  pointer-events: none;
}

.get-connect-section::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(34vw, 960px);
  background: linear-gradient(270deg, rgba(184, 141, 47, 0.9) 0%, rgba(214, 174, 68, 0.82) 58%, rgba(214, 174, 68, 0) 100%);
  transform: translateX(110%);
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

body.page-ready .get-connect-section::after {
  transform: translateX(0);
}

.get-connect-section > .container-lg {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .get-connect-section::after {
    width: min(46vw, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .get-connect-section::after {
    transition: none;
    transform: translateX(0);
  }
}

.get-connect-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 90% 8%, rgba(214, 174, 68, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(17, 22, 31, 0.96), rgba(11, 15, 22, 0.94));
}

.get-connect-copy {
  max-width: 760px;
}

.get-connect-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.get-connect-list li {
  display: flex;
  gap: 10px;
  color: #d6dde8;
  line-height: 1.65;
}

.get-connect-list i {
  color: var(--gold-soft);
  margin-top: 0.15em;
}

.get-connect-actions .btn {
  width: 100%;
}

.get-connect-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.get-connect-mini {
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 21, 0.68);
}

.get-connect-mini p {
  margin: 0 0 6px;
  color: #afbacb;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.get-connect-mini a {
  color: #eef2f9;
  text-decoration: none;
  line-height: 1.5;
  word-break: break-word;
}

.footer-section {
  background: #05070b;
  border-top: 1px solid #1a1f29;
  padding: 60px 0 22px;
}

.footer-section h4 {
  color: #f5f7fa;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: #9ea6b3;
  line-height: 1.8;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section .row.g-4.pb-4 {
  --bs-gutter-x: clamp(22px, 2.4vw, 44px);
  --bs-gutter-y: 22px;
}

.footer-section .row.g-4.pb-4 > [class*="col-"] {
  text-align: left;
}

.footer-section li i {
  color: var(--gold-soft);
  margin-right: 6px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  width: 32px;
  height: 32px;
  border: 1px solid #3a404d;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #1e232e;
  padding-top: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.footer-credit-link {
  color: #f2cb51;
  text-decoration: none;
}

.footer-credit-link:hover,
.footer-credit-link:focus {
  color: #f2cb51;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .footer-section .row.g-4.pb-4 {
    --bs-gutter-x: 18px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}

.hero-section.reveal {
  opacity: 1;
  transform: none;
}

.reveal .row > [class*="col-"] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible .row > [class*="col-"] {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.visible .row > [class*="col-"]:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal.visible .row > [class*="col-"]:nth-child(2) {
  transition-delay: 0.13s;
}

.reveal.visible .row > [class*="col-"]:nth-child(3) {
  transition-delay: 0.21s;
}

.reveal.visible .row > [class*="col-"]:nth-child(4) {
  transition-delay: 0.29s;
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes stretchLine {
  from {
    transform: scaleY(0);
    transform-origin: top;
  }
  to {
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 174, 68, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(214, 174, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 174, 68, 0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(16px);
  }
}

@keyframes imageDrift {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.02) translateY(6px);
  }
}

@keyframes heroImageInLeft {
  from {
    opacity: 0;
    transform: translateX(-140px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(7, 10, 15, 0.96);
  }

  .top-contact-bar {
    display: none;
  }

  .topbar-right {
    width: 100%;
  }

  .topbar-item {
    font-size: 0.68rem;
  }

  .fortune-nav {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
  }

  .fortune-nav .container-lg {
    position: relative;
  }

  .navbar-nav {
    margin-top: 12px;
    width: 100%;
  }

  .navbar-nav .nav-link {
    margin: 0;
    display: block;
    font-size: 0.75rem;
  }

  .fortune-nav .dropdown-menu {
    min-width: 100%;
    margin-top: 6px;
    border-color: #353b47;
  }

  .nav-cta {
    margin-top: 10px;
    padding: 12px 18px;
    font-size: 0.65rem;
  }

  .fortune-nav .navbar-collapse {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 2300;
    max-height: calc(100svh - (var(--header-offset) + 24px));
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 12px 12px;
    background: rgba(7, 10, 15, 0.98);
    border: 1px solid rgba(214, 174, 68, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  .hero-content {
    padding-top: 10px;
    padding-bottom: 14px;
  }
  .section-space {
    padding: 80px 0;
  }

  .hero-row {
    min-height: calc(100svh - var(--header-offset) - 20px);
  }

  .hero-visual {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-ring {
    width: min(92vw, 500px);
  }

  .hero-visual {
    padding-right: 0;
  }

  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    display: none !important;
  }

  .portrait-img {
    min-height: 340px;
  }

  .parts-card-md,
  .parts-card-sm {
    min-height: 250px;
  }

  .capability-list {
    column-count: 1;
  }

  .showcase-content {
    padding: 30px 24px;
  }

  .mould-main {
    padding-top: 0;
    padding-bottom: 72px;
  }

  .mould-detail-card,
  .mould-detail-card.reverse {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
    grid-template-areas:
      "media"
      "body";
  }

  .mould-media img {
    min-height: 0;
  }

  .mould-body {
    padding: 18px 18px 20px;
  }

  .mould-body::after {
    left: auto;
    right: 16px;
    bottom: 8px;
    font-size: clamp(2.1rem, 10vw, 3.5rem);
  }

  .contact-page .hero-section.contact-three-d-hero {
    min-height: auto;
    background-attachment: scroll;
  }

  .contact-page .contact-three-d-hero .hero-row {
    min-height: auto;
    padding: 36px 0 10px;
  }

  .contact-page .contact-three-d-card {
    margin-top: 14px;
  }

  .contact-main {
    padding-top: 0;
    padding-bottom: 74px;
  }

  .contact-hero-panel {
    padding: 22px 18px;
  }

  .contact-mini-card {
    padding: 12px;
  }

  .get-connect-panel {
    padding: 24px 20px;
  }

  .get-connect-mini-grid {
    grid-template-columns: 1fr;
  }

  .map-frame {
    height: 260px;
  }

}

@media (max-width: 767.98px) {
  .section-space {
    padding: 70px 0;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-content {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .hero-ring {
    width: min(95vw, 520px);
  }

  .parts-card-lg {
    grid-template-columns: 1fr;
  }

  .parts-card-horizontal {
    margin-bottom: 16px;
  }

  .portrait-wrap {
    margin-bottom: 20px;
  }

  .years-badge {
    right: -12px;
    bottom: -12px;
    font-size: 0.9rem;
  }

  .container-lg {
    padding-left: 14px;
    padding-right: 14px;
  }

  .topbar-item {
    width: 100%;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
  }
}

@media (max-width: 575.98px) {
  .section-space {
    padding: 60px 0;
  }

  .hero-line {
    height: 42px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 10.2vw, 2.65rem);
    margin-bottom: 10px;
  }

  .hero-slider .slick-dots {
    bottom: -2px;
  }

  .hero-copy {
    font-size: 0.91rem;
    margin-bottom: 16px;
  }

  .parts-card-horizontal {
    flex-direction: column;
  }

  .container-lg {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hr-golden {
    height: 260px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .years-badge {
    right: 8px;
    bottom: 8px;
  }

  .parts-card-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .pulse-icon {
    margin-top: 8px;
  }

  .capability-card {
    padding: 24px 20px;
  }

  .capability-number {
    font-size: 1.8rem;
  }

  .showcase-card {
    min-height: 250px;
  }

  .showcase-image {
    min-height: 250px;
  }

  .showcase-overlay h3 {
    font-size: 1.65rem;
  }

  .showcase-tagline {
    font-size: 1rem;
  }

  .mould-main {
    padding-top: 0;
  }

  .mould-chip-list {
    gap: 8px;
  }

  .mould-chip {
    font-size: 0.68rem;
    padding: 7px 10px;
  }

  .mould-hero-visual,
  .mould-hero-visual img {
    min-height: 220px;
  }

  .mould-media img {
    min-height: 0;
  }

  .mould-body h3 {
    font-size: 1.02rem;
    margin-bottom: 9px;
  }

  .mould-body li {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .contact-page .hero-section.contact-three-d-hero {
    padding-top: calc(var(--header-offset) + 8px);
  }

  .contact-main {
    padding-top: 0;
  }

  .contact-hero {
    padding-top: 10px;
  }

  .contact-hero-panel {
    padding: 16px 14px;
  }

  .contact-hero-copy {
    font-size: 0.93rem;
    line-height: 1.62;
  }

  .contact-mini-card h3 {
    font-size: 0.79rem;
  }

  .contact-mini-card a,
  .contact-mini-card p {
    font-size: 0.82rem;
  }

  .contact-form-panel,
  .contact-info-panel,
  .contact-map-panel {
    padding: 16px 14px;
  }

  .contact-info-list li {
    flex-direction: column;
    gap: 4px;
    padding: 9px 0;
  }

  .contact-info-list strong {
    text-align: left;
  }

  .why-choose-card {
    padding: 22px 18px;
  }

  .get-connect-panel {
    padding: 18px 14px;
  }

  .get-connect-list {
    gap: 8px;
  }

  .get-connect-mini {
    padding: 12px;
  }

  .map-frame {
    height: 230px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .loader-core {
    padding: 28px 18px;
  }

  .loader-logo {
    width: 62px;
    height: 62px;
  }
}

.precision-slider-section {
  background: var(--bg-soft);
  padding-top: 76px;
  padding-bottom: 84px;
  font-family: "Outfit", sans-serif;
}

.precision-slider-section .container-lg {
  position: relative;
  max-width: 1360px !important;
}

.precision-slider-head {
  max-width: 900px;
  margin-bottom: 24px;
}

.precision-slider-kicker {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.precision-slider-title {
  margin: 0;
  color: var(--text);
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.precision-slider-intro {
  margin: 10px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-family: "Outfit", sans-serif;
  font-size: 1.03rem;
  line-height: 1.52;
}

.precision-slider-arrows {
  position: absolute;
  right: 8px;
  top: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.precision-slider-prev,
.precision-slider-next {
  width: 34px;
  height: 30px;
  border: 1px solid rgba(214, 174, 68, 0.36);
  background: rgba(17, 20, 28, 0.92);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.24s ease;
}

.precision-slider-prev:hover,
.precision-slider-next:hover {
  border-color: var(--gold);
  background: rgba(214, 174, 68, 0.16);
  color: var(--gold-soft);
}

.precision-product-slider {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.precision-product-slider.slick-initialized {
  display: block;
  margin-left: -9px;
  margin-right: -9px;
}

/* .precision-product-slider .slick-list {
  overflow: visible;
} */

.precision-product-slider .slick-track {
  display: flex;
}

.precision-product-slider .slick-slide {
  height: auto;
  padding: 20px 9px;
}

.precision-product-slider .slick-slide > div {
  height: 100%;
}

.precision-card {
  height: 100%;
  border: 1px solid rgba(214, 174, 68, 0.24);
  background: var(--panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.precision-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.precision-card img {
  width: 100%;
  /* aspect-ratio: 4 / 3;
  min-height: 168px; */
  height:100%;
  object-fit: cover;
  padding:10px;
  display: block;
  background: #151a24;
}

.precision-card h3 {
  margin: 16px 18px 8px;
  color: var(--text);
  font-family: "Cinzel", serif;
  font-size: clamp(1.02rem, 1.28vw, 1.62rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.precision-card p {
    margin: 0 18px 15px;
    color: var(--muted);
    font-family: "Outfit", sans-serif;
    line-height: 1.55;
    font-size: 18px;
}

.precision-card-btn {
  margin: auto 90px 18px;
    min-height: 40px;
    border: 1px solid rgba(214, 174, 68, 0.42);
    color: var(--gold-soft);
    text-decoration: none;
    background: rgba(214, 174, 68, 0.08);
    font-size: 15px;
    letter-spacing: 0.12em;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    font-family: "Outfit", sans-serif;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
}

.precision-card-btn:hover {
  border-color: var(--gold);
  background: rgba(214, 174, 68, 0.2);
  color: var(--gold-soft);
}

.precision-product-slider .slick-dots {
  display: none !important;
}

@media (max-width: 1399.98px) {
  .precision-product-slider:not(.slick-initialized) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1199.98px) {
  .precision-product-slider:not(.slick-initialized) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .precision-slider-section .container-lg {
    max-width: 100% !important;
  }

  .precision-product-slider:not(.slick-initialized) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .precision-slider-arrows {
    right: 10px;
  }

  .precision-card h3 {
    font-size: 1.12rem;
  }
}

@media (max-width: 767.98px) {
  .precision-product-slider:not(.slick-initialized) {
    grid-template-columns: 1fr;
  }

  .precision-slider-arrows {
    display: none;
  }

  .precision-product-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 14px;
  }
}

@media (max-width: 575.98px) {
  .precision-card p {
    font-size: 0.88rem;
  }
}




.services-section {
  background: linear-gradient(135deg, #bc8e2f 0%, #d6ae44 46%, #f3d77b 100%);
  padding-top: 84px !important;
  padding-bottom: 84px !important;
  font-family: "Outfit", sans-serif;
}

.services-section .container {
  max-width: 1360px;
}

.services-section .col-lg-8 {
  position: relative;
  padding-left: 34px;
}

.service-tag {
  color: #2f2006;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  left: 0;
  top: 0;
  text-transform: uppercase;
}

.service-title {
  margin: 0 0 10px;
  color: #0f1e3d;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.service-desc {
  color: rgba(15, 30, 61, 0.84);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.62;
}

.service-card {
  background: #0b1018;
  padding: 30px 20px;
  height: 100%;
  border: 1px solid rgba(214, 174, 68, 0.34);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  font-family: "Outfit", sans-serif;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}

.service-card .icon {
  margin-bottom: 20px;
}

.service-card .icon img {
  width: 70px;
  filter: invert(84%) sepia(29%) saturate(658%) hue-rotate(353deg) brightness(96%) contrast(93%);
}

.service-card h5 {
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: rgba(232, 234, 238, 0.9);
  font-family: "Outfit", sans-serif;
  line-height: 1.62;
}

@media (max-width: 991.98px) {
  .services-section .col-lg-8 {
    padding-left: 0;
  }

  .service-tag {
    position: static;
    writing-mode: initial;
    transform: none;
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
  }

  .service-card {
    padding: 24px 16px;
  }

  .service-card .icon img {
    width: 60px;
  }

  .service-title {
    font-size: clamp(1.7rem, 8.2vw, 2.3rem);
  }
}
