/* ============================================================
   GRACEPROFIT — Deep Forest Emerald Trading Theme
   Dark forest-black body, ivory text, deep forest emerald accent
   ============================================================ */

:root {
  --ink: #0C1110;
  --panel: #131A17;
  --ivory: #E9EDE8;
  --mist: #BFD8C9;
  --emerald: #2E7D5F;
  --emerald-soft: #3B9A77;
  --emerald-deep: #1F5B45;
  --hairline: #2A3A33;
  --muted: #A9B5AE;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #E9EDE8;
  background-color: #0C1110;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: #2E7D5F;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #BFD8C9;
}

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

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BFD8C9;
  margin-bottom: 12px;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: 34px;
  line-height: 1.25;
  color: #E9EDE8;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.section-head p {
  color: #A9B5AE;
  margin-top: 14px;
  font-size: 17px;
}

.section-head .eyebrow {
  margin-bottom: 10px;
}

/* ------------------------------------------------------------
   BARCODE GLYPHS (drawn with CSS)
   ------------------------------------------------------------ */

.barcode {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  flex-shrink: 0;
}

.barcode span {
  display: inline-block;
  width: 4px;
  background: #2E7D5F;
}

.barcode span:nth-child(1) { height: 9px; }
.barcode span:nth-child(2) { height: 17px; }
.barcode span:nth-child(3) { height: 12px; }
.barcode span:nth-child(4) { height: 20px; }
.barcode span:nth-child(5) { height: 10px; }

.brand-barcode {
  height: 22px;
  padding-bottom: 2px;
  border-bottom: 2px solid #2E7D5F;
  align-items: flex-end;
}

.brand-barcode span {
  width: 5px;
}

.link-barcode {
  height: 12px;
  gap: 2px;
}

.link-barcode span {
  width: 3px;
  height: 12px;
  background: transparent;
  border: 2px solid #2E7D5F;
  border-radius: 1px;
}

.nav-link.active .link-barcode span,
.nav-link:hover .link-barcode span {
  background: #2E7D5F;
  border-color: #2E7D5F;
}

.footer-barcode {
  height: 14px;
}

.footer-barcode span {
  width: 3px;
}

/* ------------------------------------------------------------
   NAVIGATION — BARCODE NAV
   ------------------------------------------------------------ */

.barcode-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0C1110;
  border-bottom: 2px solid #2E7D5F;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand-block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #E9EDE8;
}

.brand-block:hover {
  color: #E9EDE8;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.wordmark {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: #E9EDE8;
}

.brand-caption {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #2E7D5F;
  font-weight: 700;
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid #2E7D5F;
  border-radius: 4px;
  padding: 9px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #2E7D5F;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E9EDE8;
}

.nav-link:hover {
  color: #BFD8C9;
}

.nav-link.active {
  color: #2E7D5F;
}

.nav-label {
  line-height: 1;
}

/* ------------------------------------------------------------
   HERO — TRADE HERO
   ------------------------------------------------------------ */

.trade-hero {
  background: #0C1110;
  padding: 84px 0 96px;
  border-bottom: 2px solid #2E7D5F;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.hero-chip {
  display: inline-block;
  background: #2E7D5F;
  color: #0C1110;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #E9EDE8;
  margin-bottom: 24px;
}

.hero-title .em {
  color: #2E7D5F;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: #E9EDE8;
  max-width: 560px;
  margin-bottom: 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: #2E7D5F;
  color: #0C1110;
}

.btn-primary:hover {
  background: #3B9A77;
  color: #0C1110;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #2E7D5F;
  border-color: #2E7D5F;
}

.btn-outline:hover {
  background: #2E7D5F;
  color: #0C1110;
  transform: translateY(-2px);
}

.btn-light {
  background: #BFD8C9;
  color: #0C1110;
}

.btn-light:hover {
  background: #E9EDE8;
  color: #0C1110;
  transform: translateY(-2px);
}

/* TRADE PANEL + BALANCE SCALE */

.trade-panel {
  background: #131A17;
  border: 2px solid #2E7D5F;
  border-radius: 6px;
  padding: 40px 32px 28px;
  position: relative;
}

.trade-panel::before,
.trade-panel::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #2E7D5F;
}

.trade-panel::before { top: 10px; left: 10px; }
.trade-panel::after { bottom: 10px; right: 10px; }

.scale {
  margin: 0 auto 30px;
  max-width: 320px;
}

.scale-arm {
  display: flex;
  align-items: flex-end;
}

.scale-beam {
  flex: 1;
  height: 3px;
  background: #2E7D5F;
}

