:root {
  --bg: #071726;
  --bg-soft: #0d2235;
  --bg-panel: #0f2940;
  --surface: #ffffff;
  --surface-soft: #f3f7fb;
  --text: #0d1f2f;
  --text-muted: #5d7187;
  --line: rgba(13, 31, 47, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --primary: #1986ea;
  --primary-strong: #0f6fc8;
  --primary-soft: rgba(25, 134, 234, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(4, 17, 28, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1460px, calc(100vw - 24px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: normal;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(25, 134, 234, 0.12), transparent 28%),
    linear-gradient(180deg, #f9fbfd 0%, #eff4f9 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select,
input,
textarea {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 14, 25, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  color: var(--white);
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.lang-switcher label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lang-switcher select {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #3aa0ff 100%);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(25, 134, 234, 0.25);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: #0b1f31;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(96vh, 960px);
  display: flex;
  align-items: stretch;
  isolation: isolate;
  background: #08192a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 27, 0.92) 0%, rgba(7, 22, 37, 0.82) 35%, rgba(8, 23, 38, 0.36) 70%, rgba(8, 23, 38, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 17, 27, 0.25) 0%, rgba(6, 17, 27, 0.72) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 132px 0 76px;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 48px;
}

.hero-copy {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: #6bb8ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-accent {
  color: #2b95f4;
}

.hero-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature-pill {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(25, 134, 234, 0.18);
  border: 1px solid rgba(86, 178, 255, 0.28);
  color: #8bd0ff;
  font-size: 1.4rem;
}

.feature-pill strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.feature-pill span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 4px;
  line-height: 1.45;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-head p {
  margin: 18px 0 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
  gap: 26px;
  align-items: stretch;
}

.about-card,
.stats-card,
.product-card,
.process-card,
.contact-card,
.value-card,
.spec-card,
.capability-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.about-card {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
}

.about-card p,
.text-block p,
.capability-card p,
.contact-card p,
.spec-card p,
.value-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

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

.stats-card {
  padding: 28px;
  min-height: 196px;
}

.stats-card .stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.stats-card strong {
  display: block;
  color: var(--primary-strong);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.stats-card span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

.stats-card p {
  margin: 12px 0 0;
}

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

.product-card {
  overflow: hidden;
  background: #091b2d;
  color: var(--white);
}

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

.product-card-body {
  padding: 22px;
  background: linear-gradient(180deg, rgba(5, 18, 31, 0.4), rgba(5, 18, 31, 0.92));
}

.product-card-body h3 {
  margin: 0;
  font-size: 1.62rem;
}

.product-card-body p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.product-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, rgba(25, 134, 234, 0.08), rgba(25, 134, 234, 0.5), rgba(25, 134, 234, 0.08));
}

.process-card {
  position: relative;
  padding: 20px 18px 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
}

.process-badge {
  width: 78px;
  height: 78px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #2f9cff 0%, #0a4f95 100%);
  color: var(--white);
  font-size: 1.55rem;
  border: 6px solid #eaf4fe;
  box-shadow: 0 16px 30px rgba(16, 74, 128, 0.22);
}

.process-step {
  display: block;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 10px 0 0;
  font-size: 1.1rem;
}

.process-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.banner {
  position: relative;
  color: var(--white);
  background: #081827;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 25, 0.92) 0%, rgba(7, 22, 36, 0.78) 50%, rgba(7, 22, 36, 0.9) 100%),
    url("assets/images/page2_img1.png") center/cover no-repeat;
}

.banner .container {
  position: relative;
  z-index: 1;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0;
}

.advantage {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}

.advantage-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #91d1ff;
  font-size: 1.4rem;
}

.advantage strong {
  display: block;
  font-size: 1.15rem;
}

.contact-band {
  background:
    linear-gradient(90deg, rgba(9, 35, 58, 0.98) 0%, rgba(6, 23, 38, 0.96) 55%, rgba(10, 33, 53, 0.96) 100%);
  color: var(--white);
}

.contact-band-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-panel h3 {
  margin: 0 0 18px;
  font-size: 1.65rem;
}

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

.contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 5px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

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

.form-note {
  margin: 0;
  color: #96d0ff;
}

.map-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 12, 21, 0.2), rgba(3, 12, 21, 0.66)),
    url("assets/images/page1_img4.png") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-pin {
  position: absolute;
  left: 68%;
  top: 58%;
  translate: -50% -50%;
  background: rgba(8, 29, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 18px;
  border-radius: 18px;
  max-width: 230px;
}

.map-pin strong {
  display: block;
  color: var(--white);
}

.map-pin span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.page-hero {
  position: relative;
  padding: 148px 0 98px;
  color: var(--white);
  background: #081827;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 12, 21, 0.9) 0%, rgba(6, 20, 32, 0.72) 45%, rgba(6, 20, 32, 0.4) 100%);
  z-index: 1;
}

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

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1.08rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.value-grid,
.capabilities-grid,
.spec-grid,
.contact-grid,
.cta-grid {
  display: grid;
  gap: 22px;
}

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

.value-card,
.spec-card,
.capability-card,
.contact-card {
  padding: 28px;
}

.value-card h3,
.spec-card h3,
.capability-card h3,
.contact-card h3 {
  margin: 18px 0 0;
  font-size: 1.24rem;
}

.value-icon,
.contact-icon,
.spec-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.35rem;
}

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

.spec-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.spec-list span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--text-muted);
}

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

.cta-block {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 29, 48, 0.98), rgba(21, 92, 161, 0.92)),
    url("assets/images/page1_img2.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.cta-block h3 {
  margin: 0;
  font-size: 1.8rem;
}

.cta-block p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.about-page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #071a2d;
}

.about-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) brightness(0.74);
}

.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 21, 38, 0.9) 0%, rgba(5, 21, 38, 0.72) 40%, rgba(5, 21, 38, 0.28) 68%, rgba(5, 21, 38, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 21, 38, 0.18) 0%, rgba(5, 21, 38, 0.54) 100%);
}

.about-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-top: 74px;
}

.about-page-hero-copy {
  width: min(560px, 100%);
  color: #fff;
}

.about-page-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 5rem);
  line-height: 0.96;
  font-weight: 800;
  text-transform: uppercase;
}

.about-page-hero-accent {
  margin: 16px 0 0;
  color: #1d86e3;
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  font-weight: 700;
  line-height: 1.08;
}

.about-page-hero-text {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-page-section {
  padding-block: 64px;
}

.about-page-label {
  margin: 0 0 12px;
  color: #1d86e3;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-page-intro {
  background:
    radial-gradient(circle at center, rgba(44, 133, 218, 0.08), transparent 28%),
    linear-gradient(180deg, #f9fbfe 0%, #f5f8fc 100%);
}

.about-page-intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.42fr);
  gap: 40px;
  align-items: center;
}

.about-page-intro-copy h2,
.about-page-center-head h2,
.about-page-partners-head h2 {
  margin: 0;
  color: #0a2340;
  font-size: clamp(1.62rem, 2.43vw, 2.63rem);
  line-height: 1.1;
}

.about-page-facility .about-page-center-head {
  max-width: 1180px;
  margin: 0 auto 42px;
}

.about-page-facility .about-page-center-head h2 {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
}

.about-page-intro-copy p,
.about-page-facility-copy p,
.about-page-value p,
.about-page-partner p {
  color: #33485e;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-page-intro-copy p + p {
  margin-top: 14px;
}

.about-page-download {
  margin-top: 22px;
  min-height: 46px;
  justify-content: space-between;
  gap: 16px;
}

.about-page-intro-media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(8, 28, 47, 0.1);
}

.about-page-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-page-center-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.about-page-values {
  background:
    radial-gradient(circle at 50% 18%, rgba(44, 133, 218, 0.12), transparent 36%),
    linear-gradient(180deg, #fbfcff 0%, #f4f8fd 100%);
}

.about-page-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.about-page-value {
  padding: 34px 28px 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(20, 75, 130, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(8, 31, 55, 0.06);
}

.about-page-value-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
  border: 1px solid rgba(31, 113, 196, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 34px rgba(23, 82, 136, 0.08);
}

.about-page-value-icon::before {
  width: 76px;
  height: 76px;
  margin: 0 auto;
}

.about-page-value h3 {
  margin: 0;
  color: #0a2340;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-page-value p {
  max-width: 200px;
  margin: 14px auto 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

.value-icon-leaf::before {
  width: 84px;
  height: 84px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 5c-7 0-12 4-12 10 0 2.5 1.7 4 4.2 4C16.7 19 19 13 19 5Z' stroke='%231d86e3' stroke-width='2'/%3E%3Cpath d='M8 16c2-2 5-4 8-5.5' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.value-icon-team::before {
  width: 88px;
  height: 88px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='8' cy='8.5' r='2.8' stroke='%231d86e3' stroke-width='2'/%3E%3Ccircle cx='16.5' cy='8.5' r='2.8' stroke='%231d86e3' stroke-width='2'/%3E%3Cpath d='M3.8 18c.7-2.3 2.7-3.7 5.1-3.7S13.4 15.7 14 18' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12.6 18c.5-1.9 2.1-3.1 4.1-3.1 1.8 0 3.3 1 4 2.7' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.about-page-facility {
  background:
    radial-gradient(circle at center, rgba(44, 133, 218, 0.08), transparent 28%),
    linear-gradient(180deg, #fafcff 0%, #f3f7fb 100%);
  padding-top: 74px;
  padding-bottom: 72px;
  overflow: hidden;
}

.about-page-facility-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1.02fr);
  gap: 42px;
  align-items: start;
}

.about-page-facility-summary {
  display: grid;
  gap: 20px;
  align-content: start;
  align-self: start;
  padding-top: 18px;
  max-width: 100%;
}

.about-page-facility-summary-text {
  margin: 0;
  max-width: 540px;
}

.facility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(104px, 1fr));
  gap: 0;
  align-items: start;
  width: 100%;
  max-width: 540px;
  justify-self: start;
}

.facility-strip-card {
  min-height: 172px;
  padding: 8px 14px 10px 0;
  display: grid;
  grid-template-rows: 56px 48px 1fr;
  justify-items: center;
  align-items: start;
  align-content: start;
  row-gap: 12px;
  text-align: center;
}

.facility-strip-card + .facility-strip-card {
  border-left: 1px solid rgba(14, 52, 93, 0.12);
  padding-left: 14px;
}

.facility-strip-icon {
  width: 56px;
  height: 56px;
  position: relative;
  border-radius: 18px;
  border: 1px solid #d4deea;
  background: rgba(255, 255, 255, 0.96);
}

.facility-strip-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}

