/* ============================================================
   POLARTRADE — Polar Expedition & Ice Chart theme
   Computer Systems Design & Trade Information Services
   ============================================================ */

:root {
  --polar-night: #0F1722;
  --deeper-night: #0B111A;
  --berg-panel: #18222F;
  --fjord-deep: #1E2B3B;
  --glacier-blue: #7FB3D5;
  --aurora-green: #4ECF9E;
  --deep-green: #2A5A47;
  --snow-floe: #F4F8FB;
  --frost-mist: #C2D2E0;
  --hairline: #263443;
  --mid-ice: #4E7396;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Segoe UI", Georgia, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--polar-night);
  color: var(--frost-mist);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

a {
  color: var(--glacier-blue);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--aurora-green);
}

h1, h2, h3, h4 {
  color: var(--snow-floe);
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

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

/* ============================================================
   ICECUT NAV
   ============================================================ */
.icecut-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--polar-night);
}

.icecut-nav .nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}

.berg-waterline {
  height: 14px;
  width: 100%;
  background-color: var(--deep-green);
  position: relative;
  overflow: hidden;
}

.berg-waterline .waterline {
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background-color: var(--aurora-green);
  filter: saturate(0.54);
}

.berg-waterline .berg-top {
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 9px solid var(--glacier-blue);
  filter: saturate(0.77);
}

.berg-waterline .berg-top.b1 { left: 2%; }
.berg-waterline .berg-top.b2 { left: 12%; transform: scale(1.4); }
.berg-waterline .berg-top.b3 { left: 26%; transform: scale(2.1); }
.berg-waterline .berg-top.b4 { left: 38%; transform: scale(1.1); }
.berg-waterline .berg-top.b5 { left: 55%; transform: scale(1.7); }
.berg-waterline .berg-top.b6 { left: 68%; transform: scale(0.8); }
.berg-waterline .berg-top.b7 { left: 82%; transform: scale(2.3); }
.berg-waterline .berg-top.b8 { left: 94%; transform: scale(0.6); }

.berg-waterline .berg-reflect {
  position: absolute;
  top: 7px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 9px solid var(--mid-ice);
  filter: saturate(0.45);
}

.berg-waterline .berg-reflect.r1 { left: 2%; }
.berg-waterline .berg-reflect.r2 { left: 12%; transform: scale(1.4); }
.berg-waterline .berg-reflect.r3 { left: 26%; transform: scale(2.1); }
.berg-waterline .berg-reflect.r4 { left: 38%; transform: scale(1.1); }
.berg-waterline .berg-reflect.r5 { left: 55%; transform: scale(1.7); }
.berg-waterline .berg-reflect.r6 { left: 68%; transform: scale(0.8); }
.berg-waterline .berg-reflect.r7 { left: 82%; transform: scale(2.3); }
.berg-waterline .berg-reflect.r8 { left: 94%; transform: scale(0.6); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--glacier-blue);
  text-transform: uppercase;
}

.north-star-glyph {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.north-star-glyph .axis {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 14px;
  background-color: var(--snow-floe);
  transform: translate(-50%, -50%);
}

.north-star-glyph .axis.horiz {
  width: 14px;
  height: 2px;
}

.north-star-glyph .axis.diag1 {
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px;
  height: 2px;
}

.north-star-glyph .axis.diag2 {
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 14px;
  height: 2px;
}

.north-star-glyph .core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  background-color: var(--aurora-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--frost-mist);
  padding: 8px 10px;
  position: relative;
}

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

.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  background-color: var(--glacier-blue);
}

.nav-links a:hover::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background-color: var(--aurora-green);
}

.floe-dash {
  color: var(--hairline);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--snow-floe);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: var(--deeper-night);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid var(--hairline);
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
  }

  .floe-dash {
    display: none;
  }
}

/* ============================================================
   AURORA ARC HERO
   ============================================================ */
.aurora-hero {
  background-color: var(--polar-night);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 70px 24px 40px;
}

.star-dots {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 300px;
  pointer-events: none;
}

.star-dots i {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: var(--snow-floe);
  border-radius: 50%;
  filter: saturate(0.63);
}

.star-dots i:nth-child(1) { left: 8%; top: 20px; }
.star-dots i:nth-child(2) { left: 18%; top: 90px; }
.star-dots i:nth-child(3) { left: 30%; top: 40px; }
.star-dots i:nth-child(4) { left: 42%; top: 130px; }
.star-dots i:nth-child(5) { left: 58%; top: 60px; }
.star-dots i:nth-child(6) { left: 68%; top: 150px; }
.star-dots i:nth-child(7) { left: 80%; top: 35px; }
.star-dots i:nth-child(8) { left: 90%; top: 110px; }
.star-dots i:nth-child(9) { left: 14%; top: 160px; }
.star-dots i:nth-child(10) { left: 74%; top: 190px; }
.star-dots i:nth-child(11) { left: 48%; top: 45px; }
.star-dots i:nth-child(12) { left: 88%; top: 60px; }

