:root {
  --navy: #174ea6;
  --midnight: #0b57d0;
  --ink: #10182b;
  --graphite: #24324d;
  --steel: #66758f;
  --line: #d8e5fb;
  --panel: #f4f8ff;
  --white: #ffffff;
  --blue: #4285f4;
  --blue-dark: #1a73e8;
  --accent: #4285f4;
  --accent-light: #8ab4f8;
  --shadow: 0 24px 60px rgba(26, 115, 232, 0.14);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Arabic", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

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

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

@supports (content-visibility: auto) {
  .home-band,
  .section-muted,
  .section-dark,
  .cta-band,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
  }
}

p {
  color: #4f5d6b;
  line-height: 1.7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.1rem, 4.4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(220, 227, 234, 0.78);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 118px;
  height: 44px;
  object-fit: contain;
  border-radius: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #233044;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav > a,
.nav-group > a {
  padding: 9px 0;
}

.nav-group {
  position: relative;
}

.nav-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 800;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-inline-start: 12px;
  padding-inline-start: 18px;
  border-inline-start: 1px solid #cad3e3;
}

.language-switcher a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #43516a;
  font-size: 0.82rem;
  font-weight: 850;
}

.language-switcher a.is-active {
  border-color: rgba(26, 115, 232, 0.42);
  background: #dceaff;
  color: #174ea6;
}

.nav-menu {
  position: absolute;
  top: 100%;
  inset-inline-start: -18px;
  display: none;
  min-width: 280px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #314054;
}

.nav-menu a:hover {
  background: var(--panel);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  display: block;
}

.nav-whatsapp {
  color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--blue-dark);
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 22px rgba(23, 59, 143, 0.24);
}

.button:hover {
  background: var(--navy);
}