.facility-strip-icon-building::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M11 30V8h14v22M25 30V14h4v16M8 30h22' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 12h2M21 12h2M15 17h2M21 17h2M15 22h2M21 22h2' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M18 30v-5h4v5' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.facility-strip-icon-coil::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cellipse cx='15' cy='24' rx='9.5' ry='9' stroke='%231d86e3' stroke-width='2.4'/%3E%3Cellipse cx='15' cy='24' rx='4.1' ry='3.8' stroke='%231d86e3' stroke-width='2.4'/%3E%3Cpath d='M21 16.5h9.5M22.5 21.5h10.5M22.5 26.5h10.5M21 31.5h9.5' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M9 34.5h25' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.facility-strip-icon-stack::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Crect x='9' y='30' width='10' height='8' rx='0.9' stroke='%231d86e3' stroke-width='2.2'/%3E%3Crect x='19' y='30' width='10' height='8' rx='0.9' stroke='%231d86e3' stroke-width='2.2'/%3E%3Crect x='29' y='30' width='10' height='8' rx='0.9' stroke='%231d86e3' stroke-width='2.2'/%3E%3Crect x='14' y='20' width='10' height='8' rx='0.9' stroke='%231d86e3' stroke-width='2.2'/%3E%3Crect x='24' y='20' width='10' height='8' rx='0.9' stroke='%231d86e3' stroke-width='2.2'/%3E%3Cpath d='M8 39.5h32' stroke='%231d86e3' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M14 24h10M24 24h10M9 34h10M19 34h10M29 34h10' stroke='%231d86e3' stroke-width='2' stroke-linecap='round' opacity='0.9'/%3E%3C/svg%3E");
}

.facility-strip-icon-box::before {
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 7 35.5 13.3v13.8L24 33.4 12.5 27.1V13.3L24 7Z' stroke='%231d86e3' stroke-width='2.6' stroke-linejoin='round'/%3E%3Cpath d='m12.5 13.3 11.5 6.2 11.5-6.2M24 19.5v13.9' stroke='%231d86e3' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M10 39h28' stroke='%231d86e3' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.facility-strip-card strong {
  margin: 0;
  color: #1d86e3;
  font-size: 0.98rem;
  line-height: 1.08;
  font-weight: 800;
  width: 100%;
  max-width: 128px;
}

.facility-strip-card span {
  margin: 0;
  color: #0a2340;
  font-size: 0.78rem;
  line-height: 1.38;
  width: 100%;
  max-width: 122px;
}

.about-page-facility-media {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 0;
  transform: none;
  transform-origin: center center;
}

.about-page-facility-photo {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(8, 28, 47, 0.12);
}

.about-page-facility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-facility-photo-large img,
.about-page-facility-photo-small img {
  min-height: 340px;
  max-height: 340px;
}

.about-page-facility-photo-large {
  align-self: start;
}

.about-page-facility-photo-small {
  align-self: start;
}

.about-page-partners {
  padding: 56px 0 54px;
  color: #0a2340;
  background:
    radial-gradient(circle at center, rgba(44, 133, 218, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
  border-top: 1px solid rgba(14, 52, 93, 0.08);
  border-bottom: 1px solid rgba(14, 52, 93, 0.08);
}

.about-page-partners-head {
  text-align: center;
  margin-bottom: 28px;
}

.about-page-partners-head h2 {
  color: #0a2340;
  font-size: clamp(1.71rem, 2.52vw, 2.61rem);
  text-transform: uppercase;
}

.about-page-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.about-page-partner {
  padding: 30px 22px 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(20, 75, 130, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(8, 31, 55, 0.06);
}

.about-page-partner-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 20px;
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
  border: 1px solid rgba(31, 113, 196, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 34px rgba(23, 82, 136, 0.08);
}

.about-page-partner-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 54px 54px;
}

.about-page-partner h3 {
  margin: 0;
  color: #0a2340;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-page-partner p {
  margin: 14px auto 0;
  max-width: 190px;
  color: rgba(10, 35, 64, 0.82);
  font-size: 0.9rem;
  line-height: 1.72;
}

.about-page-partner-icon-badge::before {
  background-size: 58px 58px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='24' cy='18' r='8.8' stroke='%231d86e3' stroke-width='2.2'/%3E%3Ccircle cx='24' cy='18' r='5.1' stroke='%231d86e3' stroke-width='2'/%3E%3Cpath d='M20.5 29.5 18 36l6-3.2L30 36l-2.5-6.5' stroke='%231d86e3' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m24 15.2 1.3 2.4 2.7.4-2 1.9.5 2.6-2.5-1.3-2.5 1.3.5-2.6-2-1.9 2.7-.4L24 15.2Z' stroke='%231d86e3' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.about-page-partner-icon-shield::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3 19 6v5.5c0 4.2-2.7 8-7 9.5-4.3-1.5-7-5.3-7-9.5V6l7-3Z' stroke='%231d86e3' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m9 12 2 2 4-4' stroke='%231d86e3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.about-page-partner-icon-globe::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8' stroke='%231d86e3' stroke-width='2'/%3E%3Cpath d='M4 12h16M12 4a13 13 0 0 1 0 16M12 4a13 13 0 0 0 0 16' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.about-page-partner-icon-handshake::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6.5 11 2.8 2.7c.6.6 1.7.6 2.3 0l2.4-2.4c.6-.6 1.7-.6 2.3 0l2.8 2.8' stroke='%231d86e3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 9.5 6.8 6c.8-.8 2-.9 2.9-.2l1.4 1M21 9.5 17.2 6c-.8-.8-2-.9-2.9-.2l-1.4 1M8 14.5l-1.2 1.2M10.8 16.2l-1 1M13.6 16.2l-.8.8' stroke='%231d86e3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.about-page-partner-icon-bars::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 20V11M10 20V7M16 20V4M22 20v-9' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M2 20h20' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: #071b31;
}

.product-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 43, 0.88) 0%, rgba(5, 24, 43, 0.76) 38%, rgba(5, 24, 43, 0.32) 70%, rgba(5, 24, 43, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 24, 43, 0.38), rgba(5, 24, 43, 0.5));
}

.product-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 52px;
}

.product-page-hero-copy {
  width: min(100%, 620px);
}

.product-page-hero-copy h1 {
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(3.65rem, 7.6vw, 5.35rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.product-page-hero-copy h1 .accent,
.product-page-hero-copy h1 strong,
.product-page-hero-copy h1 em {
  color: #1d86e3;
  font-style: normal;
}

.product-page-hero-text {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
  line-height: 1.72;
}

.product-page-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.product-page-overview {
  padding-top: 34px;
  padding-bottom: 28px;
}

.product-page-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.72fr);
  gap: 26px;
  align-items: start;
}

.product-page-overview-copy h2 {
  margin: 8px 0 14px;
  color: #0a2340;
  font-size: clamp(1.8rem, 2.79vw, 2.88rem);
  line-height: 1.12;
}

.product-page-overview-copy p {
  margin: 0;
  max-width: 360px;
  color: rgba(10, 35, 64, 0.84);
  font-size: 0.98rem;
  line-height: 1.85;
}

.product-page-applications {
  margin-top: 28px;
}

.product-page-applications h3 {
  margin: 0 0 14px;
  color: #1d86e3;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.product-page-application-list {
  display: grid;
}

.product-page-application-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(14, 52, 93, 0.12);
  color: #0a2340;
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-page-application-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  background: center/26px 26px no-repeat;
}