.aurora-arc {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 1100px;
  max-width: 100%;
  height: 340px;
  pointer-events: none;
}

.aurora-arc .swath {
  position: absolute;
  left: 0;
  right: 0;
  height: 300px;
  top: 0;
  border-radius: 100% 100% 0 0;
}

.aurora-arc .swath.top {
  background-color: var(--aurora-green);
  top: 0;
  height: 60px;
}

.aurora-arc .swath.mid {
  background-color: var(--glacier-blue);
  top: 34px;
  height: 54px;
}

.aurora-arc .swath.deep {
  background-color: var(--deep-green);
  top: 64px;
  height: 50px;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow-chip {
  display: inline-block;
  background-color: var(--glacier-blue);
  color: var(--polar-night);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 52px;
  color: var(--snow-floe);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-title .accent {
  color: var(--glacier-blue);
}

.hero-copy {
  margin: 22px auto 32px;
  max-width: 680px;
  font-size: 17px;
  color: var(--frost-mist);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: var(--glacier-blue);
  color: var(--polar-night);
}

.btn-primary:hover {
  background-color: var(--snow-floe);
  color: var(--polar-night);
}

.btn-outline {
  border: 1px solid var(--glacier-blue);
  color: var(--frost-mist);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--snow-floe);
  color: var(--snow-floe);
  background-color: var(--fjord-deep);
}

.ice-fjord {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  height: 210px;
}

.station-hut {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 120px;
  text-align: center;
}

.station-hut .hut-body {
  width: 96px;
  height: 56px;
  background-color: var(--berg-panel);
  border: 1px solid var(--hairline);
  margin: 0 auto;
  position: relative;
}

.station-hut .hut-door {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  background-color: var(--deep-green);
}

.station-hut .hut-window {
  position: absolute;
  left: 10px;
  top: 12px;
  width: 20px;
  height: 14px;
  background-color: var(--aurora-green);
}

.station-hut .hut-roof {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 34px solid var(--glacier-blue);
}

.station-hut .hut-label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--frost-mist);
}

.ice-shelf {
  position: absolute;
  left: 50%;
  top: 88px;
  transform: translateX(-50%);
  width: 300px;
  height: 42px;
  background-color: var(--glacier-blue);
  filter: saturate(0.81);
  position: relative;
}

.ice-shelf::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 4px;
  background-color: transparent;
  border-bottom: 2px dashed var(--polar-night);
}

.iceberg-cut {
  position: absolute;
  left: 50%;
  top: 112px;
  transform: translateX(-50%);
  width: 180px;
  height: 90px;
  overflow: hidden;
}

.iceberg-cut .berg-tip {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 90px solid var(--mid-ice);
  filter: saturate(0.68);
}

.waterline-rule {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 128px;
  border-top: 2px dashed var(--glacier-blue);
  filter: saturate(0.45);
}

.floe-dot {
  position: absolute;
  width: 14px;
  height: 10px;
  background-color: var(--glacier-blue);
  border-radius: 30% 70% 60% 40%;
  filter: saturate(0.63);
}

.floe-dot.d1 { left: 12%; top: 150px; transform: scale(0.8); }
.floe-dot.d2 { left: 85%; top: 165px; transform: scale(1.2); }
.floe-dot.d3 { left: 30%; top: 185px; transform: scale(0.6); }

@media (max-width: 700px) {
  .hero-title { font-size: 36px; }
  .ice-fjord { transform: scale(0.8); }
}

/* ============================================================
   ICE CORE SAMPLES
   ============================================================ */
.ice-core {
  padding: 80px 0;
  background-color: var(--polar-night);
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 40px;
  color: var(--glacier-blue);
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--frost-mist);
  max-width: 700px;
  margin: 0 auto;
}

.core-row {
  display: flex;
  align-items: center;
  gap: 28px;
  background-color: var(--berg-panel);
  border: 1px solid var(--hairline);
  padding: 26px;
  margin-bottom: 12px;
}

.core-column {
  width: 44px;
  flex-shrink: 0;
  position: relative;
  margin-right: 6px;
}

.core-column .core-cyl {
  width: 44px;
  height: 150px;
  overflow: hidden;
  border: 1px solid var(--mid-ice);
  border-radius: 4px;
}

.core-column .layer {
  width: 100%;
}