.button-secondary {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: none;
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button-ghost.on-dark {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.button-small {
  min-width: 142px;
  min-height: 40px;
  padding: 0 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 0;
  height: clamp(560px, calc(100svh - 72px), 650px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.02) contrast(1.08) saturate(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 38, 0.28), rgba(8, 30, 68, 0.12) 42%, rgba(5, 18, 44, 0.02) 72%),
    linear-gradient(0deg, rgba(5, 18, 44, 0.18), rgba(255, 255, 255, 0) 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 20px 0;
  transform: translateY(0);
}

.hero p {
  max-width: 690px;
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.62;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  line-height: 0.98;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffffff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #eef5ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--panel);
}

.section-dark {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #eef5ff 0%, #f7fbff 52%, #e9f2ff 100%);
  color: var(--white);
}

.home-band {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
}

.home-band::before,
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(66, 133, 244, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 133, 244, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.home-band > *,
.section-dark > * {
  position: relative;
  z-index: 1;
}

.home-band-white {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.home-band-blue {
  background: linear-gradient(180deg, #edf5ff 0%, #f8fbff 100%);
}

.home-band + .home-band,
.section-dark + .home-band,
.home-band + .section-dark {
  border-top: 1px solid #cfe0f8;
}

.section-products {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.materials-section {
  background:
    linear-gradient(180deg, #edf5ff 0%, #f7fbff 100%);
}

.section-accessories {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.section-choose {
  background:
    linear-gradient(180deg, #eaf3ff 0%, #f7fbff 100%);
}

.section-dark p,
.section-dark .section-header p {
  color: #50627f;
}

.section-dark h2 {
  color: var(--ink);
}

.section-header {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-header h2 {
  position: relative;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), rgba(66, 133, 244, 0.12));
}

.section-header p {
  max-width: 980px;
  font-size: 1.02rem;
}

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

.product-card,
.application-card,
.advantage-grid article,
.power-grid article,
.contact-card,
.spec-card,
.tech-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 23, 36, 0.08);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.product-card:hover,
.accessory-card:hover,
.material-card:hover,
.power-grid article:hover,
.tech-card:hover,
.system-visual-card:hover {
  border-color: rgba(66, 133, 244, 0.42);
  box-shadow: 0 22px 58px rgba(26, 115, 232, 0.13);
  transform: translateY(-5px);
}

.product-image {
  display: grid;
  place-items: center;
  height: 245px;
  border-bottom: 4px solid #4285f4;
  background:
    linear-gradient(135deg, #dceaff 0%, #eef5ff 48%, #f8fbff 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px 28px;
}

.product-image-ax-3015e img {
  padding: 42px 58px;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 22px;
}

.model {
  margin-bottom: 7px;
  color: var(--blue-dark);
  font-size: 0.96rem;
  font-weight: 900;
}

.product-card h3 {
  max-width: 96%;
  margin-bottom: 14px;
  color: #10182b;
  font-size: 1.08rem;
  line-height: 1.32;
}

.product-card-body > p:not(.model) {
  color: #53677f;
  font-size: 0.94rem;
  line-height: 1.55;
}

.mini-specs,
.application-card dl,
.solution-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.product-card .mini-specs {
  margin-top: auto;
}

.mini-specs div,
.application-card dl div {
  padding: 10px 0;
  border-top: 1px solid #e4eefc;
}

.product-card .button-row {
  margin-top: 18px;
}

.product-card .button-row .button {
  flex: 1;
}

dt {
  color: #53677f;
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
}

dd {
  margin: 4px 0 0;
  color: #53677f;
  font-size: 0.94rem;
  line-height: 1.55;
}

.mini-specs dd {
  font-size: 0.94rem;
  font-weight: 400;
}

.product-card .mini-specs div:nth-child(-n + 3) dt {
  color: var(--blue-dark);
  font-weight: 850;
}

.advantage-grid,
.application-grid,
.power-grid,
.check-grid,
.accessory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.system-group-grid,
.head-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.system-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.advantage-grid article,
.power-grid article {
  padding: 24px;
}

.section-dark .power-grid article {
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(66, 133, 244, 0.08);
}

.power-grid strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.4rem;
}

.power-card-top {
  display: grid;
  gap: 6px;
}

.power-card-top span {
  color: #53677f;
  font-size: 0.8rem;
  font-weight: 850;
}

.power-card-top strong {
  margin: 0;
}

.power-thickness {
  display: grid;
  gap: 3px;
  margin: 16px 0 12px;
  padding: 18px;
  border: 1px solid rgba(66, 133, 244, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #dceaff 0%, #ffffff 70%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.power-thickness span,
.power-thickness small {
  color: #53677f;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.power-thickness b {
  color: #0b57d0;
  font-size: clamp(2.25rem, 4.4vw, 3.4rem);
  line-height: 0.98;
}

.power-thickness-inline {
  color: #0b57d0;
  font-weight: 900;
}

.power-meter {
  height: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 99px;
  background: #dbe8fb;
}

.power-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ab4f8, #0b57d0);
}

.power-grid article {
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.section-dark .power-grid strong {
  color: var(--blue-dark);
}

.machine-tech-section .section-header {
  max-width: 960px;
}

.tech-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.tech-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(66, 133, 244, 0.12));
}

.tech-card h3 {
  margin-bottom: 12px;
  color: #10182b;
  font-size: 1.08rem;
}

.tech-card p {
  color: #53677f;
  font-size: 0.94rem;
  line-height: 1.6;
}

.system-visual-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid #d7e6ff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(26, 115, 232, 0.08);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.system-visual-image {
  display: grid;
  place-items: center;
  height: 315px;
  overflow: hidden;
  border-bottom: 4px solid #4285f4;
  background:
    linear-gradient(135deg, #e6f0ff 0%, #f6faff 62%, #ffffff 100%);
}

.system-visual-image img {
  width: calc(100% - 72px);
  height: 250px;
  max-width: none;
  max-height: none;
  object-fit: fill;
  object-position: center;
}

.system-visual-card:first-child .system-visual-image img {
  width: calc(100% - 44px);
  height: 292px;
  object-fit: fill;
}

.system-visual-body {
  padding: 22px 24px 24px;
}

.system-visual-body h3 {
  margin-bottom: 10px;
  color: #10182b;
  font-size: 1.08rem;
}

.system-visual-body p {
  color: #53677f;
  font-size: 0.94rem;
  line-height: 1.6;
}

.system-visual-body .tech-chip-list {
  margin-top: 16px;
}

.system-visual-body .tech-chip-list span {
  background: #eef5ff;
}

.cost-section {
  position: relative;
}

.cost-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.cost-narrative {
  display: grid;
  gap: 14px;
  align-self: stretch;
  padding: 18px;
  border: 1px solid #d7e6ff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #eef5ff 0%, #ffffff 58%, #f8fbff 100%);
  box-shadow: 0 18px 50px rgba(26, 115, 232, 0.07);
}

.cost-narrative-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid #dfeaff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 32px rgba(26, 115, 232, 0.06);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.cost-narrative-item:hover {
  border-color: rgba(66, 133, 244, 0.44);
  background: #ffffff;
  transform: translateY(-3px);
}

.cost-narrative-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
}

.cost-narrative-item h3 {
  margin: 0 0 6px;
  color: #10182b;
  font-size: 0.98rem;
}

.cost-narrative-item p {
  margin: 0;
  color: #53677f;
  font-size: 0.91rem;
  line-height: 1.62;
}

.cost-factor-grid {
  display: grid;
  gap: 14px;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  height: 100%;
}

.cost-factor-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid #d7e6ff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(26, 115, 232, 0.08);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.cost-factor-card:hover {
  border-color: rgba(66, 133, 244, 0.46);
  box-shadow: 0 22px 58px rgba(26, 115, 232, 0.13);
  transform: translateY(-4px);
}

.cost-factor-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #dceaff 0%, #f7fbff 100%);
  color: var(--blue-dark);
}

.cost-factor-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cost-factor-card h3 {
  margin: 0 0 6px;
  color: #10182b;
  font-size: 1rem;
}

.cost-factor-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.cost-factor-card p {
  margin: 0;
  color: #53677f;
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-company {
  display: grid;
  gap: 24px;
}

.about-lead,
.about-panel-grid article,
.about-reasons .advantage-grid article,
.contact-action-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(26, 115, 232, 0.08);
}

.about-lead {
  padding: 30px;
  background:
    linear-gradient(135deg, #eef5ff 0%, #ffffff 72%);
}

.about-lead h2 {
  max-width: 860px;
  margin-bottom: 16px;
}

.about-lead p:last-child {
  max-width: 1040px;
  color: #53677f;
  font-size: 1rem;
  line-height: 1.72;
}

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

.about-panel-grid article,
.about-reasons .advantage-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.about-panel-grid article::before,
.about-reasons .advantage-grid article::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(66, 133, 244, 0.16) 100%);
}

.about-card-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.about-card-heading span,
.reason-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(66, 133, 244, 0.28);
  border-radius: 8px;
  background: #e8f0fe;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.reason-number {
  margin-bottom: 18px;
}

.about-panel-grid h3,
.about-reasons h3 {
  margin: 0 0 12px;
  color: #10182b;
}

.about-card-heading h3 {
  margin: 0;
}

.about-panel-grid p,
.about-reasons p {
  margin: 0;
  color: #53677f;
  font-size: 0.94rem;
  line-height: 1.62;
}

.contact-layout-simple {
  align-items: stretch;
}

.contact-layout-simple .contact-card,
.contact-action-panel {
  min-height: 430px;
}

.contact-action-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 34px;
  background:
    linear-gradient(135deg, #f7fbff 0%, #ffffff 76%);
}

.contact-action-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

.contact-action-panel p {
  max-width: 620px;
  margin: 0;
  color: #53677f;
}

.contact-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-note {
  font-size: 0.92rem;
  line-height: 1.58;
}

.redirect-section {
  min-height: 58vh;
}

.contact-social-panel {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.contact-social-panel h3 {
  margin: 0;
  color: #10182b;
  font-size: 1rem;
}

.compact-tech-card {
  min-height: 185px;
}

.head-feature-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 0.55fr);
  align-items: center;
  min-height: 310px;
  padding: 0;
  background: #ffffff;
}

