:root {
  --ink: #071211;
  --ink-soft: #0b1b19;
  --paper: #eef5f2;
  --white: #ffffff;
  --muted: #63716e;
  --line: rgba(7, 18, 17, 0.12);
  --teal: #064c4a;
  --teal-light: #94d9d2;
  --gold: #b9964d;
  --gold-soft: #d9bd78;
  --tiffany: #00e0d3;
  --tiffany-deep: #008f88;
  --tiffany-glow: rgba(0, 224, 211, 0.34);
  --shadow: 0 26px 80px rgba(7, 18, 17, 0.2);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f7fbf8 0%, var(--paper) 46%, #e7f0ed 100%);
  color: var(--ink);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(234, 216, 173, 0.14);
  background: #1d2421;
  color: var(--white);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo-shell {
  position: relative;
  display: grid;
  width: clamp(250px, 22vw, 340px);
  height: auto;
  flex: 0 0 auto;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo-shell::after {
  display: none;
}

.brand-logo-shell img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-copy strong {
  color: var(--gold-soft);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.45vw, 22px);
  font-size: 0.84rem;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--tiffany));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  padding: 11px 16px;
  border-radius: 6px;
  border: 1px solid rgba(234, 216, 173, 0.24);
  background: linear-gradient(135deg, var(--tiffany), #8feee8);
  color: #041211;
  box-shadow: none;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, #20eee4, #d8fff9);
  color: #041211;
  box-shadow: 0 0 0 1px rgba(153, 255, 252, 0.52), 0 0 20px var(--tiffany-glow), 0 0 42px rgba(10, 186, 181, 0.22);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(10, 186, 181, 0.35);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switch a {
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
}

.language-switch a::after {
  display: none;
}

.language-switch a[aria-current="true"] {
  color: #9ffaf6;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  grid-area: 1 / 1;
  width: 19px;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("assets/hero-trucks.png") center / cover no-repeat;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 7, 7, 0.92) 0%, rgba(8, 13, 13, 0.72) 43%, rgba(8, 13, 13, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 7, 7, 0.18) 0%, rgba(4, 7, 7, 0.72) 100%),
    radial-gradient(circle at 20% 28%, rgba(18, 201, 192, 0.16), transparent 34%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  width: 100%;
  padding: clamp(68px, 10vw, 126px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 82px);
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 6vw, 6.45rem);
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.3vw, 4.5rem);
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-lede,
.section-heading p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 32px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

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

.button-primary {
  background: var(--tiffany);
  color: #061615;
  box-shadow: none;
}

.button-primary:hover {
  background: #10d5cf;
  box-shadow: 0 0 0 1px rgba(153, 255, 252, 0.52), 0 0 22px var(--tiffany-glow), 0 0 46px rgba(10, 186, 181, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-icon {
  margin-right: 8px;
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(234, 216, 173, 0.22);
  border-radius: var(--radius);
  background: rgba(6, 10, 10, 0.64);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34), 0 0 42px rgba(18, 201, 192, 0.08);
  backdrop-filter: blur(18px);
}

.hero-brand-panel {
  align-self: end;
}

.hero-logo-display {
  display: grid;
  gap: 14px;
  padding: 22px;
  background:
    linear-gradient(140deg, rgba(234, 216, 173, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.04);
}

.hero-logo-display img {
  width: 100%;
  aspect-ratio: 16 / 7;
  border: 1px solid rgba(198, 161, 91, 0.46);
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.hero-logo-display span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel div {
  padding: 19px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  color: var(--gold-soft);
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px);
  background: var(--line);
}

.signal-band span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 16px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

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

.about-section {
  padding-block: clamp(66px, 8vw, 104px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  justify-content: center;
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.about-photo {
  position: relative;
  width: min(100%, 620px);
  height: clamp(240px, 26vw, 390px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 11, 11, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(8, 11, 11, 0.08);
}

.about-photo::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--tiffany));
  content: "";
}

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

.about-heading {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
  grid-column: 1 / -1;
}

.about-heading h2 {
  max-width: 980px;
  margin-inline: auto;
}

.about-copy {
  display: grid;
  gap: 22px;
  max-width: none;
  margin-inline: 0;
  justify-items: start;
}

.about-text {
  display: grid;
  gap: 14px;
  text-align: left;
}

.about-text p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.22vw, 1.1rem);
  line-height: 1.68;
}

