:root {
  --brand-navy: #092744;
  --brand-blue: #1995d3;
  --brand-ink: #152133;
  --border-soft: rgba(164, 198, 222, 0.25);
  --shadow-soft: 0 24px 70px rgba(12, 27, 45, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brand-ink);
  font-family: "Barlow", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(25, 149, 211, 0.1), transparent 24%),
    linear-gradient(180deg, #f4f9fc 0%, #ffffff 30%, #eef5fa 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: #0d355a;
  font-family: "Source Serif 4", serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  line-height: 1.8;
}

ul {
  margin: 0;
  padding: 0;
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(10, 55, 93, 0.12);
  background: rgba(240, 247, 252, 0.92);
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 35px rgba(9, 39, 68, 0.05);
}

.site-header--overlay {
  position: absolute;
  inset: 0 0 auto 0;
  border-bottom-color: rgba(145, 210, 245, 0.16);
  background: linear-gradient(180deg, rgba(6, 29, 50, 0.48), rgba(6, 29, 50, 0.18));
  box-shadow: none;
}

.site-header__utilities {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header__locale,
.mobile-nav__locale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-header__locale a,
.mobile-nav__locale a {
  min-width: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(25, 149, 211, 0.18);
  border-radius: 999px;
  color: rgba(9, 39, 68, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: 220ms ease;
}

.site-header--overlay .site-header__locale a {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
}

.site-header.site-header--overlay.is-sticky .site-header__locale a {
  border-color: rgba(25, 149, 211, 0.18);
  color: rgba(9, 39, 68, 0.78);
  background: rgba(255, 255, 255, 0.86);
}

.site-header__locale a.is-active,
.mobile-nav__locale a.is-active {
  border-color: rgba(25, 149, 211, 0.6);
  background: rgba(25, 149, 211, 0.14);
  color: var(--brand-blue);
}

.site-header--overlay .site-header__locale a.is-active {
  border-color: rgba(145, 210, 245, 0.6);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.site-header.site-header--overlay.is-sticky .site-header__locale a.is-active {
  border-color: rgba(25, 149, 211, 0.6);
  background: rgba(25, 149, 211, 0.14);
  color: var(--brand-blue);
}

.site-header.is-sticky {
  position: sticky;
  background: rgba(242, 248, 252, 0.95);
  border-bottom-color: rgba(10, 55, 93, 0.1);
  box-shadow: 0 14px 38px rgba(9, 39, 68, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
}

.site-logo img {
  width: clamp(150px, 16vw, 220px);
  height: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 30px;
}

.site-nav > a,
.site-nav__dropdown > a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(9, 39, 68, 0.35);
}

body:not(.is-home) .site-nav > a,
body:not(.is-home) .site-nav__dropdown > a,
.site-header.is-sticky .site-nav > a,
.site-header.is-sticky .site-nav__dropdown > a {
  color: #33526f;
  text-shadow: none;
}

.site-nav a::after,
.site-nav__dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1995d3, #0b5f95);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav__dropdown > a:hover::after,
.site-nav__dropdown > a.is-active::after {
  transform: scaleX(1);
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__panel {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  min-width: 310px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(191, 219, 254, 0.7);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 251, 254, 0.98), rgba(239, 246, 251, 0.98));
  box-shadow: 0 22px 60px rgba(12, 27, 45, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.985);
  transform-origin: top left;
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
}

.site-nav__dropdown:hover .site-nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.site-nav__panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: #284666;
}

.site-nav__panel a:hover {
  background: linear-gradient(135deg, rgba(25, 149, 211, 0.12), rgba(25, 149, 211, 0.04));
  color: var(--brand-blue);
}

.site-header__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header__cta,
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #1995d3, #0c4c7a);
  box-shadow: 0 18px 48px rgba(12, 76, 122, 0.22);
}

.site-header--overlay .site-header__cta {
  border: 1px solid rgba(173, 225, 251, 0.34);
  background: linear-gradient(135deg, rgba(25, 149, 211, 0.28), rgba(8, 54, 91, 0.24));
  box-shadow: 0 12px 34px rgba(9, 39, 68, 0.24);
}

.site-header.is-sticky .site-header__cta {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #1995d3, #0c4c7a);
  box-shadow: 0 18px 48px rgba(12, 76, 122, 0.22);
}