.head-feature-card::before {
  display: none;
}

.head-feature-image {
  display: grid;
  place-items: center;
  align-self: stretch;
  height: 100%;
  min-height: 310px;
  padding: 20px 24px;
  overflow: visible;
  border-right: 3px solid #4285f4;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 78%);
}

.head-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.14);
  transition: transform 360ms ease;
}

.head-feature-card:hover .head-feature-image img {
  transform: scale(1.19);
}

.head-feature-body {
  padding: 30px 32px;
}

.head-feature-body h3 {
  margin-bottom: 14px;
  font-size: 1.14rem;
  line-height: 1.18;
}

.diagram-feature-card {
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 500px;
  padding: 0;
}

.diagram-feature-card .head-feature-body {
  order: 1;
}

.diagram-feature-card .head-feature-image {
  order: 2;
  width: 100%;
  height: 350px;
  min-height: 350px;
  margin-top: 0;
  padding: 10px 28px 18px;
  border-top: 3px solid #4285f4;
  border-right: 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.diagram-feature-card .head-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transform: translateY(-8px);
}

.diagram-feature-card:hover .head-feature-image img {
  transform: translateY(-12px);
}

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

.tech-chip-list span {
  padding: 7px 10px;
  border: 1px solid rgba(66, 133, 244, 0.24);
  border-radius: 999px;
  background: #e8f0fe;
  color: #1b4f9e;
  font-size: 0.8rem;
  font-weight: 800;
}