.about-highlight {
  display: inline-flex;
  padding: 12px 14px;
  border-left: 3px solid var(--tiffany);
  background: rgba(18, 201, 192, 0.08);
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

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

.about-card {
  position: relative;
  display: grid;
  min-height: 245px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(8, 11, 11, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(8, 11, 11, 0.06);
}

.about-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--tiffany));
  content: "";
}

.about-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.about-card-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: rgba(11, 89, 96, 0.72);
}

.about-card-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.about-card h3 {
  margin-bottom: 12px;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.about-card-dark {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.about-card-dark::before {
  background: linear-gradient(90deg, var(--gold), var(--tiffany));
}

.about-card-dark .card-index {
  border-color: rgba(18, 201, 192, 0.16);
  background: rgba(18, 201, 192, 0.1);
  color: var(--tiffany-deep);
}

.about-card-dark .about-card-icon {
  color: rgba(11, 89, 96, 0.72);
}

.about-card-dark p {
  color: var(--muted);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

#services > .section-heading,
.company-section > .section-heading {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#services > .section-heading h2,
.company-section > .section-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

#services > .section-heading p,
.company-section > .section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-light .section-heading p,
.trade-section .section-heading p,
.process-section .section-heading p,
.company-section .section-heading p,
.contact-copy p {
  color: var(--muted);
}

.about-heading .eyebrow,
.company-section .section-heading .eyebrow,
.contact-copy .eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.services-intro-copy {
  display: grid;
  justify-items: start;
}

.services-intro-copy .eyebrow {
  color: var(--muted);
}

.services-intro-copy h2 {
  max-width: 900px;
}

.services-intro-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.72;
}

.service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 4px 0 26px;
}

.service-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(18, 201, 192, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
}

.services-illustration {
  display: grid;
  width: 100%;
  max-width: 620px;
  margin: 0;
  justify-self: end;
  place-items: center;
}

.services-illustration img {
  width: 100%;
  max-height: clamp(280px, 34vw, 500px);
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(8, 11, 11, 0.1));
}

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

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

.service-workflow {
  position: relative;
}

.service-workflow::before {
  position: absolute;
  top: 34px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 161, 91, 0.12), rgba(18, 201, 192, 0.42), rgba(198, 161, 91, 0.12));
  content: "";
  pointer-events: none;
}

.service-workflow .service-card {
  z-index: 1;
}

.service-workflow .service-card:not(:last-child)::after {
  position: absolute;
  top: 25px;
  right: -12px;
  z-index: 2;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(18, 201, 192, 0.26);
  border-radius: 50%;
  background: #f7f8f5;
  color: var(--tiffany-deep);
  content: "→";
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.service-card,
.product-card,
.trade-card,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 11, 11, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(8, 11, 11, 0.06);
}

.service-card::before,
.product-card::before,
.trade-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--tiffany));
  content: "";
  opacity: 0.82;
}

.service-card {
  scroll-margin-top: 110px;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 26px;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.service-card-head .card-index {
  margin-bottom: 0;
}

.service-line-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: rgba(11, 89, 96, 0.72);
}

.service-line-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-card-body {
  display: grid;
  gap: 12px;
}

.service-card-body p {
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
}

.service-tags span {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid rgba(18, 201, 192, 0.22);
  border-radius: 999px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.services-followup {
  margin-top: clamp(24px, 4vw, 38px);
  padding: 22px 24px;
  border: 1px solid rgba(8, 11, 11, 0.1);
  border-left: 3px solid var(--tiffany);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(8, 11, 11, 0.05);
}

.services-followup p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.services-custom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 54px);
  margin-top: clamp(24px, 4vw, 38px);
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 18%, rgba(185, 150, 77, 0.18), transparent 28%),
    linear-gradient(135deg, #071211 0%, #0b1b19 100%);
  color: var(--white);
  box-shadow: 0 26px 68px rgba(7, 18, 17, 0.22);
}

.services-custom-cta > div {
  max-width: 860px;
}

.services-custom-cta .eyebrow {
  margin-bottom: 10px;
  color: var(--gold-soft);
}