.core-column .layer.l-snow { background-color: #9FBBD2; }
.core-column .layer.l-glac { background-color: var(--glacier-blue); }
.core-column .layer.l-mid { background-color: var(--mid-ice); }
.core-column .layer.l-fjord { background-color: var(--fjord-deep); }
.core-column .layer.l-deep { background-color: var(--deep-green); }

.core-column .depth-chip {
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 66px;
  background-color: var(--polar-night);
  border: 1px solid var(--hairline);
  color: var(--frost-mist);
  font-size: 10px;
  letter-spacing: 1px;
  text-align: center;
  padding: 4px 0;
  white-space: nowrap;
}

.core-body {
  flex: 1;
}

.core-body h3 {
  font-size: 24px;
  color: var(--snow-floe);
  margin-bottom: 10px;
}

.core-body p {
  color: var(--frost-mist);
  line-height: 1.8;
}

.probe-line {
  flex-shrink: 0;
  width: 20px;
  height: 150px;
  position: relative;
}

.probe-line .shaft {
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--glacier-blue);
}

.probe-line .sensor {
  position: absolute;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--aurora-green);
}

.core-row.c1 .sensor { top: 12%; }
.core-row.c2 .sensor { top: 30%; }
.core-row.c3 .sensor { top: 48%; }
.core-row.c4 .sensor { top: 66%; }
.core-row.c5 .sensor { top: 82%; }

.core-row.c1 .layer { height: 38px; }
.core-row.c1 .l-glac { height: 52px; }
.core-row.c1 .l-mid { height: 30px; }
.core-row.c1 .l-fjord { height: 30px; }

.core-row.c2 .layer { height: 20px; }
.core-row.c2 .l-glac { height: 44px; }
.core-row.c2 .l-mid { height: 52px; }
.core-row.c2 .l-fjord { height: 34px; }

.core-row.c3 .layer { height: 50px; }
.core-row.c3 .l-glac { height: 24px; }
.core-row.c3 .l-mid { height: 40px; }
.core-row.c3 .l-fjord { height: 36px; }

.core-row.c4 .layer { height: 30px; }
.core-row.c4 .l-glac { height: 36px; }
.core-row.c4 .l-mid { height: 26px; }
.core-row.c4 .l-fjord { height: 58px; }

.core-row.c5 .layer { height: 62px; }
.core-row.c5 .l-glac { height: 20px; }
.core-row.c5 .l-mid { height: 30px; }
.core-row.c5 .l-fjord { height: 38px; }

@media (max-width: 780px) {
  .core-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .core-row .core-column {
    margin-bottom: 8px;
  }

  .probe-line {
    position: absolute;
    right: 20px;
    top: 26px;
  }

  .core-row {
    position: relative;
  }
}

/* ============================================================
   SONAR METRIC BAND
   ============================================================ */
.sonar-band {
  background-color: var(--fjord-deep);
  padding: 56px 0;
  position: relative;
}

.sonar-sweep {
  position: relative;
  max-width: 900px;
  margin: 0 auto 44px;
  border-top: 2px solid var(--aurora-green);
}

.sonar-sweep .blip {
  position: absolute;
  left: 33%;
  top: -5px;
  width: 8px;
  height: 8px;
  background-color: var(--aurora-green);
  border-radius: 50%;
}

.sonar-band .metrics {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sonar-band .metric {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.sonar-band .metric .numeral {
  font-size: 52px;
  font-weight: 700;
  color: var(--glacier-blue);
  font-family: "Georgia", serif;
}

.sonar-band .metric .label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--frost-mist);
}

.sonar-band .metric + .metric {
  border-left: 1px solid var(--hairline);
}

@media (max-width: 700px) {
  .sonar-band .metric + .metric {
    border-left: none;
    border-top: 1px solid var(--hairline);
    padding-top: 20px;
  }
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement-band {
  background-color: var(--berg-panel);
  padding: 70px 0;
}

.statement-quote {
  max-width: 860px;
  margin: 0 auto;
  border-left: 4px solid var(--aurora-green);
  padding-left: 32px;
}

.statement-quote p {
  font-size: 24px;
  line-height: 1.6;
  color: var(--snow-floe);
  font-family: "Georgia", serif;
}

.statement-quote .statement-attr {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--glacier-blue);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 80px 0;
  background-color: var(--polar-night);
  text-align: center;
}

.cta-band h2 {
  font-size: 40px;
  color: var(--glacier-blue);
  margin-bottom: 14px;
}

.cta-band p {
  max-width: 640px;
  margin: 0 auto 34px;
  color: var(--frost-mist);
  font-size: 17px;
}

/* ============================================================
   POLARIS FOOTER
   ============================================================ */
.polaris-footer {
  background-color: var(--deeper-night);
  position: relative;
  padding-top: 0;
}

.pack-ice-edge {
  height: 14px;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.pack-plate {
  flex: 1;
  background-color: var(--fjord-deep);
  margin: 0 1px;
  border-radius: 30% 40% 50% 30% / 0% 0% 100% 100%;
  position: relative;
}

.pack-plate::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background-color: var(--hairline);
}

