/* ============================================================
   HSFCOACHING LIMITED — Wind Tunnel Test Cell design system
   LIGHT drafting-room theme
   ============================================================ */

:root {
  --draft-snow: #F6FAFC;
  --graphite-ink: #1F2A33;
  --draft-blue: #2E6FA3;
  --grotto-deep: #17324A;
  --plot-paper: #FBFDFE;
  --tunnel-mist: #DFE8EE;
  --vane-amber: #C98B2D;
  --seam-grey: #B9C4CC;
  --page-bg: #EEF2F6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #EEF2F6;
  color: #1F2A33;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: #2E6FA3;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

p {
  margin: 0 0 1.05em 0;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.5em 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #F6FAFC;
  color: #17324A;
  padding: 8px 14px;
  z-index: 99;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   MANOMETER BANK NAV
   ============================================================ */

.manobank {
  background-color: #17324A;
  border-bottom: 6px solid #C98B2D;
  padding: 20px 0 0 0;
}

.manobank-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
}

.manobank-plate {
  flex: 0 0 auto;
  background-color: #1F4A6B;
  border: 2px solid #B9C4CC;
  border-radius: 4px;
  padding: 12px 18px;
  box-shadow: inset 0 0 0 3px #17324A;
}

.manobank-brand {
  display: block;
  color: #F6FAFC;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
}

.manobank-brand-sub {
  display: block;
  color: #B9C4CC;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-top: 6px;
}

.manobank-tubes {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 4px;
}

.manotube {
  position: relative;
  display: block;
  background-color: #DFE8EE;
  border: 2px solid #B9C4CC;
  border-radius: 20px;
  padding: 14px 18px 10px 18px;
  color: #1F2A33;
  font-weight: 800;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 3px 0 #0F2334;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.manotube:hover,
.manotube:focus {
  background-color: #F6FAFC;
  text-decoration: none;
  transform: translateY(-3px);
}

.manotube-bead {
  position: absolute;
  top: -7px;
  left: 50%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #2E6FA3;
  border: 2px solid #17324A;
}

.manotube-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  height: 7px;
}

.manotube-ticks span {
  display: block;
  width: 2px;
  background-color: #7C93A3;
  height: 7px;
}

.manotube-ticks span:nth-child(2) {
  height: 4px;
}

.manotube-ticks span:nth-child(3) {
  height: 7px;
}

.manotube-ticks span:nth-child(4) {
  height: 4px;
}

.manotube-a { transform: rotate(-1.4deg); margin-bottom: 14px; }
.manotube-b { transform: rotate(1.1deg); margin-bottom: 3px; }
.manotube-c { transform: rotate(-0.7deg); margin-bottom: 20px; }
.manotube-d { transform: rotate(1.6deg); margin-bottom: 7px; }
.manotube-e { transform: rotate(-1.9deg); margin-bottom: 16px; }

.manotube-a:hover, .manotube-a:focus { transform: rotate(-1.4deg) translateY(-3px); }
.manotube-b:hover, .manotube-b:focus { transform: rotate(1.1deg) translateY(-3px); }
.manotube-c:hover, .manotube-c:focus { transform: rotate(-0.7deg) translateY(-3px); }
.manotube-d:hover, .manotube-d:focus { transform: rotate(1.6deg) translateY(-3px); }
.manotube-e:hover, .manotube-e:focus { transform: rotate(-1.9deg) translateY(-3px); }

.mano-toggle {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  background-color: #2E6FA3;
  color: #F6FAFC;
  border: 2px solid #B9C4CC;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 16px;
  cursor: pointer;
}

.mano-toggle:hover,
.mano-toggle:focus {
  background-color: #C98B2D;
  color: #17324A;
}

@media (max-width: 880px) {
  .manobank-inner {
    gap: 14px;
  }
  .mano-toggle {
    display: inline-block;
  }
  .manobank-tubes {
    width: 100%;
    display: none;
  }
  .manobank-tubes.manobank-open {
    display: flex;
  }
  .manotube-a, .manotube-b, .manotube-c,
  .manotube-d, .manotube-e {
    transform: none;
    margin-bottom: 0;
    flex: 1 1 40%;
    text-align: center;
  }
  .manotube-a:hover, .manotube-b:hover, .manotube-c:hover,
  .manotube-d:hover, .manotube-e:hover,
  .manotube-a:focus, .manotube-b:focus, .manotube-c:focus,
  .manotube-d:focus, .manotube-e:focus {
    transform: translateY(-3px);
  }
}

/* ============================================================
   TEST SECTION HERO
   ============================================================ */

.testsection {
  background-color: #EEF2F6;
  padding: 54px 0 62px 0;
  border-bottom: 2px solid #B9C4CC;
}

.testsection-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 40px;
  align-items: center;
}