.btn--secondary,
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn--ghost {
  background: transparent;
}

.btn:hover,
.site-header__cta:hover {
  transform: translateY(-2px);
}

.site-header__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

body:not(.is-home) .site-header__toggle,
.site-header.is-sticky .site-header__toggle {
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--brand-ink);
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(10, 55, 93, 0.1);
  background: linear-gradient(180deg, rgba(246, 250, 253, 0.99), rgba(235, 244, 250, 0.99));
  transform-origin: top center;
  box-shadow: 0 24px 54px rgba(9, 39, 68, 0.08);
}

.mobile-nav.is-open {
  display: block;
  animation: mobileNavEnter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav__inner {
  display: grid;
  gap: 8px;
  padding: 18px 0 24px;
}

.mobile-nav__inner > a {
  padding: 12px 16px;
  border-radius: 18px;
  color: #2d4a67;
}

.mobile-nav__inner > a:hover,
.mobile-nav__inner > a:focus-visible {
  background: rgba(25, 149, 211, 0.08);
  color: var(--brand-blue);
}

.mobile-nav__child {
  margin-left: 14px;
  font-size: 0.92rem;
  color: #64748b;
}

.hero {
  min-height: 100vh;
  padding: 180px 0 84px;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero__badges span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.hero__eyebrow {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(123, 211, 255, 0.95);
}

.hero h1 {
  max-width: none;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 1.0;
}

.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 28px;
}

.hero__lead {
  max-width: 56ch;
  margin-top: 0;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #dbeafe;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 14px;
  margin-top: 0;
}

.hero__stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.hero__stat {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  backdrop-filter: blur(8px);
}

.hero__stat span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.hero__stat strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.2;
}

.factory-grid,
.feature-grid,
.news-grid,
.contact-grid,
.site-footer__grid {
  display: grid;
  gap: 24px;
}

.factory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.factory-grid--hero {
  margin-top: 54px;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.hero--home::before {
  content: "";
  position: absolute;
  inset: 14% auto auto 58%;
  width: 34vw;
  min-width: 280px;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 212, 255, 0.18), rgba(109, 212, 255, 0));
  filter: blur(12px);
  transform: translate3d(0, var(--hero-glow-shift, 0px), 0);
  z-index: 0;
  pointer-events: none;
}

.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 15, 29, 0.12), rgba(3, 15, 29, 0.18)),
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.08), transparent 20%);
  z-index: 0;
  pointer-events: none;
}

.factory-card {
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-top: 3px solid var(--brand-blue);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.factory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 76px rgba(12, 27, 45, 0.16);
}

.factory-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.factory-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.factory-card:hover .factory-card__media img {
  transform: scale(1.045);
}

.factory-card__media span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(9, 39, 68, 0.75);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.factory-card__body {
  padding: 22px 20px 24px;
}

.factory-card__body h2 {
  font-size: 1.24rem;
}

.factory-card__body p {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #5f7188;
}

.section {
  padding: 86px 0;
}

.section--tight {
  padding-top: 0;
}

.section--muted {
  background: linear-gradient(180deg, #f4f9fc, #eef5fa);
}

.section-card {
  padding: 36px;
  border: 1px solid rgba(191, 219, 254, 0.7);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(12, 27, 45, 0.06);
}

.section-heading p:first-child,
.page-hero p:first-child,
.cta-band p:first-child {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.section-heading h2,
.page-hero h1,
.cta-band h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.section-heading__lead,
.cta-band > div > p:last-child {
  max-width: 64ch;
  margin-top: 16px;
  color: #5f7188;
}

.page-hero p:last-child {
  max-width: 64ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid,
.news-grid {
  margin-top: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
}

/* ── Contact Info Card (dark) ── */
.contact-info-card {
  background:
    radial-gradient(circle at top right, rgba(109, 212, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #082846 0%, #0b4f82 100%);
  border-radius: 20px;
  padding: 40px 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 24px 70px rgba(9, 39, 68, 0.22);
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 149, 211, 0.18) 0%, rgba(25, 149, 211, 0) 72%);
  pointer-events: none;
}

.contact-info-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(25, 149, 211, 0.15);
  border: 1px solid rgba(25, 149, 211, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  width: fit-content;
  margin-bottom: 18px;
}

.contact-info-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.4;
}

.contact-info-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.contact-info-card__list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-blue);
}