.product-app-icon-distribution {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 20V6h9v14M13 20v-8h7v8M2 20h20' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 9h1M10 9h1M7 12h1M10 12h1M16 15h1M19 15h1' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-app-icon-power {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3v8' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M8 6.5A7 7 0 1 0 16 6.5' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-app-icon-industrial {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 20V8l6 4V8l6 4V5l6 4v11H3Z' stroke='%231d86e3' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M7 20v-3M11 20v-3M15 20v-3' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-app-icon-renewable {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 5c-6 .8-10 4.7-11.5 10.7-.3 1.2-.4 2.2-.5 3.3 2.2-.2 4.1-.8 5.9-1.8C16.8 14.8 19 11 19 5Z' stroke='%231d86e3' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M8 15c1.7-.3 3.2-1 4.5-2.2 1.1-1 2-2.3 2.6-3.8' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-app-icon-mobility {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 16h11l2.2-4.5A2 2 0 0 1 20 10h1' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 16h1M18 16h2' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='7' cy='17' r='2' stroke='%231d86e3' stroke-width='1.8'/%3E%3Ccircle cx='17' cy='17' r='2' stroke='%231d86e3' stroke-width='1.8'/%3E%3Cpath d='M3 13h7l1.5-3h4' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.product-app-icon-equipment {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='3.2' stroke='%231d86e3' stroke-width='1.8'/%3E%3Cpath d='M12 4v2.2M12 17.8V20M20 12h-2.2M6.2 12H4M17.7 6.3l-1.5 1.5M7.8 16.2l-1.5 1.5M17.7 17.7l-1.5-1.5M7.8 7.8 6.3 6.3' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

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

.product-page-card {
  --product-card-image-height: 329px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(14, 52, 93, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(8, 28, 47, 0.08);
}

.product-page-card > img {
  width: 100%;
  height: var(--product-card-image-height);
  object-fit: cover;
  display: block;
}

.product-page-card-badge {
  position: absolute;
  top: calc(var(--product-card-image-height) - 32px);
  left: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(29, 134, 227, 0.2);
  background: #fff center/40px 40px no-repeat;
  box-shadow: 0 10px 24px rgba(8, 28, 47, 0.12);
}

.product-card-badge-coils {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cellipse cx='21' cy='24' rx='11' ry='10' stroke='%231d86e3' stroke-width='2.4'/%3E%3Cellipse cx='21' cy='24' rx='5' ry='4.5' stroke='%231d86e3' stroke-width='2.4'/%3E%3Cpath d='M8 36h25' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-card-badge-laminations {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M17 8h14v32H17z' stroke='%231d86e3' stroke-width='2.3'/%3E%3Cpath d='M12 14h5M12 20h5M12 26h5M12 32h5M31 14h5M31 20h5M31 26h5M31 32h5M21 14h6M21 20h6M21 26h6M21 32h6' stroke='%231d86e3' stroke-width='2.3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-card-badge-cores {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M10 14h10v20H10zM28 14h10v20H28zM20 14h8v8h-8zM20 26h8v8h-8z' stroke='%231d86e3' stroke-width='2.3'/%3E%3C/svg%3E");
}

.product-page-card-body {
  padding: 48px 18px 20px;
}

.product-page-card-body h3 {
  margin: 0 0 10px;
  color: #0a2340;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.product-page-card-body p {
  margin: 0;
  color: rgba(10, 35, 64, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-page-card-list {
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-page-card-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(10, 35, 64, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-page-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d86e3;
}

.product-page-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d86e3;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-page-card-link::after {
  content: "\2192";
  font-size: 1rem;
}

.product-page-spec-strip {
  padding-top: 18px;
  padding-bottom: 34px;
}

.product-page-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-page-spec-item {
  padding: 34px 24px 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(20, 75, 130, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(8, 31, 55, 0.06);
}

.product-page-spec-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60px 60px;
  border-radius: 28px;
  border: 1px solid rgba(31, 113, 196, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 34px rgba(23, 82, 136, 0.08);
}

.product-page-spec-icon-coil {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56' fill='none'%3E%3Cellipse cx='18' cy='28' rx='11.5' ry='10.5' stroke='%231d86e3' stroke-width='2.8'/%3E%3Cellipse cx='18' cy='28' rx='5.2' ry='4.7' stroke='%231d86e3' stroke-width='2.8'/%3E%3Cpath d='M25.5 18.5h12.5M27 24.7h14M27 31h14M25.5 37.2h12.5' stroke='%231d86e3' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M10.5 40.5h32' stroke='%231d86e3' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-spec-icon-thickness {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56' fill='none'%3E%3Cpath d='M13 31.5 28 23l15 8.5L28 40 13 31.5Z' stroke='%231d86e3' stroke-width='2.8' stroke-linejoin='round'/%3E%3Cpath d='M13 22.5 28 14l15 8.5M13 40.5 28 32l15 8.5' stroke='%231d86e3' stroke-width='2.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.product-page-spec-icon-ruler {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56' fill='none'%3E%3Cpath d='M11 15h34v26H11z' stroke='%231d86e3' stroke-width='2.8'/%3E%3Cpath d='M20 15v8M28 15v5M36 15v8M20 41v-8M28 41v-5M36 41v-8' stroke='%231d86e3' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-spec-icon-certified {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56' fill='none'%3E%3Ccircle cx='28' cy='21' r='10' stroke='%231d86e3' stroke-width='2.8'/%3E%3Ccircle cx='28' cy='21' r='5.7' stroke='%231d86e3' stroke-width='2.4'/%3E%3Cpath d='M24 34.5 21 42l7-3.7 7 3.7-3-7.5' stroke='%231d86e3' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m28 17.5 1.6 2.8 3.1.5-2.3 2.2.6 3-3-1.6-3 1.6.6-3-2.3-2.2 3.1-.5L28 17.5Z' stroke='%231d86e3' stroke-width='2.2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.product-page-spec-item h3 {
  margin: 0 0 12px;
  color: #0a2340;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-page-spec-item p {
  margin: 0 auto 16px;
  max-width: 180px;
  color: rgba(10, 35, 64, 0.78);
  font-size: 0.88rem;
  line-height: 1.72;
}

.product-page-spec-item strong {
  display: block;
  color: #0a2340;
  font-size: 1.06rem;
  line-height: 1.45;
}

.product-page-process {
  padding-top: 4px;
  padding-bottom: 36px;
}

.product-page-process-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1.44fr);
  gap: 30px;
  align-items: start;
}

.product-page-process-copy h2 {
  margin: 8px 0 14px;
  color: #0a2340;
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  line-height: 1.16;
}

.product-page-process-copy p {
  margin: 0;
  max-width: 320px;
  color: rgba(10, 35, 64, 0.82);
  font-size: 0.95rem;
  line-height: 1.85;
}

.product-page-process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.product-page-process-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, #1d86e3 0%, rgba(29, 134, 227, 0.4) 100%);
  z-index: 0;
}

.product-page-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.product-page-process-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-color: #0f5ca8;
  border: 6px solid #f8fbff;
  box-shadow: 0 10px 22px rgba(8, 28, 47, 0.12);
}

.product-page-process-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: 0;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 34px 34px;
}

.product-page-process .process-icon-receipt::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M9 4h14v24l-2.8-2-4.2 2-4.2-2L9 28V4Z' stroke='white' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='M12 10h8M12 15h8M12 20h5' stroke='white' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M22.5 8.5 26 12' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-process .process-icon-slit::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='10' cy='16' r='4' stroke='white' stroke-width='2.4'/%3E%3Ccircle cx='22' cy='16' r='4' stroke='white' stroke-width='2.4'/%3E%3Cpath d='M14 16h4M3.5 16h2.5M26 16h2.5M10 12V8M10 24v-4M22 12V8M22 24v-4' stroke='white' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-process .process-icon-cut::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='9' cy='11' r='3.2' stroke='white' stroke-width='2.4'/%3E%3Ccircle cx='9' cy='21' r='3.2' stroke='white' stroke-width='2.4'/%3E%3Cpath d='m13 12 11-7M13 20l11 7' stroke='white' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-process .process-icon-check::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='8' y='5' width='16' height='22' rx='2.5' stroke='white' stroke-width='2.4'/%3E%3Cpath d='m12.2 16.5 2.5 2.6 5.1-5.3' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 10h6' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-process .process-icon-box::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='m16 5 9 5v11l-9 5-9-5V10l9-5Z' stroke='white' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='m7 10 9 5 9-5M16 15v11' stroke='white' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-process-step span {
  display: block;
  margin-bottom: 6px;
  color: #1d86e3;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-page-process-step h3 {
  margin: 0 0 10px;
  color: #0a2340;
  font-size: 1rem;
}

.product-page-process-step p {
  margin: 0 auto;
  max-width: 188px;
  color: rgba(10, 35, 64, 0.8);
  font-size: 0.86rem;
  line-height: 1.7;
}

.product-page-solution {
  padding: 0 0 0;
  color: #fff;
  background: linear-gradient(90deg, #174d8f 0%, #0b2e57 100%);
}

.product-page-solution-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.product-page-solution-copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.product-page-solution-copy p {
  margin: 0 0 22px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.97rem;
  line-height: 1.8;
}

.product-page-solution-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
}

.product-page-solution-feature {
  padding: 22px 18px;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.product-page-solution-feature + .product-page-solution-feature {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.product-page-solution-icon {
  width: 42px;
  height: 42px;
  background: center/34px 34px no-repeat;
}

.product-page-solution-icon-ruler {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M10 12h28v24H10z' stroke='%231d86e3' stroke-width='2.3'/%3E%3Cpath d='M18 12v7M24 12v4M30 12v7M18 36v-7M24 36v-4M30 36v-7' stroke='%231d86e3' stroke-width='2.3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-solution-icon-support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='3.2' stroke='%231d86e3' stroke-width='1.8'/%3E%3Cpath d='M12 4v2.2M12 17.8V20M20 12h-2.2M6.2 12H4M17.7 6.3l-1.5 1.5M7.8 16.2l-1.5 1.5M17.7 17.7l-1.5-1.5M7.8 7.8 6.3 6.3' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-page-solution-icon-time {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8' stroke='%231d86e3' stroke-width='1.8'/%3E%3Cpath d='M12 7.5V12l3 2.4' stroke='%231d86e3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.product-page-solution-feature h3 {
  margin: 0;
  color: #fff;
  font-size: 0.96rem;
}

.product-page-solution-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  line-height: 1.6;
}

.contact-page-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background: #071b31;
}

.contact-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 43, 0.9) 0%, rgba(5, 24, 43, 0.78) 38%, rgba(5, 24, 43, 0.3) 70%, rgba(5, 24, 43, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 24, 43, 0.38), rgba(5, 24, 43, 0.5));
}

.contact-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 48px;
}

.contact-page-hero-copy {
  width: min(100%, 620px);
}

.contact-page-hero-copy h1 {
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(3.35rem, 7.2vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.contact-page-hero-copy h1 .accent,
.contact-page-hero-copy h1 strong,
.contact-page-hero-copy h1 em {
  color: #1d86e3;
  font-style: normal;
}

.contact-page-hero-text {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.72;
}

.contact-page-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.contact-page-touch {
  padding-top: 34px;
  padding-bottom: 30px;
}

.contact-page-touch-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: start;
}

.contact-page-info h2,
.contact-page-location-copy h2,
.contact-page-form-panel h2,
.contact-page-why-head h2 {
  margin: 10px 0 14px;
  color: #0a2340;
  font-size: clamp(1.8rem, 2.7vw, 2.79rem);
  line-height: 1.12;
}

.contact-page-info-text,
.contact-page-location-copy p {
  margin: 0;
  color: rgba(10, 35, 64, 0.82);
  font-size: 0.98rem;
  line-height: 1.8;
}

.contact-page-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-page-detail-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(20, 75, 130, 0.08);
  box-shadow: 0 16px 36px rgba(8, 31, 55, 0.05);
}

.contact-page-detail-link {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-page-detail-link:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 134, 227, 0.22);
  box-shadow: 0 14px 28px rgba(8, 28, 47, 0.08);
}

.contact-page-detail-link:focus-visible {
  outline: 2px solid rgba(29, 134, 227, 0.35);
  outline-offset: 3px;
}

.contact-page-detail-icon {
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.92);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 34px 34px;
  border-radius: 18px;
  border: 1px solid rgba(31, 113, 196, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(23, 82, 136, 0.08);
}

.contact-page-detail-icon-location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none'%3E%3Cpath d='M20 34s10-9.2 10-18.3A10 10 0 1 0 10 15.7C10 24.8 20 34 20 34Z' stroke='%231d86e3' stroke-width='2.6'/%3E%3Ccircle cx='20' cy='16' r='4.2' stroke='%231d86e3' stroke-width='2.6'/%3E%3C/svg%3E");
}

.contact-page-detail-icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none'%3E%3Cpath d='M14 9h5l2 6-3 3a22.4 22.4 0 0 0 4 4l3-3 6 2v5A3 3 0 0 1 28 29C17.7 28.4 11.6 22.3 11 12a3 3 0 0 1 3-3Z' stroke='%231d86e3' stroke-width='2.6' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-page-detail-icon-mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none'%3E%3Crect x='8' y='11' width='24' height='18' rx='3' stroke='%231d86e3' stroke-width='2.6'/%3E%3Cpath d='m10 13 10 8 10-8' stroke='%231d86e3' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-page-detail-icon-web {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none'%3E%3Ccircle cx='20' cy='20' r='12' stroke='%231d86e3' stroke-width='2.6'/%3E%3Cpath d='M8 20h24M20 8a19 19 0 0 1 0 24M20 8a19 19 0 0 0 0 24' stroke='%231d86e3' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.contact-page-detail-icon-clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none'%3E%3Ccircle cx='20' cy='20' r='12' stroke='%231d86e3' stroke-width='2.6'/%3E%3Cpath d='M20 13v8l5 4' stroke='%231d86e3' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-page-detail-card h3 {
  margin: 0 0 6px;
  color: #1d86e3;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-page-detail-card p {
  margin: 0;
  color: rgba(10, 35, 64, 0.86);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-page-form-panel {
  padding: 34px 34px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.94));
  border: 1px solid rgba(14, 52, 93, 0.08);
  box-shadow: 0 18px 38px rgba(8, 28, 47, 0.06);
}

.contact-page-form-panel h2 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #1d86e3;
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  text-transform: uppercase;
}

.contact-page-form-panel > p {
  margin: 0 0 20px;
  color: rgba(10, 35, 64, 0.76);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-page-form {
  display: grid;
  gap: 14px;
}

.contact-page-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(14, 52, 93, 0.14);
  background: #fff;
  color: #0a2340;
  font-size: 0.94rem;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: rgba(10, 35, 64, 0.48);
}

.contact-page-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-page-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(10, 35, 64, 0.76);
  font-size: 0.84rem;
  line-height: 1.6;
}

.contact-page-agree input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  padding: 0;
}

.contact-page-agree a {
  color: #1d86e3;
}

.contact-page-form .form-note {
  color: #1d86e3;
}

.contact-page-location {
  padding: 0;
}

.contact-page-location-grid {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(340px, 36.5vw) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 388px;
  background: #f7fbff;
}

.contact-page-location-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px clamp(28px, 4.8vw, 56px) 54px clamp(34px, 8vw, 92px);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-page-location-copy h2 {
  margin: 12px 0 16px;
  max-width: 540px;
  font-size: clamp(2.2rem, 2.8vw, 2.95rem);
  line-height: 1.16;
}

.contact-page-location-copy p {
  max-width: 470px;
}

.contact-page-location-copy .btn {
  margin-top: 24px;
  align-self: flex-start;
}

.contact-page-location-map {
  position: relative;
  min-height: 388px;
  background:
    linear-gradient(90deg, rgba(246, 250, 255, 0.06) 0%, rgba(246, 250, 255, 0) 16%),
    url("assets/images/contact-location-clean-map.svg") center/cover no-repeat;
}

.contact-page-location-marker {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}

.contact-page-map-pin {
  position: absolute;
  left: 57.2%;
  top: 63.5%;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  background: #156fd1;
  transform: rotate(-45deg);
  box-shadow: 0 16px 28px rgba(21, 111, 209, 0.28);
  z-index: 2;
}

.contact-page-map-pin::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
}

.contact-page-map-card {
  position: absolute;
  top: 19.8%;
  left: calc(57.2% - min(324px, 28vw) / 2 + 16px);
  width: min(324px, 28vw);
  padding: 24px 28px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 42, 76, 0.06);
  box-shadow: 0 18px 38px rgba(10, 35, 64, 0.12);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.contact-page-map-card strong {
  display: block;
  margin-bottom: 10px;
  color: #1d86e3;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.contact-page-map-card span {
  display: block;
  color: rgba(10, 35, 64, 0.85);
  font-size: 0.82rem;
  line-height: 1.65;
}

.contact-page-why {
  padding: 28px 0 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 25, 45, 0.98), rgba(5, 24, 43, 0.99)),
    url("assets/images/page1_img1.png") center/cover no-repeat;
}