.speed-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(16, 23, 36, 0.08);
  transition:
    transform 520ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.speed-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.speed-table th,
.speed-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #e5eefc;
  text-align: left;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.speed-table thead th {
  background: #0b2b63;
  color: #ffffff;
  font-weight: 850;
}

.speed-table tbody th {
  color: #10203d;
  font-weight: 850;
}

.speed-table tbody tr:nth-child(even) {
  background: #f7fbff;
}

.speed-table tbody tr {
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.speed-table tbody tr:hover {
  background: #eaf3ff;
  box-shadow: inset 4px 0 0 var(--blue);
}

.speed-table tbody tr:hover th,
.speed-table tbody tr:hover td {
  color: #0b2b63;
}

.speed-table .merged-cell {
  vertical-align: middle;
  border-right: 1px solid #e5eefc;
}

.speed-table .material-cell {
  background: #eef5ff;
  color: #10203d;
}

.speed-table .gas-cell {
  color: #233044;
  font-weight: 800;
  text-align: center;
}

.speed-table .speed-group-start > th,
.speed-table .speed-group-start > td {
  border-top: 2px solid #cfe0fb;
}

.table-note {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 0.9rem;
}

.application-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
}

.application-card .eyebrow {
  margin-bottom: 10px;
  color: #4f6f9f;
  font-size: 0.78rem;
  font-weight: 800;
}

.application-card h3 {
  min-height: 2.6em;
  margin-bottom: 12px;
  font-size: 1.04rem;
  line-height: 1.3;
}

.application-card dd {
  color: #445772;
  font-size: 0.94rem;
  line-height: 1.45;
}

.accessory-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(16, 23, 36, 0.07);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.accessory-image {
  position: relative;
  display: grid;
  place-items: center;
  height: 260px;
  border-bottom: 4px solid #4285f4;
  background:
    linear-gradient(135deg, #dceaff 0%, #eef5ff 48%, #f8fbff 100%);
}

.accessory-image img {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  max-width: none;
  object-fit: contain;
}

.accessory-body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 24px 22px;
  background: var(--white);
}

.accessory-body h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
  line-height: 1.28;
}

.accessory-body p {
  color: #53677f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.text-link {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 900;
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.contact-layout.contact-layout-simple {
  align-items: stretch;
}

.contact-layout.contact-layout-simple > .contact-card,
.contact-layout.contact-layout-simple > .contact-action-panel {
  height: 100%;
}

.material-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.material-list span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 850;
}