.contact-info-card__list em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin-right: 4px;
}

.contact-info-card__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-card__list a:hover {
  color: #fff;
}

.contact-info-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 28px 0;
}

.contact-info-card__note {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}

.contact-info-card__richtext {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.contact-info-card__richtext p + p {
  margin-top: 12px;
}

/* ── Contact Form Card ── */
.contact-form-card {
  background: linear-gradient(180deg, rgba(247, 251, 254, 0.98), rgba(235, 244, 250, 0.98));
  border: 1px solid rgba(148, 198, 229, 0.45);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 24px 70px rgba(9, 39, 68, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1995d3, #6dd4ff);
}

.contact-form-card__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(25, 149, 211, 0.16);
}

.contact-form-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(25, 149, 211, 0.08);
  border: 1px solid rgba(25, 149, 211, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.contact-form-card__title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 6px;
  line-height: 1.25;
}

.contact-form-card__sub {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

/* ── Form Fields ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-navy);
  letter-spacing: 0.02em;
}

.form-required {
  color: var(--brand-blue);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--brand-ink);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  outline: none;
  box-sizing: border-box;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(25, 149, 211, 0.4);
  background: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25, 149, 211, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
  font-size: 0.88rem;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231995d3' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #f8fafc;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* ── Submit Button ── */
.contact-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  padding: 13px 28px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(25, 149, 211, 0.35);
}

.contact-form-btn:hover {
  background: #1480b8;
  box-shadow: 0 6px 20px rgba(25, 149, 211, 0.45);
  transform: translateY(-1px);
}

.contact-form-btn svg {
  transition: transform 220ms ease;
}

.contact-form-btn:hover svg {
  transform: translateX(2px);
}

.contact-form-btn:active {
  transform: translateY(0);
}

/* ── Form Feedback ── */
.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-size: 0.93rem;
  line-height: 1.55;
}

.form-feedback p { margin: 0; }

.form-feedback svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.form-feedback--success {
  background: rgba(34, 197, 94, 0.08);
  border: 1.5px solid rgba(34, 197, 94, 0.28);
  color: #166534;
}

.form-feedback--success svg { color: #16a34a; }

.form-feedback--error {
  background: rgba(239, 68, 68, 0.07);
  border: 1.5px solid rgba(239, 68, 68, 0.22);
  color: #991b1b;
}

.form-feedback--error svg { color: #dc2626; }

.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.media-gallery__item {
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
  background: #e2e8f0;
  box-shadow: 0 18px 48px rgba(12, 27, 45, 0.1);
  cursor: zoom-in;
}

.media-gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.media-gallery__item:hover img {
  transform: scale(1.04);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0.85;
  transition: opacity 0.2s, background 0.2s;
}

.lightbox__close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}

.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.26);
}

.lightbox__counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.feature-card,
.rich-card {
  padding: 28px;
  border: 1px solid rgba(191, 219, 254, 0.8);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(12, 27, 45, 0.08);
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.8);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(12, 27, 45, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 76px rgba(12, 27, 45, 0.14);
}

.news-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.04);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 26px;
}

.feature-card p,
.news-card p {
  margin-top: 10px;
  color: #5f7188;
}

.rich-card p {
  margin-top: 14px;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.85;
}

.rich-card h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  color: var(--brand-navy);
  border-bottom: 2px solid rgba(25, 149, 211, 0.15);
  padding-bottom: 10px;
}

.rich-card h3 {
  margin-top: 28px;
  margin-bottom: 6px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.3;
  color: var(--brand-blue);
}

.rich-card h2:first-child,
.rich-card h3:first-child {
  margin-top: 0;
}

.rich-card ul,
.rich-card ol {
  margin: 14px 0;
  padding-left: 22px;
}

.rich-card ul {
  list-style: none;
  padding-left: 0;
}

.rich-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.75;
  color: #334155;
}

.rich-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
  opacity: 0.7;
}

.rich-card ol li {
  margin-bottom: 10px;
  line-height: 1.75;
  color: #334155;
}

.rich-card strong {
  color: var(--brand-navy);
  font-weight: 700;
}

.news-hero {
  padding: 80px 0 48px;
  background-size: cover;
  background-position: center;
}

.news-hero__category {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.rich-card__header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(25, 149, 211, 0.12);
}