.contact-page-why-head {
  text-align: center;
  margin-bottom: 22px;
}

.contact-page-why-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  text-transform: uppercase;
}

.contact-page-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-page-why-item {
  padding: 24px 22px 30px;
  text-align: center;
}

.contact-page-why-item + .contact-page-why-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-page-why-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  background: center/42px 42px no-repeat;
}

.contact-page-why-icon-support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 8 34 12v8c0 6-3.8 11.2-10 13.8C17.8 31.2 14 26 14 20v-8l10-4Z' stroke='%231d86e3' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='m20 22 2.5 2.5 5.5-5.7' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-page-why-icon-response {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Crect x='12' y='8' width='18' height='24' rx='2.5' stroke='%231d86e3' stroke-width='2.4'/%3E%3Cpath d='M18 16h12M18 22h7M34 20l4 4-4 4' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-page-why-icon-handshake {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='m14 22 6 6c1.3 1.2 3.3 1.2 4.6 0l5.4-5.4c1.3-1.3 3.3-1.3 4.6 0l6 6' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 19 14.8 12c1.6-1.4 3.9-1.6 5.8-.4l2.6 1.8M41 19 33.2 12c-1.6-1.4-3.9-1.6-5.8-.4l-2.6 1.8M17 29l-2.5 2.5M23 32l-2.1 2.1M29 32l-1.8 1.8' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-page-why-icon-global {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='24' cy='24' r='14' stroke='%231d86e3' stroke-width='2.4'/%3E%3Cpath d='M10 24h28M24 10a22 22 0 0 1 0 28M24 10a22 22 0 0 0 0 28' stroke='%231d86e3' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.contact-page-why-item h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
}

.contact-page-why-item p {
  margin: 0 auto;
  max-width: 210px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .contact-page-touch-grid {
    aspect-ratio: auto;
    min-height: 220px;
  }

  .contact-page-location-grid {
    width: auto;
    margin-left: 0;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-page-location-map {
    min-height: 320px;
  }

  .contact-page-map-card {
    left: 53%;
    right: auto;
    top: 24.2%;
    width: min(320px, calc(100vw - 72px));
    transform: translateX(-50%);
  }

  .contact-page-map-pin {
    left: 53%;
    top: 66%;
  }

  .contact-page-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page-why-item:nth-child(3),
  .contact-page-why-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .contact-page-why-item:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .contact-page-hero,
  .contact-page-hero-inner {
    min-height: auto;
  }

  .contact-page-hero-inner {
    padding-top: 126px;
    padding-bottom: 56px;
  }

  .contact-page-form-grid,
  .contact-page-why-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-why-item + .contact-page-why-item,
  .contact-page-why-item:nth-child(3),
  .contact-page-why-item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .contact-page-form-panel {
    padding-inline: 24px;
  }

  .contact-page-location-copy {
    padding-inline: 24px;
  }
}

@media (max-width: 640px) {
  .contact-page-hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 3.95rem);
  }

  .contact-page-hero-text {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .contact-page-detail-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-page-detail-icon {
    width: 36px;
    height: 36px;
    background-size: 28px 28px;
  }

  .contact-page-location-copy h2 {
    font-size: clamp(2rem, 11vw, 2.45rem);
  }

  .contact-page-location-map {
    min-height: 250px;
    background-position: center;
  }

  .contact-page-map-card {
    top: 23.1%;
    width: min(270px, calc(100vw - 56px));
    padding: 18px 18px 16px;
  }

  .contact-page-map-card strong {
    font-size: 0.9rem;
  }

  .contact-page-map-card span {
    font-size: 0.74rem;
  }

  .contact-page-map-pin {
    left: 48%;
    top: 68%;
  }
}

@media (max-width: 1320px) {
  .product-page-overview-grid,
  .product-page-process-grid,
  .product-page-solution-grid {
    gap: 24px;
  }

  .product-page-cards {
    gap: 14px;
  }
}

@media (max-width: 1120px) {
  .product-page-overview-grid,
  .product-page-process-grid,
  .product-page-solution-grid {
    grid-template-columns: 1fr;
  }

  .product-page-overview-copy p,
  .product-page-process-copy p,
  .product-page-solution-copy p {
    max-width: none;
  }

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

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

  .product-page-spec-item:nth-child(3),
  .product-page-spec-item:nth-child(4) {
    border-top: 1px solid rgba(14, 52, 93, 0.08);
  }

  .product-page-process-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 0;
  }

  .product-page-process-timeline::before {
    display: none;
  }

  .product-page-solution-features {
    grid-template-columns: 1fr;
  }

  .product-page-solution-feature + .product-page-solution-feature {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 860px) {
  .product-page-hero,
  .product-page-hero-inner {
    min-height: auto;
  }

  .product-page-hero-inner {
    padding-top: 126px;
    padding-bottom: 56px;
  }

  .product-page-cards,
  .product-page-spec-grid,
  .product-page-process-timeline {
    grid-template-columns: 1fr;
  }

  .product-page-spec-item + .product-page-spec-item,
  .product-page-spec-item:nth-child(3),
  .product-page-spec-item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(14, 52, 93, 0.08);
  }

  .product-page-card > img {
    height: 230px;
  }
}