.testsection-headline {
  font-size: 2.85rem;
  color: #1F2A33;
  margin-bottom: 18px;
}

.testsection-headline em {
  color: #2E6FA3;
  font-style: normal;
}

.testsection-intro {
  font-size: 1.03rem;
  color: #1F2A33;
  max-width: 620px;
}

.testsection-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.valve-btn {
  display: inline-block;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 26px;
  border: 3px solid #17324A;
  text-decoration: none;
  transition: transform 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.valve-btn:hover,
.valve-btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
}

.valve-btn-primary {
  background-color: #2E6FA3;
  color: #F6FAFC;
}

.valve-btn-primary:hover,
.valve-btn-primary:focus {
  background-color: #17324A;
  color: #F6FAFC;
}

.valve-btn-ghost {
  background-color: #FBFDFE;
  color: #17324A;
}

.valve-btn-ghost:hover,
.valve-btn-ghost:focus {
  background-color: #DFE8EE;
  color: #17324A;
}

/* ---- CSS wind tunnel test section illustration ---- */

.tunnel-figure {
  background-color: #FBFDFE;
  border: 2px solid #B9C4CC;
  border-radius: 6px;
  padding: 20px 18px 16px 18px;
  position: relative;
}

.tunnel-caption {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2E6FA3;
  margin-bottom: 12px;
  border-bottom: 2px solid #DFE8EE;
  padding-bottom: 8px;
}

.tunnel-scene {
  position: relative;
  height: 300px;
  background-color: #DFE8EE;
  border: 2px solid #17324A;
  border-radius: 4px;
  overflow: hidden;
}

.tunnel-return {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  background-color: #C7D6E0;
  border-top: 2px solid #17324A;
}

.tunnel-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #9DB4C2;
  border: 2px solid #17324A;
}

.tunnel-corner-tl { top: 34px; left: 0; }
.tunnel-corner-tr { top: 34px; right: 0; }
.tunnel-corner-bl { bottom: 34px; left: 0; }
.tunnel-corner-br { bottom: 34px; right: 0; }