.rich-card__header:empty {
  display: none;
}

.rich-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.rich-card__meta span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.rich-card__meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: #cbd5e1;
}

.rich-card__title {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--brand-navy);
  font-family: "Source Serif 4", serif;
}

.rich-card__summary {
  margin: 0 !important;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5f7188 !important;
  max-width: 72ch;
}

.news-scroll-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.news-scroll-header .section-heading {
  margin-bottom: 0;
}

.news-scroll-header__all {
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: 0.88rem;
}

.news-scroll-wrap {
  position: relative;
}

.news-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.news-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.news-scroll .news-card {
  flex: 0 0 clamp(260px, 28vw, 320px);
  scroll-snap-align: start;
}

.news-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(25, 149, 211, 0.3);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-navy);
  box-shadow: 0 8px 24px rgba(12, 27, 45, 0.12);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.news-scroll-arrow:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-60%) scale(1.08);
  box-shadow: 0 12px 32px rgba(25, 149, 211, 0.3);
}

.news-scroll-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.news-scroll-arrow--prev {
  left: -22px;
}

.news-scroll-arrow--next {
  right: -22px;
}

.factory-hero__back {
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.factory-sections-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.factory-section-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(191, 219, 254, 0.8);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(12, 27, 45, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  color: inherit;
}

.factory-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 80px rgba(12, 27, 45, 0.13);
  border-color: rgba(25, 149, 211, 0.5);
}

.factory-section-card--highlight {
  border-top: 3px solid var(--brand-blue);
}

.factory-section-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(25, 149, 211, 0.08);
  color: var(--brand-blue);
}

.factory-section-card h3 {
  font-size: 1.15rem;
  color: var(--brand-navy);
  margin: 0;
}

.factory-section-card p {
  flex: 1;
  font-size: 0.92rem;
  color: #5f7188;
  line-height: 1.7;
  margin: 0;
}

.factory-section-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-blue);
  transition: gap 200ms ease;
}

.factory-section-card:hover .factory-section-card__cta {
  gap: 10px;
}

.media-gallery--large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.factory-subnav__inner a.is-active {
  color: var(--brand-blue);
  border-bottom-color: var(--brand-blue);
}

.factory-subnav {
  position: sticky;
  top: 94px;
  z-index: 40;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(191, 219, 254, 0.6);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.factory-subnav__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  position: relative;
  cursor: grab;
  user-select: none;
}

.factory-subnav__inner::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.factory-subnav__inner.is-dragging {
  cursor: grabbing;
}

.factory-subnav__inner.is-dragging a {
  pointer-events: none;
}

.factory-subnav__inner.is-scrollable::before,
.factory-subnav__inner.is-scrollable::after {
  content: "";
  position: sticky;
  top: 0;
  width: 28px;
  height: 100%;
  flex: 0 0 28px;
  pointer-events: none;
  z-index: 1;
}

.factory-subnav__inner.is-scrollable::before {
  left: 0;
  margin-right: -28px;
  background: linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0));
  opacity: 1;
}

.factory-subnav__inner.is-scrollable::after {
  right: 0;
  margin-left: -28px;
  background: linear-gradient(270deg, rgba(255,255,255,0.98), rgba(255,255,255,0));
  opacity: 1;
}

.factory-subnav__inner.is-at-start::before {
  opacity: 0;
}

.factory-subnav__inner.is-at-end::after {
  opacity: 0;
}

.factory-subnav__inner a {
  flex-shrink: 0;
  padding: 16px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.factory-subnav__inner a:hover {
  color: var(--brand-blue);
  border-bottom-color: var(--brand-blue);
}

.factory-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.factory-section-header .section-heading {
  margin-bottom: 0;
}

.factory-section-header__all {
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: 0.88rem;
}

.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.product-grid--full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.8);
  border-top: 3px solid var(--brand-blue);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(12, 27, 45, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 76px rgba(12, 27, 45, 0.14);
}

.product-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__media span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  background: rgba(9,39,68,0.75);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.product-card__body {
  padding: 18px 20px 22px;
}

.product-card__body h2,
.product-card__body h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--brand-navy);
}

.product-card__body p {
  margin-top: 8px;
  font-size: 0.92rem;
  color: #5f7188;
}

.factory-contact__header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(25, 149, 211, 0.12);
}