@media (max-width: 640px) {
  .product-page-hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .product-page-hero-text {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .product-page-hero-actions {
    gap: 12px;
  }

  .product-page-card-body h3,
  .product-page-overview-copy h2,
  .product-page-process-copy h2,
  .product-page-solution-copy h2 {
    font-size: 2rem;
  }

  .product-page-overview,
  .product-page-spec-strip,
  .product-page-process,
  .product-page-solution {
    overflow: hidden;
  }
}

.footer {
  background: #071727;
  color: rgba(255, 255, 255, 0.75);
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1120px) {
  .hero-content,
  .about-grid,
  .contact-band-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .value-grid,
  .spec-grid,
  .capabilities-grid,
  .advantages,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-wrap {
    position: fixed;
    inset: 84px 16px auto;
    padding: 22px;
    border-radius: 24px;
    background: rgba(6, 20, 32, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.28);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-open .nav-wrap {
    display: flex;
  }

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

  .nav-links a,
  .nav-actions .btn {
    text-align: center;
  }

  .feature-row,
  .stats-grid,
  .products-grid,
  .value-grid,
  .spec-grid,
  .capabilities-grid,
  .advantages,
  .timeline,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .section {
    padding: 72px 0;
  }
}

.home-reference {
  background: #f7f9fc;
  color: #0b2240;
}

.home-reference .container {
  width: var(--container);
}

.ref-topbar {
  position: fixed;
  width: 100%;
  background: rgba(5, 27, 49, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ref-topbar-inner {
  min-height: 74px;
}

.ref-brand {
  flex-direction: row;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.ref-brand .brand-title {
  font-size: clamp(2rem, 2.35vw, 2.65rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.ref-brand .brand-subtitle {
  align-self: flex-start;
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.86rem;
  line-height: 1;
  opacity: 0.92;
}

.ref-nav-wrap {
  gap: 22px;
}

.ref-nav-links {
  gap: 28px;
}

.ref-nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ref-nav-actions {
  gap: 12px;
}

.ref-quote-button,
.ref-primary-button,
.ref-outline-button {
  min-height: 42px;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ref-quote-button,
.ref-primary-button {
  background: #1d86e3;
  color: #fff;
  border: 1px solid #1d86e3;
  box-shadow: none;
}

.ref-whatsapp-button {
  min-height: 42px;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(37, 211, 102, 0.14);
  color: #eafff1;
  border: 1px solid rgba(37, 211, 102, 0.48);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ref-whatsapp-button:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.72);
  color: #ffffff;
}

.ref-whatsapp-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 11.6c0 4.6-3.7 8.4-8.3 8.4-1.5 0-2.9-.4-4.1-1.1L4 20l1.2-3.5c-.8-1.4-1.2-3-1.2-4.7C4 7.2 7.7 3.5 12.3 3.5S20 7.1 20 11.6Z' stroke='white' stroke-width='1.9' stroke-linejoin='round'/%3E%3Cpath d='M9.3 8.8c.2-.4.4-.4.6-.4h.5c.2 0 .4 0 .5.4l.5 1.3c.1.2 0 .4-.1.6l-.4.5c-.1.1-.1.2 0 .4.4.8 1.1 1.5 1.9 2 .1.1.2.1.4 0l.6-.4c.2-.1.4-.2.6-.1l1.2.6c.3.1.4.3.3.5l-.1.6c0 .2-.1.4-.4.6-.4.2-.9.3-1.3.2-1-.2-2-.7-3-1.6-.9-.8-1.6-1.7-2-2.7-.2-.5-.2-1 .1-1.5l.4-.6c.1-.2.1-.4.1-.6l-.4-1.2Z' fill='white'/%3E%3C/svg%3E");
}

.ref-outline-button {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.ref-small-button {
  min-height: 40px;
  padding: 0 18px;
}

.ref-lang-dropdown {
  position: relative;
}

.ref-lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.ref-lang-label {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ref-lang-caret {
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  opacity: 0.85;
}

.ref-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 78px;
  padding: 6px;
  border-radius: 12px;
  background: rgba(8, 29, 50, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 4px;
  z-index: 30;
}

.ref-lang-option {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.ref-lang-option:hover,
.ref-lang-option.is-active {
  background: rgba(29, 134, 227, 0.2);
  color: #fff;
}

.ref-home-main {
  background:
    radial-gradient(circle at 50% 46%, rgba(31, 109, 191, 0.08), transparent 26%),
    linear-gradient(180deg, #f9fbfe 0%, #f5f8fc 100%);
}

.ref-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #051a31;
}

.ref-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.92) brightness(0.82);
}

.ref-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 26, 49, 0.94) 0%, rgba(6, 31, 57, 0.9) 33%, rgba(6, 31, 57, 0.5) 59%, rgba(6, 31, 57, 0.14) 100%),
    linear-gradient(180deg, rgba(5, 20, 37, 0.18) 0%, rgba(5, 20, 37, 0.56) 100%);
}

.ref-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 700px;
  padding-top: 106px;
  padding-bottom: 38px;
}

.ref-hero-copy {
  width: min(560px, 100%);
  color: #fff;
  padding-top: 0;
}

.ref-hero-title {
  margin: 0;
  font-size: clamp(3.8rem, 5.7vw, 5.55rem);
  line-height: 0.93;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.ref-hero-title span {
  display: block;
}

.ref-hero-title .accent {
  color: #1c83e0;
}

.ref-hero-text {
  width: min(500px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.68;
}

.ref-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.ref-hero-button {
  min-height: 56px;
  padding: 0 22px;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.88rem;
}

.ref-primary-button.ref-hero-button {
  min-width: 204px;
}

.ref-brochure-button {
  min-width: 242px;
}

.ref-button-arrow {
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0.95;
}

.ref-button-icon,
.ref-feature-icon::before,
.stats-card .stat-icon::before,
.process-badge::before,
.advantage-icon::before,
.value-icon::before,
.contact-icon::before,
.spec-icon::before,
.ref-stat-icon::before,
.ref-advantage-icon::before,
.ref-contact-mark::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.ref-button-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.ref-button-icon-arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M3 9h10' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M9.5 4.5 14 9l-4.5 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ref-button-icon-download {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M9 3v7' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='m5.5 7.5 3.5 3.5 3.5-3.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 13.5h10' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ref-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(860px, calc(100vw - 90px));
  margin-top: 48px;
  padding-bottom: 0;
}

.ref-feature-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #fff;
  min-height: 62px;
}

.ref-feature-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  position: relative;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #1d86e3;
  color: #1d86e3;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 3px rgba(29, 134, 227, 0.08);
  font-size: 0;
}

.ref-feature-copy {
  max-width: 100%;
  padding-right: 4px;
  align-self: center;
}

.ref-feature-item strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
}

.ref-feature-item span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.32;
}

.ref-feature-icon-quality::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  margin: 0;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='4.2' stroke='%231d86e3' stroke-width='2'/%3E%3Cpath d='M12 2.8v3M12 18.2v3M21.2 12h-3M5.8 12h-3M18.5 5.5l-2.1 2.1M7.6 16.4l-2.1 2.1M18.5 18.5l-2.1-2.1M7.6 7.6 5.5 5.5' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ref-feature-icon-precision::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  margin: 0;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='5' y='3.5' width='14' height='17' rx='2' stroke='%231d86e3' stroke-width='2'/%3E%3Cpath d='M8 8h8M8 12h5M8 16h8M16.5 5.5v4M14.5 7.5h4' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ref-feature-icon-global::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  margin: 0;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='4.2' stroke='%231d86e3' stroke-width='2'/%3E%3Cpath d='M12 2.8v3M12 18.2v3M21.2 12h-3M5.8 12h-3M18.5 5.5l-2.1 2.1M7.6 16.4l-2.1 2.1M18.5 18.5l-2.1-2.1M7.6 7.6 5.5 5.5' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.stats-card .stat-icon,
.process-badge,
.advantage-icon,
.value-icon,
.contact-icon,
.spec-icon,
.ref-stat-icon,
.ref-advantage-icon,
.ref-contact-mark {
  color: transparent;
  font-size: 0;
}

.stats-card .stat-icon::before,
.process-badge::before,
.advantage-icon::before,
.value-icon::before,
.contact-icon::before,
.spec-icon::before,
.ref-stat-icon::before,
.ref-advantage-icon::before,
.ref-contact-mark::before {
  width: 22px;
  height: 22px;
  margin: 0 auto;
}

.ref-advantage-icon::before {
  width: 42px;
  height: 42px;
  margin: 0;
  justify-self: center;
  align-self: center;
}

.stat-icon-building::before,
.ref-stat-icon-building::before {
  width: 68px;
  height: 68px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M11 30V8h14v22M25 30V14h4v16M8 30h22' stroke='%23717171' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 12h2M21 12h2M15 17h2M21 17h2M15 22h2M21 22h2' stroke='%23717171' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M18 30v-5h4v5' stroke='%23717171' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ref-stat-icon-coil::before,
.spec-icon-coil::before {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-49%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cellipse cx='15' cy='24' rx='9.5' ry='9' stroke='%23717171' stroke-width='2.4'/%3E%3Cellipse cx='15' cy='24' rx='4.1' ry='3.8' stroke='%23717171' stroke-width='2.4'/%3E%3Cpath d='M21 16.5h9.5M22.5 21.5h10.5M22.5 26.5h10.5M21 31.5h9.5' stroke='%23717171' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M9 34.5h25' stroke='%23717171' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  filter: none;
}

.ref-stat-icon-stack::before,
.spec-icon-sheet::before {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Crect x='9' y='30' width='10' height='8' rx='0.9' stroke='%23767676' stroke-width='2.2'/%3E%3Crect x='19' y='30' width='10' height='8' rx='0.9' stroke='%23767676' stroke-width='2.2'/%3E%3Crect x='29' y='30' width='10' height='8' rx='0.9' stroke='%23767676' stroke-width='2.2'/%3E%3Crect x='14' y='20' width='10' height='8' rx='0.9' stroke='%23767676' stroke-width='2.2'/%3E%3Crect x='24' y='20' width='10' height='8' rx='0.9' stroke='%23767676' stroke-width='2.2'/%3E%3Cpath d='M8 39.5h32' stroke='%23767676' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M14 24h10M24 24h10M9 34h10M19 34h10M29 34h10' stroke='%23767676' stroke-width='2' stroke-linecap='round' opacity='0.85'/%3E%3C/svg%3E");
}

.stat-icon-badge::before,
.ref-stat-icon-badge::before,
.value-icon-community::before {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='24' cy='18' r='8.8' stroke='%23767676' stroke-width='2.2'/%3E%3Ccircle cx='24' cy='18' r='5.1' stroke='%23767676' stroke-width='2'/%3E%3Cpath d='M20.5 29.5 18 36l6-3.2L30 36l-2.5-6.5' stroke='%23767676' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m24 15.2 1.3 2.4 2.7.4-2 1.9.5 2.6-2.5-1.3-2.5 1.3.5-2.6-2-1.9 2.7-.4L24 15.2Z' stroke='%23767676' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ref-stat-card:hover .ref-stat-icon-coil::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cellipse cx='15' cy='24' rx='9.5' ry='9' stroke='%232983ea' stroke-width='2.4'/%3E%3Cellipse cx='15' cy='24' rx='4.1' ry='3.8' stroke='%232983ea' stroke-width='2.4'/%3E%3Cpath d='M21 16.5h9.5M22.5 21.5h10.5M22.5 26.5h10.5M21 31.5h9.5' stroke='%232983ea' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M9 34.5h25' stroke='%232983ea' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ref-stat-card:hover .ref-stat-icon-building::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M11 30V8h14v22M25 30V14h4v16M8 30h22' stroke='%232983ea' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 12h2M21 12h2M15 17h2M21 17h2M15 22h2M21 22h2' stroke='%232983ea' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M18 30v-5h4v5' stroke='%232983ea' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ref-stat-card:hover .ref-stat-icon-stack::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Crect x='9' y='30' width='10' height='8' rx='0.9' stroke='%232983ea' stroke-width='2.2'/%3E%3Crect x='19' y='30' width='10' height='8' rx='0.9' stroke='%232983ea' stroke-width='2.2'/%3E%3Crect x='29' y='30' width='10' height='8' rx='0.9' stroke='%232983ea' stroke-width='2.2'/%3E%3Crect x='14' y='20' width='10' height='8' rx='0.9' stroke='%232983ea' stroke-width='2.2'/%3E%3Crect x='24' y='20' width='10' height='8' rx='0.9' stroke='%232983ea' stroke-width='2.2'/%3E%3Cpath d='M8 39.5h32' stroke='%232983ea' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M14 24h10M24 24h10M9 34h10M19 34h10M29 34h10' stroke='%232983ea' stroke-width='2' stroke-linecap='round' opacity='0.9'/%3E%3C/svg%3E");
}

.ref-stat-card:hover .ref-stat-icon-badge::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='24' cy='18' r='8.8' stroke='%232983ea' stroke-width='2.2'/%3E%3Ccircle cx='24' cy='18' r='5.1' stroke='%232983ea' stroke-width='2'/%3E%3Cpath d='M20.5 29.5 18 36l6-3.2L30 36l-2.5-6.5' stroke='%232983ea' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m24 15.2 1.3 2.4 2.7.4-2 1.9.5 2.6-2.5-1.3-2.5 1.3.5-2.6-2-1.9 2.7-.4L24 15.2Z' stroke='%232983ea' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ref-stat-card:hover .ref-stat-icon {
  border-color: rgba(41, 131, 234, 0.35);
}