.materials-section {
  display: grid;
  gap: 38px;
}

.materials-section .section-header {
  max-width: 980px;
  margin-bottom: 22px;
}

.material-row-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.material-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(16, 23, 36, 0.1);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.material-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 3px solid var(--blue);
  opacity: 0.88;
}

.material-card-image {
  padding: 14px 14px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.material-card img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e1ebfb;
  border-radius: 7px;
}

.material-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
}

.material-card figcaption span {
  color: #10182b;
  font-size: 1.05rem;
  font-weight: 900;
}

.material-card figcaption strong {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(66, 133, 244, 0.24);
  border-radius: 999px;
  background: #e8f0fe;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.material-card figcaption p {
  margin: 0;
  color: #53677f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.sample-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.material-showcase {
  box-shadow: none;
}

.material-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

.sample-panel img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.sample-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.sample-grid img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.check-grid {
  padding: 0;
  list-style: none;
}

.check-grid li {
  min-height: 64px;
  padding: 18px 18px 18px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  position: relative;
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
}

[dir="rtl"] .check-grid li {
  padding: 18px 44px 18px 18px;
}

[dir="rtl"] .section-header,
[dir="rtl"] .about-company,
[dir="rtl"] .about-reasons,
[dir="rtl"] .cost-section,
[dir="rtl"] .contact-card,
[dir="rtl"] .contact-action-panel,
[dir="rtl"] .system-visual-body,
[dir="rtl"] .head-feature-body,
[dir="rtl"] .product-card-body {
  text-align: right;
}

[dir="rtl"] .button-row,
[dir="rtl"] .material-list,
[dir="rtl"] .tech-chip-list,
[dir="rtl"] .social-list,
[dir="rtl"] .contact-list {
  justify-content: flex-start;
}

[dir="rtl"] .cost-factor-card,
[dir="rtl"] .icon-link {
  direction: rtl;
}

[dir="rtl"] .cost-factor-card {
  grid-template-columns: minmax(0, 1fr) 58px;
}

[dir="rtl"] .cost-narrative-item {
  grid-template-columns: minmax(0, 1fr) 54px;
}

[dir="rtl"] .cost-factor-icon {
  grid-column: 2;
  grid-row: 1;
}

[dir="rtl"] .cost-narrative-item span {
  grid-column: 2;
  grid-row: 1;
}

[dir="rtl"] .cost-factor-card > div:last-child {
  grid-column: 1;
  grid-row: 1;
}

[dir="rtl"] .cost-narrative-item > div {
  grid-column: 1;
  grid-row: 1;
}

[dir="rtl"] .site-nav {
  direction: rtl;
}

.check-grid li:hover {
  border-color: rgba(66, 133, 244, 0.56);
  background: #fafdff;
  transform: translateY(-4px);
}

.check-grid li.reveal:nth-child(2) {
  transition-delay: 45ms;
}

.check-grid li.reveal:nth-child(3) {
  transition-delay: 90ms;
}

.check-grid li.reveal:nth-child(4) {
  transition-delay: 135ms;
}

.check-grid li.reveal:nth-child(5) {
  transition-delay: 180ms;
}

.check-grid li.reveal:nth-child(6) {
  transition-delay: 225ms;
}

.check-grid li.reveal:nth-child(7) {
  transition-delay: 270ms;
}

.check-grid li.reveal:nth-child(8) {
  transition-delay: 315ms;
}

.check-grid li.reveal:nth-child(9) {
  transition-delay: 360ms;
}

.check-grid li::before {
  content: "";
  position: absolute;
  top: 22px;
  inset-inline-start: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-band {
  padding: 74px max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(110deg, #1a73e8, #4285f4);
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  max-width: 760px;
}

.cta-band p {
  color: #d4e0ee;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 78px max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(120deg, #f7f9fc, #ffffff);
}

.inner-hero img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  border-radius: 8px;
}

.inner-hero h1 {
  color: var(--navy);
  font-size: clamp(2.15rem, 4vw, 4.7rem);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.94rem;
}

.spec-table caption {
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  text-align: start;
}

.spec-table th,
.spec-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: start;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: #24344a;
  background: #f7f9fc;
  font-weight: 900;
}