.factory-contact__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.factory-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.factory-contact__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(25, 149, 211, 0.08);
  color: var(--brand-blue);
}

.factory-contact__label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.factory-contact__item p {
  font-size: 1rem;
  color: var(--brand-ink);
  margin-top: 0 !important;
}

.factory-contact__item a {
  color: var(--brand-blue);
}

.factory-contact__item a:hover {
  text-decoration: underline;
}

.packaging-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.packaging-item {
  padding: 10px 18px;
  border: 1px solid rgba(25, 149, 211, 0.25);
  border-radius: 999px;
  background: rgba(25, 149, 211, 0.05);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.news-gallery__header {
  margin-bottom: 20px;
}

.news-gallery__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.news-card__body span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.news-card__body h2 {
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--brand-navy);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b2f52, #0b5f95);
  box-shadow: 0 26px 80px rgba(9, 39, 68, 0.22);
  color: #fff;
}

.cta-band h2,
.page-hero h1 {
  color: #fff;
}

.cta-band > div > p:last-child {
  color: rgba(219, 234, 254, 0.92);
}

.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-hero {
  padding: 138px 0 58px;
  background: linear-gradient(135deg, #0b2f52, #0b5f95);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(109, 212, 255, 0.16), transparent 24%),
    radial-gradient(circle at 16% 100%, rgba(109, 212, 255, 0.12), transparent 28%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero__content--narrow {
  max-width: 720px;
}

.page-hero__content--article {
  max-width: 860px;
}

.page-hero__eyebrow {
  color: rgba(139, 220, 255, 0.96) !important;
}

.page-hero__title {
  margin-top: 14px;
}

.page-hero__lead {
  max-width: 64ch;
  margin-top: 16px;
  color: rgba(226, 232, 240, 0.88) !important;
  font-size: 1.05rem;
  line-height: 1.78;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-hero__meta span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(154, 221, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-hero--listing {
  padding: 152px 0 72px;
}

.page-hero--factories {
  background:
    linear-gradient(135deg, rgba(9, 39, 68, 0.98), rgba(12, 83, 133, 0.92));
}

.page-hero--news {
  background:
    linear-gradient(135deg, rgba(8, 34, 58, 0.98), rgba(12, 76, 122, 0.92));
}

.page-hero--about {
  background:
    linear-gradient(135deg, rgba(10, 42, 72, 0.98), rgba(12, 95, 149, 0.9));
}

.page-hero--news-detail {
  background-size: cover;
  background-position: center;
}

.factory-grid--listing,
.news-grid--listing,
.feature-grid--about {
  margin-top: 0;
}

.page-hero--factory {
  background-size: cover;
  background-position: center;
}

.page-hero--contact {
  background:
    radial-gradient(circle at 78% 22%, rgba(109, 212, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(8, 40, 70, 0.98), rgba(11, 72, 117, 0.92));
}

.page-hero--contact::after {
  content: "";
  position: absolute;
  inset: auto -8% -30% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 212, 255, 0.18), rgba(109, 212, 255, 0));
  pointer-events: none;
}

.page-hero > .site-shell {
  position: relative;
  z-index: 1;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.value-list {
  margin-top: 16px;
  padding-left: 18px;
}

.about-card {
  display: block;
  color: inherit;
}

.about-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.about-card p {
  margin-top: 14px;
}

.value-list li + li {
  margin-top: 8px;
}

.site-footer {
  background:
    radial-gradient(circle at top right, rgba(75, 167, 214, 0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(25, 149, 211, 0.08), transparent 24%),
    linear-gradient(180deg, #08203a 0%, #0c2b49 100%);
  color: rgba(211, 224, 236, 0.82);
  border-top: 1px solid rgba(109, 212, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(173, 225, 251, 0.06);
  margin-top: 40px;
  padding-top: 28px;
}

.site-footer__panel {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr 0.95fr;
  gap: 28px;
  padding: 32px;
  margin-top: 6px;
  border: 1px solid rgba(115, 170, 206, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 20px 48px rgba(3, 14, 25, 0.16);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.site-footer__panel:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 220, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.028));
}

.site-footer__brand,
.site-footer__links,
.site-footer__social-col {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(109, 212, 255, 0.84);
}

/* ── Brand column ── */
.site-footer__logo-wrap {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 20px;
}

.site-footer__logo-wrap img {
  width: 118px;
  display: block;
}

.site-footer__legal-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.4;
}

.site-footer__address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(203, 213, 225, 0.62);
  line-height: 1.6;
  margin-bottom: 16px;
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(203, 213, 225, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__contact-item svg {
  flex-shrink: 0;
  color: var(--brand-blue);
  opacity: 0.8;
}

.site-footer__contact-item em {
  font-style: normal;
  color: rgba(203, 213, 225, 0.4);
  font-size: 0.78rem;
  margin-right: 3px;
}

.site-footer__contact-item:hover {
  color: #fff;
}

/* ── Nav columns ── */
.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.site-footer__link-group {
  min-width: 0;
}

.site-footer__nav-title {
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(139, 220, 255, 0.92);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(92, 160, 200, 0.18);
}

.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.site-footer__nav-list a {
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s, gap 0.18s;
}

.site-footer__nav-list a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.site-footer__nav-list a:hover {
  color: #fff;
  gap: 9px;
}

.site-footer__nav-list a:hover::before {
  opacity: 1;
}

/* ── Social column ── */
.site-footer__social-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer__social-copy {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(211, 224, 236, 0.68);
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(203, 213, 225, 0.8);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(25, 149, 211, 0.25);
  border-radius: 8px;
  background: rgba(25, 149, 211, 0.1);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  width: fit-content;
  margin-top: auto;
}

.site-footer__social-link:hover {
  background: rgba(25, 149, 211, 0.15);
  border-color: rgba(25, 149, 211, 0.5);
  color: #fff;
}

/* ── Bottom bar ── */
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__bottom p {
  font-size: 0.8rem;
  color: rgba(203, 213, 225, 0.35);
  margin: 0;
  text-align: center;
}

.factory-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 34px;
  border: 1px solid rgba(25, 149, 211, 0.16);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(9, 39, 68, 0.98), rgba(11, 95, 149, 0.96));
  box-shadow: 0 26px 80px rgba(9, 39, 68, 0.18);
  color: #fff;
}

.factory-contact-cta__content {
  max-width: 60ch;
}

.factory-contact-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(160, 228, 255, 0.9);
}

.factory-contact-cta h2 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.factory-contact-cta p:last-child {
  margin-top: 14px;
  color: rgba(226, 232, 240, 0.86);
}

.factory-contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.factory-contact-cta__secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.contact-page .section {
  padding-top: 72px;
}

.contact-hero {
  display: grid;
  gap: 28px;
}

.contact-hero__content {
  max-width: 760px;
}

.contact-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-hero__badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(154, 221, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.contact-panel--office {
  padding: 34px 32px 32px;
  background:
    radial-gradient(circle at top right, rgba(109, 212, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #07233c 0%, #0a3f68 56%, #0d5b90 100%);
  border: 1px solid rgba(137, 208, 245, 0.18);
  box-shadow: 0 28px 72px rgba(7, 27, 45, 0.2);
  color: #fff;
}

.contact-panel--office::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -64px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 212, 255, 0.16), rgba(109, 212, 255, 0));
  pointer-events: none;
}

.contact-panel--form {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(247, 251, 254, 0.98), rgba(235, 244, 250, 0.98));
  border: 1px solid rgba(152, 196, 225, 0.42);
  box-shadow: 0 24px 70px rgba(9, 39, 68, 0.08);
}

.contact-panel--form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1995d3, #6dd4ff);
}

.contact-panel__top h2,
.contact-form-head h2 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 2.7vw, 2.6rem);
  line-height: 1.08;
}