.spec-icon-core::before,
.process-icon-box::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m12 3 8 4.5v9L12 21l-8-4.5v-9L12 3Z' stroke='%231d86e3' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m4 7.5 8 4.5 8-4.5M12 12v9' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.value-icon-star::before,
.advantage-icon-bolt::before,
.ref-advantage-icon-bolt::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13 2 6.5 13h4l-1 9L17.5 11h-4L13 2Z' stroke='%231d86e3' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.value-icon-knowledge::before,
.ref-advantage-icon-magnet::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 5v7a4 4 0 1 0 8 0V5M8 5H5v7a7 7 0 1 0 14 0V5h-3' stroke='%231d86e3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-icon-location::before,
.ref-contact-mark-location::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 21s6-5.5 6-11a6 6 0 1 0-12 0c0 5.5 6 11 6 11Z' stroke='%231d86e3' stroke-width='2'/%3E%3Ccircle cx='12' cy='10' r='2.5' stroke='%231d86e3' stroke-width='2'/%3E%3C/svg%3E");
}

.contact-icon-phone::before,
.ref-contact-mark-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.5 4.5h3l1.2 3.5-1.8 1.8a13.5 13.5 0 0 0 3.3 3.3L16 11.3l3.5 1.2v3A2 2 0 0 1 17.6 18c-6.4-.4-11.2-5.2-11.6-11.6A2 2 0 0 1 8.5 4.5Z' stroke='%231d86e3' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-icon-mail::before,
.ref-contact-mark-mail::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='6' width='16' height='12' rx='2' stroke='%231d86e3' stroke-width='2'/%3E%3Cpath d='m5.5 7.5 6.5 5 6.5-5' stroke='%231d86e3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ref-contact-mark-web::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8' stroke='%231d86e3' stroke-width='2'/%3E%3Cpath d='M4 12h16M12 4a13 13 0 0 1 0 16M12 4a13 13 0 0 0 0 16' stroke='%231d86e3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.process-icon-receipt::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 3h10v18l-2-1.5-3 1.5-3-1.5L7 21V3Z' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M9.5 8H14.5M9.5 12H14.5' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.process-icon-slit::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 8h16M4 16h16M9 5v14M15 5v14' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.process-icon-cut::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='7' cy='8' r='2.5' stroke='white' stroke-width='2'/%3E%3Ccircle cx='7' cy='16' r='2.5' stroke='white' stroke-width='2'/%3E%3Cpath d='m10 9 8-5M10 15l8 5' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.process-icon-check::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8' stroke='white' stroke-width='2'/%3E%3Cpath d='m8.5 12 2.3 2.3 4.7-4.8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.advantage-icon-bolt::before,
.ref-advantage-icon-bolt::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13 2 6.5 13h4l-1 9L17.5 11h-4L13 2Z' stroke='%2344a1ef' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ref-advantage-icon-thermo::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 14V5a2 2 0 1 0-4 0v9a4 4 0 1 0 4 0Z' stroke='%2344a1ef' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: translateX(4px);
}

.ref-advantage-icon-leaf::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 5c-7 0-12 4-12 10 0 2.5 1.7 4 4.2 4C16.7 19 19 13 19 5Z' stroke='%2344a1ef' stroke-width='2'/%3E%3Cpath d='M8 16c2-2 5-4 8-5.5' stroke='%2344a1ef' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ref-section {
  padding: 74px 0;
}

.ref-about-band {
  background:
    radial-gradient(circle at center, rgba(44, 133, 218, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfdff 0%, #f5f8fd 100%);
}

.ref-about-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 68px;
  align-items: center;
}

.ref-section-label {
  margin: 0 0 12px;
  color: #1d86e3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-about-copy h2,
.ref-centered-head h2 {
  margin: 0;
  color: #0a2340;
  font-size: clamp(1.71rem, 2.43vw, 2.43rem);
  line-height: 1.08;
}

.ref-about-copy p {
  color: #24394f;
  font-size: 0.78rem;
  line-height: 1.52;
  max-width: 235px;
}

.ref-about-copy p + p {
  margin-top: 18px;
}

.ref-about-copy .ref-small-button {
  margin-top: 12px;
}

.ref-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-self: center;
}

.ref-stat-card {
  width: 100%;
  max-width: 236px;
  min-height: 0;
  aspect-ratio: 0.73 / 1;
  padding: 24px 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(20, 75, 130, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(8, 31, 55, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ref-stat-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  position: relative;
  border-radius: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 113, 196, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
  color: #7d8795;
  font-weight: 800;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 34px rgba(23, 82, 136, 0.08);
}

.ref-stat-card strong {
  display: block;
  color: #1d86e3;
  font-size: 1.62rem;
  line-height: 1.05;
}

.ref-stat-card span {
  display: block;
  margin-top: 9px;
  color: #112d4a;
  font-weight: 700;
  font-size: 0.9rem;
}

.ref-stat-card p {
  margin: 12px 0 0;
  color: #45586f;
  font-size: 0.8rem;
  line-height: 1.42;
}

.ref-products-band,
.ref-process-band {
  background:
    radial-gradient(circle at center, rgba(44, 133, 218, 0.07), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #f6f9fd 100%);
}

.ref-centered-head {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 760px;
}

.ref-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ref-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #092645;
    box-shadow: 0 18px 40px rgba(8, 28, 47, 0.12);
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

.ref-product-card img {
    width: 100%;
    height: 255px;
  object-fit: cover;
  filter: grayscale(1);
}

.ref-product-card-cores img {
  object-position: center 32%;
}

.ref-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(8, 28, 47, 0.16);
}

.ref-product-overlay {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 18px 18px 16px;
  background: #07284a;
  color: #fff;
}

.ref-product-overlay h3 {
  margin: 0;
  font-size: 1.55rem;
}

.ref-product-overlay p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.45;
}

.ref-arrow-circle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.66);
    color: #ffffff;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

.ref-arrow-circle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.ref-product-card:hover .ref-arrow-circle {
  background: rgba(41, 131, 234, 0.16);
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateX(2px);
}

.spec-card[id] {
  scroll-margin-top: 110px;
}

.ref-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ref-process-line::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 134, 227, 0.45), rgba(29, 134, 227, 0.2));
}

.ref-process-step {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.ref-process-icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0e4f8e;
  border: 7px solid #eaf2fb;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(12, 79, 142, 0.2);
}

.ref-step-number {
  display: block;
  color: #1d86e3;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-process-step h3 {
  margin: 8px 0 0;
  color: #0a2340;
  font-size: 1.28rem;
}

.ref-process-step p {
  margin: 10px 0 0;
  color: #24394f;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ref-quality-strip {
  position: relative;
  padding: 32px 0 36px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 22, 40, 0.86), rgba(4, 22, 40, 0.94)),
    url("assets/images/page1_img1.png") center/cover no-repeat;
}

.ref-quality-label {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-advantage-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ref-advantage-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ref-advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(68, 161, 239, 0.55);
  color: #44a1ef;
  font-weight: 800;
}

.ref-advantage-item strong {
  font-size: 1.28rem;
  font-weight: 500;
}

.ref-contact-footer {
  position: relative;
  background: linear-gradient(90deg, #0e3966 0%, #0a2747 28%, #082441 58%, #082441 100%);
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.ref-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0;
  min-height: 332px;
  width: min(68%, 980px);
  margin-right: auto;
  margin-left: 0;
}

.ref-contact-intro,
.ref-contact-info,
.ref-contact-form-panel {
  padding: 42px 34px;
}

.ref-contact-intro {
  background: linear-gradient(180deg, #0f4c87 0%, #0a3c6d 100%);
}

.ref-contact-info,
.ref-contact-form-panel {
  background: rgba(5, 24, 45, 0.72);
}

.ref-contact-intro h3,
.ref-contact-info h3,
.ref-contact-form-panel h3 {
  margin: 0 0 18px;
  font-size: 1.72rem;
}

.ref-contact-intro p,
.ref-contact-info,
.ref-contact-form-panel .form-note {
  color: rgba(255, 255, 255, 0.82);
}

.ref-contact-list {
  display: grid;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ref-contact-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
}

.ref-contact-mark {
  color: #7abfff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.8;
}

.ref-contact-form {
  gap: 10px;
}

.ref-contact-form input,
.ref-contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 14px 16px;
}

.ref-contact-form textarea {
  min-height: 86px;
}

.ref-form-button {
  width: 154px;
  justify-self: start;
}

.ref-map-panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #08213d 0%, #0a2747 100%);
  overflow: hidden;
}

.ref-map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 33, 61, 0.88) 0%, rgba(8, 33, 61, 0.7) 35%, rgba(8, 33, 61, 0.3) 58%, rgba(8, 33, 61, 0.06) 76%, rgba(8, 33, 61, 0) 100%);
  pointer-events: none;
}

.ref-map-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 43%;
  overflow: hidden;
  pointer-events: auto;
  touch-action: none;
  cursor: grab;
}

.ref-map-art.is-dragging {
  cursor: grabbing;
}

.ref-map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  opacity: 0.98;
  transform: translate(var(--map-x, 0px), var(--map-y, 0px)) scale(var(--map-scale, 1));
  transform-origin: top left;
  transition: filter 180ms ease;
}

.ref-map-link {
  position: absolute;
  left: 56%;
  top: 10%;
  width: 28%;
  height: 18%;
  z-index: 2;
  display: block;
  cursor: pointer;
}

.ref-contact-footer:hover .ref-map-image {
  filter: brightness(1.03);
}

.ref-bottom-footer {
  background: #061b31;
  padding: 16px 0 18px;
}

.ref-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.ref-bottom-links {
  gap: 26px;
}