.table-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.table-wrap {
  overflow-x: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 18px 18px;
}

.contact-section {
  align-items: start;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #2a3748;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #cbd5df;
  border-radius: 8px;
  padding: 12px 12px;
  color: var(--ink);
  background: var(--white);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-notice {
  padding: 14px;
  border-radius: 8px;
  background: #edf3ff;
  color: var(--navy);
  font-weight: 800;
}

.contact-card {
  align-self: stretch;
  padding: 28px;
}

.contact-form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #f7fbff 0%, #ffffff 76%);
  box-shadow: 0 18px 50px rgba(26, 115, 232, 0.08);
}

.contact-form-panel .section-header {
  margin-bottom: 22px;
}

.contact-form-panel .inquiry-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.operation-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.operation-grid article::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(66, 133, 244, 0.16) 100%);
}

.site-footer {
  padding: 58px max(18px, calc((100vw - 1180px) / 2)) 96px;
  background: #eef5ff;
  color: var(--ink);
}

.site-footer p {
  color: #4f5d6b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: clamp(48px, 8vw, 116px);
  align-items: start;
}

.footer-grid h2 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: #2b4f8f;
}

.footer-grid a.icon-link {
  display: flex;
}

.footer-contact-panel {
  width: min(100%, 560px);
  justify-self: end;
  padding-top: 36px;
}

.footer-brand {
  color: var(--navy);
}

.footer-brand img {
  box-shadow: none;
}

.footer-description p {
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid #d5e3fb;
  color: #4f5d6b;
  line-height: 1.7;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-bottom a {
  color: #4f5d6b;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.7;
}

.contact-list,
.social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin: 18px 0 22px;
}

.icon-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #2b4f8f;
  line-height: 1.55;
}

.icon-link svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid #cfe0ff;
  border-radius: 50%;
  margin-top: 0;
  background: #ffffff;
  box-shadow: none;
  color: var(--blue-dark);
}

.icon-link svg path,
.icon-link svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list .icon-link {
  display: flex;
}

.site-footer .contact-list a,
.site-footer .contact-list p,
.site-footer .social-list a {
  margin-bottom: 0;
}

.site-footer .social-list a {
  padding: 10px 16px 10px 10px;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
  font-weight: 750;
}

.site-footer .social-list a:hover {
  border-color: rgba(66, 133, 244, 0.62);
  transform: translateY(-1px);
}

.site-footer .social-list svg {
  width: 36px;
  height: 36px;
  padding: 8px;
}

.dark-text .icon-link,
.dark-text .icon-link span {
  color: #26344a;
}

.dark-text .icon-link svg {
  color: var(--blue);
}

.sticky-contact {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
}

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

.hero-content.reveal {
  transform: translateY(14px);
}

.hero-content.reveal.is-visible {
  transform: translateY(0);
}

.product-card.reveal,
.material-card.reveal,
.accessory-card.reveal,
.tech-card.reveal,
.system-visual-card.reveal,
.speed-table-wrap.reveal,
.power-grid article.reveal,
.check-grid li.reveal {
  transform: translateY(44px) scale(0.985);
}

.product-card.reveal.is-visible,
.material-card.reveal.is-visible,
.accessory-card.reveal.is-visible,
.tech-card.reveal.is-visible,
.system-visual-card.reveal.is-visible,
.speed-table-wrap.reveal.is-visible,
.power-grid article.reveal.is-visible,
.check-grid li.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.product-card.reveal.is-visible:hover,
.material-card.reveal.is-visible:hover,
.accessory-card.reveal.is-visible:hover,
.tech-card.reveal.is-visible:hover,
.speed-table-wrap.reveal.is-visible:hover,
.power-grid article.reveal.is-visible:hover {
  transform: translateY(-5px) scale(1);
}