.services-custom-cta h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

.services-custom-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

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

.product-card {
  scroll-margin-top: 110px;
  min-height: 300px;
  padding: 22px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card h3 {
  font-size: 1rem;
  line-height: 1.24;
}

.product-card > p {
  font-size: 0.92rem;
  line-height: 1.58;
}

.product-card:hover,
.service-card:hover,
.trade-card:hover {
  border-color: rgba(18, 201, 192, 0.35);
  box-shadow: 0 22px 58px rgba(8, 11, 11, 0.1), 0 0 0 1px rgba(18, 201, 192, 0.08);
  transform: translateY(-2px);
}

.product-card.is-targeted,
.service-card.is-targeted {
  border-color: rgba(0, 224, 211, 0.72);
  box-shadow: 0 24px 62px rgba(7, 18, 17, 0.14), 0 0 0 2px rgba(0, 224, 211, 0.16), 0 0 42px rgba(0, 224, 211, 0.12);
}

.service-card p,
.product-card p,
.trade-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card-expandable,
.product-card-expandable {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card-expandable:hover,
.service-card-expandable:focus-within,
.product-card-expandable:hover,
.product-card-expandable:focus-within {
  border-color: rgba(10, 186, 181, 0.44);
  box-shadow: 0 16px 38px rgba(16, 20, 20, 0.08), 0 0 0 1px rgba(10, 186, 181, 0.12);
}

.service-card-expandable.is-expanded,
.product-card-expandable.is-expanded {
  border-color: rgba(10, 186, 181, 0.64);
  box-shadow: 0 18px 42px rgba(16, 20, 20, 0.09), 0 0 0 1px rgba(10, 186, 181, 0.18);
}

.service-card-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  background: transparent;
  color: var(--tiffany-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.service-card-control:focus-visible {
  outline: 3px solid rgba(10, 186, 181, 0.24);
  outline-offset: 5px;
}

.service-card-plus {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(10, 186, 181, 0.42);
  border-radius: 50%;
}

.service-card-plus::before,
.service-card-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--tiffany-deep);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.service-card-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-card-expandable.is-expanded .service-card-plus::after,
.product-card-expandable.is-expanded .service-card-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-card-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease, opacity 220ms ease, margin-top 260ms ease;
}

.service-card-details p {
  padding-top: 14px;
  border-top: 1px solid rgba(16, 20, 20, 0.1);
  color: #47524f;
  font-size: 0.93rem;
  line-height: 1.68;
}

.service-card-details p + p {
  margin-top: 0;
  border-top: 0;
}

.service-card-expandable.is-expanded .service-card-details,
.product-card-expandable.is-expanded .service-card-details {
  max-height: 780px;
  margin-top: 4px;
  opacity: 1;
}

.card-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(18, 201, 192, 0.16);
  background: rgba(18, 201, 192, 0.1);
  color: var(--tiffany-deep);
  font-size: 0.8rem;
  font-weight: 950;
}

.service-card-dark {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.service-card-dark p,
.product-card-dark p {
  color: var(--muted);
}

.product-card-dark {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.service-card-dark.service-card-expandable:hover,
.service-card-dark.service-card-expandable:focus-within,
.service-card-dark.service-card-expandable.is-expanded,
.product-card-dark.product-card-expandable:hover,
.product-card-dark.product-card-expandable:focus-within,
.product-card-dark.product-card-expandable.is-expanded {
  border-color: rgba(10, 186, 181, 0.48);
  box-shadow: 0 18px 42px rgba(16, 20, 20, 0.09), 0 0 0 1px rgba(10, 186, 181, 0.16);
}

.service-card-dark .service-card-control,
.product-card-dark .service-card-control {
  color: var(--tiffany-deep);
}

.service-card-dark .service-card-plus,
.product-card-dark .service-card-plus {
  border-color: rgba(10, 186, 181, 0.42);
}

.service-card-dark .service-card-plus::before,
.service-card-dark .service-card-plus::after,
.product-card-dark .service-card-plus::before,
.product-card-dark .service-card-plus::after {
  background: var(--tiffany-deep);
}

.service-card-dark .service-card-details p,
.product-card-dark .service-card-details p {
  border-top-color: rgba(16, 20, 20, 0.1);
  color: #47524f;
}

.service-card-dark .card-index,
.product-card-dark .card-index {
  border-color: rgba(18, 201, 192, 0.16);
  background: rgba(18, 201, 192, 0.1);
  color: var(--tiffany-deep);
}

.product-custom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 54px);
  margin-top: clamp(28px, 5vw, 54px);
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 18%, rgba(185, 150, 77, 0.18), transparent 28%),
    linear-gradient(135deg, #071211 0%, #0b1b19 100%);
  color: var(--white);
  box-shadow: 0 26px 68px rgba(7, 18, 17, 0.22);
}