.honeycomb {
  position: absolute;
  top: 52px;
  left: 14px;
  width: 44px;
  height: 160px;
  background-color: #F6FAFC;
  border: 2px solid #17324A;
  border-radius: 3px;
  background-image:
    repeating-linear-gradient(0deg, #B9C4CC 0, #B9C4CC 1px, transparent 1px, transparent 11px),
    repeating-linear-gradient(90deg, #B9C4CC 0, #B9C4CC 1px, transparent 1px, transparent 11px);
}

.contraction {
  position: absolute;
  top: 70px;
  left: 58px;
  width: 80px;
  height: 124px;
  background-color: #E7EEF3;
  border: 2px solid #17324A;
  clip-path: polygon(0 0, 100% 16%, 100% 84%, 0 100%);
}

.testglass {
  position: absolute;
  top: 54px;
  left: 138px;
  width: 150px;
  height: 168px;
  background-color: #F6FAFC;
  border: 3px solid #2E6FA3;
  border-radius: 4px;
}

.testglass-label {
  position: absolute;
  top: 60px;
  left: 146px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #2E6FA3;
  text-transform: uppercase;
}

.streamline {
  position: absolute;
  left: 6px;
  height: 4px;
  background-color: #7FA3BE;
  border-radius: 2px;
}

.streamline::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #2E6FA3;
}

.streamline-1 { top: 80px; width: 132px; }
.streamline-2 { top: 108px; width: 132px; }
.streamline-3 { top: 136px; width: 132px; }
.streamline-4 { top: 164px; width: 132px; }
.streamline-5 { top: 192px; width: 132px; }

.streamline-6 { top: 80px; left: 296px; width: 84px; }
.streamline-7 { top: 108px; left: 296px; width: 84px; }
.streamline-8 { top: 136px; left: 296px; width: 84px; }
.streamline-9 { top: 164px; left: 296px; width: 84px; }
.streamline-10 { top: 192px; left: 296px; width: 84px; }

.profile-wing {
  position: absolute;
  top: 128px;
  left: 158px;
  width: 108px;
  height: 22px;
  background-color: #C98B2D;
  border: 2px solid #17324A;
  border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
  transform: rotate(-6deg);
}

.balance-strut {
  position: absolute;
  top: 150px;
  left: 206px;
  width: 8px;
  height: 72px;
  background-color: #17324A;
  border-radius: 3px;
}

.balance-base {
  position: absolute;
  top: 218px;
  left: 186px;
  width: 48px;
  height: 12px;
  background-color: #17324A;
  border-radius: 3px;
}

.mano-card {
  position: absolute;
  top: 62px;
  right: 14px;
  width: 118px;
  background-color: #FBFDFE;
  border: 2px solid #17324A;
  border-radius: 4px;
  padding: 8px 9px;
}

.mano-card-title {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #17324A;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mano-tube {
  height: 7px;
  margin-bottom: 5px;
  border: 1px solid #17324A;
  background-color: #DFE8EE;
  position: relative;
}

.mano-fill-a { position: absolute; left: 0; top: 0; bottom: 0; width: 62%; background-color: #2E6FA3; }
.mano-fill-b { position: absolute; left: 0; top: 0; bottom: 0; width: 44%; background-color: #2E6FA3; }
.mano-fill-c { position: absolute; left: 0; top: 0; bottom: 0; width: 74%; background-color: #2E6FA3; }
.mano-fill-d { position: absolute; left: 0; top: 0; bottom: 0; width: 33%; background-color: #2E6FA3; }

.anemo-dial {
  position: absolute;
  bottom: 46px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #F6FAFC;
  border: 3px solid #17324A;
}

.anemo-needle {
  position: absolute;
  bottom: 68px;
  right: 42px;
  width: 2px;
  height: 22px;
  background-color: #C98B2D;
  transform-origin: bottom center;
  transform: rotate(38deg);
}

.tunnel-footnote {
  font-size: 0.72rem;
  color: #43535F;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ============================================================
   ORIENTATION / COPY BANDS
   ============================================================ */

.orientband {
  background-color: #FBFDFE;
  padding: 58px 0;
  border-bottom: 2px solid #B9C4CC;
}

.orientband-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.orientband h2 {
  font-size: 1.95rem;
  color: #17324A;
}

.orientband p {
  color: #1F2A33;
}

.orienttag {
  display: inline-block;
  background-color: #DFE8EE;
  color: #17324A;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 3px;
  border-left: 5px solid #2E6FA3;
  margin-bottom: 16px;
}

.service-link-inline {
  color: #2E6FA3;
  font-weight: 700;
  text-decoration: underline;
}

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

.meridian-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid #DFE8EE;
  color: #1F2A33;
}

.meridian-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 12px;
  height: 12px;
  background-color: #2E6FA3;
  border-radius: 50%;
  border: 2px solid #17324A;
}

/* ============================================================
   MODEL MOUNT RIG
   ============================================================ */

.mountrig {
  background-color: #EEF2F6;
  padding: 62px 0 70px 0;
  border-bottom: 2px solid #B9C4CC;
}

.mountrig-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.mountrig-head h2 {
  font-size: 2.1rem;
  color: #17324A;
}

.mountrig-head p {
  color: #1F2A33;
}

.bench-course {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 26px;
}

.bench-course-one {
  margin-bottom: 34px;
}

.testmodel {
  position: relative;
  background-color: #FBFDFE;
  border: 2px solid #17324A;
  border-radius: 5px;
  padding: 0 0 26px 0;
  box-shadow: 0 4px 0 #B9C4CC;
}

.testmodel-a { flex: 0 0 31.5%; }
.testmodel-b { flex: 0 0 35.5%; margin-top: 34px; }
.testmodel-c { flex: 0 0 29.5%; margin-top: 12px; }

.testmodel-d { flex: 0 0 34.5%; margin-top: 18px; }
.testmodel-e { flex: 0 0 30.5%; }
.testmodel-f { flex: 0 0 31.5%; margin-top: 40px; }

.testmodel-skew-left { transform: rotate(-1deg); }
.testmodel-skew-right { transform: rotate(1deg); }

.testmodel-tag {
  display: block;
  background-color: #2E6FA3;
  color: #F6FAFC;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 2px solid #17324A;
  border-radius: 3px 3px 0 0;
}

.testmodel-body {
  padding: 16px 18px 0 18px;
  color: #1F2A33;
  font-size: 0.94rem;
}

.testmodel-code {
  display: inline-block;
  margin: 6px 18px 0 18px;
  background-color: #DFE8EE;
  color: #2E6FA3;
  border: 2px solid #2E6FA3;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 4px 10px;
}

.testmodel-calib {
  display: inline-block;
  margin: 6px 0 0 8px;
  background-color: #C98B2D;
  color: #17324A;
  border: 2px solid #17324A;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 4px 9px;
}

.testmodel-strut {
  position: absolute;
  left: 50%;
  bottom: -20px;
  margin-left: -5px;
  width: 10px;
  height: 20px;
  background-color: #17324A;
}

.testmodel-strut::after {
  content: "";
  position: absolute;
  left: -16px;
  bottom: -8px;
  width: 42px;
  height: 8px;
  background-color: #17324A;
  border-radius: 2px;
}

@media (max-width: 940px) {
  .testmodel-a, .testmodel-b, .testmodel-c,
  .testmodel-d, .testmodel-e, .testmodel-f {
    flex: 0 0 100%;
    margin-top: 0;
    transform: none;
  }
}

/* ============================================================
   TEST-CELL BANNER
   ============================================================ */

.testcell-banner {
  background-color: #C98B2D;
  color: #17324A;
  padding: 30px 0;
  border-top: 2px solid #17324A;
  border-bottom: 2px solid #17324A;
}

.testcell-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.testcell-banner-mark {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  background-color: #17324A;
  border-radius: 50%;
  position: relative;
}

.testcell-banner-mark::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 14px;
  height: 14px;
  background-color: #F6FAFC;
  border-radius: 50%;
}

.testcell-banner-text {
  flex: 1 1 320px;
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0;
}

.testcell-banner-text a {
  color: #17324A;
  text-decoration: underline;
}

/* ============================================================
   BALANCE ROOM FOOTER
   ============================================================ */

.balanceroom {
  background-color: #17324A;
  color: #F6FAFC;
  border-top: 6px solid #C98B2D;
  position: relative;
}

.balanceroom-floor {
  height: 22px;
  background-color: #0F2334;
  background-image: repeating-linear-gradient(45deg, #2E4A61 0, #2E4A61 2px, transparent 2px, transparent 10px);
  border-bottom: 2px solid #2E6FA3;
}

.balanceroom-conduits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 40px 0 34px 0;
}

.conduit-run {
  flex: 1 1 240px;
  border-left: 5px solid #C98B2D;
  padding-left: 16px;
}

.conduit-run h3 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C98B2D;
  margin-bottom: 12px;
}

.conduit-run ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.conduit-run li {
  margin-bottom: 9px;
}

.conduit-tag {
  display: inline-block;
  background-color: #1F4A6B;
  color: #F6FAFC;
  border: 1px solid #B9C4CC;
  border-radius: 0 6px 6px 0;
  padding: 5px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.conduit-tag:hover,
.conduit-tag:focus {
  background-color: #2E6FA3;
  text-decoration: none;
}

.balanceroom-base {
  border-top: 2px solid #2E4A61;
  padding: 26px 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.calibration-card {
  flex: 1 1 300px;
  background-color: #1F4A6B;
  border: 2px solid #B9C4CC;
  border-radius: 5px;
  padding: 18px 20px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.calibration-card-text {
  flex: 1 1 auto;
}

.calibration-card-text strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  color: #F6FAFC;
  margin-bottom: 8px;
}

.calibration-card-text p {
  font-size: 0.86rem;
  color: #D5E1E9;
  margin: 0;
}

.anemo-glyph {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #F6FAFC;
  border: 3px solid #C98B2D;
  position: relative;
}

.anemo-glyph::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 8px;
  width: 3px;
  height: 20px;
  background-color: #17324A;
  transform-origin: bottom center;
  transform: rotate(24deg);
}

.balanceroom-meta {
  flex: 1 1 320px;
  font-size: 0.88rem;
  color: #D5E1E9;
}

.balanceroom-meta p {
  margin: 0 0 7px 0;
}

.balanceroom-meta a {
  color: #F6FAFC;
  font-weight: 700;
  text-decoration: underline;
}

.streamline-decal {
  height: 3px;
  width: 120px;
  background-color: #2E6FA3;
  border-radius: 2px;
  position: relative;
  margin-top: 14px;
}

.streamline-decal::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid #C98B2D;
}

.balanceroom-legal {
  border-top: 2px solid #2E4A61;
  padding: 16px 0 20px 0;
  font-size: 0.82rem;
  color: #B9C4CC;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}

.balanceroom-legal a {
  color: #F6FAFC;
  text-decoration: underline;
}

/* ============================================================
   SUBPAGE MASTHEAD BOARDS
   ============================================================ */

.boardhead {
  background-color: #17324A;
  color: #F6FAFC;
  padding: 46px 0 40px 0;
  border-bottom: 6px solid #C98B2D;
}

.boardhead-kicker {
  display: inline-block;
  background-color: #C98B2D;
  color: #17324A;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 16px;
}

.boardhead h1 {
  font-size: 2.4rem;
  color: #F6FAFC;
  margin-bottom: 12px;
}

.boardhead p {
  max-width: 720px;
  color: #D5E1E9;
  margin: 0;
}

/* ============================================================
   SERVICE DETAILS — PROCESS RIG
   ============================================================ */

.servicerail {
  background-color: #FBFDFE;
  padding: 58px 0;
  border-bottom: 2px solid #B9C4CC;
}

.servicerail-alt {
  background-color: #EEF2F6;
}

.railrow {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid #DFE8EE;
  align-items: start;
}

.railrow:last-child {
  border-bottom: none;
}

.railcode {
  background-color: #DFE8EE;
  border-left: 6px solid #2E6FA3;
  border-radius: 0 4px 4px 0;
  padding: 14px 16px;
}

.railcode strong {
  display: block;
  font-size: 1.7rem;
  color: #2E6FA3;
  line-height: 1;
  margin-bottom: 6px;
}

.railcode span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #17324A;
}

.railbody h2 {
  font-size: 1.4rem;
  color: #17324A;
  margin-bottom: 10px;
}

.railbody p {
  color: #1F2A33;
}

.processlane {
  background-color: #17324A;
  color: #F6FAFC;
  padding: 54px 0;
}

.processlane h2 {
  font-size: 1.95rem;
  color: #F6FAFC;
}

.processlane > .wrap > p {
  color: #D5E1E9;
  max-width: 780px;
}

.processsteps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}

.processstep {
  flex: 1 1 200px;
  background-color: #1F4A6B;
  border: 2px solid #B9C4CC;
  border-radius: 5px;
  padding: 18px;
}

.processstep-num {
  display: inline-block;
  background-color: #C98B2D;
  color: #17324A;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.processstep h3 {
  font-size: 1rem;
  color: #F6FAFC;
  margin-bottom: 8px;
}

.processstep p {
  font-size: 0.88rem;
  color: #D5E1E9;
  margin: 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contactzone {
  background-color: #FBFDFE;
  padding: 58px 0;
  border-bottom: 2px solid #B9C4CC;
}

.contactzone-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.fieldblock {
  margin-bottom: 18px;
}

.fieldblock label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #17324A;
  margin-bottom: 7px;
}

.fieldblock input,
.fieldblock textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: #1F2A33;
  background-color: #F6FAFC;
  border: 2px solid #B9C4CC;
  border-radius: 4px;
  padding: 12px 14px;
}