.check-grid li.reveal {
  transition:
    opacity 680ms ease,
    transform 680ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .language-switcher {
    justify-content: flex-start;
    margin: 10px 0;
    padding: 12px 0;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 4px 0 8px 12px;
    border: 0;
    box-shadow: none;
  }

  .product-grid,
  .advantage-grid,
  .application-grid,
  .accessory-grid,
  .system-group-grid,
  .system-visual-grid,
  .cost-layout,
  .about-panel-grid,
  .head-feature-grid,
  .power-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .head-feature-image {
    height: 230px;
    min-height: 230px;
    border-right: 0;
    border-bottom: 3px solid #4285f4;
  }

  .head-feature-card {
    grid-template-columns: 1fr;
  }

  .head-feature-card .head-feature-image {
    order: 1;
  }

  .head-feature-card .head-feature-body {
    order: 2;
  }

  .diagram-feature-card .head-feature-image {
    border-top: 3px solid #4285f4;
    border-bottom: 0;
  }

  .two-column,
  .contact-layout,
  .inner-hero {
    grid-template-columns: 1fr;
  }

  .inner-hero img {
    height: 320px;
    order: 2;
  }

  .hero {
    height: auto;
    min-height: 620px;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.15rem, 6vw, 3.4rem);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .hero {
    min-height: calc(100svh - 74px);
    height: auto;
    align-items: center;
  }

  .hero-bg {
    object-position: 84% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 18, 44, 0.82), rgba(7, 24, 58, 0.56) 62%, rgba(66, 133, 244, 0.12)),
      linear-gradient(0deg, rgba(5, 18, 44, 0.52), rgba(255, 255, 255, 0) 66%);
  }

  .hero-content {
    padding: 22px 0 76px;
    transform: translateY(0);
  }

  .hero-content.reveal.is-visible {
    transform: translateY(0);
  }

  h1,
  .hero h1 {
    font-size: clamp(1.72rem, 8.2vw, 2.55rem);
    line-height: 1.02;
  }

  .hero p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.67rem;
  }

  .trust-strip {
    gap: 8px;
    margin-top: 12px;
  }

  .trust-strip span {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .hero .button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .hero .button-row {
    gap: 9px;
  }

  .section,
  .section-muted,
  .section-dark {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .product-grid,
  .advantage-grid,
  .application-grid,
  .accessory-grid,
  .system-group-grid,
  .head-feature-grid,
  .power-grid,
  .check-grid,
  .footer-grid,
  .material-row-showcase,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 190px;
  }

  .head-feature-image,
  .system-visual-image,
  .accessory-image {
    height: 230px;
    min-height: 230px;
  }

  .system-visual-card:first-child .system-visual-image img {
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    max-width: calc(100% - 36px);
    object-fit: contain;
  }

  .cost-layout {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .cost-factor-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .cost-narrative-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .cost-narrative-item span {
    width: 40px;
    height: 40px;
  }

  .contact-action-list {
    flex-direction: column;
  }

  .contact-action-list .button {
    width: 100%;
  }

  .cost-narrative,
  .cost-factor-card,
  .about-lead,
  .about-panel-grid article,
  .contact-action-panel {
    padding: 18px;
  }

  .cost-factor-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  [dir="rtl"] .cost-factor-card {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .cost-factor-icon {
    width: 48px;
    height: 48px;
  }

  .head-feature-card,
  .diagram-feature-card {
    min-height: 0;
    padding: 22px;
  }

  .inner-hero {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .inner-hero img {
    height: 230px;
  }

  .button-small {
    width: 100%;
    min-width: 0;
  }

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

  .sticky-contact {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 -12px 30px rgba(7, 20, 43, 0.12);
  }

  .sticky-contact a {
    min-height: 52px;
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 900;
  }

  .sticky-contact a + a {
    border-inline-start: 1px solid var(--line);
  }

  .site-footer {
    padding-bottom: 130px;
  }

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

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