.product-custom-cta > div {
  max-width: 860px;
}

.product-custom-cta .eyebrow {
  margin-bottom: 10px;
  color: var(--gold-soft);
}

.product-custom-cta h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

.product-custom-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

.trade-section {
  background:
    linear-gradient(135deg, rgba(18, 201, 192, 0.1), transparent 35%),
    linear-gradient(180deg, #f3f4f1 0%, #e9eeeb 100%),
    var(--paper);
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.product-intro-copy {
  display: grid;
  justify-items: start;
}

.product-intro-copy .eyebrow {
  color: var(--muted);
}

.product-intro-copy h2 {
  max-width: 900px;
}

.product-intro-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.72;
}

.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 26px;
}

.product-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(18, 201, 192, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
}

.product-illustration {
  display: grid;
  width: 100%;
  max-width: 620px;
  margin: 0;
  justify-self: end;
  place-items: center;
}

.product-illustration img {
  width: 100%;
  max-height: clamp(280px, 34vw, 500px);
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(8, 11, 11, 0.13));
}

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

.trade-card {
  min-height: 220px;
  padding: 30px;
}

.process-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8f5 100%);
  color: var(--ink);
  padding-top: clamp(64px, 7vw, 104px);
}

.process-section .eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 56px);
  text-align: left;
}

.process-intro h2 {
  max-width: 900px;
  margin-bottom: 18px;
}

.process-intro-copy {
  display: grid;
  justify-items: start;
}

.process-intro-copy p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.72;
}

.process-illustration {
  display: grid;
  width: 100%;
  max-width: 620px;
  margin: 0;
  justify-self: end;
  place-items: center;
}

.process-illustration img {
  width: 100%;
  max-height: clamp(280px, 34vw, 500px);
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(8, 11, 11, 0.1));
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow::before {
  position: absolute;
  top: 31px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 161, 91, 0.08), rgba(18, 201, 192, 0.52), rgba(198, 161, 91, 0.08));
  content: "";
}

.process-step {
  position: relative;
  display: grid;
  min-height: 285px;
  padding: 24px;
  border: 1px solid rgba(8, 11, 11, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(8, 11, 11, 0.06);
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: -12px;
  z-index: 2;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(18, 201, 192, 0.26);
  border-radius: 50%;
  background: #f7f8f5;
  color: var(--tiffany-deep);
  content: "→";
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.process-step::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--tiffany));
  content: "";
}

.process-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.process-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(18, 201, 192, 0.18);
  border-radius: 50%;
  background: #edf9f7;
  color: var(--tiffany-deep);
  font-size: 0.8rem;
  font-weight: 950;
}

.process-line-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: rgba(11, 89, 96, 0.72);
}

.process-line-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.process-step p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-self: end;
}

.process-tags span {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid rgba(18, 201, 192, 0.22);
  border-radius: 999px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.process-step-dark {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.process-step-dark p {
  color: var(--muted);
}

.process-step-dark .process-icon {
  border-color: rgba(18, 201, 192, 0.18);
  background: #edf9f7;
  color: var(--tiffany-deep);
}

.process-step-dark .process-line-icon {
  color: rgba(11, 89, 96, 0.72);
}

.process-step-dark .process-tags span {
  border-color: rgba(18, 201, 192, 0.22);
  color: var(--teal);
}

.process-followup {
  margin-top: clamp(24px, 4vw, 36px);
  padding: 22px 24px;
  border: 1px solid rgba(8, 11, 11, 0.1);
  border-left: 3px solid var(--tiffany);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(8, 11, 11, 0.05);
}

.process-followup p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.process-custom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 54px);
  margin-top: clamp(24px, 4vw, 38px);
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 18%, rgba(185, 150, 77, 0.18), transparent 28%),
    linear-gradient(135deg, #071211 0%, #0b1b19 100%);
  color: var(--white);
  box-shadow: 0 26px 68px rgba(7, 18, 17, 0.22);
}