@media (max-width: 1180px) {
  .ref-nav-links {
    gap: 18px;
  }

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

  .ref-contact-grid {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  .ref-stats-grid,
  .ref-product-grid,
  .ref-process-line,
  .ref-advantage-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ref-process-line::before {
    display: none;
  }

  .ref-map-panel {
    min-height: 260px;
  }

  .ref-map-art {
    width: 62%;
    right: -4%;
  }
}

@media (max-width: 860px) {
  .ref-nav-wrap {
    background: rgba(5, 22, 40, 0.98);
  }

  .ref-hero {
    min-height: auto;
  }

  .ref-hero-inner {
    min-height: auto;
    padding: 124px 0 62px;
  }

  .ref-hero-title {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .ref-hero-button,
  .ref-primary-button.ref-hero-button,
  .ref-brochure-button {
    min-width: 100%;
  }

  .ref-feature-list,
  .ref-stats-grid,
  .ref-product-grid,
  .ref-process-line,
  .ref-advantage-row {
    grid-template-columns: 1fr;
  }

  .ref-lang-menu {
    right: auto;
    left: 0;
  }

  .ref-about-grid {
    gap: 26px;
  }

  .ref-contact-intro,
  .ref-contact-info,
  .ref-contact-form-panel {
    padding: 30px 22px;
  }

  .ref-map-art {
    width: 82%;
    right: -14%;
  }

  .ref-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1320px) {
  :root {
    --container: min(1380px, calc(100vw - 32px));
  }

  .ref-nav-links {
    gap: 22px;
  }

  .ref-nav-actions {
    gap: 10px;
  }

  .ref-quote-button,
  .ref-primary-button,
  .ref-outline-button,
  .ref-whatsapp-button {
    padding-inline: 16px;
  }

  .ref-about-grid {
    gap: 48px;
  }
}

@media (max-width: 1180px) {
  .page-hero .container,
  .ref-hero-inner,
  .ref-contact-grid {
    width: 100%;
  }

  .ref-topbar-inner {
    gap: 14px;
  }

  .ref-nav-wrap {
    gap: 16px;
  }

  .ref-nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ref-nav-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .ref-about-copy p {
    max-width: 520px;
  }

  .ref-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .ref-stat-card {
    max-width: none;
    aspect-ratio: auto;
    min-height: 320px;
  }

  .ref-product-card img {
    height: 220px;
  }

  .ref-product-overlay h3 {
    font-size: 1.28rem;
  }

  .ref-process-step h3 {
    font-size: 1.08rem;
  }

  .ref-advantage-item strong {
    font-size: 1.08rem;
  }

  .ref-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 920px);
  }

  .ref-contact-intro {
    grid-column: 1 / -1;
  }

  .ref-map-art {
    width: 54%;
    right: -8%;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(1280px, calc(100vw - 28px));
  }

  .menu-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    font-size: 0;
    color: transparent;
    overflow: hidden;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
  }

  .menu-toggle::before {
    transform: translateY(-6px);
    box-shadow: 0 6px 0 #ffffff, 0 12px 0 #ffffff;
  }

  .menu-toggle::after {
    opacity: 0;
  }

  .ref-topbar-inner {
    min-height: 78px;
    gap: 10px;
  }

  .ref-nav-wrap {
    position: fixed;
    inset: 82px 14px auto;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(5, 22, 40, 0.985), rgba(4, 18, 33, 0.985));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 44px rgba(0, 0, 0, 0.28);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    z-index: 120;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    backdrop-filter: blur(16px);
  }

  .menu-open .ref-nav-wrap {
    display: flex;
  }

  .menu-open .menu-toggle::before {
    transform: rotate(45deg);
    box-shadow: none;
  }

  .menu-open .menu-toggle::after {
    opacity: 1;
    transform: rotate(-45deg);
  }

  .ref-nav-links,
  .ref-nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ref-nav-links {
    gap: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ref-nav-links a {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    background: transparent;
  }

  .ref-nav-links a:hover,
  .ref-nav-links a.active {
    background: rgba(255, 255, 255, 0.04);
  }

  .ref-nav-links a::after {
    bottom: 4px;
    left: 14px;
    right: 14px;
  }

  .ref-nav-links a,
  .ref-nav-actions .btn,
  .ref-lang-trigger {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ref-nav-actions {
    gap: 10px;
  }

  .ref-nav-actions .btn,
  .ref-nav-actions .ref-whatsapp-button,
  .ref-lang-trigger {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 0.88rem;
  }

  .ref-lang-dropdown {
    width: 100%;
  }

  .ref-lang-trigger {
    display: none;
  }

  .ref-lang-menu {
    position: static;
    left: auto;
    right: auto;
    min-width: 0;
    top: auto;
    padding: 0;
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    z-index: 130;
  }

  .ref-lang-option {
    min-height: 46px;
    padding: 0 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .ref-lang-option:hover,
  .ref-lang-option.is-active {
    background: rgba(29, 134, 227, 0.2);
    border-color: rgba(29, 134, 227, 0.42);
  }

  .ref-hero-inner {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .ref-hero-copy,
  .ref-hero-text {
    width: min(100%, 640px);
  }

  .ref-feature-list,
  .ref-product-grid,
  .ref-process-line,
  .ref-advantage-row,
  .products-grid,
  .value-grid,
  .spec-grid,
  .capabilities-grid,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .ref-about-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ref-process-line::before,
  .timeline::before {
    display: none;
  }

  .ref-contact-footer,
  .ref-bottom-footer {
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .ref-contact-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    order: 1;
  }

  .ref-contact-intro,
  .ref-contact-info,
  .ref-contact-form-panel {
    width: 100%;
  }

  .ref-contact-intro {
    grid-column: auto;
  }

  .ref-map-panel {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    min-height: 320px;
    height: 320px;
  }

  .ref-map-art {
    width: 100%;
    right: 0;
    opacity: 0.96;
  }

  .ref-map-panel::before {
    background:
      linear-gradient(90deg, rgba(8, 33, 61, 0.96) 0%, rgba(8, 33, 61, 0.9) 34%, rgba(8, 33, 61, 0.62) 58%, rgba(8, 33, 61, 0.18) 78%, rgba(8, 33, 61, 0.04) 100%);
  }

  .ref-contact-info,
  .ref-contact-form-panel {
    background: rgba(5, 24, 45, 0.88);
    backdrop-filter: blur(8px);
  }

  .ref-bottom-footer .container {
    width: 100%;
    max-width: none;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .section {
    padding: 56px 0;
  }

  .page-hero {
    padding-block: 118px 58px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .ref-brand .brand-title {
    font-size: clamp(1.65rem, 7vw, 1.95rem);
  }

  .ref-brand .brand-subtitle {
    font-size: 0.66rem;
    margin-top: 5px;
  }

  .ref-topbar-inner {
    min-height: 72px;
    gap: 8px;
  }

  .ref-brand {
    gap: 3px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .menu-toggle {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .ref-nav-wrap {
    inset: 78px 10px auto;
    padding: 14px;
    border-radius: 20px;
    gap: 12px;
    max-height: calc(100vh - 94px);
  }

  .ref-nav-links a {
    padding: 11px 12px;
    font-size: 0.82rem;
  }

  .ref-nav-actions .btn,
  .ref-nav-actions .ref-whatsapp-button,
  .ref-lang-trigger {
    min-height: 46px;
    font-size: 0.84rem;
  }

  .ref-lang-menu {
    gap: 6px;
  }

  .ref-lang-option {
    min-height: 44px;
    font-size: 0.8rem;
  }

  .ref-hero-title {
    font-size: clamp(2.2rem, 13vw, 3.5rem);
  }

  .ref-hero-text {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .ref-hero-actions,
  .hero-actions {
    gap: 12px;
  }

  .ref-hero-button,
  .ref-primary-button.ref-hero-button,
  .ref-brochure-button,
  .hero-actions .btn {
    min-width: 100%;
  }

  .ref-feature-item {
    align-items: flex-start;
  }

  .ref-feature-copy strong,
  .ref-feature-copy span {
    display: block;
  }

  .ref-about-copy h2,
  .ref-centered-head h2,
  .section-head h2,
  .about-card h2,
  .cta-block h3,
  .ref-contact-intro h3,
  .ref-contact-info h3,
  .ref-contact-form-panel h3 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .ref-stat-card {
    min-height: 292px;
    padding: 20px 16px;
  }

  .ref-product-card img,
  .product-card img {
    height: 200px;
  }

  .ref-product-overlay {
    padding: 16px;
    align-items: center;
  }

  .ref-product-overlay p {
    font-size: 0.88rem;
  }

  .ref-arrow-circle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .ref-process-step {
    padding-inline: 0;
  }

  .ref-advantage-item {
    gap: 12px;
  }

  .ref-advantage-icon {
    width: 58px;
    height: 58px;
  }

  .ref-contact-intro,
  .ref-contact-info,
  .ref-contact-form-panel {
    padding: 26px 18px;
  }

  .ref-contact-grid {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .ref-contact-intro,
  .ref-contact-info,
  .ref-contact-form-panel {
    backdrop-filter: blur(10px);
  }

  .ref-contact-list {
    font-size: 0.9rem;
  }

  .ref-form-button {
    width: 100%;
    justify-self: stretch;
  }

  .ref-map-panel {
    min-height: 308px;
    height: 308px;
  }

  .ref-map-art {
    width: 118%;
    right: -7%;
  }

  .ref-bottom-footer .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ref-bottom-row {
    gap: 12px;
    font-size: 0.8rem;
  }

  .ref-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (max-width: 1120px) {
  .about-page-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .about-page-value:nth-child(3),
  .about-page-value:nth-child(4) {
    border-top: 1px solid rgba(14, 52, 93, 0.12);
    padding-top: 28px;
  }

  .about-page-facility-layout {
    grid-template-columns: 1fr;
  }

  .about-page-partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 0;
  }

  .about-page-partner:nth-child(4),
  .about-page-partner:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 24px;
  }
}

@media (max-width: 860px) {
  .about-page-hero {
    min-height: auto;
  }

  .about-page-hero-inner {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 62px;
  }

  .about-page-intro-grid,
  .about-page-facility-media,
  .about-page-values-grid,
  .facility-strip,
  .about-page-partners-grid {
    grid-template-columns: 1fr;
  }

  .about-page-value,
  .about-page-partner,
  .facility-strip-card {
    border: 0 !important;
    padding: 0;
    background: transparent;
    box-shadow: none;
    min-height: 0;
  }

  .about-page-values-grid,
  .facility-strip,
  .about-page-partners-grid {
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .about-page-hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .about-page-hero-accent {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .about-page-hero-text {
    font-size: 0.92rem;
  }

  .about-page-intro-copy h2,
  .about-page-center-head h2,
  .about-page-partners-head h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .about-page-intro-media img,
  .about-page-facility-photo-large img,
  .about-page-facility-photo-small img {
    min-height: 220px;
  }
}

.about-page-values-grid .about-page-value-icon::before {
  width: 84px;
  height: 84px;
  margin: 0 auto;
}

.about-page-values-grid .value-icon-team::before {
  width: 88px;
  height: 88px;
}

/* Premium polish */
:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-premium: 0 26px 54px rgba(6, 23, 39, 0.16);
  --shadow-premium-strong: 0 30px 64px rgba(6, 23, 39, 0.22);
  --premium-glow: radial-gradient(circle at top left, rgba(55, 158, 255, 0.22), transparent 48%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 12%, rgba(80, 168, 255, 0.1), transparent 24%),
    radial-gradient(circle at 82% 9%, rgba(32, 111, 204, 0.08), transparent 22%);
  opacity: 0.85;
}

.site-shell,
.footer,
.ref-bottom-footer {
  position: relative;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
}

.ref-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
}

.topbar,
.ref-topbar {
  transition:
    background 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

body.is-scrolled .topbar,
body.is-scrolled .ref-topbar {
  background: rgba(4, 18, 33, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(4, 14, 24, 0.22);
  backdrop-filter: blur(14px);
}

.btn,
.ref-primary-button,
.ref-outline-button,
.ref-quote-button,
.ref-whatsapp-button,
.ref-lang-trigger,
.menu-toggle {
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    background-color 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium),
    color 220ms var(--ease-premium);
}

.ref-primary-button,
.ref-outline-button,
.ref-quote-button,
.ref-whatsapp-button,
.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
}

.ref-primary-button::before,
.ref-outline-button::before,
.ref-quote-button::before,
.ref-whatsapp-button::before,
.btn-primary::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32%;
  width: 28%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: left 340ms var(--ease-premium), opacity 220ms ease;
}

.ref-primary-button:hover::before,
.ref-outline-button:hover::before,
.ref-quote-button:hover::before,
.ref-whatsapp-button:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before {
  left: 112%;
  opacity: 1;
}

.ref-primary-button:hover,
.ref-quote-button:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(24, 124, 226, 0.32);
}

.ref-outline-button:hover,
.btn-secondary:hover,
.ref-lang-trigger:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 24, 44, 0.18);
}

.nav-links a,
.ref-nav-links a {
  position: relative;
  transition: color 220ms var(--ease-premium), opacity 220ms var(--ease-premium);
}

.nav-links a:hover,
.ref-nav-links a:hover {
  color: rgba(255, 255, 255, 0.98);
}

.nav-links a::after,
.ref-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #3aa0ff 18%, #ffffff 50%, #3aa0ff 82%, transparent);
  transform: scaleX(0.3);
  opacity: 0;
  transition: transform 220ms var(--ease-premium), opacity 220ms var(--ease-premium);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.ref-nav-links a:hover::after,
.ref-nav-links a.active::after {
  transform: scaleX(1);
  opacity: 0.9;
}

.hero,
.ref-hero,
.about-page-hero,
.product-page-hero,
.contact-page-hero {
  overflow: hidden;
}

.hero-image,
.about-page-hero-bg,
.product-page-hero-bg,
.contact-page-hero-bg {
  animation: premiumHeroFloat 16s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

.ref-hero-bg {
  animation: none;
  transform: none;
}

.hero-overlay,
.ref-hero-overlay,
.about-page-hero-overlay,
.product-page-hero-overlay,
.contact-page-hero-overlay {
  background-blend-mode: screen, normal;
}

.ref-product-card,
.product-page-card,
.ref-stat-card,
.about-page-intro-media img,
.about-page-facility-photo img,
.contact-page-detail-card,
.contact-page-form-panel,
.contact-page-detail-link,
.product-page-spec-item,
.about-page-value,
.about-page-partner {
  transition:
    transform 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    background-color 260ms var(--ease-premium);
}

.ref-product-card,
.product-page-card,
.ref-stat-card,
.product-page-spec-item,
.about-page-value,
.about-page-partner,
.contact-page-detail-card,
.contact-page-form-panel {
  position: relative;
  isolation: isolate;
}

.ref-product-card::before,
.product-page-card::before,
.ref-stat-card::before,
.product-page-spec-item::before,
.about-page-value::before,
.about-page-partner::before,
.contact-page-detail-card::before,
.contact-page-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--premium-glow);
  opacity: 0;
  transition: opacity 280ms var(--ease-premium);
  pointer-events: none;
  z-index: 0;
}

.about-page-value::before,
.about-page-partner::before {
  inset: 1px;
  border-radius: 27px;
  background:
    radial-gradient(circle at top center, rgba(66, 163, 255, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 58%);
}

.ref-product-card > *,
.product-page-card > *,
.ref-stat-card > *,
.product-page-spec-item > *,
.about-page-value > *,
.about-page-partner > *,
.contact-page-detail-card > *,
.contact-page-form-panel > * {
  position: relative;
  z-index: 1;
}

.product-page-card-badge {
  position: absolute;
  z-index: 3;
}

.ref-product-card:hover,
.product-page-card:hover,
.ref-stat-card:hover,
.product-page-spec-item:hover,
.about-page-value:hover,
.about-page-partner:hover,
.contact-page-detail-card:hover,
.contact-page-form-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.about-page-value:hover {
  border-color: rgba(25, 134, 234, 0.16);
  box-shadow: 0 24px 52px rgba(7, 30, 53, 0.1);
}

.ref-product-card:hover::before,
.product-page-card:hover::before,
.ref-stat-card:hover::before,
.product-page-spec-item:hover::before,
.about-page-value:hover::before,
.about-page-partner:hover::before,
.contact-page-detail-card:hover::before,
.contact-page-form-panel:hover::before {
  opacity: 1;
}

.about-page-intro-media img:hover,
.about-page-facility-photo img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 46px rgba(9, 34, 58, 0.14);
}

.ref-product-card img,
.product-page-card > img {
  transition: transform 600ms var(--ease-premium), filter 300ms var(--ease-premium);
}

.ref-product-card:hover img,
.product-page-card:hover > img {
  transform: scale(1.045);
}

.ref-arrow-circle,
.product-page-card-link::after {
  transition:
    transform 240ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium),
    background-color 240ms var(--ease-premium);
}

.ref-product-card:hover .ref-arrow-circle,
.product-page-card:hover .product-page-card-link::after {
  transform: translateX(4px);
}

.about-page-value-icon,
.about-page-partner-icon,
.contact-page-detail-icon,
.product-page-spec-icon,
.ref-stat-icon {
  transition:
    transform 240ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium),
    border-color 240ms var(--ease-premium);
}

.about-page-value:hover .about-page-value-icon,
.about-page-partner:hover .about-page-partner-icon,
.contact-page-detail-card:hover .contact-page-detail-icon,
.product-page-spec-item:hover .product-page-spec-icon,
.ref-stat-card:hover .ref-stat-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(29, 134, 234, 0.16);
  border-color: rgba(25, 134, 234, 0.28);
}