.contact-panel__top h2 {
  color: #fff;
}

.contact-panel__top p,
.contact-form-head p {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.78;
}

.contact-panel__top p {
  color: rgba(226, 232, 240, 0.82);
}

.contact-form-head p {
  color: #607289;
}

.contact-panel__eyebrow,
.contact-form-head__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-panel__eyebrow {
  color: rgba(160, 228, 255, 0.88);
}

.contact-form-head__eyebrow {
  color: var(--brand-blue);
}

.contact-channels {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-channel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(154, 221, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.contact-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.09);
  color: #8bdcff;
}

.contact-channel__label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(160, 228, 255, 0.86);
}

.contact-channel p {
  color: #fff;
  margin: 0;
  line-height: 1.7;
}

.contact-channel a {
  color: #fff;
}

.contact-panel__richtext {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(154, 221, 255, 0.16);
  color: rgba(226, 232, 240, 0.82);
}

.contact-panel__richtext p + p {
  margin-top: 12px;
}

.contact-form-head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(25, 149, 211, 0.14);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

.contact-form-actions__note {
  max-width: 28ch;
  font-size: 0.86rem;
  line-height: 1.7;
  color: #6b7f94;
}

.site-footer__social-block {
  margin-top: auto;
  padding-top: 22px;
}

@media (min-width: 1600px) {
  .site-shell {
    width: min(1360px, calc(100% - 80px));
  }

  .site-header__inner {
    min-height: 102px;
    gap: 32px;
  }

  .site-nav {
    gap: 36px;
  }

  .site-header__cta,
  .btn {
    padding: 15px 26px;
  }

  .hero {
    padding: 196px 0 104px;
  }

  .hero__badges {
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero__badges span {
    padding: 11px 18px;
    font-size: 0.75rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(3.5rem, 4.7vw, 5.8rem);
  }

  .hero__bottom {
    gap: 48px;
    margin-top: 34px;
  }

  .hero__lead,
  .page-hero p:last-child {
    font-size: 1.12rem;
    line-height: 1.9;
  }

  .hero__stats {
    gap: 20px;
    margin-top: 42px;
  }

  .hero__stat {
    padding: 22px 24px;
  }

  .hero__stat strong {
    font-size: 1.82rem;
  }

  .factory-grid--hero,
  .feature-grid,
  .news-grid {
    gap: 28px;
  }

  .factory-card__body,
  .feature-card,
  .news-card,
  .rich-card,
  .cta-band,
  .section-card {
    padding: 30px;
  }

  .section {
    padding: 98px 0;
  }

  .section-heading__lead,
  .cta-band > div > p:last-child {
    max-width: 68ch;
  }

  .page-hero {
    padding-top: 152px;
  }

  .page-hero__content {
    max-width: 76rem;
  }

  .page-hero__meta {
    gap: 18px;
  }

  .site-footer {
    margin-top: 64px;
  }

  .site-footer__panel {
    padding: 38px 42px;
    gap: 32px;
  }
}

@media (min-width: 2200px) {
  .site-shell {
    width: min(1480px, calc(100% - 112px));
  }

  .site-header__inner {
    min-height: 108px;
  }

  .hero {
    padding: 208px 0 118px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 4.3vw, 6.2rem);
  }

  .hero__lead,
  .page-hero p:last-child {
    font-size: 1.16rem;
  }

  .hero__stats {
    margin-top: 48px;
  }

  .section {
    padding: 108px 0;
  }

  .page-hero__content {
    max-width: 82rem;
  }

  .site-footer__panel {
    padding: 42px 48px;
  }
}