.process-custom-cta > div {
  max-width: 860px;
}

.process-custom-cta .eyebrow {
  margin-bottom: 10px;
  color: var(--gold-soft);
}

.process-custom-cta h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

.process-custom-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

.company-section {
  background: var(--white);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.company-facts div {
  min-width: 0;
  padding: 24px;
  background: #fbfaf6;
}

.company-facts dt {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 6vw, 84px);
  background:
    linear-gradient(135deg, rgba(198, 161, 91, 0.08), transparent 38%),
    var(--paper);
}

.contact-copy {
  max-width: 650px;
}

address {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

address a {
  color: var(--teal);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border-color: rgba(8, 11, 11, 0.11);
  background:
    linear-gradient(135deg, rgba(18, 201, 192, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 18px 54px rgba(8, 11, 11, 0.08);
}

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

.form-header {
  display: grid;
  gap: 7px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(8, 11, 11, 0.1);
}

.form-header span {
  color: var(--tiffany);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-header strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 11, 11, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  line-height: 1.4;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(99, 113, 110, 0.68);
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(18, 201, 192, 0.18);
  border-color: rgba(18, 201, 192, 0.72);
  background: var(--white);
}

.contact-form .button {
  width: fit-content;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-actions span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
}

.location-card {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(210px, 0.24fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(8, 11, 11, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 201, 192, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(8, 11, 11, 0.08);
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--tiffany));
}

.location-card::after {
  content: "";
  position: absolute;
  left: clamp(18px, 3vw, 26px);
  bottom: clamp(18px, 3vw, 26px);
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(185, 150, 77, 0.12);
}

.location-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding-bottom: 22px;
}

.location-copy h3 {
  max-width: 360px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.map-frame {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(8, 11, 11, 0.1);
  border-radius: var(--radius);
  background: #dfe7e4;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  filter: saturate(0.88) contrast(0.96);
}

.scroll-popup {
  position: fixed;
  right: clamp(14px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 30px);
  z-index: 70;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  max-width: min(390px, calc(100vw - 28px));
  padding: 16px 18px;
  border: 1px solid rgba(199, 155, 80, 0.42);
  border-radius: var(--radius);
  background: rgba(13, 18, 18, 0.92);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(16px);
}

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

.popup-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199, 155, 80, 0.16);
}

.scroll-popup p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 86px) clamp(18px, 5vw, 72px) 0;
  border-top: 3px solid var(--tiffany);
  background:
    linear-gradient(180deg, rgba(0, 224, 211, 0.11), transparent 34%),
    linear-gradient(135deg, #062422 0%, #0a1514 52%, #051d1b 100%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 224, 211, 0.08), transparent 1px) 0 0 / 86px 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035), transparent 1px) 0 0 / 100% 86px;
  opacity: 0.42;
  content: "";
  pointer-events: none;
}

.site-footer::after {
  position: absolute;
  top: 0;
  right: clamp(18px, 5vw, 72px);
  left: clamp(18px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 224, 211, 0.9), transparent);
  content: "";
  pointer-events: none;
}

.site-footer > span {
  display: none;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.72fr));
  gap: clamp(30px, 5vw, 68px);
  max-width: 1520px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-logo-mark {
  display: grid;
  width: 66px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 224, 211, 0.55);
  border-radius: 6px;
  background: #050606;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26), 0 0 24px rgba(0, 224, 211, 0.12);
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.2);
}

.footer-logo strong,
.footer-column h2 {
  display: block;
  color: #8ffaf3;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-logo small {
  display: block;
  margin-top: 5px;
  color: rgba(217, 189, 120, 0.86);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 420px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-company-note {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0, 224, 211, 0.28);
  border-radius: 6px;
  background: rgba(0, 224, 211, 0.08);
  color: rgba(207, 255, 253, 0.82);
  font-weight: 800;
  line-height: 1.45;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--tiffany);
  font-size: 0.92rem;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.55;
}