.about-page-value:hover .about-page-value-icon {
  transform: translateY(-3px) scale(1.04);
}

.ref-map-image {
  transition: filter 180ms ease, transform 260ms var(--ease-premium);
}

.contact-page-map-pin,
.ref-map-link::before {
  animation: premiumPinPulse 2.8s ease-in-out infinite;
}

.ref-map-link::before {
  content: "";
  position: absolute;
  inset: 18% 38% auto auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(8px);
  pointer-events: none;
}

.reveal {
  transition:
    opacity 760ms var(--ease-premium),
    transform 760ms var(--ease-premium);
}

.reveal[data-reveal-delay] {
  transition-delay: var(--reveal-delay, 0ms);
}

.contact-form input:focus,
.contact-form textarea:focus,
.ref-contact-form input:focus,
.ref-contact-form textarea:focus,
.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: rgba(25, 134, 234, 0.58);
  box-shadow:
    0 0 0 4px rgba(25, 134, 234, 0.12),
    0 12px 24px rgba(8, 29, 48, 0.08);
  outline: none;
}

.contact-form input,
.contact-form textarea,
.ref-contact-form input,
.ref-contact-form textarea,
.contact-page-form input,
.contact-page-form textarea {
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    background-color 220ms var(--ease-premium);
}

@keyframes premiumHeroFloat {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.07) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes premiumPinPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(67, 177, 255, 0.18));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(67, 177, 255, 0.34));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .ref-hero-bg,
  .about-page-hero-bg,
  .product-page-hero-bg,
  .contact-page-hero-bg,
  .contact-page-map-pin,
  .ref-map-link::before {
    animation: none !important;
  }

  .reveal,
  .btn,
  .ref-primary-button,
  .ref-outline-button,
  .ref-quote-button,
  .ref-whatsapp-button,
  .ref-product-card,
  .product-page-card,
  .ref-stat-card,
  .contact-page-detail-card,
  .about-page-value,
  .about-page-partner {
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .about-page-facility .about-page-center-head h2 {
    white-space: normal;
  }

  .ref-about-copy p,
  .about-page-intro-copy p,
  .about-page-facility-copy p,
  .product-page-overview-copy p,
  .product-page-process-copy p,
  .product-page-solution-copy p,
  .contact-page-info-text {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .ref-brand {
    min-width: 0;
  }

  .about-page-intro-grid,
  .about-page-facility-layout,
  .contact-page-touch-grid {
    grid-template-columns: 1fr;
  }

  .about-page-intro-media img,
  .about-page-facility-photo-large img,
  .about-page-facility-photo-small img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
  }

  .product-page-cards {
    grid-template-columns: 1fr;
  }

  .product-page-card {
    --product-card-image-height: 260px;
  }

  .product-page-card > img {
    height: var(--product-card-image-height);
  }

  .product-page-process-copy,
  .contact-page-info,
  .about-page-intro-copy,
  .about-page-facility-summary {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .about-page-download,
  .product-page-hero-actions .btn,
  .contact-page-hero-actions .btn,
  .contact-page-form button {
    width: 100%;
    justify-content: center;
  }

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

  .contact-page-touch-grid,
  .product-page-overview-grid,
  .product-page-process-grid,
  .product-page-solution-grid,
  .about-page-intro-grid,
  .about-page-facility-layout {
    gap: 22px;
  }

  .about-page-intro-media img,
  .about-page-facility-photo-large img,
  .about-page-facility-photo-small img,
  .product-page-card > img {
    max-height: 280px;
  }

  .product-page-card-body,
  .product-page-spec-item,
  .contact-page-form-panel,
  .contact-page-detail-card,
  .about-page-intro-copy,
  .about-page-facility-summary {
    min-width: 0;
  }

  .product-page-application-item {
    gap: 12px;
    font-size: 0.92rem;
  }

  .ref-whatsapp-button,
  .ref-quote-button,
  .ref-primary-button,
  .ref-outline-button,
  .ref-lang-trigger {
    min-width: 0;
  }
}