.scale-side {
  width: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scale-chain {
  width: 2px;
  height: 36px;
  background: #2E7D5F;
}

.scale-pan {
  width: 52px;
  height: 26px;
  border: 3px solid #2E7D5F;
  border-top: none;
  border-radius: 0 0 42px 42px;
  margin-top: -1px;
}

.scale-post {
  width: 3px;
  height: 58px;
  background: #2E7D5F;
  margin: 0 auto;
}

.scale-base {
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 15px solid #2E7D5F;
  margin: 0 auto;
}

.scale-baseline {
  height: 2px;
  background: #2E7D5F;
  margin-bottom: 18px;
}

.scale-chips {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.scale-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  background: #2E7D5F;
  color: #0C1110;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 3px;
}

.scale-caption {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #BFD8C9;
  margin-top: 16px;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   MERCH GRID
   ------------------------------------------------------------ */

.merch-grid {
  background: #0C1110;
  padding: 96px 0;
}

.merch-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trade-chip {
  width: 16px;
  height: 16px;
  background: #2E7D5F;
  border-radius: 2px;
  margin-bottom: 18px;
}

.merch-panel {
  background: #131A17;
  border: 1px solid #2A3A33;
  border-top: 3px solid #2E7D5F;
  padding: 34px 30px;
  border-radius: 4px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.merch-panel:hover {
  transform: translateY(-6px);
  border-color: #2E7D5F;
}

.merch-panel h3 {
  font-size: 21px;
  font-weight: 800;
  color: #E9EDE8;
  margin-bottom: 12px;
}

.merch-panel p {
  color: #A9B5AE;
  font-size: 15px;
  line-height: 1.75;
}

/* ------------------------------------------------------------
   PARITY BAND
   ------------------------------------------------------------ */

.parity-band {
  background: #131A17;
  border-top: 2px solid #2E7D5F;
  border-bottom: 2px solid #2E7D5F;
  padding: 68px 0;
}

.parity-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.parity-block {
  text-align: center;
  padding: 12px 16px;
  border-left: 1px solid #2A3A33;
}

.parity-block:first-child {
  border-left: none;
}

.parity-num {
  font-size: 52px;
  font-weight: 900;
  color: #2E7D5F;
  line-height: 1.1;
}

.parity-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E9EDE8;
  margin-top: 8px;
  font-weight: 700;
}

.parity-num-suffix {
  font-size: 34px;
  font-weight: 900;
  color: #2E7D5F;
}

.parity-note {
  text-align: center;
  color: #BFD8C9;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 36px;
}

/* ------------------------------------------------------------
   TALLY DUO
   ------------------------------------------------------------ */

.tally-duo {
  background: #0C1110;
  padding: 96px 0;
}

.tally-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0;
}

.tally-row + .tally-row {
  border-top: 1px solid #2A3A33;
}

.tally-text h3 {
  font-size: 27px;
  font-weight: 800;
  color: #E9EDE8;
  margin-bottom: 14px;
}

.tally-text p {
  color: #A9B5AE;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.tally-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tally-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E9EDE8;
  font-size: 15px;
  font-weight: 600;
}

.check-square {
  width: 14px;
  height: 14px;
  background: #2E7D5F;
  border-radius: 2px;
  flex-shrink: 0;
}

.bar-trio {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 200px;
  justify-content: center;
}

.bar-trio span {
  width: 34px;
  border: 2px solid #2E7D5F;
  border-radius: 2px;
}

.bar-trio span:nth-child(1) { height: 88px; background: transparent; }
.bar-trio span:nth-child(2) { height: 168px; background: #2E7D5F; border-color: #2E7D5F; }
.bar-trio span:nth-child(3) { height: 122px; background: transparent; }

.bar-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #BFD8C9;
  text-transform: uppercase;
  margin-top: 18px;
}

/* ------------------------------------------------------------
   TRUST PANEL
   ------------------------------------------------------------ */

.trust-panel {
  background: #131A17;
  border-left: 8px solid #2E7D5F;
  border-radius: 4px;
  padding: 60px 56px;
  margin: 0 0 96px;
}

.trust-panel .trust-statement {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 800;
  color: #E9EDE8;
  max-width: 900px;
}

.trust-panel .trust-sub {
  font-size: 17px;
  color: #BFD8C9;
  margin-top: 18px;
  max-width: 760px;
}

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */

.cta-band {
  background: #0C1110;
  padding: 40px 0 96px;
}

.cta-box {
  text-align: center;
  background: #131A17;
  border: 2px solid #2E7D5F;
  border-radius: 6px;
  padding: 64px 40px;
}

.cta-box h2 {
  font-size: 34px;
  font-weight: 800;
  color: #E9EDE8;
  margin-bottom: 14px;
}

.cta-box p {
  color: #A9B5AE;
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* ------------------------------------------------------------
   PAGE HERO (services / contact)
   ------------------------------------------------------------ */

.page-hero {
  background: #0C1110;
  padding: 72px 0 76px;
  border-bottom: 2px solid #2E7D5F;
}

.page-hero .eyebrow {
  color: #2E7D5F;
}

.page-hero h1 {
  font-size: 44px;
  font-weight: 900;
  color: #E9EDE8;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero .page-lede {
  font-size: 18px;
  color: #E9EDE8;
  max-width: 720px;
  line-height: 1.75;
}

/* ------------------------------------------------------------
   SERVICES PAGE
   ------------------------------------------------------------ */

.services-body {
  background: #0C1110;
  padding: 96px 0 40px;
}

.service-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  background: #131A17;
  border: 1px solid #2A3A33;
  border-left: 4px solid #2E7D5F;
  padding: 36px 36px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.service-index {
  font-size: 34px;
  font-weight: 900;
  color: #2E7D5F;
  line-height: 1;
  padding-top: 6px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #E9EDE8;
  margin-bottom: 12px;
}

.service-card p {
  color: #A9B5AE;
  line-height: 1.8;
  font-size: 16px;
}

.process-section {
  padding: 96px 0;
  background: #131A17;
  border-top: 2px solid #2E7D5F;
  border-bottom: 2px solid #2E7D5F;
}

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

.process-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border: 3px solid #2E7D5F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #2E7D5F;
  background: #0C1110;
}

.process-step h3 {
  font-size: 19px;
  font-weight: 800;
  color: #E9EDE8;
  margin-bottom: 10px;
}

.process-step p {
  color: #A9B5AE;
  font-size: 15px;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------------------ */

.contact-body {
  padding: 96px 0 40px;
  background: #0C1110;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: 26px;
  font-weight: 800;
  color: #E9EDE8;
  margin: 30px 0 12px;
}

.contact-info h2:first-child {
  margin-top: 0;
}

.contact-info p,
.contact-info li {
  color: #A9B5AE;
  line-height: 1.8;
}

.contact-line {
  font-size: 17px;
  color: #E9EDE8;
}

.contact-line a {
  color: #2E7D5F;
  font-weight: 700;
}

.contact-hours {
  list-style: none;
  border-top: 1px solid #2A3A33;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #2A3A33;
  color: #E9EDE8;
}

.contact-hours .day {
  color: #BFD8C9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.contact-form-wrap {
  background: #131A17;
  border: 1px solid #2A3A33;
  border-top: 3px solid #2E7D5F;
  padding: 40px 36px;
  border-radius: 4px;
}

.contact-form-wrap h2 {
  font-size: 24px;
  font-weight: 800;
  color: #E9EDE8;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: #A9B5AE;
  font-size: 15px;
  margin-bottom: 26px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #BFD8C9;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  font-size: 16px;
  color: #E9EDE8;
  background: #0C1110;
  border: 1px solid #2A3A33;
  border-radius: 3px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2E7D5F;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #2E7D5F;
  min-height: 22px;
}

/* FAQ */
.faq-section {
  padding: 96px 0;
  background: #0C1110;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #2A3A33;
  background: #131A17;
  margin-bottom: 14px;
  border-radius: 4px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #E9EDE8;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-question .faq-icon {
  width: 22px;
  height: 22px;
  border: 2px solid #2E7D5F;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-question .faq-icon::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 4px;
  right: 4px;
  height: 2px;
  background: #2E7D5F;
}

.faq-question .faq-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: #2E7D5F;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question .faq-icon::after {
  transform: rotate(90deg);
  opacity: 1;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: #A9B5AE;
  line-height: 1.8;
  font-size: 15px;
}

/* ------------------------------------------------------------
   FOOTER — BARCODE FOOTER
   ------------------------------------------------------------ */

.barcode-footer {
  background: #0C1110;
  border-top: 2px solid #2E7D5F;
  padding: 48px 0 40px;
}

.barcode-footer .brand-block {
  color: #E9EDE8;
}

.footer-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

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

.footer-links a {
  color: #E9EDE8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-links a:hover {
  color: #2E7D5F;
}

.footer-contact {
  color: #2E7D5F;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-hairline {
  height: 1px;
  background: #2A3A33;
  margin: 0 0 26px;
}

.footer-row2 {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.footer-row2 .footer-barcode {
  flex-shrink: 0;
}

.legal-line {
  font-size: 13px;
  color: #E9EDE8;
  text-align: center;
  line-height: 1.8;
}

.legal-line a {
  color: #2E7D5F;
  font-weight: 700;
}

.legal-line a:hover {
  color: #BFD8C9;
}

/* ------------------------------------------------------------
   SCROLL REVEAL — default visible, JS enhances
   ------------------------------------------------------------ */

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

.reveal-init .fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .merch-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 42px;
  }
}

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

  .nav-menu {
    display: none;
    width: 100%;
  }

  .nav-menu.open {
    display: block;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    padding: 18px 0 8px;
  }

  .nav-link {
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid #2A3A33;
    font-size: 14px;
  }

  .parity-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .parity-block {
    border-left: none;
    border-bottom: 1px solid #2A3A33;
    padding-bottom: 26px;
  }

  .tally-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-panel {
    padding: 40px 30px;
  }

  .trust-panel .trust-statement {
    font-size: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 34px;
  }

  .merch-grid-row {
    grid-template-columns: 1fr;
  }

  .parity-num {
    font-size: 40px;
  }

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

  .footer-row2 {
    flex-direction: column;
    gap: 12px;
  }

  .section-head h2,
  .cta-box h2 {
    font-size: 27px;
  }

  .scale-side {
    width: 60px;
  }
}