.footer-column a {
  transition: color 170ms ease, text-shadow 170ms ease, transform 170ms ease;
}

.footer-column a:hover {
  color: #bffffd;
  text-shadow: 0 0 18px var(--tiffany-glow);
  transform: translateX(3px);
}

.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.footer-contact span[aria-hidden="true"] {
  display: inline-grid;
  width: 44px;
  min-height: 28px;
  place-items: center;
  border: 1px solid rgba(0, 224, 211, 0.42);
  border-radius: 6px;
  color: #8ffaf3;
  font-size: 0.68rem;
  font-weight: 950;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1520px;
  margin: clamp(44px, 6vw, 70px) auto 0;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
}

.animate-from-left {
  transform: translateX(-42px);
}

.animate-from-right {
  transform: translateX(42px);
}

.animate-on-scroll.is-visible {
  animation: rise-in 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.animate-on-scroll.animate-from-left.is-visible {
  animation: slide-in-left 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.animate-on-scroll.animate-from-right.is-visible {
  animation: slide-in-right 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.split-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.42em);
}

.split-title.is-visible .word {
  animation: word-in 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--word-index) * 52ms);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes word-in {
  from {
    opacity: 0;
    transform: translateY(0.42em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .animate-on-scroll,
  .split-title .word,
  .scroll-popup {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .contact-section,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .product-intro {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 28px;
  }

  .services-intro {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 28px;
  }

  .process-intro {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 28px;
  }

  .hero-inner {
    align-items: start;
  }

  .hero-panel {
    max-width: 520px;
  }

  .signal-band,
  .about-cards,
  .service-grid,
  .product-grid,
  .process-flow,
  .trade-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow::before {
    display: none;
  }

  .process-step::after {
    display: none;
  }

  .service-workflow::before,
  .service-workflow .service-card::after {
    display: none;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
    padding-inline: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo-shell {
    width: min(230px, 58vw);
  }

  .brand-copy strong {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .brand-copy small {
    max-width: 155px;
    font-size: 0.62rem;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: #1d2421;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a,
  .nav-links .nav-cta,
  .language-switch {
    padding: 14px;
    border-radius: 6px;
  }

  .language-switch {
    justify-content: center;
    margin-top: 8px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 10, 10, 0.9), rgba(7, 10, 10, 0.58)),
      linear-gradient(180deg, rgba(7, 10, 10, 0.35), rgba(7, 10, 10, 0.7));
  }

  .hero-inner {
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

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

  .services-intro {
    grid-template-columns: 1fr;
  }

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

  .product-intro-copy h2 {
    font-size: clamp(2rem, 10vw, 3.45rem);
  }

  .services-intro-copy h2 {
    font-size: clamp(2rem, 10vw, 3.45rem);
  }

  .process-intro-copy h2 {
    font-size: clamp(2rem, 10vw, 3.45rem);
  }

  .product-illustration {
    max-width: 520px;
    justify-self: center;
  }

  .services-illustration {
    max-width: 520px;
    justify-self: center;
  }

  .process-illustration {
    max-width: 520px;
    justify-self: center;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
  }

  .signal-band,
  .about-cards,
  .service-grid,
  .product-grid,
  .process-flow,
  .trade-layout,
  .company-facts {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

  .process-flow {
    gap: 28px;
  }

  .process-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -25px;
    display: grid;
    transform: translateX(50%);
    content: "↓";
  }

  .service-card {
    min-height: auto;
  }

  .services-followup {
    align-items: stretch;
    flex-direction: column;
  }

  .services-custom-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .services-custom-cta .button {
    width: 100%;
  }

  .process-custom-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .process-custom-cta .button {
    width: 100%;
  }

  .product-custom-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .product-custom-cta .button {
    width: 100%;
  }

  .contact-form .button {
    width: 100%;
  }

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

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

  .location-card::after {
    display: none;
  }

  .location-copy {
    padding-bottom: 0;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 280px;
  }

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

  .scroll-popup {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

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

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

  .footer-brand p {
    max-width: none;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .brand-logo-shell {
    width: min(205px, 58vw);
  }

  .hero-inner,
  .section,
  .site-footer {
    padding-inline: 16px;
  }
}