.fieldblock input:focus,
.fieldblock textarea:focus {
  outline: none;
  border-color: #2E6FA3;
}

.fieldblock-textarea-height {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.83rem;
  color: #43535F;
}

.contact-board {
  background-color: #DFE8EE;
  border: 2px solid #17324A;
  border-radius: 5px;
  padding: 22px;
}

.contact-board h2 {
  font-size: 1.25rem;
  color: #17324A;
}

.contact-board p {
  color: #1F2A33;
  font-size: 0.94rem;
}

.contact-board a {
  color: #2E6FA3;
  font-weight: 700;
  text-decoration: underline;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 8px;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid #B9C4CC;
  color: #1F2A33;
}

.hours-table th {
  font-weight: 800;
  color: #17324A;
}

.faq-vane {
  background-color: #EEF2F6;
  padding: 54px 0;
  border-bottom: 2px solid #B9C4CC;
}

.faq-vane h2 {
  font-size: 1.8rem;
  color: #17324A;
  margin-bottom: 22px;
}

.faq-item {
  background-color: #FBFDFE;
  border: 2px solid #B9C4CC;
  border-left: 6px solid #2E6FA3;
  border-radius: 0 5px 5px 0;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background-color: #FBFDFE;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  color: #17324A;
  padding: 17px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-q:hover {
  background-color: #DFE8EE;
}

.faq-mark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #2E6FA3;
  color: #F6FAFC;
  font-size: 0.9rem;
  line-height: 22px;
  text-align: center;
  font-weight: 900;
}

.faq-a {
  padding: 0 20px 18px 20px;
  color: #1F2A33;
  font-size: 0.94rem;
  margin: 0;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  transition: transform 0.55s ease;
}

html.js .reveal {
  transform: none;
}

html.js .reveal.is-armed {
  transform: translateY(18px);
}

html.js .reveal.is-shown {
  transform: none;
}

@media (max-width: 900px) {
  .testsection-grid,
  .orientband-grid,
  .contactzone-grid {
    grid-template-columns: 1fr;
  }
  .railrow {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testsection-headline {
    font-size: 2.2rem;
  }
  .tunnel-scene {
    height: 260px;
  }
}