@media (min-width: 992px) {
  .site-nav {
    display: flex;
  }

  .site-header__toggle,
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .site-header__cta {
    display: none;
  }

  .hero {
    padding-top: 148px;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factory-grid,
  .feature-grid,
  .news-grid,
  .media-gallery,
  .media-gallery--large,
  .site-footer__panel,
  .site-footer__links,
  .contact-grid,
  .product-grid,
  .product-grid--full,
  .factory-sections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    display: grid;
  }

  .factory-contact-cta {
    display: grid;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

}

/* ─── 404 / Error page ─── */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-page__inner {
  text-align: center;
  padding: 80px 0;
}

.error-page__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: var(--brand-blue);
  opacity: 0.15;
  line-height: 1;
  margin: 0;
}

.error-page__inner h1 {
  margin-top: -16px;
  margin-bottom: 16px;
}

.error-page__desc {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.error-page__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer copyright bar (eski — yeni tanım yukarıda) ─── */
.site-footer__bottom--legacy {
  margin-top: 40px;
}

/* ─── Focus / keyboard navigation ─── */
:focus-visible {
  outline: 2px solid #1995d3;
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #1995d3;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Scroll arrow disabled state ─── */
.news-scroll-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ─── Smooth scroll ─── */
html {
  scroll-behavior: smooth;
}

.will-animate {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 780ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  filter: blur(8px);
}

.will-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.factory-card.will-animate,
.news-card.will-animate,
.feature-card.will-animate,
.factory-section-card.will-animate,
.site-footer__brand.will-animate,
.site-footer__links.will-animate,
.site-footer__social-col.will-animate {
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.will-animate[data-motion="slide-left"] {
  transform: translate3d(34px, 0, 0);
}

.will-animate[data-motion="slide-right"] {
  transform: translate3d(-34px, 0, 0);
}

.will-animate[data-motion="lift"] {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.will-animate[data-motion="rise-scale"] {
  transform: translate3d(0, 40px, 0) scale(0.975);
}

.factory-card.will-animate.is-visible,
.news-card.will-animate.is-visible,
.feature-card.will-animate.is-visible,
.factory-section-card.will-animate.is-visible,
.site-footer__brand.will-animate.is-visible,
.site-footer__links.will-animate.is-visible,
.site-footer__social-col.will-animate.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.has-motion .site-header__inner > *,
.has-motion .hero__badges span,
.has-motion .hero__eyebrow,
.has-motion .hero h1,
.has-motion .hero__lead,
.has-motion .hero__actions .btn,
.has-motion .hero__stats .hero__stat,
.has-motion .factory-grid--hero .factory-card,
.has-motion [data-page-intro-card],
.has-motion [data-page-intro] {
  opacity: 0;
  animation-play-state: paused;
}

.page-is-ready .site-header__inner > * {
  animation: introFloat 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-play-state: running;
}

.page-is-ready .site-header__inner > *:nth-child(1) {
  animation-delay: 0.06s;
}

.page-is-ready .site-header__inner > *:nth-child(3) {
  animation-delay: 0.14s;
}

.page-is-ready .site-header__inner > *:nth-child(4) {
  animation-delay: 0.2s;
}

.page-is-ready .hero__badges span,
.page-is-ready .hero__eyebrow,
.page-is-ready .hero h1,
.page-is-ready .hero__lead,
.page-is-ready .hero__actions .btn,
.page-is-ready .hero__stats .hero__stat,
.page-is-ready .factory-grid--hero .factory-card,
.page-is-ready [data-page-intro-card],
.page-is-ready [data-page-intro] {
  animation: introRise 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: running;
  animation-delay: var(--intro-delay, 0s);
}

.page-is-ready .hero__badges span:nth-child(1) { animation-delay: 0.08s; }
.page-is-ready .hero__badges span:nth-child(2) { animation-delay: 0.14s; }
.page-is-ready .hero__badges span:nth-child(3) { animation-delay: 0.2s; }
.page-is-ready .hero__eyebrow { animation-delay: 0.22s; }
.page-is-ready .hero h1 { animation-delay: 0.3s; }
.page-is-ready .hero__lead { animation-delay: 0.42s; }
.page-is-ready .hero__actions .btn:nth-child(1) { animation-delay: 0.5s; }
.page-is-ready .hero__actions .btn:nth-child(2) { animation-delay: 0.58s; }
.page-is-ready .hero__stats .hero__stat:nth-child(1) { animation-delay: 0.5s; }
.page-is-ready .hero__stats .hero__stat:nth-child(2) { animation-delay: 0.58s; }
.page-is-ready .hero__stats .hero__stat:nth-child(3) { animation-delay: 0.66s; }
.page-is-ready .hero__stats .hero__stat:nth-child(4) { animation-delay: 0.74s; }
.page-is-ready .factory-grid--hero .factory-card:nth-child(1) { animation-delay: 0.62s; }
.page-is-ready .factory-grid--hero .factory-card:nth-child(2) { animation-delay: 0.7s; }
.page-is-ready .factory-grid--hero .factory-card:nth-child(3) { animation-delay: 0.78s; }
.page-is-ready .factory-grid--hero .factory-card:nth-child(4) { animation-delay: 0.86s; }

.page-is-ready .hero__stats .hero__stat,
.page-is-ready .factory-grid--hero .factory-card,
.page-is-ready [data-page-intro-card] {
  animation-name: introRiseScale;
}

.page-is-ready .cta-band[data-page-intro-card],
.page-is-ready .section-card[data-page-intro-card] {
  animation-name: introRise;
}

@keyframes introRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes introRiseScale {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.97);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes introFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mobileNavEnter {
  0% {
    opacity: 0;
    transform: translateY(-12px) scaleY(0.96);
  }
  100% {
    opacity: 1;
    tran