.footer-main {
  text-align: center;
  padding: 50px 24px 40px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--glacier-blue);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--frost-mist);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
}

.footer-links a:hover {
  color: var(--aurora-green);
}

.footer-links .dash {
  color: var(--hairline);
}

.sextant-arc {
  position: relative;
  max-width: 200px;
  height: 90px;
  margin: 0 auto 30px;
}

.sextant-arc .arc-line {
  position: absolute;
  right: 10px;
  top: 0;
  width: 150px;
  height: 150px;
  border-top-left-radius: 150px;
  border-top: 2px solid var(--aurora-green);
  border-left: 2px solid var(--aurora-green);
}

.sextant-arc .pivot-dot {
  position: absolute;
  left: 8px;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--glacier-blue);
  border-radius: 50%;
}

.sextant-arc .fix-star {
  position: absolute;
  top: -8px;
  right: 4px;
  width: 6px;
  height: 6px;
  background-color: var(--snow-floe);
  border-radius: 50%;
  box-shadow: -4px -4px 0 -2px var(--snow-floe), 4px -4px 0 -2px var(--snow-floe),
              -4px 4px 0 -2px var(--snow-floe), 4px 4px 0 -2px var(--snow-floe);
}

.footer-legal {
  color: var(--frost-mist);
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: 1.9;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}

.footer-legal .sep {
  color: var(--hairline);
  padding: 0 2px;
}

/* ============================================================
   HOME PAGE SECTIONS scoped under .home-page
   ============================================================ */
.home-page .ice-core,
.home-page .cta-band {
  background-color: var(--polar-night);
}

/* ============================================================
   FADE-UP REVEAL (safely default-visible)
   ============================================================ */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* decorative watermark hidden */
.watermark {
  visibility: hidden;
}

/* ============================================================
   SECONDARY PAGE BASE (services and contact)
   ============================================================ */
.page-hero {
  background-color: var(--polar-night);
  padding: 60px 24px 40px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}

.page-hero h1 {
  font-size: 44px;
  color: var(--snow-floe);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--frost-mist);
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
}

.content-section {
  padding: 64px 0;
}

.content-section.alt {
  background-color: var(--berg-panel);
}

.section-title {
  font-size: 32px;
  color: var(--glacier-blue);
  margin-bottom: 18px;
}

.section-title.center {
  text-align: center;
}

/* services layout */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  gap: 26px;
  background-color: var(--berg-panel);
  border: 1px solid var(--hairline);
  padding: 28px;
}

.service-icon {
  display: none;
}

@media (max-width: 700px) {
  .service-row {
    flex-direction: column;
  }
}

.process-list {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
}

.process-list li {
  position: relative;
  padding: 0 0 22px 34px;
  color: var(--frost-mist);
}

.process-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: var(--aurora-green);
  border-radius: 50%;
}

.process-list li::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  bottom: 0;
  width: 2px;
  background-color: var(--hairline);
}

.process-list li:last-child::after {
  display: none;
}

.process-list h3 {
  font-size: 20px;
  color: var(--snow-floe);
  margin-bottom: 6px;
}

/* contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--glacier-blue);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: var(--berg-panel);
  border: 1px solid var(--hairline);
  color: var(--snow-floe);
  padding: 13px 16px;
  font-size: 15px;
  border-radius: 2px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--glacier-blue);
}

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

.form-note {
  font-size: 12px;
  color: var(--frost-mist);
  line-height: 1.6;
}

.contact-info-card {
  background-color: var(--berg-panel);
  border: 1px solid var(--hairline);
  padding: 30px;
}

.contact-info-card h3 {
  font-size: 22px;
  color: var(--snow-floe);
  margin-bottom: 18px;
}

.contact-info-card .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-card .info-item .tag {
  flex-shrink: 0;
  width: 90px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--glacier-blue);
}

.contact-info-card .info-item .val {
  color: var(--frost-mist);
}

.contact-faq h3 {
  color: var(--glacier-blue);
  margin-bottom: 8px;
}

.faq-item {
  margin-bottom: 22px;
}

.faq-item summary {
  cursor: pointer;
  font-size: 18px;
  color: var(--snow-floe);
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-left: 22px;
}

.faq-item summary::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--aurora-green);
}

.faq-item[open] summary::before {
  content: "-";
}

.faq-item .faq-body {
  margin-top: 10px;
  padding-left: 22px;
  color: var(--frost-mist);
}

/* contact form status */
.form-status {
  background-color: var(--deep-green);
  color: var(--snow-floe);
  padding: 14px 18px;
  border-radius: 2px;
  display: none;
}

.form-status.show {
  display: block;
}
